From 3992e05cdc43d84b617357132da0d998b7cc7560 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Fri, 12 Oct 2018 23:58:20 +0100 Subject: [PATCH] multimap (#51) * fix fa-icons links * first go at multimaps * Handle cleaning up old static routes Not great but seems to be the best way... Issue #40 * add some colour buttons * Add topojson countries layer for disconnected use --- README.md | 4 +-- package.json | 2 +- worldmap.html | 37 +++++++++++++++------- worldmap.js | 47 +++++++++++++++++----------- worldmap/css/map.css | 6 ++++ worldmap/images/world-110m-flat.json | 1 + worldmap/images/world-50m-flat.json | 1 + worldmap/index.html | 24 ++++++++++++-- worldmap/leaflet/easy-button.js | 28 +++++++++++------ worldmap/worldmap.appcache | 3 +- 10 files changed, 106 insertions(+), 47 deletions(-) create mode 100644 worldmap/images/world-110m-flat.json create mode 100644 worldmap/images/world-50m-flat.json diff --git a/README.md b/README.md index 9974327..7680e8f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Optional properties include - **speed** : combined with bearing, draws a vector. - **bearing** : combined with speed, draws a vector. - **accuracy** : combined with bearing, draws a polygon of possible direction. - - **icon** : font awesome icon name. + - **icon** : font awesome icon name. - **iconColor** : Standard CSS colour name or #rrggbb hex value. - **SIDC** : NATO symbology code (instead of icon). See below. - **building** : OSMbulding GeoJSON feature set to add 2.5D buildings to buildings layer. See below. @@ -72,7 +72,7 @@ Any other `msg.payload` properties will be added to the icon popup text box. ### Icons -You may select any of the Font Awesome set of [icons](http://fortawesome.github.io/Font-Awesome/icons/). +You may select any of the Font Awesome set of [icons](https://fontawesome.com/v4.7.0/icons/). If you use the name without the fa- prefix (eg `male`) you will get the icon inside a generic marker shape. If you use the fa- prefix (eg `fa-male`) you will get the icon on its own. There are also several special icons... diff --git a/package.json b/package.json index e1210fd..32fc36f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-red-contrib-web-worldmap", - "version": "1.4.6", + "version": "1.4.7", "description": "A Node-RED node to provide a web page of a world map for plotting things on.", "dependencies": { "cgi": "0.3.1", diff --git a/worldmap.html b/worldmap.html index b89de0e..3e7321f 100644 --- a/worldmap.html +++ b/worldmap.html @@ -35,10 +35,10 @@ - - + +
@@ -68,16 +68,20 @@
+
+ + +
-
Tip: By default ⌘⇧m - ctrl-shift-m will load the map in a new tab.
+ diff --git a/worldmap.js b/worldmap.js index 73dc7b2..361486e 100644 --- a/worldmap.js +++ b/worldmap.js @@ -19,15 +19,12 @@ module.exports = function(RED) { var path = require("path"); var express = require("express"); var sockjs = require('sockjs'); - var socket; + var sockets = {}; + // add the cgi module for serving local maps.... + RED.httpNode.use("/cgi-bin/mapserv", require('cgi')(__dirname + '/mapserv')); var WorldMap = function(n) { RED.nodes.createNode(this,n); - if (!socket) { - var fullPath = path.posix.join(RED.settings.httpNodeRoot, 'worldmap', 'leaflet', 'sockjs.min.js'); - socket = sockjs.createServer({sockjs_url:fullPath, log:function() {}, transports:"xhr-polling"}); - socket.installHandlers(RED.server, {prefix:path.posix.join(RED.settings.httpNodeRoot,'/worldmap/socket')}); - } this.lat = n.lat || ""; this.lon = n.lon || ""; this.zoom = n.zoom || ""; @@ -37,12 +34,17 @@ module.exports = function(RED) { this.showmenu = n.usermenu || "show"; this.panit = n.panit || "false"; this.layers = n.layers || "show"; + this.path = n.path || "/worldmap"; + if (!sockets[this.path]) { + var fullPath = path.posix.join(RED.settings.httpNodeRoot, this.path, 'leaflet', 'sockjs.min.js'); + sockets[this.path] = sockjs.createServer({sockjs_url:fullPath, log:function() {}, transports:"xhr-polling"}); + sockets[this.path].installHandlers(RED.server, {prefix:path.posix.join(RED.settings.httpNodeRoot,this.path,'socket')}); + } var node = this; var clients = {}; - //node.log("Serving map from "+__dirname+" as "+RED.settings.httpNodeRoot.slice(0,-1)+"/worldmap"); - RED.httpNode.use("/worldmap", express.static(__dirname + '/worldmap')); - // add the cgi module for serving local maps.... - RED.httpNode.use("/cgi-bin/mapserv", require('cgi')(__dirname + '/mapserv')); + //node.log("Serving map from "+__dirname+" as "+RED.settings.httpNodeRoot.slice(0,-1)+node;path); + RED.httpNode.use(node.path, express.static(__dirname + '/worldmap')); + var callback = function(client) { //client.setMaxListeners(0); @@ -89,20 +91,27 @@ module.exports = function(RED) { clients[c].end(); } } - socket.removeListener('connection', callback); + sockets[this.path].removeListener('connection', callback); + for (var i=0; i < RED.httpNode._router.stack.length; i++) { + var r = RED.httpNode._router.stack[i]; + if ((r.name === "serveStatic") && (r.regexp.test(node.path))) { + RED.httpNode._router.stack.splice(i, 1) + } + } node.status({}); }); - socket.on('connection', callback); + sockets[this.path].on('connection', callback); } RED.nodes.registerType("worldmap",WorldMap); var WorldMapIn = function(n) { RED.nodes.createNode(this,n); - if (!socket) { - var fullPath = path.posix.join(RED.settings.httpNodeRoot, 'worldmap', 'leaflet', 'sockjs.min.js'); - socket = sockjs.createServer({sockjs_url:fullPath, prefix:path.posix.join(RED.settings.httpNodeRoot,'/worldmap/socket')}); - socket.installHandlers(RED.server); + this.path = n.path || "/worldmap"; + if (!sockets[this.path]) { + var fullPath = path.posix.join(RED.settings.httpNodeRoot, this.path, 'leaflet', 'sockjs.min.js'); + sockets[this.path] = sockjs.createServer({sockjs_url:fullPath, prefix:path.posix.join(RED.settings.httpNodeRoot,this.path,'socket')}); + sockets[this.path].installHandlers(RED.server); } var node = this; var clients = {}; @@ -113,7 +122,7 @@ module.exports = function(RED) { node.status({fill:"green",shape:"dot",text:"connected "+Object.keys(clients).length}); client.on('data', function(message) { message = JSON.parse(message); - node.send({payload:message, topic:"worldmap", _sessionid:client.id}); + node.send({payload:message, topic:node.path.substr(1), _sessionid:client.id}); }); client.on('close', function() { delete clients[client.id]; @@ -128,10 +137,10 @@ module.exports = function(RED) { clients[c].end(); } } - socket.removeListener('connection', callback); + sockets[this.path].removeListener('connection', callback); node.status({}); }); - socket.on('connection', callback); + sockets[this.path].on('connection', callback); } RED.nodes.registerType("worldmap in",WorldMapIn); diff --git a/worldmap/css/map.css b/worldmap/css/map.css index 40aee21..45cd75e 100644 --- a/worldmap/css/map.css +++ b/worldmap/css/map.css @@ -171,3 +171,9 @@ a { -o-transform-origin:0 100%; transform-origin:0 100%; } + +.wm-red { color: #F56361; } +.wm-blue { color: #96CCE1; } +.wm-green { color: #ADD5A6; } +.wm-yellow { color: #F5EF91; } +.wm-black { color: #444444; } diff --git a/worldmap/images/world-110m-flat.json b/worldmap/images/world-110m-flat.json new file mode 100644 index 0000000..80ec8b1 --- /dev/null +++ b/worldmap/images/world-110m-flat.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]]]},{"type":"Polygon","arcs":[[3,4,5,6,7,8,9,10,11]]},{"type":"Polygon","arcs":[[12,13,14,15]]},{"type":"MultiPolygon","arcs":[[[16,17,18,19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]]]},{"type":"MultiPolygon","arcs":[[[-20,49,50,51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[-18,59]],[[60]]]},{"type":"Polygon","arcs":[[61,62,63,64,65,66]]},{"type":"Polygon","arcs":[[-64,67,68,69,70]]},{"type":"MultiPolygon","arcs":[[[71,72]],[[73]],[[74]],[[75]]]},{"type":"MultiPolygon","arcs":[[[-73,76]],[[77,78]],[[79]],[[80,81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]]]},{"type":"MultiPolygon","arcs":[[[91,92]],[[93,94,95,96,97,98]]]},{"type":"MultiPolygon","arcs":[[[-93,99]],[[100,-96,101,102]]]},{"type":"Polygon","arcs":[[-9,103,104,105,106,107,108,109,110,111,112]]},{"type":"Polygon","arcs":[[113,114,115,116]]},{"type":"Polygon","arcs":[[-4,117,118,119,-114,120]]},{"type":"Polygon","arcs":[[121,122,123,124,125,126,127,128]]},{"type":"Polygon","arcs":[[-123,129,130,131,132]]},{"type":"Polygon","arcs":[[133,134]]},{"type":"Polygon","arcs":[[-134,135]]},{"type":"MultiPolygon","arcs":[[[136]],[[137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,-67]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159,160,161]],[[162]],[[163]],[[164]],[[165]],[[166,167]]]},{"type":"MultiPolygon","arcs":[[[168]],[[169]],[[170]]]},{"type":"Polygon","arcs":[[171]]},{"type":"MultiPolygon","arcs":[[[172]],[[-148,173,174,175]],[[176]],[[177]]]},{"type":"Polygon","arcs":[[178]]},{"type":"Polygon","arcs":[[179]]},{"type":"Polygon","arcs":[[180,-78]]},{"type":"Polygon","arcs":[[181,182,183,184,185,186,187],[188]]},{"type":"Polygon","arcs":[[-189]]},{"type":"Polygon","arcs":[[-51,189,190,191,192]]},{"type":"Polygon","arcs":[[193,194,-94]]},{"type":"Polygon","arcs":[[-194,-99,195,196,197,198,199,200,201,202,203]]},{"type":"Polygon","arcs":[[-197,204,-97,-101,205]]},{"type":"Polygon","arcs":[[-198,-206,-103,206,207,208]]},{"type":"Polygon","arcs":[[-199,-209,209,210,211,212,213]]},{"type":"Polygon","arcs":[[-212,214,215,216]]},{"type":"Polygon","arcs":[[-216,217,218,219]]},{"type":"Polygon","arcs":[[-219,220,221,222]]},{"type":"Polygon","arcs":[[-222,223,224,225,226]]},{"type":"Polygon","arcs":[[-225,227,228]]},{"type":"Polygon","arcs":[[-192,229,230,-226,-229,231]]},{"type":"Polygon","arcs":[[-191,232,-230]]},{"type":"Polygon","arcs":[[-200,-214,233,234]]},{"type":"Polygon","arcs":[[-201,-235,235,236]]},{"type":"Polygon","arcs":[[-202,-237,237,238]]},{"type":"MultiPolygon","arcs":[[[-203,-239,239]],[[240,241,242,243,244,245,246,247]],[[248]]]},{"type":"Polygon","arcs":[[-208,249,-210]]},{"type":"Polygon","arcs":[[250]]},{"type":"Polygon","arcs":[[251]]},{"type":"Polygon","arcs":[[252]]},{"type":"Polygon","arcs":[[-184,253,254,255]]},{"type":"Polygon","arcs":[[-183,256,257,-254]]},{"type":"Polygon","arcs":[[-182,258,259,260,-257]]},{"type":"Polygon","arcs":[[261,262,263,264,265,266,267]]},{"type":"Polygon","arcs":[[-264,268,269,270,271,272,273]]},{"type":"Polygon","arcs":[[-14,274,-269,-263,275]]},{"type":"Polygon","arcs":[[276,277,278,279,280]]},{"type":"Polygon","arcs":[[-132,281,282,-280,283,-271,284,285]]},{"type":"Polygon","arcs":[[-281,-283,286,287]]},{"type":"Polygon","arcs":[[-131,288,289,290,291,292,-287,-282]]},{"type":"Polygon","arcs":[[-278,293,294,295]]},{"type":"Polygon","arcs":[[-295,296,297,298]]},{"type":"Polygon","arcs":[[-273,299,-298,300,301,302]]},{"type":"Polygon","arcs":[[-265,-274,-303,303,304,305,306]]},{"type":"Polygon","arcs":[[-266,-307,307]]},{"type":"Polygon","arcs":[[-302,308,309,-304]]},{"type":"Polygon","arcs":[[-305,-310,310]]},{"type":"Polygon","arcs":[[-272,-284,-279,-296,-299,-300]]},{"type":"Polygon","arcs":[[-109,311,-289,-130,-122,312]]},{"type":"Polygon","arcs":[[-108,313,314,315,-290,-312]]},{"type":"Polygon","arcs":[[-291,-316,316,317]]},{"type":"Polygon","arcs":[[-292,-318,318]]},{"type":"Polygon","arcs":[[-8,319,320,-255,-258,-261,321,-104]]},{"type":"Polygon","arcs":[[-7,322,-320]]},{"type":"Polygon","arcs":[[-6,323,-187,324,-185,-256,-321,-323]]},{"type":"Polygon","arcs":[[-186,-325]]},{"type":"MultiPolygon","arcs":[[[-107,325,-314]],[[-105,-322,-260,326]]]},{"type":"Polygon","arcs":[[-10,-113,327]]},{"type":"Polygon","arcs":[[328,329,330,331,332,333,334]]},{"type":"Polygon","arcs":[[-334,335,336]]},{"type":"Polygon","arcs":[[337]]},{"type":"Polygon","arcs":[[-330,338]]},{"type":"Polygon","arcs":[[-268,339]]},{"type":"Polygon","arcs":[[340,341,342]]},{"type":"Polygon","arcs":[[-13,343,344,-341,345,-285,-270,-275]]},{"type":"Polygon","arcs":[[-329,346,347,348,349,-331,-339]]},{"type":"Polygon","arcs":[[350,351,352,353,354]]},{"type":"Polygon","arcs":[[355,356]]},{"type":"Polygon","arcs":[[357,358,359]]},{"type":"Polygon","arcs":[[-348,360,361,362,363,-360,364]]},{"type":"MultiPolygon","arcs":[[[-354,365,366,367]],[[-352,368]]]},{"type":"MultiPolygon","arcs":[[[369]],[[370]]]},{"type":"Polygon","arcs":[[371,372,373,374]]},{"type":"Polygon","arcs":[[-372,375,376,377,378,379]]},{"type":"Polygon","arcs":[[-373,-380,380,381,382]]},{"type":"Polygon","arcs":[[-379,383,384,385,386,-381]]},{"type":"Polygon","arcs":[[-374,-383,387,388]]},{"type":"MultiPolygon","arcs":[[[389,389,389]],[[-150,390,391,392,393]]]},{"type":"Polygon","arcs":[[-392,394]]},{"type":"Polygon","arcs":[[-152,395]]},{"type":"Polygon","arcs":[[-386,396,397,398,399,400,401,402,403]]},{"type":"Polygon","arcs":[[-385,404,-397]]},{"type":"Polygon","arcs":[[-403,405]]},{"type":"Polygon","arcs":[[-401,406]]},{"type":"Polygon","arcs":[[-399,407,408,409,410]]},{"type":"Polygon","arcs":[[-70,411,412,-410,413,414]]},{"type":"Polygon","arcs":[[-69,415,416,-412]]},{"type":"Polygon","arcs":[[-63,417,-416,-68]]},{"type":"Polygon","arcs":[[-65,-71,-415,418,419]]},{"type":"Polygon","arcs":[[-363,420,421,422,423,424,-419,-414,-409,425]]},{"type":"Polygon","arcs":[[-335,-337,426,427,-361,-347]]},{"type":"Polygon","arcs":[[-423,428,429,430,431]]},{"type":"Polygon","arcs":[[-175,432,433]]},{"type":"Polygon","arcs":[[-143,434,435,436,437]]},{"type":"Polygon","arcs":[[-142,438,-167,439,440,441,442,443,444,445,-435]]},{"type":"Polygon","arcs":[[-436,-446,446,447,448,449,-160,450]]},{"type":"Polygon","arcs":[[451,452,453,454,455,456,457]]},{"type":"Polygon","arcs":[[-444,458,459,460,461,-452,462]]},{"type":"Polygon","arcs":[[-442,463]]},{"type":"Polygon","arcs":[[-441,464,465,466,-459,-443,-464]]},{"type":"Polygon","arcs":[[-437,-451,-162,467,468]]},{"type":"Polygon","arcs":[[-144,-438,-469,469,470]]},{"type":"Polygon","arcs":[[-145,-471,471]]},{"type":"Polygon","arcs":[[-449,472,-456,473,-241,474,475,476,477,478,479]]},{"type":"Polygon","arcs":[[-466,480,481,482,483,484]]},{"type":"MultiPolygon","arcs":[[[485]],[[-483,486,487,488,489]]]},{"type":"MultiPolygon","arcs":[[[-362,-428,490,491,-430,-421]],[[-482,492,-487]]]},{"type":"Polygon","arcs":[[-489,493,494,495,496]]},{"type":"Polygon","arcs":[[-461,497,498,499,500,501]]},{"type":"Polygon","arcs":[[-455,502,-242,-474]]},{"type":"Polygon","arcs":[[-475,-248,503]]},{"type":"Polygon","arcs":[[-476,-504,-247,504,505]]},{"type":"Polygon","arcs":[[-477,-506,506]]},{"type":"Polygon","arcs":[[507,508]]},{"type":"Polygon","arcs":[[-508,509,-245,510]]},{"type":"Polygon","arcs":[[511,512]]},{"type":"Polygon","arcs":[[513]]},{"type":"MultiPolygon","arcs":[[[514]],[[515]],[[516]],[[517]],[[518]]]},{"type":"MultiPolygon","arcs":[[[519]],[[520]]]},{"type":"MultiPolygon","arcs":[[[521]],[[522]]]},{"type":"Polygon","arcs":[[523]]},{"type":"MultiPolygon","arcs":[[[524]],[[-62,-153,-396,-151,-394,525,-388,-382,-387,-404,-406,-402,-407,-400,-411,-413,-417,-418]]]},{"type":"Polygon","arcs":[[526]]},{"type":"MultiPolygon","arcs":[[[-454,527,528,-243,-503]],[[529]],[[530]]]},{"type":"MultiPolygon","arcs":[[[-479,531]],[[532]]]},{"type":"MultiPolygon","arcs":[[[-513,533]],[[534]]]},{"type":"Polygon","arcs":[[535]]},{"type":"MultiPolygon","arcs":[[[-139,536,-424,-432,537]],[[-422,-429]]]},{"type":"Polygon","arcs":[[-140,-538,-431,-492,538]]},{"type":"MultiPolygon","arcs":[[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]]]},{"type":"MultiPolygon","arcs":[[[-377,546]],[[-82,547,548,549]]]},{"type":"Polygon","arcs":[[-549,550]]},{"type":"Polygon","arcs":[[-453,-462,-502,551,-528]]},{"type":"Polygon","arcs":[[-147,552,-433,-174]]},{"type":"Polygon","arcs":[[-445,-463,-458,553,-447]]},{"type":"Polygon","arcs":[[-448,-554,-457,-473]]},{"type":"Polygon","arcs":[[-127,554,555,556]]},{"type":"MultiPolygon","arcs":[[[557]],[[558]],[[559]]]},{"type":"Polygon","arcs":[[-196,-98,-205]]},{"type":"Polygon","arcs":[[-367,560,561]]},{"type":"Polygon","arcs":[[-349,-365,-359,562,-357,563,-355,-368,-562,564]]},{"type":"MultiPolygon","arcs":[[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]]]},{"type":"Polygon","arcs":[[573,574]]},{"type":"Polygon","arcs":[[-575,575]]},{"type":"Polygon","arcs":[[-344,-16,576]]},{"type":"Polygon","arcs":[[-125,577,578,-332,579]]},{"type":"Polygon","arcs":[[-124,-133,-286,-346,-343,580,-578]]},{"type":"Polygon","arcs":[[-115,-120,581,-128,-557,582,583]]},{"type":"Polygon","arcs":[[-556,584,585,-583]]},{"type":"Polygon","arcs":[[-116,-584,-586,586]]},{"type":"Polygon","arcs":[[-12,587,-111,588,-118]]},{"type":"Polygon","arcs":[[-11,-328,-112,-588]]},{"type":"Polygon","arcs":[[-499,589,590]]},{"type":"Polygon","arcs":[[-484,-490,-497,591,592]]},{"type":"Polygon","arcs":[[-460,-467,-485,-593,593,594,-590,-498]]},{"type":"Polygon","arcs":[[-495,595,-500,-591,-595,596]]},{"type":"Polygon","arcs":[[-496,-597,-594,-592]]},{"type":"Polygon","arcs":[[597]]},{"type":"Polygon","arcs":[[-110,-313,-129,-582,-119,-589]]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[4,323,187,258,326,105,325,314,316,318,292,287,276,293,296,300,308,310,305,307,266,339,261,275,14,576,344,341,580,578,332,335,426,490,538,140,438,167,439,464,480,492,487,493,595,500,551,528,243,510,508,509,245,504,506,477,531,479,449,160,467,469,471,145,552,433,175,148,390,394,392,525,388,374,375,546,377,383,404,397,407,425,363,357,562,355,563,350,368,352,365,560,564,349,579,125,554,584,586,116,120],[424,419,65,137,536]],[[18,49,189,232,230,226,222,219,216,212,233,235,237,239,203,194,94,101,206,249,210,214,217,220,223,227,231,192,51,16,59]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[60]],[[71,76]],[[73]],[[74]],[[75]],[[78,180]],[[79]],[[549,80,547,550]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91,99]],[[134,135]],[[136]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[162]],[[163]],[[164]],[[165]],[[168]],[[169]],[[170]],[[171]],[[172]],[[176]],[[177]],[[178]],[[179]],[[248]],[[250]],[[251]],[[252]],[[337]],[[369]],[[370]],[],[[485]],[[511,533]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[526]],[[529]],[[530]],[[532]],[[534]],[[535]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[557]],[[558]],[[559]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573,575]],[[597]]]}]}},"arcs":[[[999999,425769],[0,-2810],[-1766,-1418],[-1775,-1213],[-357,2147],[1389,1182],[880,316],[1629,1796]],[[994792,417490],[689,950],[957,-1662],[-459,-3007],[-1723,-791],[-1531,712],[-268,2532],[1072,1978],[1263,-712]],[[574,426036],[-344,-2770],[-230,-307],[0,2810],[574,267]],[[594176,512827],[470,-632],[10072,-11732],[189,-3341],[3987,-5757]],[[608894,491365],[-1282,-7096],[165,-3264],[1778,-2098],[83,-1497],[-764,-3478],[159,-1750],[-182,-2751],[970,-3610],[1150,-5678],[1019,-1260]],[[611990,458883],[-2210,-3339],[-3037,-2236],[-1667,94],[-990,-1727],[-1933,-148],[-726,-728],[-3338,1622],[-2090,-465]],[[595999,451956],[-777,7832],[-942,2685],[-559,1593],[-2723,1074]],[[590998,465140],[-1577,1729],[-1765,969],[-1107,965],[-1161,1466]],[[585388,470269],[-1500,7256],[-1611,3225],[-555,3340],[277,2995],[-500,5298]],[[581499,492383],[1149,274],[1008,2086],[1081,3004],[685,1205],[-25,1872],[-599,1305],[-161,2268]],[[584637,504397],[802,729],[161,3388],[-1103,3250]],[[584497,511764],[974,691],[3046,-74],[5659,446]],[[475928,677568],[2,-386],[-54,-1116]],[[475876,676066],[-8,-8723],[-9117,302],[90,-14736],[-2603,-517],[-679,-2958],[526,-8316],[-10878,36],[-606,-1921]],[[452601,639233],[120,2433]],[[452721,641666],[48,-9],[6256,460],[333,2075],[1138,2587],[917,7952],[3862,6215],[1306,7260],[868,422],[905,4488],[2336,618],[1006,-748],[1261,0],[895,1311],[1717,185],[-63,3086],[422,0]],[[158778,800482],[-373,15],[-5378,5655],[-1984,2488],[-5031,2385],[-1548,5097],[396,3535],[-3554,2452],[-487,4643],[-3361,4181],[-58,2967]],[[137400,833900],[1544,2777],[-77,3633],[-4722,3664],[-2841,6570],[-1736,4131],[-2543,2596],[-1872,2358],[-1475,2979],[-2788,-1866],[-2703,-3218],[-2467,3784],[-1940,2522],[-2705,1594],[-2736,170],[15,32789],[18,21377]],[[108372,919760],[5182,-1388],[4373,-2770],[2896,-530],[2439,2402],[3364,1799],[4126,-703],[4161,2529],[4546,1435],[1908,-2387],[2073,1346],[620,2712],[1920,-614],[4697,-5164],[3698,3904],[376,-4370],[3413,945],[1048,1681],[3365,-333],[4248,-2418],[6501,-2111],[3823,-978],[2721,371],[3747,-2920],[-3909,-2858],[5022,-1235],[7498,679],[2366,1008],[2961,-3453],[3021,2913],[-2835,2443],[1794,1972],[3381,265],[2223,576],[2242,-1375],[2791,-3129],[3102,460],[4908,-2597],[4312,915],[4052,-139],[-320,3584],[2470,1006],[4304,-1954],[-17,-5448],[1768,4592],[2235,-155],[1256,5789],[-2976,3552],[-3242,2326],[223,6364],[3284,4180],[3663,-924],[2811,-2542],[3774,-6493],[-2465,-2829],[5166,-1165],[-12,-5890],[3712,4514],[3321,-3707],[-828,-4271],[2687,-3886],[2901,4162],[2026,4971],[152,6321],[3947,-442],[4107,-848],[3728,-2857],[167,-2859],[-2067,-3070],[1959,-3083],[-354,-2801],[-5439,-4027],[-3863,-888],[-2873,1733],[-828,-2891],[-2677,-4856],[-811,-2519],[-3221,-3897],[-3977,-381],[-2193,-2434],[-183,-3743],[-3232,-720],[-3399,-4667],[-3012,-6485],[-1077,-4540],[-154,-6689],[4082,-960],[1251,-5392],[1299,-4369],[3887,1138],[5162,-2494],[2777,-2189],[1987,-2721],[3481,-1585],[2943,-2426],[4587,-332],[3021,-556],[-454,-4988],[865,-5789],[2012,-6445],[4132,-5468],[2139,1875],[1503,5921],[-1451,9095],[-1959,3031],[4447,2699],[3147,4037],[1540,4013],[-227,3849],[-1887,4892],[-3374,4334],[3278,6035],[-1211,5213],[-928,8994],[1934,1330],[4762,-1567],[2856,-560],[2301,1512],[2587,-1950],[3421,-3339],[842,-2235],[4954,-437],[-83,-4838],[923,-7279],[2537,-900],[2014,-3392],[4022,3198],[2657,6354],[1838,2677],[2163,-5142],[3618,-7346],[3072,-6908],[-1117,-3617],[3695,-3248],[2496,-3290],[4430,-1489],[1783,-1837],[1101,-4873],[2163,-765],[1116,-2172],[203,-6472],[-2016,-2165],[-1994,-2021],[-4578,-2047],[-3495,-4731],[-4696,-934],[-5941,1212],[-4169,42],[-2877,-399],[-2326,-4132],[-3541,-2552],[-4007,-7622],[-3197,-5316],[2359,946],[4459,7567],[5827,4798],[4156,574],[2459,-2824],[-2624,-3868],[881,-6207],[906,-4345],[3608,-2876],[4591,833],[2785,6474],[193,-4177],[1794,-2086],[-3437,-3773],[-6152,-3427],[-2755,-2330],[-3104,-4148],[-2109,423],[-107,4875],[4823,4762],[-4446,-189],[-3087,-701]],[[313507,778239],[-1817,3255],[3,7853],[-1233,1661],[-1863,-978],[-923,1513],[-2119,-4346],[-847,-4481],[-986,-2620],[-1180,-891],[-890,-290],[-277,-1421],[-5119,-5],[-4220,-39],[-1254,-1060],[-2935,-4147],[-347,-449],[-889,-2244],[-2550,2],[-2729,-23],[-1254,-914],[449,-1131],[250,-1756],[-53,-584],[-3634,-2865],[-2862,-905],[-3226,-3075],[-697,0],[-944,908],[-311,823],[61,601],[611,2016],[1306,3167],[812,3404],[-556,5004],[-592,5226],[-2895,2703],[343,1024],[-407,704],[-763,0],[-559,913],[-139,1364],[-541,-596],[-745,177],[170,571],[-654,567],[-269,1514],[-2156,1844],[-2249,1918],[-2717,2227],[-2606,2090],[-2486,-1630],[-908,-57],[-3417,1497],[-2250,-748],[-2694,1785],[-2836,917],[-1940,354],[-863,975],[-493,3162],[-941,-28],[-8,-2213],[-5749,4],[-9504,-4],[-9439,0],[-8338,0],[-8334,0],[-8194,0],[-8467,0],[-2731,0],[-8247,0],[-7888,0]],[[266684,877955],[2064,2657],[3816,-55],[-59,-1116],[-3251,-3176],[-1962,132],[-608,1558]],[[278400,937560],[-3056,3054],[117,2073],[1336,383],[6357,-620],[4790,-3164],[246,-1591],[-2953,168],[-2992,122],[-3040,-774],[-805,349]],[[276901,875840],[1073,1728],[1137,-126],[706,-1181],[-1088,-3026],[-1228,489],[-729,1719],[129,397]],[[239964,950098],[-1511,-2233],[-4033,429],[-3367,1502],[1478,2593],[3994,1551],[2425,-2020],[1014,-1822]],[[239333,964725],[-1265,-165],[-5206,367],[-741,1610],[5594,-84],[1950,-1069],[-332,-659]],[[231238,971900],[3319,-2002],[-752,-2081],[-4110,-1188],[-2263,1338],[-1190,2161],[-220,2383],[3597,-230],[1619,-381]],[[255138,946713],[-4485,710],[-7382,1856],[-961,3162],[-338,2855],[-2788,2514],[-5747,704],[-3219,1783],[1045,2363],[5725,-366],[3084,-1852],[5469,13],[2398,-1894],[-633,-2163],[3188,-1303],[1764,-1368],[3747,-254],[4053,-482],[4415,1248],[5656,491],[4514,-405],[2975,-2172],[621,-2383],[-1733,-1531],[-4142,-1237],[-3556,700],[-7968,-887],[-5702,-102]],[[190932,968370],[3917,-902],[-924,-1723],[-5178,-1658],[-4120,1860],[2249,1836],[4056,587]],[[191767,972122],[3613,-1166],[-3384,-1123],[-4613,6],[45,821],[2850,1724],[1489,-262]],[[345555,813826],[-1483,-3628],[-1839,-5038],[1814,1946],[1865,-1234],[-975,-2008],[2465,-1579],[1282,1403],[2770,-1771],[-860,-4217],[1944,984],[354,-3055],[863,-3580],[-1170,-5068],[-1256,-215],[-1826,1088],[603,4711],[-774,732],[-3223,-4995],[-1658,200],[1962,2706],[-2666,1399],[-2984,-344],[-5391,176],[-426,1705],[1730,2028],[-1209,1564],[2333,3470],[2870,9172],[1722,3277],[2410,1985],[1289,-252],[-536,-1562]],[[266992,893255],[3042,-1974],[3182,-1795],[246,-2738],[2045,448],[1983,-1909],[-2465,-1812],[-4323,1385],[-1560,2592],[-2755,-3065],[-3952,-2979],[-954,3368],[-3765,-553],[2415,2849],[355,4532],[947,5275],[2008,-470],[515,-2532],[1421,888],[1615,-1510]],[[281192,934964],[2628,2289],[6163,-2913],[3826,-2745],[360,-2512],[5158,1302],[2895,-3668],[6705,-2275],[2420,-2321],[2628,-5390],[-5101,-2683],[6543,-3760],[4410,-1265],[3992,-5293],[4370,-382],[-865,-4042],[-4876,-6689],[-3417,2461],[-4368,5540],[-3594,-722],[-351,-3299],[2922,-3348],[3771,-2650],[1144,-1530],[1807,-5700],[-956,-4139],[-3504,1560],[-6967,4611],[3927,-4963],[2892,-3477],[452,-2011],[-7532,2299],[-5962,3343],[-3366,2806],[970,1624],[-4145,2960],[-4045,2794],[45,-1670],[-8032,-919],[-2350,1978],[1829,4240],[5220,102],[5718,736],[-928,2056],[969,2873],[3594,5609],[-764,2547],[-1071,1973],[-4254,2794],[-5628,1958],[1779,1458],[-2940,3580],[-2448,328],[-2191,1961],[-1487,-1700],[-5036,-740],[-10109,1286],[-5876,1690],[-4504,868],[-2311,2023],[2905,2627],[-3946,25],[-880,5831],[2135,5151],[2856,2352],[7173,1531],[-2045,-3722],[2189,-3590],[2567,4643],[7040,2365],[4766,-5957],[-414,-3770],[5495,1671]],[[237490,945231],[5788,-201],[5306,-1401],[-4151,-5128],[-3312,-1119],[-2980,-4304],[-3169,215],[-1733,5058],[43,2863],[1452,2448],[2756,1569]],[[158736,956643],[4715,4307],[5705,3730],[4260,-80],[3810,847],[-381,-4425],[-2140,-1998],[-2595,-281],[-5164,-2465],[-4446,-882],[-3764,1247]],[[131361,829507],[2667,461],[-832,-6539],[2418,-4631],[-1108,11],[-1674,2634],[-1027,2651],[-1401,1793],[-514,2532],[165,1837],[1306,-749]],[[206966,974985],[5452,-784],[7512,-2102],[2125,-2739],[1081,-2403],[-4536,642],[-4572,1867],[-6184,214],[2682,1711],[-3358,1387],[-202,2207]],[[156917,797661],[-1397,-802],[-4562,2616],[-833,2044],[-2486,2016],[-500,1641],[-2860,1036],[-1070,3134],[240,1333],[2916,-1256],[1704,-873],[2611,-610],[945,-1987],[1373,-2734],[2773,-2377],[1146,-3181]],[[162395,947039],[3967,-1195],[7094,-320],[2698,-1669],[2982,-2423],[-3492,-1453],[-6811,-4048],[-3444,-4031],[0,-2513],[-7312,-2776],[-1466,2524],[-6414,3045],[1192,2439],[1924,4206],[2409,3786],[-2716,3529],[9389,899]],[[200501,955082],[2474,964],[2911,-250],[489,-2822],[-1690,-2731],[-9407,-894],[-7009,-2494],[-4224,-130],[-354,1877],[5769,2547],[-12550,-686],[-3884,1029],[3790,5626],[2615,1611],[7817,-1943],[4935,-3410],[4853,-438],[-3973,5509],[2545,2098],[2868,-667],[937,-2745],[1088,-2051]],[[204104,939133],[3111,-2323],[1744,-5611],[861,-4062],[4665,-2852],[5013,-2726],[-302,-2533],[-4561,-464],[1772,-2213],[-936,-2113],[-5027,905],[-4778,1555],[-3229,-350],[-5215,-1953],[-7039,-864],[-4942,-544],[-1505,2718],[-3792,1569],[-2466,-644],[-3423,4560],[1848,614],[4288,983],[3916,-259],[3626,1002],[-5372,1346],[-5936,-458],[-3939,116],[-1465,2122],[6442,2304],[-4285,-81],[-4850,1517],[2331,4315],[1934,2293],[7437,3505],[2839,-1112],[-1387,-2700],[6182,1743],[3863,-2908],[3138,2941],[2539,-1887],[2273,-5658],[1395,2387],[-1973,5898],[2444,843],[2761,-921]],[[221004,937001],[-3060,3767],[3288,2787],[3313,-1212],[4955,729],[722,-1670],[-2593,-2761],[4204,-2480],[-500,-5183],[-4555,-2229],[-2675,481],[-1922,2199],[-6903,4444],[55,1843],[5671,-715]],[[203889,942150],[3722,231],[2111,-1267],[-2444,-3801],[-4334,4031],[945,806]],[[226389,960118],[2123,-2669],[87,-2955],[-1266,-4281],[-4580,-591],[-2986,921],[58,3360],[-4553,-443],[-176,4450],[2988,-180],[4184,1964],[3907,-333],[214,757]],[[233287,982476],[1925,1756],[2848,403],[-1214,1320],[6460,293],[3547,-3075],[4675,-1233],[4555,-1090],[2195,-3801],[3349,-1861],[-3815,-1713],[-5133,-4331],[-4914,-414],[-5756,737],[-2985,2347],[43,2089],[2196,1534],[-5080,-44],[-3061,1915],[-1760,2608],[1925,2560]],[[245591,989916],[4131,1098],[3244,188],[5450,933],[4084,2146],[3444,-301],[3000,-1612],[2111,3110],[3667,921],[4981,637],[8491,239],[1476,-622],[8020,974],[6016,-365],[6016,-366],[7424,-451],[5965,-737],[5083,-1563],[-122,-1537],[-6778,-2499],[-6720,-1166],[-2512,-1289],[6048,29],[-6555,-3493],[-4527,-1631],[-4751,-4704],[-5730,-955],[-1770,-1174],[-8410,-617],[3829,-722],[-1920,-1029],[2297,-2840],[-2639,-1975],[-4291,-1630],[-1317,-2254],[-3880,-1721],[388,-1303],[4747,223],[60,-1406],[-7423,-3455],[-7258,1589],[-8160,-892],[-4134,696],[-5251,302],[-349,2763],[5135,1303],[-1368,4156],[1695,404],[7426,-2485],[-3788,3693],[-4505,1105],[2250,2228],[4926,1371],[788,2008],[-3923,2250],[-1179,2967],[7592,-248],[2194,-624],[4335,2099],[-6255,665],[-9720,-367],[-4910,1955],[-2315,2328],[-3244,1688],[-609,1965]],[[291066,906700],[-1805,-1701],[-3114,-288],[-693,2818],[1180,3227],[2546,799],[2168,-1595],[31,-2466],[-313,-794]],[[232618,918482],[1694,-2202],[-1728,-2020],[-3744,1745],[-2262,-629],[-3793,2587],[2444,1786],[1942,2496],[2947,-1633],[1667,-1036],[833,-1094]],[[320780,805510],[961,485],[3652,-1445],[2841,-2406],[81,-1057],[-1352,-103],[-3600,1806],[-2583,2720]],[[322181,789172],[973,-2799],[2014,-772],[2576,157],[-1366,-2360],[-1029,-375],[-3524,2444],[-694,1928],[1050,1777]],[[313507,778239],[480,-1888],[-2967,-2790],[-2854,-1988],[-2933,-1704],[-1471,-3420],[-470,-1296],[-28,-3053],[916,-3053],[1153,-144],[-292,2102],[834,-1279],[-223,-1645],[-1875,-934],[-1334,112],[-2054,-1005],[-1209,-288],[-1615,-284],[-2315,-1667],[4080,1084],[822,-1091],[-3888,-1727],[-1770,-12],[83,707],[-846,-1597],[817,-264],[-599,-4137],[-2022,-4432],[-206,1479],[-610,299],[-911,1440],[577,-3101],[690,-1025],[42,-2176],[-891,-2238],[-1563,-4599],[-253,229],[859,3918],[-1419,2201],[-326,4785],[-535,-2491],[593,-3653],[-1835,903],[1912,-1855],[119,-5480],[797,-398],[288,-1992],[391,-5762],[-1766,-4274],[-2874,-1708],[-1826,-3378],[-1387,-369],[-1406,-2116],[-397,-1932],[-3050,-3738],[-1565,-2742],[-1309,-3414],[-429,-4091],[491,-4000],[927,-4926],[1235,-4077],[15,-2488],[1315,-6681],[-87,-3883],[-121,-2240],[-693,-3516],[-830,-727],[-1367,699],[-439,2526],[-1055,1325],[-1473,4952],[-1292,4406],[-417,2253],[570,3823],[-777,3167],[-2166,4818],[-1084,883],[-2803,-2613],[-497,287],[-1348,2687],[-1741,1424],[-3140,-723],[-2465,636],[-2119,-396],[-1148,-899],[500,-1530],[-45,-2336],[590,-1138],[-529,-757],[-1031,850],[-1043,-1093],[-2015,179],[-2074,3044],[-2423,-718],[-2020,1333],[-1728,-404],[-2338,-1346],[-2529,-4269],[-2760,-2483],[-1517,-2750],[-638,-2591],[-28,-3974],[139,-2764],[527,-1958]],[[230166,667280],[-1083,-173],[-1972,1267],[-2167,1785],[-778,2707],[-611,4031],[-1639,3283],[-960,3375],[-1394,3942],[-1958,2296],[-2271,-111],[-1750,-4550],[-2305,1728],[-1436,1739],[-692,3166],[-921,3008],[-1650,2533],[-1421,1820],[-1013,2042],[-4812,2],[-5,-2376],[-2203,-2],[-5524,-42],[-6337,4057],[-4195,2800],[260,1126],[-3527,-625],[-3157,-443]],[[174645,705665],[-467,2942],[-1800,3311],[-1297,689],[-303,1652],[-1559,290],[-994,1557],[-2580,568],[-709,930],[-337,3158],[-2695,5785],[-2314,8006],[99,1334],[-1226,1903],[-2150,4825],[-383,4696],[-1480,3145],[609,4773],[-97,4939],[-887,4414],[1086,5427],[337,5226],[338,5226],[-502,7725],[-878,4926],[-810,2674],[337,1124],[4017,-1956],[1479,-5437],[688,1521],[-445,4722],[-944,4722]],[[68327,633935],[494,-500],[450,-771],[708,-2018],[-66,-319],[-1086,-1230],[-888,-900],[-406,-963],[-690,824],[79,1610],[-459,2097],[138,640],[482,939],[-192,1133],[161,537],[212,-107],[1063,-972]],[[66679,637875],[-233,-691],[-931,-412],[-478,1212],[-319,469],[-25,359],[272,494],[987,-547],[727,-884]],[[64560,640253],[-86,-623],[-1489,167],[209,702],[1366,-246]],[[61041,643363],[232,-370],[802,-1904],[-150,-332],[-199,74],[-967,202],[-353,1306],[-108,230],[743,794]],[[57317,646231],[58,-1342],[-330,-570],[-935,1050],[143,420],[424,564],[640,-122]],[[37589,866042],[2204,-521],[265,-2210],[-1705,-895],[-1821,1076],[-1686,1565],[2743,985]],[[74365,852133],[1844,-389],[1177,-1787],[-2404,-2737],[-2774,-2195],[-1420,1487],[-430,2697],[2523,2047],[1484,877]],[[137400,833900],[-1527,2166],[-2449,1836],[-785,5023],[-3581,4658],[-1497,5438],[-2667,372],[-4417,141],[-3255,1658],[-5744,5976],[-2659,1093],[-4859,2055],[-3846,-491],[-5463,2646],[-3302,2453],[-3083,-1218],[573,-4001],[-1536,-369],[-3214,-1201],[-2445,-1944],[-3079,-1223],[-397,3393],[1249,5649],[2953,1772],[-762,1445],[-3541,-3209],[-1896,-3833],[-4002,-4097],[2032,-2796],[-2625,-4137],[-2986,-2410],[-2780,-1757],[-688,-2550],[-4337,-2974],[-878,-2703],[-3250,-2462],[-1906,443],[-2593,-1606],[-2819,-1961],[-2310,-1926],[-4767,-1645],[-435,968],[3039,2691],[2717,1777],[2961,3150],[3446,651],[1370,2361],[3850,3447],[620,1153],[2051,2034],[479,4367],[1413,3401],[-3203,-1746],[-896,991],[-1504,-2094],[-1814,2921],[-749,-2067],[-1038,2872],[-2777,-2306],[-1706,5],[-239,3428],[502,2112],[-1788,2051],[-3612,-1104],[-2344,2703],[-1901,1382],[-12,3262],[-2140,2454],[1074,3311],[2265,3214],[991,2956],[2248,421],[1905,-921],[2241,2778],[2017,-496],[2117,1787],[-517,2630],[-1554,1037],[2056,2222],[-1706,-66],[-2948,-1254],[-846,-1272],[-2191,1270],[-3929,-646],[-4068,1381],[-1165,2316],[-3516,3347],[3904,2409],[6196,2812],[2284,0],[-378,-2876],[5863,224],[-2255,3567],[-3417,2193],[-1976,2879],[-2665,2456],[-3817,1821],[1555,3018],[4928,187],[3506,2624],[661,2804],[2838,2737],[2706,659],[5265,2556],[2554,-385],[4275,3070],[4203,-1210],[2010,-2599],[1234,1115],[4694,-346],[-166,-1324],[4250,-979],[2833,576],[5852,-1820],[5342,-541],[2139,-749],[3696,936],[4214,-1731],[3018,-806]],[[22968,885613],[1714,-1096],[1732,592],[2246,-1520],[2758,-769],[-229,-627],[-2104,-1219],[-2114,1252],[-1058,1045],[-2449,-334],[-662,507],[166,2169]],[[742666,801720],[-2115,-3834],[-2307,-538],[-132,-5775],[-1545,-2603],[-5511,1895],[-2004,-10310],[-1422,-1282],[-5503,-2301],[2501,-10004],[-1906,-1499],[222,-3283]],[[722944,762186],[-1712,845],[-1393,2069],[-4122,603],[-4606,157],[-1009,-634],[-3956,2421],[-1576,-1192],[-432,-3400],[-4570,1984],[-1829,-813],[-622,-2523]],[[697117,761703],[-1593,-1064],[-3664,-4015],[-1215,-4121],[-1035,-36],[-761,2728],[-3533,186],[-565,4718],[-1353,40],[207,5777],[-3326,4206],[-4764,-449],[-3257,-839],[-2652,5191],[-2273,2178],[-4306,4123],[-519,500],[-7151,-3403],[110,-21234]],[[655467,756189],[-1425,-281],[-1944,4516],[-1878,1613],[-3153,-1198],[-1227,-1917]],[[645840,758922],[-156,1405],[682,2400],[-529,2006],[-3220,1962],[-1253,5172],[-1534,1457],[-93,1876],[2703,-547],[106,4211],[2363,935],[2426,-860],[500,5618],[-495,3561],[-2779,-278],[-2362,1405],[-3216,-2532],[-2592,-1208]],[[636391,785505],[-1410,932],[282,2963],[-1771,3848],[-2061,-161],[-2358,3906],[1603,4365],[-811,1175],[2216,6327],[2857,-3340],[346,4206],[5734,6264],[4339,149],[6123,-3988],[3289,-2329],[2947,2429],[4404,116],[3552,-2985],[807,1709],[3902,-248],[696,2727],[-4501,3961],[2666,2805],[-520,1569],[2666,1498],[-2005,3944],[1274,1966],[10394,2004],[1356,1422],[6951,2126],[2497,2389],[4992,-1241],[875,-5969],[2900,1402],[3568,-1964],[-230,-3143],[2664,328],[6962,5435],[-1017,-1806],[3544,-4449],[6207,-14626],[1481,3015],[3826,-3317],[3992,1479],[1533,-1036],[1337,-3327],[1942,-1118],[1183,-2445],[3578,771],[1474,-3523]],[[697117,761703],[825,-567],[-2332,-3730],[2050,-2168],[1979,1436],[3292,-3034],[-3557,-4148],[-2113,568]],[[697261,750060],[-1147,-149],[-398,1601],[579,2670],[-3714,-1338],[-883,-3695],[-1320,-3183],[-2319,271],[-720,-2536],[2038,-1374],[600,-4288],[-1561,-5828]],[[688416,732211],[-2095,1216],[-1548,38]],[[684773,733465],[77,3524],[-3695,2465],[-2905,2820],[-1812,2712],[-3177,3977],[-1365,5937],[-932,1045],[-3004,-265],[-1062,1180],[-297,4595],[-3743,3043],[-2341,-3346],[-2373,-1984],[456,-2900],[-3133,-79]],[[891666,503324],[4820,-3968],[5135,-3295],[1915,-2951],[1546,-2895],[422,-3393],[4629,-3559],[675,-3054],[-2556,-620],[613,-3838],[2480,-3778],[1804,-6108],[1591,192],[-111,-2551],[2144,-979],[-833,-1086],[2952,-2423],[-308,-1665],[-1839,-401],[-684,1492],[-2387,647],[-2805,867],[-2160,3674],[-1577,3167],[-1443,5040],[-3623,2518],[-2353,-1642],[-1696,-1902],[354,-4247],[-2182,-1980],[-1556,963],[-2873,240]],[[891760,465789],[-47,18768],[-47,18767]],[[923999,497221],[1056,-1843],[333,-2995],[-869,-1534],[-524,3399],[-646,2225],[-1258,1887],[-1580,2457],[-2006,1693],[772,1391],[1500,-1613],[944,-1267],[1167,-1382],[1111,-2418]],[[920281,484662],[-1520,-1400],[-1425,-1347],[-1476,7],[-2277,1673],[-1587,1606],[230,1782],[2491,-841],[1520,450],[418,2761],[399,143],[270,-3057],[1585,439],[784,1971],[1550,2054],[-305,3393],[1663,110],[561,-946],[-55,-3194],[-933,-3516],[-1455,-473],[-438,-1615]],[[929888,487546],[841,-1306],[1347,-3651],[1312,-1954],[-389,-1613],[-778,-575],[-1203,2211],[-1216,3658],[-597,4386],[384,557],[299,-1713]],[[891760,465789],[-2474,4727],[-2821,1158],[-684,-1641],[-3519,-177],[1179,4687],[1749,1599],[-724,6262],[-1334,4834],[-5385,4877],[-2291,481],[-4171,5322],[-820,-2798],[-1066,-508],[-631,2112],[-8,2502],[-2123,2829],[2992,2074],[1981,-112],[-233,1528],[-4066,11],[-1100,3429],[-2482,1063],[-1176,2850],[3745,1395],[1424,1877],[4459,-2365],[439,-2141],[775,-9313],[2875,-3448],[2322,6109],[3187,3476],[2469,4],[2376,-2007],[2060,-2060],[2982,-1101]],[[847134,467086],[282,-1136],[51,-1746]],[[847467,464204],[-1812,-4301],[-2378,-1267],[-333,691],[250,1958],[1194,3513],[2746,2288]],[[872805,478589],[-270,4335],[493,2070],[581,1947],[632,-1685],[-7,-2746],[-1429,-3921]],[[827449,542126],[-1580,-5201],[2042,-5453],[-480,-2649],[3115,-5329],[-3292,-680],[-926,-3926],[120,-5219],[-2671,-3938],[-73,-5735],[-1071,-8807],[-409,2049],[-3156,-2592],[-1100,3521],[-1981,325],[-1385,1845],[-3302,-2071],[-1014,2787],[-1819,-316],[-2290,664],[-425,7724],[-1386,1601],[-1334,4926],[-387,5038],[324,5336],[1650,3827]],[[804619,529853],[464,-3849],[1900,-3254],[1792,1171],[1773,-415],[1619,2913],[1332,504],[2628,-1613],[2265,1227],[1424,8009],[1070,2003],[962,6550],[3193,-3],[2408,-970]],[[859363,502161],[3057,-1680],[1009,-4404],[-2345,2374],[-2320,482],[-1569,-380],[-1921,203],[658,3166],[3431,239]],[[852429,496466],[-1919,1058],[-541,2476],[2810,277],[690,-1899],[-1040,-1912]],[[855367,530821],[199,-3145],[1640,-505],[261,-2352],[-146,-5032],[-1432,563],[-423,-3504],[1144,-3040],[-777,-691],[-1121,3648],[-825,7361],[558,4601],[922,2096]],[[841465,523338],[3194,241],[2746,4182],[484,-1286],[-2231,-5713],[-2088,-1107],[-2673,1126],[-4629,-288],[-2427,-829],[-395,-4359],[2486,-5121],[1500,2609],[5180,1959],[-228,-2652],[-1211,837],[-1206,-3374],[-2445,-2233],[2629,-7380],[-508,-1978],[2498,-6647],[-24,-3783],[-1483,-1693],[-1089,2025],[1342,4715],[-2726,-2229],[-691,1594],[360,2223],[-2003,3377],[207,5612],[-1853,-1751],[235,-6714],[113,-8239],[-1762,-836],[-1193,1690],[796,5301],[-430,5557],[-1168,43],[-862,3945],[1147,3771],[396,4572],[1396,8681],[583,2374],[2361,4278],[2170,-1701],[3502,-799]],[[834152,459220],[-3687,4035],[2591,1132],[1459,-1754],[972,-1749],[-167,-1554],[-1168,-110]],[[837059,469136],[1850,438],[2489,2110],[-407,-3199],[-4174,-1635],[-3695,710],[-9,2105],[2206,1197],[1740,-1726]],[[828501,470140],[1716,471],[689,-2449],[-3211,-1156],[-1924,-773],[-1494,45],[955,3316],[1523,46],[744,2036],[1002,-1536]],[[801352,481315],[379,-2049],[5322,-574],[612,2374],[5153,-2769],[1011,-3733],[4167,-1050],[3407,-3422],[-3169,-2195],[-3055,2320],[-2514,-156],[-2882,426],[-2600,1034],[-3218,2199],[-2039,571],[-1155,-720],[-5066,2371],[-482,2476],[-2542,424],[1906,5502],[3371,-340],[2241,-2250],[1153,-439]],[[789916,512050],[471,-4017],[967,-3213],[2040,-509],[1351,-3645],[-697,-7163],[-111,-8908],[-3076,-121],[-2339,4815],[-3567,4705],[-1189,3491],[-2103,4689],[-1379,4317],[-2113,8062],[-2439,4800],[-816,4951],[-1024,4495],[-2505,3626],[-1452,4928],[-2091,3225],[-2898,6346],[-244,2931],[1789,-232],[4300,-1112],[2456,-5632],[2148,-3905],[1532,-2396],[2632,-6190],[2824,-90],[2334,-3945],[1607,-4822],[2115,-2631],[-1113,-4702],[1592,-2000],[998,-148]],[[309350,215172],[1066,-2670],[1389,-4319],[3611,-3455],[3889,-1440],[-1250,-2879],[-2639,-288],[-1416,2034]],[[314000,202155],[-1674,154],[-2975,3],[-1,12860]],[[339930,344286],[-694,-4608],[-743,-5920],[27,-5736],[-603,-1282],[-215,-3722]],[[337702,323018],[-190,-3006],[3527,-4933],[-379,-3970],[1736,-2509],[-142,-2813],[-2669,-7385],[-4118,-3089],[-5571,-1199],[-3052,580],[584,-3434],[-569,-4311],[513,-2904],[-1666,-2026],[-2847,-795],[-2671,2097],[-1072,-1507],[388,-5722],[1875,-1734],[1521,1816],[827,-2991],[-2557,-1788],[-2231,-3581],[-408,-5793],[-657,-3084],[-2624,-16],[-2178,-2950],[-796,-4319],[2732,-4216],[2655,-1165],[-955,-5166],[-3281,-3249],[-1805,-6751],[-2535,-2272],[-1139,-2697],[897,-5981],[1849,-3334],[-1171,291]],[[309523,217112],[-2574,903],[-6713,770],[-1151,3358],[54,4313],[-1850,-371],[-978,2088],[-243,6107],[2131,2533],[881,3653],[-323,2912],[1473,4916],[1014,7626],[-298,3380],[1213,1091],[-298,2170],[-1288,1154],[915,2416],[-1253,2183],[-649,6644],[1117,1172],[-469,7020],[652,5898],[743,5138],[1663,2090],[-844,5622],[-9,5291],[2103,3760],[-65,4811],[1586,5622],[7,5296],[-721,1052],[-1280,9941],[1711,5924],[-262,5577],[992,5234],[1820,5401],[1960,3581],[-831,2260],[580,1854],[-88,9597],[3025,2840],[954,5984],[-338,1442]],[[313592,387365],[2315,5204],[3635,-1403],[1633,-4159],[1083,4632],[3168,-238],[449,-1232]],[[325875,390169],[5106,-9397],[2272,-876],[3394,-4254],[2860,-2251],[399,-2541],[-2735,-8754],[2802,-1567],[3119,-879],[2197,925],[2520,4412],[454,5082]],[[348263,370069],[1375,1103],[1394,-3324],[-57,-4599],[-2338,-3175],[-1866,-2344],[-3135,-5591],[-3706,-7853]],[[314000,202155],[-920,-2329],[-2382,-1789],[-1365,183],[-1645,466],[-2016,1732],[-2910,832],[-3495,3218],[-2837,3096],[-3826,6450],[2290,-1209],[3900,-3847],[3684,-2067],[1433,2641],[901,3942],[2561,2378],[1977,-680]],[[306693,417057],[1362,-3917],[370,-4155],[1457,-2438],[-874,-5572],[1492,-6460],[1088,-7939],[2004,789]],[[309523,217112],[-2471,44],[-1338,-1417],[-2506,-2080],[-448,-5380],[-1176,-133],[-3134,1872],[-3180,4010],[-3456,3296],[-870,3647],[787,3375],[-1397,3830],[-357,9816],[1182,5539],[2934,4450],[-4217,1679],[2646,5089],[945,9565],[3087,-2026],[1452,11930],[-1864,1531],[-868,-7189],[-1752,811],[872,8236],[947,10669],[1277,3936],[-800,5620],[-230,6488],[1171,187],[1704,9300],[1921,9213],[1176,8582],[-640,8628],[829,4751],[-332,7108],[1624,7032],[500,11140],[892,11961],[869,12875],[-203,9426],[-579,8111]],[[304520,412634],[1428,1471],[745,2952]],[[585388,470269],[-1094,586],[-3731,-972],[-745,-688],[-791,-3677],[622,-2539],[-494,-6819],[-344,-5780],[751,-1025],[1942,-2241],[762,1047],[232,-6210],[-2126,48],[-1140,3169],[-1024,2454],[-2129,805],[-623,3018],[-1698,-1818],[-2224,803],[-929,2615],[-1763,531],[-1302,-139],[-160,1790],[-958,145]],[[566422,455372],[-1265,339],[-1720,-862],[-1208,141],[-687,-528],[148,6853],[-926,2137],[-204,3542],[409,3471],[-563,2222],[-51,3624],[-3370,-51],[242,2075],[-1417,-21],[-150,-998],[-1723,-225],[-697,-3356],[-416,-1440],[-1535,813],[-917,-810],[-1837,-466],[-1063,3011],[-639,1863],[-797,3453],[-685,4291],[-8197,77],[-974,-692],[-805,107],[-1147,-774]],[[534228,483168],[-389,1786]],[[533839,484954],[707,609],[87,2510],[454,1481],[1011,1210]],[[536098,490764],[730,-586],[950,2204],[1513,-57],[178,-1630],[1038,-1020],[1634,3609],[1618,2813],[702,1843],[-93,4738],[1207,5594],[1273,2967],[1828,2775],[320,1837],[69,2112],[453,1999],[-146,3264],[346,5103],[543,3593],[832,3079],[165,3478]],[[551258,538479],[250,4016],[1081,2924],[1488,1855],[2285,-1957],[1770,-2125],[2032,-567],[2072,-1124],[830,3478],[382,444],[1266,-578],[3092,2874],[1096,-1218],[900,172],[416,1401],[1033,493],[2089,-606],[1782,-132],[917,611]],[[576039,548440],[1683,-4755],[1247,-698],[743,967],[1285,-379],[1547,1218],[660,-2459],[2445,-3827]],[[585649,538507],[-168,-6734],[1113,-780],[-893,-2045],[-1067,-1529],[-1062,-3003],[-584,-2678],[-157,-4622],[-643,-2201],[-23,-4342]],[[582165,510573],[-799,-1605],[-103,-3427],[-382,-444],[-257,-3150]],[[580624,501947],[699,-2618],[176,-6946]],[[615514,508604],[-1645,4751],[-33,20979],[2428,6532]],[[616264,540866],[759,1816],[1781,106],[2476,4060],[3618,254],[7850,17284]],[[632748,564386],[1937,4807],[1254,3536],[0,3005],[1,5810],[9,2372],[18,94]],[[635967,584010],[887,114],[1280,855],[1473,580],[1315,1971],[1053,16],[63,-1592],[-257,-3350],[11,-3027],[-587,-2080],[-782,-6225],[-1338,-6432],[-1717,-7355],[-2384,-8440],[-2371,-6448],[-3267,-7856],[-2780,-4662],[-4155,-5718],[-2589,-4380],[-3040,-6976],[-641,-3037],[-627,-1364]],[[594176,512827],[-28,6103],[796,2334],[1367,3812],[1011,4197],[-1222,6611],[-325,2890],[-1317,3998]],[[594458,542772],[1709,3440],[1882,3794]],[[598049,550006],[1443,-966],[0,-3232],[949,-1895],[1934,0],[3516,-4891],[878,-58],[650,158],[615,-664],[1853,-453],[821,2400],[2537,2409],[1120,-1947],[1899,-1]],[[615514,508604],[-1946,-2299],[-686,-2403],[-1041,-422],[-394,-4058],[-892,-2323],[-542,-3832],[-1119,-1902]],[[568242,565689],[-2115,2517],[-964,1658],[-178,1790],[451,2397],[-8,2350],[-1602,3600],[-315,2464]],[[563511,582465],[33,1395],[-1020,1698],[-31,3345],[-582,2222],[-976,-333],[280,2115],[719,2400],[-314,2385],[913,1767],[-579,1345],[734,3556],[1269,4241],[2395,-402],[-137,22860]],[[566215,631059],[34,2416],[3195,18],[0,11500]],[[569444,644993],[11167,0],[10777,0],[11018,0]],[[602406,644993],[895,-5650],[-609,-1045],[404,-5929],[1019,-6875],[1059,-1418],[1520,-2128]],[[606694,621948],[-1406,-3287],[-2046,-947],[-874,-1766],[-274,-3827],[-1197,-8462],[295,-2306]],[[601192,601353],[-442,-4946],[-1129,-5672],[-1676,-2854],[-1191,-4399],[-279,-2354],[-1316,-1613],[-822,-6027],[37,-5177]],[[594374,568311],[-32,4490],[-384,114],[47,2867],[-333,1978],[-1431,2274],[-334,4152],[334,4251],[-1288,396],[-190,-1286],[-1669,-296],[667,-1681],[239,-3460],[-1526,-3164],[-1383,-4152],[-1431,-593],[-2337,3361],[-1049,-1186],[-286,-1681],[-1430,-1088],[-96,-1186],[-2766,0],[-381,1186],[-2003,198],[-1001,-989],[-763,495],[-1431,3361],[-477,1582],[-2003,-791],[-763,-2669],[-715,-5141],[-954,-1088],[-853,-627],[1890,-2249]],[[563511,582465],[-1758,-981],[-1410,-2332],[-2008,-6283],[-2614,-2668],[-2683,358],[-783,-530],[275,-2027],[-1448,-2013],[-1180,-2248],[-3497,-2204],[-694,1304],[-460,113],[-512,-1481],[-2297,-433]],[[542442,561040],[435,1560],[-875,3970],[-391,2384],[-1210,977],[-1640,3361],[604,2718],[1266,-579],[783,410],[1552,-56],[-1512,5235],[101,3825],[-185,3821],[-1104,3687]],[[540266,592353],[277,2713],[-1781,133],[6,3704],[-1156,2133],[1199,7586],[3543,5430],[147,7491],[1070,11686],[604,2478],[-1156,1975],[-44,1831],[-1040,1498],[-682,8952]],[[541253,649963],[2804,3148],[11079,-11026],[11079,-11026]],[[300799,631831],[243,-3137],[-213,-2213],[-677,-971],[715,-1729],[-57,-1564]],[[300810,622217],[-1845,978],[-1311,-399],[-1695,416],[-1299,-1076],[-1488,1794],[245,1857],[2556,-800],[2096,-462],[1000,1282],[-1268,2495],[21,2199],[-1753,898],[626,1591],[1694,-255],[2410,-904]],[[300799,631831],[347,981],[2168,-26],[1646,-1483],[732,145],[504,-2043],[1520,115],[-89,-1716],[1235,-208],[1366,-2113],[-1032,-2344],[-1321,1252],[-1275,-241],[-914,274],[-501,-1050],[-1066,-355],[-423,1397],[-918,-827],[-1112,-3943],[-715,915],[-141,1656]],[[996458,927746],[3541,2401],[0,-3936],[-3046,-294],[-495,1829]],[[636391,785505],[-1265,-3415],[-2694,-949],[-2760,-5945],[2524,-5465],[-273,-3879],[3033,-6782]],[[634956,759070],[-1659,-2322],[-476,-1465],[-1229,394],[-1909,3498],[-781,193]],[[628902,759368],[-1746,1335],[-850,2363],[-2591,1205],[-1684,-905],[-487,1071],[-3782,2761],[-4090,932],[-2348,984],[-338,-680]],[[610986,768434],[-3542,4866],[-3169,2173],[-2399,3383],[2021,920],[2305,4817],[-1553,2279],[4094,2350],[-74,1259],[-2493,-928]],[[606176,789553],[88,2558],[1431,1608],[2688,422],[438,1921],[-614,3175],[1128,3016],[-33,1691],[-4094,1874],[-1624,-62],[-1714,2696],[-2131,-912],[-3528,2025],[60,1133],[-988,2497],[-2215,279],[-230,1788],[694,1166],[-1775,3261],[-2880,-557],[-844,289],[-702,-1309],[-1037,232]],[[588294,818344],[0,1],[-683,3687],[-653,1912],[535,538],[2241,-200],[1081,1260],[-800,1535],[-1873,1014],[167,1040],[-1130,1050],[-1742,3771],[595,1553],[-272,2704],[-2715,1373],[-1458,-687],[-394,1429],[-2925,1444]],[[578268,841768],[-893,3399],[-237,2793],[-1338,1326]],[[575800,849286],[1190,1828],[-823,5371],[1976,3318],[-418,1006]],[[577725,860809],[3157,3182],[-2910,2739]],[[577972,866730],[5947,7351],[2580,3327],[1045,2936],[-4112,3946],[1136,3753],[-2501,4286],[1870,4937],[-3230,6555],[2563,4342],[-4254,3838],[405,4032]],[[579421,916033],[2244,530],[4726,2311]],[[586391,918874],[2866,2003],[4563,-3482],[7607,-1370],[10496,-6514],[2132,-2737],[183,-3832],[-3084,-3026],[-4535,-1536],[-12401,4378],[-2040,-732],[4529,-4218],[177,-2672],[182,-5884],[3576,-1756],[2171,-1495],[359,2792],[-1674,2475],[1768,2181],[6715,-3585],[2339,1404],[-1869,4217],[6474,5641],[2563,-332],[2594,-2013],[1618,3958],[-2316,3433],[1360,3444],[-2042,3572],[7770,-1847],[1587,-3226],[-3517,-711],[19,-3204],[2186,-1972],[4292,1249],[679,3673],[5803,2743],[9693,4945],[2096,-283],[-2739,-3495],[3446,-600],[1990,1967],[5206,159],[4125,2387],[3165,-3469],[3157,3814],[-2911,3336],[1445,1901],[8205,-1743],[3845,-1800],[10067,-6579],[1857,3013],[-2823,3045],[-81,1222],[-3348,565],[916,2730],[-1486,4493],[-84,1843],[5126,5215],[1823,5234],[2066,1132],[7354,-1518],[579,-3203],[-2633,-4671],[1728,-1836],[894,-4026],[-631,-7891],[3064,-3530],[-1192,-3844],[-5441,-8180],[3175,-849],[1105,2074],[3056,1478],[738,2850],[2404,2742],[-1619,3274],[1296,3802],[-3037,474],[-668,3203],[2216,5783],[-3607,4696],[4971,3881],[-643,4095],[1386,131],[1459,-3193],[-1096,-5557],[2973,-1052],[-1267,4153],[4649,2264],[5765,305],[5133,-3283],[-2470,4796],[-277,6135],[4830,1162],[6682,-254],[6019,754],[-2257,3011],[3214,3782],[3192,159],[5400,2857],[7335,767],[927,1578],[7294,534],[2273,-1293],[6234,3060],[5103,-95],[766,2485],[2654,2451],[6558,2364],[4764,-1866],[-3783,-1420],[6292,-882],[750,-2846],[2538,1401],[8121,-76],[6262,-2809],[2230,-2158],[-692,-2993],[-3072,-1705],[-7300,-3197],[-2087,-1708],[3445,-807],[4108,-1452],[2501,1089],[1417,-3696],[1220,1496],[4442,910],[8912,-951],[677,-2694],[11613,-857],[159,4399],[5895,-1008],[4434,32],[4486,-3034],[1279,-3686],[-1644,-2411],[3489,-4532],[4369,-2338],[2680,6043],[4456,-2591],[4734,1548],[5377,-1772],[2046,1615],[4543,-807],[-2005,5346],[3667,2495],[25089,-3740],[2364,-3418],[7272,-4401],[11216,1089],[5531,-948],[2312,-2381],[-338,-4212],[3422,-1639],[3718,1179],[4926,151],[5245,-1130],[5264,637],[4839,-5119],[3442,1842],[-2246,3681],[1237,2558],[8862,-1610],[5778,345],[7989,-2749],[3889,-2513],[0,-22943],[-20,-31],[-3571,-2530],[-3600,422],[2505,-3065],[1653,-4745],[1284,-1552],[322,-2382],[-717,-1525],[-5177,1254],[-7764,-4335],[-2470,-671],[-4251,-4046],[-4031,-3535],[-1022,-2617],[-3973,3984],[-7237,-4521],[-1264,2139],[-2676,-2467],[-3715,790],[-895,-3788],[-3333,-5573],[99,-2327],[3164,-1291],[-372,-8384],[-2579,-213],[-1189,-4817],[1155,-2480],[-4857,-2941],[-964,-6576],[-4141,-1404],[-833,-5851],[-4004,-5365],[-1027,3967],[-1189,8402],[-1551,12797],[1336,7987],[2343,3437],[145,2691],[4317,1288],[4962,7251],[4782,5921],[4993,4595],[2233,8118],[-3375,-485],[-1668,-4744],[-7046,-6325],[-2275,7082],[-7172,-1955],[-6951,-9654],[2293,-3531],[-6200,-1504],[-4294,-593],[201,4164],[-4318,874],[-3441,-2829],[-8494,990],[-9137,-1707],[-8998,-11241],[-10645,-13582],[4376,-726],[1366,-3606],[2698,-1280],[1778,2877],[3046,-374],[4011,-6335],[94,-4900],[-2172,-5754],[-234,-6877],[-1253,-9207],[-4187,-8333],[-930,-3984],[-3771,-6706],[-3741,-6648],[-1795,-3403],[-3701,-3379],[-1752,-74],[-1745,2799],[-3728,-4215],[-433,-1916]],[[863277,761437],[-389,1008]],[[862888,762445],[-17,2926],[1419,155],[400,6804],[-732,4932],[2384,2034],[3371,-1019],[1868,5602],[952,6309],[1079,2108],[1460,5182],[-4591,-1698],[-2408,-2272],[-4220,7],[-1125,5411],[-3290,4094],[-4835,1841],[-1028,5641],[-967,3536],[-1041,2478],[-1717,5809],[-2439,2120],[-4158,1715],[-3682,-156],[-3452,-1038],[-2295,-2866],[1525,-1368],[34,-3180],[-1545,-1846],[-2507,-6108],[25,-2534],[-3914,-3639],[-3335,2174]],[[824107,805599],[-3314,-480],[-1455,1930],[-1665,622],[-4069,-4058],[-3657,-954],[-2553,-1427],[-3499,937],[-2576,-59],[-1686,2943],[-2720,2768],[-2784,758],[-3514,-752],[-2625,-1068],[-3947,2422],[-529,4316],[-3266,1480],[-2522,674],[-3112,2381],[-2877,-5969],[1128,-3389],[-2700,-4010],[-4016,1447],[-2772,208],[-1857,2690],[-2898,85],[-2415,1767],[-4225,-2709],[-5301,-4960],[-2928,-998]],[[743753,802194],[-1087,-474]],[[760493,984908],[6009,1300],[5397,-2899],[6396,-5568],[-685,-5178],[-6061,-719],[-7737,1662],[-4610,2198],[-2132,4131],[-3790,1139],[7213,3934]],[[785660,974868],[7040,-3271],[-824,-2340],[-15660,-2222],[5075,7561],[2281,647],[2088,-375]],[[885641,956759],[7335,-252],[10041,-3054],[-2185,-4277],[-10239,160],[-4607,-1361],[-5502,3745],[1492,3959],[3665,1080]],[[911728,952205],[6970,-1508],[-3210,-2276],[-4440,515],[-5162,2273],[664,1865],[5178,-869]],[[888508,940825],[2635,2276],[3473,533],[3947,-2202],[336,-1513],[-4212,-41],[-5693,642],[-486,305]],[[624574,982404],[5423,1049],[4220,69],[568,-1551],[1595,1378],[2619,950],[4120,-1262],[-1075,-878],[-3729,-759],[-2498,-437],[-387,-945],[-3247,-952],[-3009,1365],[1582,1798],[-6182,175]],[[563141,831163],[-5108,-87],[-3421,654]],[[554612,831730],[633,2535],[3833,1867]],[[559078,836132],[2910,-1008],[1227,-914],[-296,-1577],[222,-1470]],[[648633,943013],[6651,5055],[-752,2614],[6214,3040],[9170,3700],[9245,1078],[4758,2135],[5405,748],[1931,-2274],[-1865,-1792],[-9843,-2856],[-8482,-2746],[-8629,-5481],[-4140,-5621],[-4354,-5539],[565,-4783],[5314,-4723],[-1641,-506],[-9077,749],[-737,2557],[-5028,1543],[-406,3111],[2840,1236],[-94,3140],[5509,4911],[-2554,704]],[[896984,827575],[962,-5550],[-71,-5667],[1146,-5811],[2795,-10201],[-4112,1902],[-1709,-8322],[2708,-5902],[-78,-4024],[-2105,3472],[-1821,-4458],[-514,4833],[310,5610],[-317,6214],[643,4354],[123,7701],[-1628,5661],[246,7870],[2567,2650],[-1103,2668],[1236,809],[722,-3809]],[[14088,905328],[-239,-3580],[1874,-1432],[-645,4184],[7541,-859],[5438,-5389],[-2754,-2510],[-4554,-596],[-68,-5627],[-1112,-1198],[-2602,172],[-2117,2008],[-3693,1679],[-621,2498],[-2821,942],[-3159,-747],[-1510,2015],[604,2141],[-3327,-1368],[1253,-2710],[-1576,-2444],[0,22943],[6806,-4397],[7282,-5725]],[[3628,926561],[-3628,-350],[0,3936],[356,242],[2354,-12],[4018,-1648],[-238,-787],[-2862,-1381]],[[592877,783044],[732,1426],[1975,-1235],[893,-227],[361,-1137],[419,-176]],[[597257,781695],[22,-498],[1359,-1389],[2834,345],[-543,-2054],[-3041,-998],[-3771,-3331],[-1544,1171],[612,2706],[-3035,1686],[491,1104],[2659,1914],[-423,693]],[[280611,672578],[1305,461],[1834,-173],[83,-1497],[-3028,-922],[-194,2131]],[[283916,674018],[2195,-2592],[-479,-4093],[-511,738],[45,3010],[-1244,2275],[-6,662]],[[282803,663481],[836,-232],[972,-4780],[15,-3342],[-682,-286],[-706,3318],[-1040,1667],[605,3655]],[[330000,219701],[3333,3455],[2361,-1440],[1667,2304],[2222,-2592],[-833,-2015],[-3750,-1728],[-1250,2016],[-2361,-2592],[-1389,2592]],[[542063,977132],[1055,1968],[4078,200],[3503,-2010],[9144,-4294],[-6990,-2267],[-1543,-4238],[-2437,-1086],[-1323,-4772],[-3347,-224],[-5974,3512],[2519,2046],[-4164,1666],[-5411,4863],[-2161,4509],[7573,2062],[1521,-2016],[3957,81]],[[579421,916033],[1177,4041],[-3564,2290],[-4313,-1952],[-1363,-4222],[-2648,-2548],[-2983,1391],[-3627,-285],[-3087,3045],[-1665,-1521]],[[557348,916272],[-1723,-237],[-407,-3789],[-5236,922],[-735,-3206],[-2667,19],[-1834,-4097],[-2779,-6384],[-4313,-8102],[1012,-1968],[-967,-2282],[-2755,99],[-1804,-5402],[171,-7647],[1775,-2919],[-919,-6770],[-2311,-3948],[-1225,-3318]],[[530631,857243],[-1863,3534],[-5485,-6661],[-3704,-1350],[-3841,2933],[-993,6191],[-879,13291],[2558,3705],[7335,4835],[5484,5943],[5085,8026],[6675,11120],[4652,4334],[7633,7223],[6096,2521],[4570,-306],[4230,4771],[5066,-255],[4987,1148],[8689,-4214],[-3578,-1541],[3043,-3617]],[[576131,979332],[-4119,-3102],[-8056,-678],[-8192,961],[-494,1586],[-3986,101],[-3040,2644],[8578,1608],[4033,-1385],[2809,1725],[7023,-1439],[5444,-2021]],[[568678,966648],[-6205,-2355],[-4901,1337],[1917,1485],[-1679,1841],[5757,1153],[1103,-2161],[4008,-1300]],[[370100,994141],[9326,3439],[9747,-259],[3543,2125],[9817,553],[22188,-723],[17375,-4566],[-5129,-2218],[-10627,-253],[-14952,-562],[1399,-1028],[9833,635],[8367,-1986],[5392,1763],[2310,-2065],[-3049,-3351],[7072,2142],[13487,2234],[8328,-1115],[1560,-2461],[-11324,-4097],[-1569,-1325],[-8878,-996],[6433,-276],[-3249,-4199],[-2237,-3736],[88,-6408],[3335,-3760],[-4339,-238],[-4568,-1822],[5126,-3051],[653,-4894],[-2970,-533],[3598,-4954],[-6170,-413],[3221,-2342],[-911,-2032],[-3916,-891],[-3871,-17],[3480,-3901],[37,-2564],[-5496,2383],[-1430,-1541],[3750,-1440],[3640,-3520],[1053,-4637],[-4951,-1110],[-2142,2220],[-3434,3308],[950,-3908],[-3226,-3028],[7320,-245],[3829,-314],[-7445,-5014],[-7550,-4540],[-8129,-1989],[-3064,-25],[-2873,-2219],[-3864,-6079],[-5975,-4036],[-1919,-238],[-3698,-1414],[-3992,-1345],[-2380,-3562],[-38,-4037],[-1405,-3781],[-4530,-4608],[1119,-4500],[-1249,-4762],[-1423,-5622],[-3914,-351],[-4100,4702],[-5554,29],[-2695,3158],[-1854,5624],[-4813,7162],[-1408,3752],[-379,5173],[-3848,5314],[1001,4244],[-1855,2030],[2747,6730],[4181,2142],[1097,2409],[581,4499],[-3174,-2039],[-1512,-857],[-2495,-821],[-3409,1880],[-185,3912],[1087,3063],[2576,84],[5670,-1532],[-4775,3657],[-2486,1972],[-2766,-810],[-2319,1427],[3102,5366],[-1690,2145],[-2204,3980],[-3344,6107],[-3536,2237],[32,2411],[-7454,3369],[-5897,420],[-7424,-233],[-6778,-423],[-3224,1834],[-4827,3621],[7294,1811],[5591,305],[-11886,1497],[-6261,2351],[382,2237],[10517,2771],[10174,2767],[1074,2095],[-7497,2068],[2421,2296],[9617,4020],[4041,617],[-1157,2588],[6579,1516],[8542,904],[8536,52],[3031,-1793],[7369,3170],[6630,-2154],[3900,-454],[5769,-1873],[-6605,3104],[380,2466]],[[691485,238273],[1792,-1814],[2625,-720],[97,-1094],[-777,-2620],[-4264,-375],[-70,3067],[410,2376],[187,1180]],[[847134,467086],[327,1358],[2391,1295],[1938,195],[868,719],[1052,-714],[-1022,-1560],[-2895,-2521],[-2326,-1654]],[[545402,353729],[1331,2848],[1097,-1577],[468,-2462],[1246,-420],[1747,-1089],[1492,421],[2480,2944],[2,21270]],[[555265,375664],[750,-865],[1647,-5472],[-256,-3509],[620,-2022],[1990,587],[1389,2570],[1315,1733],[680,2758],[1355,1335],[1171,-699],[1327,-1613],[2261,-285],[1776,1341],[281,1796],[489,2756],[1511,461],[835,2163],[925,3838],[2494,4299],[3930,4241]],[[581755,391077],[1131,-63],[1344,-975],[936,691],[1476,-576]],[[586642,390154],[1331,-8105],[722,-4091],[-494,-6421],[237,-2067]],[[588438,369470],[-1402,1054],[-803,-410],[-262,-1677],[-759,-2162],[26,-1991],[1658,-3122],[1626,622],[565,2557]],[[589087,364341],[2107,-48]],[[591194,364293],[-694,-4192],[-328,-4785],[-719,-2599],[-1895,-2908],[-543,-833],[-1177,-2926],[-775,-2959],[-1575,-4126],[-3140,-5942],[-1960,-3454],[-2098,-2621],[-2903,-2234],[-1416,-300],[-359,-1599],[-1688,851],[-1375,-1096],[-3011,1110],[-1682,-702],[-1151,301],[-2864,-2273],[-2372,-912],[-1716,-2177],[-1264,-138],[-1175,2053],[-939,106],[-1196,2571],[-131,-799],[-369,1548],[15,3377],[-902,3859],[896,1049],[-73,4420],[-1819,5390],[-1395,4878],[-5,15],[-1994,7483]],[[580495,351547],[-1213,1774],[-1298,-1175],[-1505,-2253],[-1482,-3647],[2084,-4429],[994,572],[511,1840],[1548,900],[472,1879],[852,2801],[-963,1738]],[[230166,667280],[-1078,-5056],[-485,-4145],[-203,-7715],[-268,-2813],[482,-3141],[861,-2809],[554,-4466],[1844,-4288],[649,-3286],[1086,-2835],[2950,-1528],[1148,-2409],[2436,1609],[2119,582],[2079,1035],[1749,988],[1767,2350],[662,3359],[228,4838],[480,1683],[1881,1508],[2938,1336],[2459,-200],[1685,487],[666,-1221],[-94,-2774],[-1493,-3423],[-660,-3506],[512,-1003],[-416,-2490],[-696,-4493],[-705,1479],[-581,-96]],[[254722,624837],[-528,-76],[-995,-3476],[-504,681],[-337,-265],[22,-847]],[[252380,620854],[-2569,63],[-2593,-10],[-2,-3242],[-1255,-14],[1034,-1922],[1027,-1330],[309,-1248],[450,-349],[-71,-1962],[-3566,-17],[-1337,-4694],[395,-1076],[-322,-1351],[-68,-1677]],[[243812,602025],[-3144,6200],[-1433,1870],[-2268,1502],[-1551,-418],[-2231,-2167],[-1400,-568],[-1962,1518],[-2082,1096],[-2596,2642],[-2082,806],[-3145,2678],[-2324,2752],[-701,1538],[-1555,344],[-2841,1823],[-1157,2627],[-2985,3269],[-1391,3632],[-663,2806],[927,562],[-286,1643],[639,1493],[14,1992],[-937,2586],[-251,2292],[-931,2906],[-2448,5724],[-2793,4499],[-1352,3590],[-2384,2351],[-511,1407],[424,3559],[-1416,1343],[-1640,2799],[-692,4018],[-1495,469],[-1613,3033],[-1301,2801],[-121,1800],[-1494,4343],[-984,4410],[42,2212],[-2009,2285],[-927,-251],[-1586,1586],[-445,-2338],[460,-2764],[270,-4324],[953,-2374],[2061,-3967],[458,-1356],[422,-411],[367,-1978],[494,80],[557,-3715],[844,-1465],[591,-2039],[1746,-2930],[922,-5358],[824,-2522],[772,-2698],[153,-3038],[1339,-190],[1114,-2617],[1008,-2571],[-68,-1031],[-1169,-2116],[-492,28],[-732,3501],[-1818,3282],[-2003,2784],[-1421,1463],[92,4214],[-422,3121],[-1323,1785],[-1910,2569],[-367,-741],[-700,1501],[-1714,1394],[-1637,3343],[203,435],[1144,-327],[1030,2151],[104,2598],[-2138,4109],[-1630,1594],[-1025,3596],[-1030,3776],[-1287,4603],[-1128,5181]],[[339930,344286],[1803,614],[2785,-4454],[1033,169],[2859,-3690],[2179,-3183],[1606,-3918],[-1225,-2732],[769,-3262]],[[351739,323830],[-1202,-3619],[-3137,-3201],[-2051,1152],[-1503,-617],[-2568,2473],[-1884,-185],[-1692,3185]],[[348263,370069],[545,3323],[376,3406],[2,3166],[-1000,1045],[-1042,-931],[-1035,255],[-325,2217],[-258,5277],[-521,1720],[-1876,1559],[-1134,-1128],[-2932,1106],[185,7817],[-822,3202]],[[338426,402103],[869,1190],[-268,3283],[762,2523],[493,4536],[-656,3581],[-1517,1616],[-298,2273],[407,3326],[-5325,238],[-1068,6705],[810,96],[-36,2484],[-542,1681],[-122,3329],[-1613,1708],[-1748,-57],[-1150,1673],[-1877,1141],[-1093,2152],[-3111,950],[-3016,5158],[223,3861],[-342,2214],[296,4316],[-3635,-975],[-1463,-2163],[-2429,-2333],[-620,-1742],[-1430,-126],[-2065,487]],[[306862,455228],[-1567,-992],[-1264,662],[186,8748],[-2280,-3394],[-2451,149],[-1050,3071],[-1844,334],[587,2473],[-1543,3504],[-1156,5186],[732,1053],[-3,2433],[1680,1662],[-277,3114],[709,2004],[201,2687],[3177,3920],[2276,1108],[373,865],[2503,-270]],[[305851,493545],[1248,15790],[66,2498],[-435,3298],[-1232,2101],[14,4184],[1564,949],[556,-596],[94,2205],[-1628,596],[-34,3603],[5412,-128],[919,1985],[771,-1827],[542,-3397],[524,710]],[[314232,525516],[1529,-3046],[2160,373],[538,1763],[2066,1344],[1143,945],[323,2439],[1984,1639],[-150,1210],[-2353,495],[-386,3627],[112,3861],[-1243,1492],[521,530],[2056,-736],[2209,-1440],[802,1361],[1997,894],[3107,2156],[1016,2198],[-368,1625]],[[331295,548246],[1444,254],[647,-1327],[-361,-2528],[954,-873],[637,-2676],[-770,-2029],[-442,-4902],[711,-2912],[201,-2665],[1709,-2702],[1364,-285],[307,1128],[877,249],[1257,1010],[903,1531],[1537,-488],[676,206]],[[342946,529237],[1510,-471],[250,1176],[-466,1145],[278,1668],[1121,-512],[1312,589],[1591,-1220]],[[348542,531612],[1213,-1188],[860,1561],[621,-241],[379,-1621],[1330,412],[1065,2187],[853,4241],[1643,5270]],[[356506,542233],[946,272],[687,-3185],[1558,-10071],[1486,-951],[75,-3975],[-2090,-4741],[864,-1736],[4911,-904],[100,-5772],[2110,3778],[3495,-2069],[4614,-3517],[1355,-3375],[-455,-3188],[3230,1775],[5406,-3046],[4150,224],[4106,-4766],[3548,-6451],[2139,-1661],[2376,-231],[1007,-1817],[942,-7332],[461,-3485],[-1106,-9520],[-1413,-3760],[-3915,-8013],[-1770,-6510],[-2056,-4993],[-695,-112],[-776,-4237],[197,-10791],[-774,-8876],[-295,-3797],[-879,-2272],[-492,-7699],[-2817,-7517],[-472,-5948],[-2248,-2496],[-651,-3452],[-3017,14],[-4370,-2213],[-1957,-2562],[-3111,-1682],[-3269,-4586],[-2351,-5711],[-404,-4300],[462,-3181],[-519,-5817],[-631,-2810],[-1941,-3170],[-3082,-10135],[-2443,-4569],[-1888,-2693],[-1267,-5478],[-1838,-3293]],[[338426,402103],[-47,1775],[-2588,2946],[-2579,82],[-4841,-1676],[-1332,-5068],[-70,-3098],[-1094,-6895]],[[306693,417057],[1752,6216],[-1195,4840],[638,1936],[-498,2135],[1085,2877],[55,4901],[136,4048],[597,1949],[-2401,9269]],[[304520,412634],[-2785,3307],[-241,2363],[-5507,5783],[-4981,6298],[-2143,3550],[-1151,4757],[456,1659],[-2352,7558],[-2739,10625],[-2624,11467],[-1136,2624],[-874,4242],[-2159,3758],[-1979,2332],[899,2570],[-1346,5493],[865,4033],[2214,3637]],[[276937,498690],[329,-2398],[-792,-1371],[75,-2110],[1148,458],[1122,-622],[1166,-2908],[1571,2369],[525,3885],[1702,5011],[3341,2271],[3028,6030],[865,3744],[-387,4373]],[[290630,517422],[740,546],[1847,-2727],[887,-2718],[1286,-1484],[1636,-6038],[2069,-721],[1530,1522],[1003,-996],[1668,495],[2127,-2697],[-1792,-5861],[830,-136],[1390,-3062]],[[290630,517422],[-1190,1364],[-1363,1908],[-789,-916],[-2358,799],[-676,2477],[-518,-92],[-2779,3288]],[[280957,526250],[-377,1788],[1037,432],[-123,2885],[651,2086],[1378,386],[1170,3619],[1063,3021],[-1024,1371],[524,3342],[-626,5269],[595,1512],[-438,4870],[-1125,3068]],[[283662,559899],[356,2799],[895,-414],[524,1712],[-645,3392],[337,842]],[[285129,568230],[1436,-183],[2084,4020],[1143,613],[28,1905],[512,4866],[1593,2673],[1750,109],[221,1200],[2174,-480],[2186,2908],[1082,1287],[1345,2775],[984,-353],[729,-1515],[-540,-1939]],[[301856,586116],[-1784,-965],[-704,-2880],[-1076,-1651],[-807,-2140],[-340,-4109],[-770,-3368],[1434,-386],[356,-2647],[613,-1267],[219,-2319],[-330,-2132],[98,-1201],[684,-481],[661,-2008],[3572,554],[1614,-734],[1955,-4956],[1123,616],[2001,-308],[1583,657],[982,-990],[-500,-3102],[-620,-1933],[-218,-4131],[559,-3826],[790,-1711],[95,-1290],[-1407,-2866],[1008,-1269],[738,-2014],[847,-5743]],[[283662,559899],[-926,1661],[-595,3109],[686,1538],[-704,395],[-518,1902],[-1384,1601],[-1215,-367],[-563,-2003],[-1122,-1447],[-606,-201],[-273,-1198],[1325,-3126],[-758,-736],[-401,-853],[-1293,-294],[-481,3440],[-361,-979],[-916,338],[-561,2317],[-1139,383],[-721,674],[-1192,-9],[-86,-1250],[-319,871]],[[269539,565665],[146,1143],[232,1168],[-108,1042],[415,682],[-577,856],[-16,2318],[1074,514]],[[270705,573388],[997,-2066],[-57,-1220],[1109,-259],[262,469],[763,-1415],[1367,416],[1182,1454],[1687,1162],[948,1721],[1533,-338],[-103,-567],[1549,-196],[1236,-995],[906,-1732],[1045,-1592]],[[269539,565665],[-1507,1278],[-564,1208],[320,1000],[-101,1273],[-770,1378],[-1093,1132],[-957,739],[-182,1684],[-729,1029],[179,-1674],[-554,-1376],[-635,1598],[-893,569],[-379,1160],[15,1754],[368,1814],[-784,811],[636,1113]],[[261909,582155],[419,741],[1830,-1525],[639,750],[881,-480],[460,-1185],[820,-384],[665,1221]],[[267623,581293],[704,-3129],[1074,-2318],[1304,-2458]],[[261909,582155],[-961,1814],[-1298,2323],[-611,1941],[-1171,1810],[-1392,2601],[309,891],[458,-867],[210,407]],[[257453,593075],[864,237],[348,1315],[407,51],[-59,2832],[651,136],[580,-41],[599,1537],[820,-1164],[285,714],[512,685],[969,1586],[46,1185],[267,-50],[356,1376],[291,168],[473,-880],[556,-260],[614,732],[702,4],[964,752],[385,785],[952,-118]],[[269035,604657],[-239,-553],[-141,-1285],[283,-2108],[-640,-1961],[-298,-2318],[-90,-2537],[149,-1485],[70,-2592],[-424,-566],[-260,-2463],[191,-1521],[-568,-1473],[129,-1556],[426,-946]],[[257453,593075],[-479,1802],[-844,500]],[[256130,595377],[193,2307],[-377,624],[-572,410],[-1219,-686],[-103,776],[-839,923],[-598,1149],[-819,485]],[[251796,601365],[577,1462],[-221,1130],[195,1106],[1318,1612],[1265,2197]],[[254930,608872],[289,-225],[609,1012],[795,83],[258,-470],[431,286],[1290,-519],[1284,150],[894,637],[325,645],[886,-298],[664,-391],[727,135],[552,499],[1269,-798],[440,-128],[848,-1076],[803,-1291],[1010,-882],[731,-1584]],[[256130,595377],[-308,-1356],[-1609,86],[-1000,552],[-1149,1145],[-1543,357],[-787,1237]],[[249734,597398],[86,844],[952,1453],[522,637],[-148,678],[650,355]],[[252380,620854],[-21,-4566],[-218,-6499],[829,2]],[[252970,609791],[906,-1042],[239,858],[815,-735]],[[249734,597398],[-1425,1004],[-1733,104],[-1270,1143],[-1494,2376]],[[254722,624837],[10,-845],[527,-27],[-47,-1566],[-449,-2491],[243,-891],[-291,-2060],[175,-551],[-322,-2910],[-546,-1527],[-501,-184],[-551,-1994]],[[301856,586116],[-79,-1361],[-1630,-672],[906,-2613],[-34,-3012],[-1225,-3345],[1051,-4569],[1198,374],[623,4162],[-861,2027],[-140,4360],[3459,2341],[-385,2714],[974,1817],[997,-4047],[1948,-93],[1805,-3212],[109,-1906],[2494,-51],[2967,592],[1591,-2579],[2124,-712],[1559,1799],[32,1450],[3440,348],[3329,80],[-2359,-1701],[949,-2719],[2222,-432],[2106,-2832],[442,-4614],[1448,130],[1088,-1357]],[[334004,566483],[-2200,-3383],[-243,-2100],[951,-2137],[-690,-1079],[-1709,-924],[55,-2660],[-753,-1585],[1880,-4369]],[[334004,566483],[1824,-2119],[1719,-3752],[78,-2965],[1047,-136],[1488,-2810],[1097,-2005]],[[341257,552696],[-444,-5180],[-1686,-1503],[150,-1358],[-513,-2971],[1231,-4182],[890,-7],[364,-3251],[1697,-5007]],[[341257,552696],[3328,-1153],[299,1038],[2246,416],[2986,-1548]],[[350116,551449],[-1446,-4951],[220,-3940],[1090,-3413],[-485,-2478],[-245,-2634],[-708,-2421]],[[350116,551449],[944,-633],[2045,-1363],[2941,-4861],[460,-2359]],[[517184,803153],[1311,-1508],[4002,-1060],[-1404,-3944],[-353,-4103]],[[520740,792538],[-762,-983],[-1266,530],[89,-1464],[-2031,-3236],[-41,-2607],[1326,902],[954,-2525]],[[519009,783155],[-114,-1628],[817,-2162],[-963,-1754],[716,-4456],[1506,-730],[-318,-2500]],[[520653,769925],[-2517,-3254],[-5478,1560],[-4046,-1869],[-318,-3468]],[[508294,762894],[-3220,-746],[-3126,2605],[-1009,-1245],[-5114,2617],[-1107,2239]],[[494718,768364],[1436,3454],[529,11474],[-2866,6043],[-2049,2914],[-4245,2215],[-280,4199],[3601,1253],[4665,-1481],[-880,6518],[2622,-2470],[6467,4491],[834,4719],[2430,1162]],[[506982,812855],[402,-2025],[1291,-95],[1292,-2311],[1938,-2716],[1426,449],[2430,-2625]],[[515761,803532],[621,-500],[802,121]],[[524294,763788],[1789,2199],[472,-4939],[-917,-4448],[-1262,1172],[-643,3876],[561,2140]],[[276937,498690],[1479,4304],[-601,2515],[-1062,-2675],[-1664,2524],[564,1623],[-469,5227],[973,869],[511,3587],[1051,3709],[-193,2350],[1522,1236],[1909,2291]],[[315882,624922],[1420,-507],[500,-1144],[-711,-1452],[-2091,34],[-1623,-203],[-162,2464],[394,842],[2273,-34]],[[284529,624782],[1869,-516],[1476,-1383],[460,-1577],[-1953,-107],[-843,-963],[-1555,924],[-1588,2099],[333,1316],[1168,401],[633,-194]],[[271477,651838],[2399,-411],[2183,-65],[2609,-1962],[1105,-2108],[2595,650],[984,-1353],[2352,-3566],[1730,-2598],[914,79],[1657,-1174],[-203,-1621],[2048,-238],[2100,-2357],[-330,-1349],[-1847,-731],[-1870,-286],[-1913,456],[-3978,-561],[1862,3213],[-1132,1496],[-1790,385],[-960,1662],[-659,3280],[-1569,-225],[-2591,1545],[-833,1208],[-3621,892],[-969,1123],[1041,1439],[-2724,295],[-1996,-2993],[-1151,-80],[-398,-1405],[-1375,-630],[-1189,546],[1467,1779],[602,2078],[1255,1281],[1419,1122],[2103,551],[673,633]],[[581755,391077],[-1770,2602],[-2148,884],[-817,3652],[-7,2032],[-1190,619],[-3144,6326],[-873,3332],[-559,1027],[-1069,4605]],[[570178,416156],[3105,-631],[902,-663],[938,133],[1538,3727],[2416,4737],[994,453],[338,1996],[1582,2294],[2104,789]],[[584095,428991],[179,-2149],[2317,115],[1288,-1216],[598,-1424],[1323,-419],[1443,-1850],[6,-7289],[-542,-3991],[-119,-4304],[447,-1706],[-314,-3390],[-420,-524],[-732,-4153],[-2927,-6537]],[[555265,375664],[0,16808],[2738,200],[82,20514],[2067,190],[4283,2017],[1062,-2374],[1773,2257],[843,12],[1565,1298]],[[569678,416586],[500,-430]],[[545402,353729],[-2064,4350],[-1087,4206],[-613,5606],[-685,4173],[-931,8868],[-62,6889],[-356,3141],[-1081,2374],[-1433,4758],[-1460,6909],[-607,3615],[-2260,5622],[-169,4419]],[[532594,418659],[1337,1095],[1663,981],[1801,-172],[1656,-2604],[420,405],[11260,248],[1925,-2759],[6724,-815],[5106,2347]],[[564486,417385],[2274,1308],[1802,-331],[1096,-1298],[20,-478]],[[453573,596589],[-1146,4484],[-1386,2050],[1222,1094],[1346,4043],[660,2957]],[[454269,611217],[951,1847],[1380,-497],[1356,1255],[1551,63],[1327,-1693],[1844,-1525],[1681,-4237],[1833,-3956]],[[466192,602474],[127,-3582],[548,-3298],[1040,-1618],[237,-2227],[-128,-1794]],[[468016,589955],[-401,-324],[-1514,455],[-209,-641],[-612,-128],[-1997,1404],[-1340,59]],[[461943,590780],[-5134,242],[-744,-649],[-920,186],[-1472,-938]],[[453673,589621],[-455,4414]],[[453218,594035],[2528,-122],[667,807],[498,47],[1030,1330],[1191,-1216],[1207,-102],[1202,1293],[-561,1664],[-916,-970],[-862,27],[-1096,1418],[-881,-93],[-627,-1364],[-3025,-165]],[[466192,602474],[935,1050],[467,3393],[880,132],[1940,-1604],[1567,1139],[1073,-382],[417,1281],[11146,87],[618,4032],[-481,710],[-1341,24854],[-1341,24854],[4252,103]],[[486324,662123],[9370,-12565],[9370,-12565],[660,-2699],[1730,-1647],[1286,-936],[32,-3664],[3081,564]],[[511853,628611],[8,-13263],[-1519,-3847],[-236,-3548],[-2468,-914],[-3790,-495],[-1027,-2046],[-1780,-226]],[[501041,604272],[-1781,-27],[-693,1105],[-1530,-820],[-2596,-2389],[-530,-1800],[-2155,-2581],[-378,-1480],[-1164,-1172],[-1343,776],[-762,-1405],[-407,-3950],[-2205,-4773],[64,-1950],[-757,-2441],[183,-3343]],[[484987,578022],[-1146,-854],[-648,-726],[-430,2463],[-802,-650],[-479,113],[-512,-1681],[-2145,47],[-769,865],[-362,-523]],[[477694,577076],[-848,1660],[147,1715],[-347,672],[-592,-567],[109,1874],[569,1482],[-1138,2413],[-331,1588],[-618,1265],[-556,151],[-667,-806],[-897,-770],[-762,-1247],[-1189,460],[-771,1463],[-461,192],[-725,-768],[-440,-6],[-161,2108]],[[475876,676066],[10448,-13943]],[[454269,611217],[-241,3104],[776,2839],[345,5422],[-307,5691],[-336,2863],[277,2872],[-718,2738],[-1464,2487]],[[507476,554342],[-2295,-672]],[[505181,553670],[-684,3973],[126,13225],[-559,1187],[-106,2826],[-965,2017],[-848,1700],[353,3032]],[[502498,581630],[956,652],[565,2518],[1358,538],[607,1722]],[[505984,587060],[933,1686],[995,15],[2119,-3314]],[[510031,585447],[-109,-1913],[625,-3416],[-547,-2318],[292,-1549],[-1347,-3565],[-856,-1766],[-523,-3632],[70,-3664],[-160,-9282]],[[540266,592353],[-785,-330],[-89,-1833]],[[539392,590190],[-517,-128],[-1879,6305],[-652,229],[-2172,-3219],[-2151,1681],[-1495,336],[-801,-809],[-1629,175],[-1638,-2454],[-1417,-141],[-3362,2977],[-1316,-1414],[-1418,98],[-1042,2175],[-2784,2149],[-2985,-682],[-724,-1246],[-390,-3312],[-797,-2322],[-192,-5141]],[[505984,587060],[63,3944],[-3203,1306],[-86,2787],[-1564,3760],[-373,2623],[220,2792]],[[511853,628611],[3918,2568],[8042,11313],[9518,10976]],[[533331,653468],[4395,-2483],[1562,-3163],[1965,2141]],[[539392,590190],[1100,-2294],[-303,-1040],[-147,-1914],[-2340,-4457],[-734,-3675],[-392,-2993],[-589,-1283],[-561,-4032],[-1485,-2372],[-431,-2914],[-624,-2320],[-259,-2393],[-1909,-1941],[-1559,2367],[-1053,-96],[-1655,-3370],[-804,-52],[-1321,-5556],[-715,-4076]],[[523611,545779],[-2883,-2072],[-1055,302],[-1068,-1290],[-2222,126],[-1487,3602],[-914,4169],[-1967,3794],[-2087,-71],[-2452,3]],[[542442,561040],[-1397,-5836],[-666,-1046],[-215,-4464],[277,-2426],[-224,-1716],[1313,-3007],[237,-2068],[1025,-2972],[1271,-1853],[124,-2626],[293,-1669]],[[544480,531357],[-200,-3110],[-2207,1361],[-2246,1520],[-3506,226]],[[536321,531354],[-346,314],[-1644,-742],[-1688,771],[-1320,-378]],[[531323,531319],[-4520,131]],[[526803,531450],[405,4547],[-1085,3808],[-1268,976],[-564,2581],[-711,826],[31,1591]],[[505181,553670],[-2237,-1229]],[[502944,552441],[-620,2022],[-740,3654],[-221,2864],[614,5187],[-696,2101],[-265,4537],[5,4182],[-1160,2970],[205,1795]],[[500066,581753],[2432,-123]],[[502944,552441],[-4355,-3371],[-1544,-1975],[-2503,-1670],[-2476,1635]],[[492066,547060],[126,2273],[-1205,4961],[725,6503],[1170,4837],[-737,8194]],[[492145,573828],[-379,4335],[66,3268],[4825,271],[1227,-420],[897,930],[1285,-459]],[[484987,578022],[1250,-1256],[485,-1905],[1249,-1216],[972,1449],[1301,219],[1901,-1485]],[[492066,547060],[-1264,-58],[-1938,1126],[-1781,-67],[-3290,-1005],[-1929,-1662],[-2750,-2112],[-537,151]],[[478577,543433],[213,4743],[266,721],[-85,2269],[-1176,2412],[-883,385],[-809,1581],[604,2558],[-278,2784],[128,1675]],[[476557,562561],[441,6],[163,2512],[-214,1112],[265,801],[1032,692],[-686,4610],[-641,2381],[223,1955],[554,446]],[[476557,562561],[-786,147],[-566,-2318],[-785,28],[-541,1226],[184,2313],[-1162,3528],[-725,-648],[-593,-129]],[[471583,566708],[-765,-330],[31,2112],[-446,1506],[90,1675],[-602,2420],[-773,2060],[-2222,6],[-647,-1085],[-766,-131],[-474,-1242],[-320,-1598],[-1485,-2532]],[[463204,569569],[-1219,3408],[-1080,2254],[-711,746],[-694,1145],[-315,2544],[-406,1269],[-808,943]],[[457971,581878],[1235,2807],[843,-107],[724,967],[613,9],[438,763],[-236,1909],[304,602],[51,1952]],[[457971,581878],[-1483,2408],[-1170,381],[-637,1623],[16,876],[-847,1223],[-177,1232]],[[478577,543433],[-728,-51],[-2863,2745],[-2524,4383],[-2366,3151],[-1871,3716]],[[468225,557377],[664,1843],[147,1675],[1254,3125],[1293,2688]],[[468225,557377],[-748,427],[-2000,2320],[-1447,3085],[-486,2104],[-340,4256]],[[551258,538479],[-1787,322],[-1880,967],[-1655,-3052],[-1456,-5359]],[[568242,565689],[1521,-2327],[26,-1872],[1868,-2999],[1157,-2492],[702,-3455],[2076,-2279],[447,-1825]],[[536098,490764],[-1041,1976],[-839,-969],[-1121,-2486]],[[533097,489285],[-2281,6099]],[[530816,495384],[2114,3179],[-1047,3808],[952,1448],[1875,706],[221,2552],[1484,-2766],[2452,-242],[852,2721],[351,3829],[-303,4496],[-1314,3406],[1203,6670],[-694,1144],[-2066,-469],[-777,2976],[202,2512]],[[530816,495384],[-2855,5813],[-1836,4752],[-1687,5949],[89,1913],[607,1842],[675,4192],[560,4270]],[[526369,524115],[937,333],[4041,-59],[-24,6930]],[[526369,524115],[-521,868],[955,6467]],[[590998,465140],[1311,-2569],[706,-4888],[-473,-1561],[-558,-4668],[533,-4772],[-874,-2005],[-843,-5350],[1461,-1491]],[[592261,437836],[-8430,-4747],[264,-4098]],[[564486,417385],[-1813,3597],[-1874,4712],[128,18324],[5784,-73],[-237,1988],[414,2157],[-488,2701],[316,2793],[-294,1788]],[[595999,451956],[-777,-4377],[777,-7486],[965,83],[1002,-1856],[1164,-4165],[236,-7405],[-1203,-1213],[-847,-3996],[-1813,3558],[-206,4060],[585,2677],[-161,2308],[-1097,1457],[-764,-529],[-1599,2764]],[[611990,458883],[449,-2582],[-114,-5737],[343,-5053],[108,-9000],[489,-2821],[-829,-4115],[-1078,-3999],[-1768,-3571],[-2540,-2190],[-3131,-2795],[-3138,-6181],[-1069,-1051],[-1939,-4092],[-1145,-1332],[-234,-4106],[1317,-4361],[548,-3378],[34,-1722],[491,288],[-79,-5649],[-451,-2675],[655,-986],[-413,-2396],[-1161,-2049],[-2292,-1946],[-3340,-3117],[-1219,-2129],[239,-2426],[710,-388],[-239,-3031]],[[589087,364341],[-238,2546],[-411,2583]],[[533839,484954],[-742,4331]],[[532594,418659],[-261,3621],[385,5063],[958,5273],[145,2471],[901,5192],[662,2359],[1596,3768],[891,2563],[292,4266],[-146,3264],[-831,2059],[-739,3494],[-683,3455],[150,1197],[853,2283],[-842,5563],[-569,3856],[-1392,3643],[264,1119]],[[580624,501947],[1687,-453],[851,3279],[1475,-376]],[[599221,706666],[-484,-1815]],[[598737,704851],[-1004,797],[-582,-3835],[698,-646],[-709,-792],[-120,-1517],[1306,781]],[[598326,699639],[65,-2240],[-1384,-9207]],[[597007,688192],[-276,1496],[-1550,8398]],[[595181,698086],[808,1897],[-189,327],[734,2692],[564,4344],[397,1458],[77,60]],[[597572,708864],[929,-11],[256,1009],[745,76]],[[599502,709938],[43,-2357],[-377,-876],[53,-39]],[[597572,708864],[989,4691],[1382,4058],[52,200]],[[599995,717813],[1249,-293],[455,-2259],[-1515,-2170],[-682,-3153]],[[637620,446486],[738,-2450],[687,-3804],[447,-6928],[720,-2694],[-276,-2761],[-491,-1694],[-944,3374],[-522,-1704],[530,-4266],[-247,-2442],[-766,-1330],[-175,-4878],[-1094,-6714],[-1371,-7936],[-1716,-10911],[-1064,-8007],[-1255,-6679],[-2259,-1363],[-2425,-2436],[-1600,1470],[-2205,2060],[-767,3039],[-183,5106],[-978,4591],[-254,4143],[497,4152],[1279,997],[8,1917],[1327,4366],[251,3668],[-645,2726],[-526,3632],[-222,5306],[971,3222],[372,3653],[1384,212],[1550,1181],[1028,1042],[1220,77],[1584,3282],[2286,3546],[833,2897],[-378,2462],[1180,-693],[1531,4002],[51,3463],[920,2576],[969,-2472]],[[598737,704851],[-1,-3522],[-410,-1690]],[[453218,594035],[355,2554]],[[526339,692835],[-1185,10338],[-1713,2324],[-24,1394],[-2271,3431],[-245,4338],[1712,3212],[654,4750],[-440,5490],[564,2955]],[[523391,731067],[3025,2325],[1945,-691],[-82,-2914],[2356,2119],[198,-1106],[-1389,-2822],[-19,-2664],[962,-1430],[-366,-4985],[-1828,-2895],[528,-3139],[1436,-97],[699,-2738],[1057,-901]],[[531913,709129],[-157,-4423],[-1354,-1653],[-856,-1845],[-1907,-2220],[295,-2385],[-240,-2433],[-1355,-1335]],[[475928,677568],[-23,6823],[4486,4250],[2773,878],[2274,1547],[1062,2884],[3248,2279],[120,4264],[1607,502],[1256,2130],[3635,971],[510,2238],[-732,1223],[-960,6080],[-165,3503],[-1047,3688]],[[493972,720828],[2670,3147],[3003,1001],[1754,2376],[2675,1753],[4708,1026],[4595,468],[1401,-856],[2615,2270],[2969,45],[1129,-1340],[1900,349]],[[526339,692835],[898,-5085],[151,-2675],[-489,-4699],[201,-2625],[-353,-3152],[242,-3621],[-1102,-2406],[1642,-4198],[105,-2468],[987,-3211],[1299,1055],[2192,-2675],[1219,-3607]],[[599221,706666],[3095,-2282],[5440,6137]],[[607756,710521],[1120,-7012]],[[608876,703509],[-530,-869],[-5563,-2889],[2769,-5759],[-919,-978],[-457,-1928],[-2120,-798],[-664,-2073],[-1201,-1773],[-3091,916]],[[597100,687358],[-93,834]],[[643276,657924],[494,280],[103,-1579],[2174,908],[2297,-151],[1678,-170],[1902,3894],[2073,3693],[1755,3549]],[[655752,668348],[528,-1963]],[[656280,666385],[377,-4549]],[[656657,661836],[-1418,-22],[-228,-3751],[492,-801],[-1257,-1134],[-8,-2354],[-810,-2383],[-72,-2319]],[[653356,649072],[-560,-1217],[-8350,2903],[-1064,5835],[-106,1331]],[[641139,660857],[-184,4191],[748,3021],[759,619],[840,-1805],[49,-3371],[-603,-3388]],[[642748,660124],[-770,-409],[-839,1142]],[[633262,690925],[580,-2542],[-248,-1314],[895,-4344]],[[634489,682725],[-1965,-149],[-692,2744],[-2475,555]],[[629357,685875],[2039,5529],[1866,-479]],[[607756,710521],[6149,5993],[1050,6963],[-262,4206],[1520,1423],[1424,3594]],[[617637,732700],[1193,895],[3231,-743],[976,-1467],[1331,972]],[[624368,732357],[1800,-6869],[1821,-1729],[210,-3364],[-1398,-1987],[-644,-4494],[1924,-5474],[3404,-3157],[1429,-4376],[-456,-4171],[888,1],[27,-3067],[1537,-3028]],[[634910,690642],[-1648,283]],[[629357,685875],[-5165,460],[-7832,11582],[-4138,4031],[-3346,1561]],[[656657,661836],[1246,-3934],[1550,-2090],[2038,-753],[1645,-1050],[1254,-3301],[748,-1913],[995,-729],[-5,-1285],[-1011,-3432],[-444,-1616],[-1170,-1842],[-1037,-3945],[-1260,302],[-578,-1373],[-446,-2920],[342,-3849],[-262,-708],[-1279,19],[-1735,-2152],[-270,-2806],[-636,-1215],[-1727,46],[-1088,-1450],[14,-2326],[-1344,-1599],[-1533,543],[-1858,-1943],[-1283,-326]],[[647523,614189],[-906,4024],[-2173,9503]],[[644444,627716],[8333,5759],[1852,11518],[-1273,4079]],[[655752,668348],[809,1961],[343,-500],[-262,-2380],[-362,-1044]],[[964490,426779],[1745,-3308],[-916,-758],[-931,2522],[102,1544]],[[963313,428063],[-398,1590],[-57,4413],[1329,-1771],[451,-4642],[-747,723],[-578,-313]],[[784957,588479],[-658,6955],[1779,4788],[3592,1100],[2604,-827]],[[792274,600495],[2292,-2258],[1256,3971],[2463,-2120]],[[798285,600088],[644,-3841],[-343,-6901],[-4669,-4432],[1220,-3488],[-2916,-418],[-2404,-2319]],[[789817,578689],[-2325,840],[-1130,3001],[-1405,5949]],[[784957,588479],[-2493,2644],[-2376,-107],[407,4524],[-2446,-34],[-220,-6334],[-1499,-8411],[-904,-5087],[191,-4168],[1810,-181],[1127,-5256],[499,-4985],[1550,-3298],[1683,-670],[1439,-2989]],[[783725,554127],[-908,-2365],[-1834,-688],[-218,2957],[-2267,2522],[-483,-1027]],[[778015,555526],[-1097,2210],[-475,2852],[-1476,3251],[-1346,2731],[-456,-3385],[-527,3199],[303,3594],[818,5523]],[[773759,575501],[1346,5917],[1526,5369],[-1086,5252],[43,2675],[-317,3215],[-1853,4575],[-663,2889],[959,1065],[1017,5006],[-1138,3801],[-1763,4204],[-1342,5054],[1172,1046],[1266,6226],[1961,258],[1621,2497],[1591,1332]],[[778099,635882],[1203,-1778],[159,-3460],[1877,-264],[-683,-6068],[65,-5162],[2928,3436],[832,-1016],[1627,167],[559,2004],[2101,-396],[2113,-4677],[173,-5684],[2249,-5019],[-124,-4874],[-904,-2596]],[[778099,635882],[592,2120],[2364,3746]],[[781055,641748],[250,-1353],[1481,-157],[-420,6587],[1440,844]],[[783806,647669],[1623,-4547],[1248,-5232],[3419,-45],[1077,-5023],[-1775,-1508],[-797,-2070],[3328,-3445],[2308,-6805],[1751,-5074],[2102,-4007],[700,-4068],[-505,-5757]],[[773759,575501],[-268,4274],[854,4412],[-934,3407],[226,6274],[-1128,2983],[-905,6893],[-502,7275],[-1201,4769],[-1830,-2888],[-3157,-4105],[-1558,513],[-1721,1350],[957,7137],[-579,5392],[-2178,6640],[340,2076],[-1625,738],[-1971,4698]],[[756579,637339],[-182,4633],[970,-872],[56,4130]],[[757423,645230],[1371,1367],[-294,2445],[628,1961],[108,5960],[2171,-1312],[1239,4748],[140,2806],[1533,4831],[-84,3296],[3596,3979],[1985,-1041],[-228,3543],[974,1057],[-210,2183]],[[770352,681053],[1625,428],[928,-3391],[1213,-1373],[81,-4407],[-111,-4750],[-2632,-4809],[-333,-6831],[2933,955],[662,-5301],[1759,-1116],[-809,-4784],[2063,-2161],[1203,-1061],[2038,1677],[83,-2381]],[[783806,647669],[1490,1406],[2216,-29],[2701,664],[2367,3069],[1339,-2160],[2540,-1052],[-440,-3317],[1323,-2340],[2797,-1495]],[[800139,642415],[-3709,-4927],[-2315,-5441],[-610,-3996],[2124,-6070],[2598,-7525],[2521,-3557],[1688,-4625],[1272,-10657],[-375,-10131],[-2317,-3793],[-3181,-3707],[-2266,-4801],[-3464,-5362],[-1008,3693],[781,3901],[-2061,3272]],[[863277,761437],[0,0]],[[863277,761437],[-1056,346],[-1205,-1950],[-830,-1960],[105,-4136],[-1436,-1273],[-494,-1016],[-1047,-1702],[-1850,-947],[-1205,-1547],[-87,-2493],[-324,-636],[1105,-936],[1573,-2526]],[[856526,740661],[-400,-1393],[-1182,-379],[-1963,-279],[-1083,-2599],[-1240,205],[-173,-523]],[[850485,735693],[-1349,1096],[-336,-1082],[-814,-478],[-98,1084],[-719,527],[-747,919],[760,2534],[656,676],[-248,1053],[705,3106],[-182,941],[-1621,628],[-1311,1544]],[[845181,748241],[2262,3693],[3062,3096],[1908,4084],[1319,-1805],[2402,-210],[-434,3038],[4290,2481],[1104,3227],[1794,-3400]],[[856526,740661],[2398,-6795],[688,-3733],[21,-6634],[-1047,-3166],[-2515,-1106],[-2220,-2388],[-2503,-493],[-310,3135],[515,4319],[-1228,5995],[2063,970],[-1903,4928]],[[824107,805599],[-1353,-4342],[-1962,-5754],[715,-2354],[1573,730],[2740,-896],[2135,2125],[2229,-1841],[2517,-4026],[-304,-2046],[-2191,649],[-4035,-764],[-1956,-1639],[-2035,-3806],[-4235,-2231],[-2768,-3058],[-2855,1168],[-1564,521],[-1458,-3713],[887,-2213],[450,-1900],[-1944,-1937],[-1994,-3084],[-3245,-2026],[-4164,-219],[-4487,-1999],[-3234,-3092],[-1230,1790],[-3361,-5],[-4109,3498],[-2742,858],[-3695,-801],[-5733,1291],[-3063,-134],[-1630,3420],[-1265,5309],[-1717,639],[-3356,3589],[-3741,804],[-3301,984],[-1000,2498],[1070,6728],[-1917,4639],[-3962,2162],[-2335,3055],[-729,4018]],[[757423,645230],[-1463,9136],[-767,-19],[-454,-3680],[-1520,2985],[857,3277],[1243,333],[1281,4873],[-1602,984],[-2576,-86],[-2643,790],[-245,4004],[-1326,284],[-2200,2489],[-982,-3907],[2005,-3049],[-1736,-2146],[-617,-2098],[1710,-1543],[-473,-3471],[963,-4330],[432,-4742]],[[747310,645314],[-398,-2103],[-1889,73],[-3425,-1196],[160,-4332],[-1483,-3407],[-3997,-3877],[-3109,-6775],[-2089,-3633],[-2767,-3770],[-5,-2648],[-1385,-1420],[-2502,-2063],[-1297,-304],[-833,-4392],[578,-7491],[148,-4777],[-1177,-5471],[-13,-9784],[-1437,-279],[-1265,-4392],[846,-1898],[-2533,-1633],[-935,-3916],[-1115,-1656],[-2630,5378],[-1286,8064],[-1066,5809],[-973,2724],[-1476,5532],[-689,7202],[-480,3598],[-2527,7909],[-1151,11160],[-830,7370],[10,6975],[-539,5393],[-4043,-3447],[-1957,691],[-3629,6979],[1335,2082],[-820,2260],[-3258,4888]],[[689379,654737],[1850,3842],[6113,-15],[-552,4944],[-1560,2921],[-317,4432],[-1818,2586],[3061,6037],[3226,-438],[2905,6038],[1742,5844],[2696,5779],[-43,4105],[2369,3331],[-2242,2844],[-964,3896],[-985,5046],[1362,2483],[4214,-1405],[3096,856],[2682,4840]],[[716214,722703],[2986,-6750],[-281,-4697],[1105,-2948],[-91,-2940],[-1994,774],[779,-6348],[2730,-3647],[3860,-4026]],[[725308,692121],[-1762,-2613],[-1079,-5387],[2691,-2179],[2619,-2825],[3623,-3231],[3808,-746],[1602,-2929],[2146,-549],[3342,-1342],[2313,96],[318,2279],[-365,3660],[214,2480]],[[744778,678835],[1694,1211],[233,-4535]],[[746705,675511],[60,-1154],[2525,-2186],[1746,901],[2345,-387],[2267,171],[195,3538],[-1131,1838]],[[754712,678232],[2240,720],[2529,4283],[3202,3668],[2330,-1415],[1980,2425],[1302,-3581],[-938,-2419],[2995,-860]],[[756579,637339],[-794,3002],[-160,2933],[-529,2772],[-1160,3353],[-2559,230],[253,-2374],[-872,-3204],[-1182,1167],[-404,-1048],[-787,628],[-1075,516]],[[746705,675511],[1838,4281],[1500,1461],[1985,-1333],[1468,-140],[1216,-1548]],[[725308,692121],[1152,1377],[2227,-1770],[2804,-3752],[1561,-827],[932,-2766],[2159,-1135],[2254,-2529],[3143,-1321],[3238,-563]],[[689379,654737],[-2036,1456],[-829,4139],[-2146,4386],[-5118,-1083],[-4513,-108],[-3912,-807]],[[670825,662720],[1047,6690],[4007,2975],[-230,2652],[-1329,932],[-77,5072],[-2655,2533],[-1118,3478],[-1376,3029]],[[669094,690081],[4655,-2941],[2779,862],[1660,-734],[562,1262],[1935,-506],[3610,2395],[97,4900],[1549,3260],[2068,-10],[303,1611],[2123,751],[1027,-537],[1087,1620],[-154,3458],[1180,3476],[1768,1457],[-1092,3810],[2642,-180],[764,2074],[-116,2212],[1384,2420],[-318,2864],[-657,2440],[1622,2509],[2983,1210],[3187,669],[1413,1063],[1617,646]],[[708772,732142],[2052,-2685],[822,-4425],[4568,-2329]],[[688416,732211],[849,-702],[2011,1850],[935,-1113],[896,2637],[1661,-120],[427,847],[294,2322],[1196,2003],[1504,-1309],[-302,-1760],[840,-274],[-259,-4838],[1100,-1886],[968,1210],[1232,572],[1731,2578],[1913,-424],[2865,-9]],[[708277,733795],[495,-1653]],[[669094,690081],[2520,5221],[-228,3706],[-2103,971],[-218,3656],[-910,4598],[1188,3153],[-1209,850],[763,4191],[1132,7175]],[[670029,723602],[2833,-2185],[2095,768],[580,2610],[2193,868],[1565,1751],[555,4606],[2341,1114],[435,2050],[1310,-1540],[837,-179]],[[697261,750060],[-1017,-1777],[-3024,964],[-263,-3320],[3012,446],[3432,-1870],[5252,874]],[[704653,745377],[704,-5329],[913,580],[1687,-1311],[-97,-2240],[417,-3282]],[[722944,762186],[-391,-1302],[-4377,-3120],[-990,-2285],[-3563,-685],[-1050,-3677],[-2941,772],[-1919,-1126],[-2652,-2721],[383,-1347],[-791,-1318]],[[670029,723602],[-243,4846],[-2071,206],[-3175,5100],[-2218,630],[-3071,2919],[-1976,531],[-1219,-1073],[-1858,167],[-1976,-3292],[-2440,-1114]],[[649782,732522],[-517,4072],[404,6024],[-2167,1949],[713,3943],[-1844,336],[615,4854],[2619,-1413],[2441,1842],[-2024,3457],[-796,3294],[-2236,-1469],[-283,-4220],[-867,3731]],[[624368,732357],[0,1],[-1519,4613],[543,1784],[-867,6604],[1902,1641]],[[624427,747000],[441,-2173],[1403,-2658],[1905,-766]],[[628176,741403],[1006,170]],[[629182,741573],[3276,4248],[1042,426],[820,-1690],[-957,-2850],[1732,-3015],[691,287]],[[635786,738979],[879,-4246],[2634,-1200],[1929,-2889],[3949,-993],[4338,1524],[267,1347]],[[670825,662720],[-5225,1739],[-3029,1323],[-3135,749],[-1185,7061],[-1329,1021],[-2135,-1029],[-2801,-2788],[-3395,1911],[-2804,4425],[-2674,1641],[-1855,5464],[-2050,7678],[-1495,-933],[-1765,1908],[-1038,-2248]],[[599995,717813],[-259,4406],[679,2370]],[[600415,724589],[744,1262],[744,1262],[151,3212],[909,-1120],[3058,1602],[1478,-1084],[2285,18],[3197,2161],[1496,-98],[3160,896]],[[628176,741403],[-1134,3332],[13,888],[-1227,-13],[-823,1545],[-578,-155]],[[624427,747000],[-1094,1681],[-2066,1432],[268,2802],[-472,2027]],[[621063,754942],[3860,898]],[[624923,755840],[575,-1513],[1058,-997],[-559,-1444],[1480,-1975],[-783,-1834],[1179,-1567],[1247,-943],[62,-3994]],[[557348,916272],[3703,-2819],[4336,-3921],[73,-8868],[938,-2241]],[[566398,898423],[-4779,-1631],[-2693,-4018],[434,-3527],[-4419,-4630],[-5364,-4954],[-2023,-8110],[1977,-4057],[2657,-3194],[-2552,-6497],[-2889,-1347],[-1059,-9668],[-1578,-5395],[-3370,556],[-1572,-4567],[-3216,-265],[-883,5444],[-2325,6535],[-2113,8145]],[[588294,818344],[-2385,-341],[-856,-1264],[-178,-2899],[-1105,557],[-2507,-276],[-728,1346],[-1042,-1004],[-1045,832],[-2187,116],[-3101,1382],[-2806,451],[-2151,-127],[-1523,-1561],[-1328,-225]],[[565352,815331],[-53,2564],[-857,2668],[1666,1176],[16,2296],[-770,2190],[-121,2548]],[[565233,828773],[2685,-39],[3016,2169],[644,3251],[2278,1844],[-261,2580]],[[573595,838578],[1689,969],[2984,2221]],[[606176,789553],[-2218,-460],[-1848,-1864],[-2600,-303],[-2393,-2147],[140,-3084]],[[592877,783044],[-382,626],[-4317,1455],[-192,2148],[-2573,-709],[-1031,-3172],[-2151,-4256]],[[582231,779136],[-1260,988],[-1306,-926],[-1239,1061]],[[578426,780259],[699,625],[485,1976],[761,1836],[-197,1031],[581,460],[274,-797],[1637,-169],[735,426],[-518,584],[197,858],[-970,1464],[-402,2408],[-1012,942],[200,1951],[-1255,1550],[-1143,215],[-2047,1795],[-1847,-570],[-662,-849]],[[573942,795995],[-1172,1],[-699,-1347],[-2050,-553],[-948,-884],[-1290,1407],[-1781,22],[-1719,637],[-1199,-1233]],[[563084,794045],[-193,1544],[-1543,1566]],[[561348,797155],[543,2322],[770,1499]],[[562661,800976],[606,-336],[-716,2588],[2522,4790],[1379,670],[297,1616],[-1397,5027]],[[562661,800976],[-2640,2214],[-1999,-814],[-1312,591],[-1641,-1234],[-1401,2041],[-1142,-782],[-157,348]],[[552369,803340],[-1278,2836],[-2065,348],[-264,1803],[-1905,644],[-415,-1487],[-1509,1191],[174,1584],[-2077,501],[-1317,1854]],[[541713,812614],[-1138,3678],[216,1985],[-687,3080],[-1009,2053],[775,1537],[-649,2930]],[[539221,827877],[1898,1692],[4335,2663],[3498,1949],[2772,-973],[209,-1405],[2679,-73]],[[563141,831163],[1425,-616],[667,-1774]],[[547165,795435],[-211,-2354],[-1564,-11],[538,-1248],[-922,-3707]],[[545006,788115],[-530,-972],[-2429,-144],[-1402,-1306],[-2294,446]],[[538351,786139],[-3972,1487],[-621,2003],[-2745,-1001],[-323,-1095],[-1683,819]],[[529007,788352],[-1417,156],[-1257,1049],[425,1409],[-108,1022]],[[526650,791988],[839,318],[1405,-1599],[396,1519],[2450,-245],[1985,1033],[1332,-177],[866,-1179],[259,978],[-393,3753],[998,731],[979,2655]],[[537766,799775],[2064,-1854],[1562,2356],[978,430],[2156,-1757],[1305,299],[1280,-1088]],[[547111,798161],[-223,-731],[277,-1995]],[[563084,794045],[-1696,-1208],[-1315,-3906],[-1679,-3905],[-2227,-1086]],[[556167,783940],[-1734,255],[-2128,-1514]],[[552305,782681],[-1039,-860],[-2294,1107],[-2077,2470],[-882,709]],[[546013,786107],[-540,1944],[-467,64]],[[547165,795435],[1414,-1475],[1024,-628],[2331,706],[224,1156],[1104,171],[1352,894],[301,-368],[1304,719],[651,1355],[911,351],[2975,-1750],[592,589]],[[578426,780259],[-498,2628],[294,2459],[-89,2527],[-1603,3425],[-881,2428],[-860,1707],[-847,562]],[[582231,779136],[64,-1485],[-1347,-1240],[-843,540],[-778,-6948]],[[579327,770003],[-1633,605],[-2021,2093],[-3270,-1338],[-1378,-1469],[-4079,303],[-2135,898],[-1076,-422],[-799,2368]],[[562936,773041],[-509,1004],[644,972],[-685,717],[-872,-1291],[-1620,1673],[-218,2374],[-1692,1355],[-312,1832],[-1505,2263]],[[559078,836132],[-590,4841]],[[558488,840973],[3181,1767],[4659,-370],[2729,570],[389,-1198],[1479,-370],[2670,-2794]],[[558488,840973],[96,4336],[1365,3616],[2618,1967],[2206,-4303],[2228,112],[534,4421]],[[567535,851122],[2366,1018],[1217,-706],[2391,-2137],[2291,-11]],[[567535,851122],[323,3398],[-1022,-726],[-1763,2047],[-241,3308],[3512,1605],[3500,836],[3014,-952],[2867,171]],[[541713,812614],[-1239,-600],[-733,661],[-696,-1096],[-1995,-1115],[-1032,-1435],[-2018,-1254],[486,-1712],[294,-2428],[1418,-1384],[1568,-2476]],[[526650,791988],[-2977,1761],[-570,-1251],[-2363,40]],[[517184,803153],[156,2525],[-554,1301]],[[516786,806979],[315,3891]],[[517101,810870],[-466,6034],[1668,3],[704,2167],[693,5273],[-520,1948]],[[519180,826295],[543,1219],[2322,313],[515,-1270],[1886,2839],[-635,2159],[-128,3266]],[[523683,834821],[2100,-759],[1777,876]],[[527560,834938],[49,-2225],[2807,-1342],[-29,-2044],[2824,1081],[1562,1577],[3136,-2273],[1312,-1835]],[[579327,770003],[-1441,-2386],[-1015,-4119],[897,-3285]],[[577768,760213],[-2392,772],[-2829,-1812]],[[572547,759173],[-31,-2867],[-2524,-544],[-1957,2012],[-2224,-1583],[-2055,167]],[[563756,756358],[-197,3808],[-1391,1849]],[[562168,762015],[456,812],[-301,685],[468,1833],[1058,1800],[-1349,2486],[-249,2103],[685,1307]],[[573027,721586],[-347,-1699],[-4000,-490],[28,951],[-3389,1123],[514,2447],[1518,-1940],[2162,328],[2068,-409],[-68,-1002],[1514,691]],[[572547,759173],[1353,-1524],[-860,-3605],[-660,-645]],[[572380,753399],[-1693,163],[-1449,545],[-3364,-1497],[1925,-3238],[-1411,-938],[-1547,-6],[-1469,2966],[-522,-1264],[621,-3439],[1390,-2703],[-1047,-1262],[1547,-2654],[1375,-1670],[41,-3254],[-2569,1526],[819,-2937],[-1764,-605],[1054,-5082],[-1845,-72],[-2278,2505],[-1042,4607],[-486,3832],[-1083,2647],[-1423,3284],[-188,1640]],[[555972,746493],[1291,2793],[167,1872],[903,835],[55,1513]],[[558388,753506],[1817,510],[1059,1258],[1506,-111],[457,1004],[529,191]],[[600415,724589],[-1021,2612],[1052,2163],[-1694,-491],[-2323,1325],[-1910,-3314],[-4216,-647],[-2249,3090],[-2995,194],[-640,-2389],[-1920,-684],[-2686,3067],[-3033,-104],[-1645,5728],[-2029,3194],[1351,4479],[-1761,2752],[3081,5507],[4278,231],[1167,4376],[5294,-762],[3339,3735],[3237,1628],[4595,123],[4849,-4059],[3985,-2228],[3236,888],[2391,-513],[3279,3006]],[[615427,757496],[2960,274],[2676,-2828]],[[577768,760213],[330,-2214],[2425,-1860],[-506,-1411],[-3298,-318],[-1185,-1781],[-2318,-3101],[-874,2682],[38,1189]],[[555972,746493],[-473,403],[-55,1267],[-1539,1934],[-242,2744],[235,3929],[379,1788],[-467,907]],[[553810,759465],[-187,1833],[1204,2836],[177,-1084],[747,510]],[[555751,763560],[592,-1545],[665,-590],[187,-2087]],[[557195,759338],[-353,-1960],[394,-2470],[1152,-1402]],[[552305,782681],[674,-2231],[883,-1641],[-1070,-2167]],[[552792,776642],[-1256,1275],[-1920,-80],[-2388,956],[-1298,-127],[-602,-1195],[-997,1322],[-581,-2390],[1360,-2693],[602,-1784],[1277,-2152],[1059,-1274],[1048,-2406],[2459,-2180]],[[551555,763914],[-306,-980]],[[551249,762934],[-2611,2131],[-1611,2074],[-2540,1711],[-2336,4239],[560,430],[-1266,2422],[-52,1944],[-1786,908],[-851,-2486],[-820,1928],[62,2000],[99,93]],[[538097,780328],[1936,-197],[508,972],[945,-940],[1090,-111],[-10,1609],[965,590],[270,2326],[2212,1530]],[[529007,788352],[-220,-2361],[-1224,-972],[-2056,722],[-601,-2323],[-1323,-183],[-482,913],[-1557,-1953],[-1339,-274],[-1196,1234]],[[515761,803532],[301,3229],[724,218]],[[506982,812855],[2226,1136]],[[509208,813991],[2033,-452],[2575,1197],[1758,-2521],[1527,-1345]],[[509208,813991],[1431,1583],[2433,8472],[3800,2411],[2308,-162]],[[474903,759483],[1008,1463],[1133,839],[697,-2819],[1640,7],[476,727],[1619,-201],[776,-2889],[-1283,-1559],[-36,-4493],[-451,-843],[-112,-2722],[-1200,-474],[1113,-3452],[-767,-3784],[958,-1712],[-381,-1566],[-1030,-2159],[232,-1907]],[[479295,731939],[-1117,-1494],[-1464,809],[-1434,-634],[425,4507],[-261,3541],[-1243,531],[-664,2183],[221,3770],[1107,2090],[197,2328],[580,3463],[-62,2440],[-555,2068],[-122,1942]],[[474903,759483],[140,4101],[-1135,2498],[3930,4157],[3399,-1039],[3729,36],[2956,-983],[2307,302],[4489,-191]],[[508294,762894],[149,-3345],[-2633,-3836],[-3559,-1217],[-248,-1937],[-1707,-3193],[-1071,-4687],[1084,-3291],[-1607,-2569],[-601,-3744],[-2097,-1147],[-1967,-4429],[-3526,-87],[-2647,109],[-1740,-2034],[-1061,-2176],[-1359,478],[-1029,1945],[-787,3313],[-2593,892]],[[482783,828514],[458,-4114],[-2099,-5143],[-4925,-3403],[-3932,871],[2253,6013],[-1451,5855],[3779,4511],[2100,2690]],[[478966,835794],[572,-3086],[-572,-3086],[1718,79],[2099,-1187]],[[960499,396901],[2278,-3571],[1444,-2648],[-1055,-1383],[-1529,1557],[-1987,2592],[-1790,3051],[-1839,4060],[-384,1953],[1195,-83],[1556,-1957],[1222,-1959],[889,-1612]],[[950330,457929],[776,-1979],[-1940,37],[-1056,3543],[1660,-1393],[560,-208]],[[949110,463013],[-418,-1062],[-2059,4992],[-578,3441],[944,0],[1000,-4607],[1111,-2764]],[[946811,461441],[-1083,-128],[-1703,582],[-581,888],[174,2286],[1834,-906],[904,-1209],[455,-1513]],[[943444,472112],[652,-1828],[118,-1157],[-2177,2442],[-1521,2070],[-1042,1917],[414,587],[1278,-1382],[2278,-2649]],[[936499,477861],[1107,-1878],[-553,-328],[-1215,1312],[-1141,2367],[143,959],[1659,-2432]],[[991349,287563],[-1050,-3103],[-1377,-3943],[-2146,-2296],[-477,1511],[-1158,829],[1601,4738],[-909,3169],[-2989,2304],[78,2086],[2007,2009],[469,4434],[-129,3724],[-1125,3859],[74,1015],[-1327,2377],[-2186,5096],[-1162,4077],[1031,452],[1512,-3199],[2161,-1493],[785,-5131],[2013,-6062],[58,3932],[1254,-1570],[416,-4356],[2235,-1877],[1877,-461],[1587,2197],[1408,-666],[-673,-5110],[-846,-3361],[-2120,119],[-742,-1751],[258,-2477],[-408,-1072]],[[971299,267469],[2380,3015],[1667,2989],[1236,4292],[1052,1457],[413,3215],[1948,2662],[616,-2448],[630,-2379],[1976,2335],[803,-2433],[3,-2424],[-1034,-2667],[-1816,-4244],[-1421,-2316],[1025,-2771],[-2143,-71],[-2377,-2170],[-744,-3769],[-1579,-5827],[-2181,-2574],[-1386,-1644],[-2559,123],[-1799,1899],[-3019,405],[-466,2114],[1493,4272],[3492,5684],[1794,1083],[1996,2192]],[[910247,283289],[1666,-387],[197,-6836],[-952,-1984],[-287,-4633],[-970,1577],[-1929,-4014],[-575,310],[-1708,179],[-1712,4929],[-380,3802],[-1603,5016],[71,2641],[1817,-510],[2684,-1988],[1512,790],[2169,1108]],[[850412,332770],[-2944,-2953],[-2409,-1328],[-535,-3020],[-1026,-2340],[-2357,-140],[-1744,-512],[-2456,1050],[-1997,-628],[-1907,-265],[-1652,-3071],[-810,261],[-1393,-1628],[-1336,-1831],[-2026,226],[-1862,2],[-2947,3678],[-1493,1094],[61,3300],[1379,784],[471,1312],[-98,2068],[339,4004],[-311,3413],[-1468,5821],[-456,3288],[120,3280],[-1106,3749],[-71,1692],[-1230,2294],[-346,4511],[-1588,4559],[-384,2456],[1220,-2490],[-937,5342],[1378,-1669],[822,-2230],[-47,2949],[-1374,4534],[-267,1814],[-644,1723],[302,3331],[569,1418],[379,2881],[-297,3366],[1148,4144],[210,-4386],[1173,3962],[2257,1925],[1353,2456],[2123,2114],[1263,449],[765,-710],[2189,2147],[1684,638],[422,1262],[735,526],[1535,-136],[2920,1686],[1510,2557],[709,3078],[1629,2923],[125,2298],[73,3131],[1944,4894],[1170,-4972],[1182,1149],[-989,2721],[871,2794],[1226,-1248],[337,4382],[1518,2833],[670,2273],[1397,981],[43,1609],[1221,-671],[49,1447],[1221,825],[1343,776],[2052,-2643],[1542,-3411],[1738,-39],[1767,-540],[-589,3162],[1331,4619],[1252,1505],[-433,1438],[1206,3290],[1683,2031],[1421,-684],[2334,1085],[-50,2943],[-2035,1896],[1479,836],[1840,-1427],[1476,-2362],[2339,-1473],[793,582],[1722,-1770],[1623,1649],[1044,-502],[650,1107],[1275,-2849],[-740,-3083],[-1055,-2326],[-954,-192],[322,-2302],[-817,-2878],[-986,-2830],[199,-1626],[2208,-3182],[2139,-1846],[1431,-1983],[2008,-3412],[783,6],[1454,-1475],[422,-1779],[2652,-1953],[1834,1968],[543,3092],[564,2553],[345,3157],[844,4582],[-385,2785],[200,1676],[-321,3296],[364,4338],[533,1170],[-433,1923],[671,3053],[528,3164],[70,1643],[1032,2157],[783,-2817],[193,-3613],[692,-696],[119,-2419],[1010,-2929],[208,-3260],[-98,-2092],[1001,-4519],[1782,2172],[920,-2438],[1333,-2249],[-286,-2552],[593,-4938],[421,-2875],[700,-703],[754,-4922],[-268,-2986],[899,-3905],[3010,-3009],[1963,-2737],[1863,-2506],[-364,-1395],[1589,-3612],[1080,-6231],[1109,1266],[1126,-2496],[679,885],[479,-6103],[1971,-3536],[1290,-2198],[2171,-4662],[780,-4628],[72,-3284],[-192,-3564],[1324,-4894],[-159,-5097],[-481,-2667],[-750,-5137],[57,-3302],[-550,-4128],[-1227,-5238],[-2058,-2830],[-1014,-4461],[-926,-2847],[-824,-4970],[-1072,-2871],[-702,-4309],[-359,-3967],[142,-1821],[-1593,-2001],[-3109,-209],[-2563,-2362],[-1277,-2231],[-1678,-2472],[-2301,2546],[-1702,1015],[431,3002],[-1518,-1089],[-2432,-4171],[-2402,1562],[-1575,911],[-1588,412],[-2689,1666],[-1796,3549],[-515,4373],[-646,2910],[-1365,2336],[-2672,693],[913,2794],[-672,4276],[-1357,-3986],[-2471,-1058],[1452,3186],[421,3323],[1073,2821],[-221,4264],[-2260,-4911],[-1736,-1969],[-1064,-4581],[-2169,2370],[87,3056],[-1739,4176],[-1465,2158],[522,1330],[-3564,3490],[-1952,164],[-2672,2804],[-4973,-545],[-3597,-2062],[-3161,-1922],[-2651,381]],[[727188,561622],[-418,-5996],[-1165,-1640],[-2416,-1317],[-1322,4579],[-492,8277],[1257,9348],[1920,-3199],[1293,-4056],[1343,-5996]],[[804097,623096],[-2278,1785],[-80,4954],[1369,2610],[3035,1613],[1597,-136],[620,-2198],[-1220,-2534],[-643,-3326],[-2400,-2768]],[[845181,748241],[-3883,-1674],[-2045,-2692],[-2991,-1572],[1476,2669],[-581,2242],[2199,3871],[-1467,3018],[-2421,-2033],[-3137,-4005],[-1711,-3718],[-2724,-277],[-1417,-2687],[1464,-3894],[2273,-945],[93,-2585],[2198,-1682],[3113,4112],[2466,-2242],[1796,-154],[450,-3017],[-3932,-1608],[-1298,-3109],[-2701,-2889],[-1426,-4031],[2990,-3165],[1091,-5664],[1690,-5277],[1887,-4424],[-45,-4278],[-1744,-1573],[665,-3071],[1635,-1788],[-427,-4690],[-706,-4564],[-1552,-518],[-2028,-6233],[-2250,-7558],[-2579,-6873],[-3821,-5315],[-3863,-4847],[-3130,-661],[-1698,-2558],[-961,1869],[-1571,-2862],[-3882,-2885],[-2939,-883],[-949,-6082],[-1539,-337],[-729,4179],[658,2228],[-3727,1844],[-1312,-938]],[[838271,658781],[-1673,-9234],[-1190,-4724],[-1464,4863],[-317,4269],[1635,5657],[2223,4359],[1268,-1715],[-482,-3475]],[[538351,786139],[-301,-2837],[665,-2452]],[[538715,780850],[-2211,839],[-2258,-2044],[153,-2858],[-340,-1641],[911,-2932],[2604,-2900],[1397,-4761],[3091,-4641],[2177,36],[677,-1273],[-779,-1148],[2487,-2081],[2040,-1742],[2382,-3003],[287,-1076],[-519,-2062],[-1541,2689],[-2414,947],[-1169,-3725],[2008,-2135],[-330,-3005],[-1160,-341],[-1484,-4939],[-1158,-444],[11,1761],[567,3088],[604,1231],[-1085,3337],[-848,2904],[-1153,718],[-820,2485],[-1785,1047],[-1202,2315],[-2055,373],[-2171,2600],[-2541,3748],[-1889,3317],[-866,5693],[-1382,670],[-2260,1901],[-1279,-778],[-1605,-2673],[-1154,-422]],[[541003,737963],[2109,503],[-1001,-4533],[416,-1784],[-583,-2961],[-2124,2169],[-1413,621],[-3877,2928],[389,2957],[3250,-527],[2834,627]],[[524194,753835],[1389,1786],[1666,-4089],[-390,-7617],[-1263,364],[-1133,-1923],[-1052,1527],[-111,6948],[-634,3293],[1528,-289]],[[523683,834821],[-1127,3196],[-84,5887],[462,1555],[797,1728],[2448,357],[975,1589],[2234,1624],[-94,-2961],[-822,-1876],[333,-1613],[1506,-871],[-679,-2173],[-827,626],[-2000,-4147],[755,-2804]],[[534363,841436],[886,-2888],[-1666,-4664],[-2907,3253],[-388,2390],[4075,1909]],[[478966,835794],[2328,237],[2978,-3560],[-1489,-3957]],[[491406,825848],[4,-1],[409,3343],[-1860,3547],[-43,81],[-3373,1014],[-662,1558],[1010,2574],[-914,1586],[-1495,-2723],[-163,5551],[-1403,2937],[1009,5954],[2158,4671],[2218,-456],[3351,485],[-2969,-6231],[2830,789],[3044,-30],[-724,-4692],[-2497,-5162],[2872,-367],[220,-605],[2474,-6795],[1902,-925],[1709,-6561],[792,-2275],[3365,-1097],[-337,-3683],[-1415,-1689],[1109,-2979],[-2499,-3016],[-3716,53],[-4729,-1583],[-1295,1133],[-1837,-2698],[-2570,654],[-1951,-2199],[-1477,1150],[4074,6048],[2487,1244],[-22,5],[-4338,960],[-786,2291],[2903,1785],[-1522,3102],[528,3772],[4129,-520]],[[459698,901008],[-642,-3726],[3139,-3928],[-3612,-4392],[-8012,-3947],[-2394,-1050],[-3657,848],[-7751,1823],[2735,2545],[-6046,2816],[4918,1117],[-119,1690],[-5830,1340],[1877,3751],[4210,852],[4329,-3907],[4221,3136],[3495,-1628],[4530,3069],[4609,-409]],[[634956,759070],[1461,-3033],[1413,-4085],[1294,-269],[855,-1553],[-2287,-463],[-484,-4473],[-477,-2017],[-1019,-1346],[74,-2852]],[[624923,755840],[680,941],[2070,-1656],[1498,-342],[378,675],[-1368,3116],[721,794]],[[615427,757496],[415,2461],[-694,3928],[-1606,2123],[-1539,662],[-1017,1764]],[[835649,591461],[-1418,4388],[2380,-211],[964,-2074],[-736,-4976],[-1190,2873]],[[840516,575777],[697,1614],[307,3574],[1532,339],[-448,-3878],[2056,5560],[-265,-5494],[-998,-1893],[-870,-3638],[-873,-1706],[-1710,3981],[572,1541]],[[851046,566757],[282,-3826],[164,-3230],[-946,-5270],[-1015,5870],[-1299,-2921],[887,-4243],[-796,-2699],[-3269,3342],[-781,4168],[847,2739],[-1759,2723],[-873,-2388],[-1307,222],[-2055,-3213],[-460,1685],[1090,4854],[1750,1620],[1515,2170],[981,-2607],[2112,1577],[454,2570],[1963,153],[-165,4453],[2252,-2731],[233,-2900],[195,-2118]],[[829179,571950],[-3696,-5465],[1362,4028],[2007,3557],[1668,3984],[1456,5720],[494,-4695],[-1833,-3171],[-1458,-3958]],[[839824,623253],[-452,-2388],[948,-4128],[-731,-4786],[-1638,-1908],[-438,-4643],[622,-4587],[1472,-634],[1229,681],[3470,-3193],[-265,-3135],[906,-1383],[-288,-2654],[-2165,2827],[-1026,3025],[-715,-2114],[-1769,3448],[-2523,-851],[-1382,1272],[141,2381],[868,1465],[-830,1332],[-358,-2076],[-1372,3309],[-415,2508],[-103,5513],[1118,-1895],[288,9010],[905,5218],[1682,-7],[1712,-1644],[856,1500],[253,-1463]],[[838995,584040],[-430,2741],[1667,-1783],[1768,9],[-54,-2406],[-1287,-2445],[-1764,-1730],[-98,2676],[198,2938]],[[848617,588341],[781,-6430],[-2144,1528],[58,-1933],[680,-3554],[-1321,-1290],[-116,4050],[-836,300],[-435,3486],[1635,-459],[-37,2180],[-1697,4397],[2667,-127],[765,-2148]],[[783725,554127],[639,-538],[1640,-3476],[1165,-3856],[160,-3878],[-296,-2620],[270,-1980],[203,-3408],[978,-1587],[1093,-5093],[-53,-1947],[-1970,-384],[-2628,4266],[-3286,4571],[-325,2934],[-1606,3852],[-384,4769],[-1002,3140],[305,4193],[-613,2441]],[[804619,529853],[2036,-1974],[2147,1076],[559,4876],[1185,1086],[3330,1247],[1992,4556],[1365,3642]],[[817233,544362],[1265,-2985],[583,1962],[1328,-182],[162,3677],[125,2837]],[[820696,549671],[2139,4005],[1401,4501],[1123,19],[1427,-2914],[127,-2503],[1830,-1605],[2317,-1733],[-198,-2256],[-1864,-286],[497,-2812],[-2046,-1961]],[[817233,544362],[1099,2154],[2364,3155]],[[538097,780328],[618,522]],[[577972,866730],[-5042,-459],[-4884,-2111],[-4520,-1215],[-1608,3142],[-2690,1890],[618,5674],[-1349,5194],[1325,3354],[2518,3617],[6355,6246],[1855,1204],[-289,2435],[-3863,2722]],[[547111,798161],[394,1267],[1231,-97],[948,595],[75,536],[532,274],[182,1310],[638,250],[430,1037],[828,7]],[[606694,621948],[1613,-6667],[765,-5286],[1523,-2805],[3791,-5440],[1544,-3283],[1505,-3323],[869,-1978],[1365,-1733]],[[619669,591433],[-837,-1406],[-1189,500]],[[617643,590527],[-950,1863],[-1142,3377],[-1232,1850],[-718,1988],[-2418,2309],[-1904,69],[-670,1204],[-1629,-1354],[-1686,2614],[-867,-4298],[-3235,1204]],[[894123,743935],[-2570,-5798],[47,-5943],[-1046,-4596],[484,-2886],[-1446,-4058],[-3550,-2710],[-4883,-353],[-3957,-6574],[-1867,2213],[-115,4305],[-4831,-1271],[-3288,-2712],[-3251,-111],[2816,-4237],[-1854,-9788],[-1795,-2423],[-1344,2238],[681,5190],[-1758,1675],[-1129,3949],[2626,1775],[1457,3620],[2794,2977],[2038,3937],[5529,1718],[2970,-1178],[2907,10238],[1852,-2750],[4075,5759],[1580,2238],[1745,7042],[-476,6476],[1173,3637],[2954,1057],[1514,-7987],[-82,-4669]],[[901703,771463],[1965,2441],[618,-6466],[-4121,-1576],[-2433,-5719],[-4368,3936],[-1511,-6301],[-3090,-87],[-382,5726],[1374,4431],[2968,320],[809,7967],[822,4488],[3264,-5996],[2132,-1936],[1953,-1228]],[[867697,711011],[1536,3436],[1580,-667],[1142,2421],[2040,-1242],[355,-1975],[-1564,-3485],[-1140,1848],[-1424,-1339],[-737,-3369],[-1811,1640],[23,2732]],[[647523,614189],[-2009,-1547],[-538,-2557],[-65,-1964],[-2766,-2431],[-4438,-2686],[-2488,-4064],[-1223,-317],[-833,341],[-1623,-2390],[-1771,-1109],[-2332,-299],[-701,-327],[-608,-1521],[-728,-420],[-430,-1465],[-1375,127],[-887,-781],[-1923,293],[-722,3364],[79,3148],[-454,1699],[-543,4259],[-799,2367],[556,281],[-285,2631],[337,1111],[-123,2511]],[[618831,612443],[1219,1837],[-285,2428],[737,2831],[1140,-1498],[754,521],[3205,132],[509,-576],[2686,-576],[1064,288],[695,-1919],[1296,960],[1991,6046],[2593,2592],[8009,2207]],[[634489,682725],[1087,-4966],[1367,-1316],[476,-2022],[1893,-2421],[168,-2376],[-277,-1918],[352,-1935],[798,-1614],[370,-1888],[416,-1412]],[[642748,660124],[528,-2200]],[[618831,612443],[-361,2458],[-837,1734],[-214,2297],[-1435,2064],[-1481,4829],[-783,4693],[-1922,3963],[-1238,946],[-1840,5488],[-321,4002],[118,3414],[-1593,6386],[-1303,2247],[-1500,1191],[-914,3300],[152,1301],[-772,2986],[-811,1286],[-1085,4284],[-1691,4644],[-1417,3955],[-1383,-28],[432,3161],[124,2016],[344,2298]],[[364831,68836],[1415,-1],[4135,1242],[4189,-1242],[3427,-2482],[1197,-3498],[327,-2483],[108,-2934],[-4298,-1805],[-4515,-1467],[-5223,-1354],[-5821,-1129],[-6583,339],[-3646,1918],[490,2370],[5930,1580],[2394,1918],[1741,2483],[1251,2144],[1687,2031],[1795,2370]],[[315861,56116],[6256,-226],[5985,-564],[2067,2370],[1469,2031],[2884,-2370],[-816,-2934],[-816,-2595],[-5822,790],[-6202,-339],[-3482,1919],[0,225],[-1523,1693]],[[294678,107867],[1904,677],[3210,-225],[816,2934],[163,2144],[-54,4626],[1578,2709],[2557,902],[1469,-2143],[653,-2145],[1196,-2595],[925,-2483],[762,-2595],[326,-2595],[-489,-2257],[-762,-2145],[-3264,-789],[-3101,-1129],[-3645,113],[1360,2257],[-3265,-790],[-3101,-790],[-2122,1693],[-163,2369],[3047,2257]],[[215748,104269],[1741,1016],[3536,-790],[4026,-451],[3047,-791],[3046,677],[1633,-3272],[-2177,451],[-3373,-225],[-3427,225],[-3754,-338],[-2829,1128],[-1469,2370]],[[159384,94113],[598,1918],[3319,-1015],[3591,-903],[3319,1016],[-1578,-2032],[-2612,-1467],[-3862,452],[-2775,2031]],[[146436,95241],[2013,1242],[2774,-1354],[4244,-2257],[-1632,225],[-3591,565],[-3808,1579]],[[45242,65676],[1686,2144],[5169,-903],[2775,-1805],[2121,-2031],[762,-2596],[-5332,-790],[-3645,2032],[-1632,2031],[-109,338],[-1795,1580]],[[999999,30445],[0,-30445],[-999999,0],[0,30445],[160,-47],[2455,3352],[5005,-1805],[322,201],[2934,1836],[382,-65],[326,-43],[4020,-2398],[3517,2398],[631,328],[8161,1015],[2643,-1343],[1305,-688],[4189,-1918],[7888,-1467],[6257,-1806],[10718,-1354],[7997,1580],[11806,-1129],[6692,-1805],[7345,1693],[7725,1580],[599,2708],[-10936,226],[-8976,1354],[-2340,2257],[-7453,1241],[489,2595],[1034,2370],[1034,2144],[-544,2370],[-4625,1580],[-2122,2031],[-4298,1806],[6747,-339],[6419,903],[4026,-1919],[4951,1693],[4570,2144],[2231,1919],[-979,2369],[-3591,1580],[-4080,1693],[-5713,338],[-5005,790],[-5387,564],[-1795,2145],[-3590,1805],[-2177,2032],[-870,6544],[1360,-564],[2502,-1806],[4570,565],[4408,790],[2284,-2483],[4407,564],[3700,1242],[3482,1579],[3155,1919],[4189,564],[-108,2144],[-980,2144],[816,2031],[3591,1016],[1632,-1919],[4244,1129],[3210,1467],[3971,113],[3754,564],[3754,1354],[2993,1241],[3373,1242],[2176,-339],[1904,-451],[4135,790],[3699,-1016],[3809,113],[3645,790],[3754,-564],[4135,-565],[3862,226],[4026,-113],[4135,-113],[3809,226],[2829,1693],[3373,903],[3482,-1242],[3319,1016],[2992,2031],[1795,-1805],[979,-2032],[1796,-1918],[2883,1693],[3319,-2144],[3754,-677],[3210,-1580],[3917,338],[3536,1016],[4190,-226],[3754,-790],[3808,-1015],[1469,2482],[-1796,1919],[-1360,2031],[-3590,451],[-1578,2144],[-599,2145],[-979,4287],[2122,-790],[3645,-338],[3591,338],[3264,-902],[2829,-1693],[1197,-2031],[3754,-339],[3591,790],[3808,1129],[3428,677],[2829,-1354],[3699,451],[2394,4401],[2231,-2595],[3210,-1016],[3482,564],[2285,-2257],[3645,-225],[3373,-677],[3319,-1242],[2176,2144],[1088,2032],[2775,-2257],[3808,564],[2829,-1241],[1904,-1919],[3700,564],[2883,1242],[2829,1467],[3373,789],[3918,678],[3536,790],[2720,1241],[1632,1805],[653,2483],[-326,2370],[-871,2257],[-979,2257],[-870,2256],[-708,2032],[-163,2257],[272,2256],[1306,2145],[1088,2369],[435,2257],[-544,2483],[-326,2257],[1360,2595],[1523,1693],[1796,2144],[1904,1805],[2230,1693],[1089,2482],[1523,1580],[1741,1468],[2666,338],[1741,1805],[1958,1129],[2285,677],[2013,1467],[1578,1806],[2176,677],[1632,-1467],[-1033,-1919],[-2829,-1693],[-1197,-1241],[-2068,903],[-2285,-564],[-1904,-1354],[-2013,-1467],[-1360,-1693],[-381,-2257],[163,-2144],[1306,-1918],[-1904,-1355],[-2612,-451],[-1523,-1918],[-1632,-1806],[-1741,-2483],[-435,-2143],[979,-2370],[1469,-1806],[2285,-1353],[2122,-1806],[1142,-2257],[599,-2144],[816,-2257],[1306,-1918],[815,-2144],[381,-5304],[817,-2144],[217,-2257],[871,-2257],[-381,-3047],[-1524,-2370],[-1632,-1918],[-3699,-790],[-1252,-2031],[-1686,-1919],[-4190,-2144],[-3699,-903],[-3482,-1241],[-3754,-1241],[-2230,-2370],[-4462,-225],[-4896,225],[-4407,-451],[-4679,0],[871,-2257],[4243,-1015],[3101,-1580],[1741,-2031],[-3101,-1806],[-4787,564],[-3972,-1467],[-163,-2370],[-109,-2257],[3264,-1918],[599,-2144],[3536,-2144],[5876,-903],[5005,-1580],[3972,-1805],[5059,-1806],[6910,-903],[6800,-1579],[4734,-1693],[5168,-1919],[2720,-2708],[1361,-2144],[3373,2032],[4570,1692],[4842,1806],[5767,1467],[4951,1580],[6909,112],[6801,-789],[5603,-1355],[1796,2483],[3863,1692],[7018,113],[5495,1242],[5223,1241],[5767,790],[6148,1016],[4298,1467],[-1959,2031],[-1197,2031],[0,2144],[-5386,-226],[-5713,-902],[-5440,0],[-762,2144],[381,4288],[1251,1241],[3972,1354],[4679,1354],[3373,1693],[3373,1693],[2503,2257],[3808,1015],[3754,790],[1904,451],[4298,226],[4081,790],[3427,1128],[3373,1355],[3047,1354],[3863,1805],[2448,1919],[2611,1692],[816,2257],[-2937,1354],[979,2370],[1850,1806],[2883,1128],[3047,1354],[2829,1806],[2176,2257],[1360,2708],[2013,1580],[3319,-339],[1360,-1918],[3319,-226],[109,2144],[1414,2257],[2992,-564],[708,-2144],[3318,-339],[3591,1016],[3482,677],[3156,-338],[1196,-2370],[3047,1918],[2829,1016],[3156,790],[3101,790],[2829,1354],[3101,902],[2394,1242],[1686,2031],[2068,-1467],[2883,790],[2013,-2708],[1578,-2031],[3156,1128],[1251,2257],[2829,1580],[3645,-339],[1088,-2144],[2285,2144],[2993,677],[3264,226],[2938,-113],[3101,-677],[2992,-339],[1306,-1918],[1795,-1693],[3047,1016],[3264,226],[3156,0],[3101,112],[2774,791],[2938,677],[2448,1580],[2612,1015],[2829,564],[2122,1580],[1523,3160],[1578,1918],[2883,-903],[1089,-2031],[2393,-1354],[2884,451],[1958,-2031],[2068,-1467],[2829,1354],[979,2483],[2503,1015],[2883,1919],[2721,790],[3264,1128],[2176,1241],[2285,1354],[2176,1242],[2612,-677],[2502,2031],[1796,1580],[2611,-113],[2285,1354],[544,2031],[2340,1580],[2285,1129],[2774,902],[2557,452],[2449,-339],[2611,-564],[2231,-1580],[272,-2483],[2448,-1918],[1687,-1580],[3318,-677],[1850,-1580],[2285,-1579],[2666,-339],[2230,1128],[2395,2370],[2611,-1241],[2720,-677],[2612,-677],[2720,-452],[2775,0],[2284,-5980],[-108,-1467],[-327,-2596],[-2666,-1466],[-2176,-2145],[381,-2257],[3101,113],[-381,-2257],[-1414,-2144],[-1306,-2370],[2122,-1805],[3210,-564],[3210,1015],[1523,2257],[925,2144],[1523,1806],[1741,1693],[707,2031],[1470,2821],[1740,564],[3156,226],[2775,677],[2829,903],[1360,2257],[816,2144],[1904,2143],[2720,1467],[2340,1129],[1523,1918],[1578,1016],[2013,903],[2775,-565],[2502,565],[2720,677],[3047,-339],[2013,1580],[1415,3837],[1033,-1580],[1306,-2708],[2339,-1129],[2666,-451],[2666,677],[2829,-452],[2612,-112],[1741,564],[2339,-339],[2122,-1241],[2502,790],[2993,0],[2557,790],[2883,-790],[1850,1918],[1415,1919],[1904,1580],[3482,4288],[1795,-790],[2122,-1580],[1850,-2031],[3536,-3498],[2720,-113],[2557,0],[2993,677],[2992,790],[2285,1579],[1904,1693],[3101,226],[2068,1241],[2176,-1128],[1414,-1806],[1959,-1805],[3047,225],[1904,-1467],[3319,-1467],[3481,-564],[2884,451],[2176,1806],[1850,1806],[2503,451],[2502,-790],[2884,-564],[2611,903],[2503,0],[2448,-565],[2557,-564],[2503,1016],[2992,902],[2829,226],[3156,0],[2557,564],[2502,452],[762,2821],[109,2370],[1741,-1580],[489,-2596],[925,-2369],[1143,-1919],[2339,-1015],[3156,338],[3645,113],[2502,339],[3646,0],[2611,112],[3645,-225],[3101,-452],[1959,-1805],[-544,-2144],[1795,-1693],[2992,-1354],[3101,-1467],[3591,-1015],[3754,-904],[2829,-902],[3156,-113],[1795,1919],[2448,-1580],[2122,-1806],[2449,-1354],[3373,-564],[3210,-677],[1360,-2257],[3155,-1354],[2122,-2032],[3101,-902],[3210,113],[2992,-339],[3319,113],[3319,-451],[3101,-790],[2883,-1355],[2884,-1128],[1958,-1693],[-326,-2257],[-1469,-2031],[-1251,-2595],[-980,-2031],[-1305,-2370],[-3645,-903],[-1633,-2031],[-3591,-1242],[-1251,-2256],[-1904,-2145],[-2013,-1805],[-1143,-2370],[-707,-2144],[-272,-2596],[55,-2143],[1577,-2257],[599,-2144],[1306,-2032],[5168,-789],[1088,-2483],[-5005,-903],[-4244,-1241],[-5277,-226],[-2339,-3272],[-490,-2708],[-1197,-2145],[-1469,-2144],[3700,-1918],[1414,-2370],[2394,-2144],[3373,-1918],[3863,-1806],[4189,-1805],[6366,-1806],[1414,-2821],[7998,-1241],[536,-441],[2075,-1703],[7671,1467],[6365,-1806],[4786,-1387]],[[590921,720665],[196,31],[402,1389],[2000,-77],[2526,1718],[-1877,-2452],[203,-1079]],[[594371,720195],[-298,202],[-531,-436],[-416,120],[-138,-221],[-55,582],[-201,353],[-535,60],[-754,-491],[-522,301]],[[594371,720195],[86,-463],[-2847,-2339],[-1360,747],[-649,2313],[1320,212]],[[452721,641666],[131,2669],[1067,1569],[909,3001],[-180,1949],[955,4064],[1547,3661],[935,928],[735,3359],[66,3068],[1003,3560],[1850,2099],[1761,5881],[51,80],[1396,2212],[2583,636],[2189,3936],[1393,1535],[2319,4808],[-695,7165],[1056,4955],[372,3033],[1787,3890],[2787,2631],[2060,2381],[1856,5962],[873,3537],[2045,-28],[1675,-2444],[2641,398],[2877,-1271],[1207,-62]],[[569444,644993],[0,21207],[0,20479],[-833,4639],[715,3556],[-430,2463],[1006,2763]],[[569902,700100],[3696,96],[2673,-1523],[2758,-1702],[1286,-897],[2138,1825],[1144,1650],[2449,475],[1976,-727],[756,-2857],[645,1882],[2226,-1361],[2165,-326],[1367,1451]],[[597007,688192],[-781,-2314],[-597,-4351],[-756,-2998],[-648,-1006],[-925,1858],[-1254,2570],[-1982,8255],[-286,-522],[1151,-6077],[1706,-5789],[2099,-8970],[1026,-3131],[892,-3253],[2493,-6375],[-552,-1004],[90,-3743],[3235,-5169],[488,-1180]],[[531913,709129],[3262,-1982],[1167,496],[2320,-961],[3686,-2574],[1301,-5118],[2494,-1118],[3915,-2411],[2959,-2863],[1355,1494],[1331,2649],[-647,4411],[871,2801],[2002,2699],[1912,786],[3758,-1179],[947,-2575],[1034,-24],[885,-982],[2760,-676],[677,-1902]],[[598049,550006],[-1641,6267],[-1269,1335],[-487,2303],[-1407,2807],[-1706,413],[946,3280],[1474,141],[415,1759]],[[617643,590527],[-977,-2547],[-940,-2700],[217,-1590],[44,-1751],[1552,-97],[669,409],[616,-1027]],[[618824,581224],[-606,-2040],[1026,-3171],[1025,-2773],[1060,-2055],[9082,-6834],[2337,35]],[[619669,591433],[658,-1782],[-88,-2391],[-1584,-1378],[1192,-1576]],[[619847,584306],[-1023,-3082]],[[619847,584306],[904,-1061],[545,-2382],[1253,-2411],[1379,-19],[2618,1473],[3024,683],[2445,1789],[1378,379],[992,1051],[1582,202]],[[584497,511764],[-1660,-1778],[-672,587]],[[585649,538507],[1144,1570],[1766,-1287],[2236,1347],[1954,-13],[1709,2648]],[[552792,776642],[1008,16],[-696,-2534],[1339,-2214],[-405,-2709],[-654,-255]],[[553384,768946],[-519,-526],[-903,-1338],[-407,-3168]],[[557195,759338],[353,-48],[124,1179],[1640,892],[623,221]],[[559935,761582],[945,337],[1288,96]],[[559935,761582],[-93,433],[332,685],[312,1402],[-395,-32],[-540,1068],[-457,270],[-363,917],[-519,358],[-395,813],[-498,-319],[-384,-1912],[-665,-414]],[[556270,764851],[229,494],[-1059,1195],[-913,620],[-406,798],[-737,988]],[[553810,759465],[-581,446],[-779,1880],[-1201,1143]],[[556270,764851],[-519,-1291]],[[328666,580263],[1598,749],[583,-202],[-111,-4290],[-2320,-633],[-500,518],[806,1584],[-56,2274]]],"bbox":[-180,-90,180.00000000000006,83.64513000000001],"transform":{"scale":[0.00036000036000036006,0.00017364530364530364],"translate":[-180,-90]}} diff --git a/worldmap/images/world-50m-flat.json b/worldmap/images/world-50m-flat.json new file mode 100644 index 0000000..89a368d --- /dev/null +++ b/worldmap/images/world-50m-flat.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3]]},{"type":"Polygon","arcs":[[-3,4,5,6,7,8,9]]},{"type":"MultiPolygon","arcs":[[[10,11,12]],[[13]],[[14]],[[15]],[[16]]]},{"type":"MultiPolygon","arcs":[[[17]],[[18,19,20,21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]]]},{"type":"MultiPolygon","arcs":[[[28]],[[29]],[[30]],[[31]],[[32,33,34,35]]]},{"type":"Polygon","arcs":[[36]]},{"type":"MultiPolygon","arcs":[[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]]]},{"type":"MultiPolygon","arcs":[[[51,52,53,54,55],[56]],[[57]],[[58]]]},{"type":"Polygon","arcs":[[59,60,61]]},{"type":"MultiPolygon","arcs":[[[62]],[[63]],[[64]],[[65]],[[66]]]},{"type":"MultiPolygon","arcs":[[[67]],[[68]],[[69]],[[70]],[[71]]]},{"type":"MultiPolygon","arcs":[[[72]],[[73]],[[74]],[[75]],[[76]],[[77]]]},{"type":"MultiPolygon","arcs":[[[78]],[[79]],[[80]]]},{"type":"Polygon","arcs":[[81]]},{"type":"Polygon","arcs":[[82]]},{"type":"MultiPolygon","arcs":[[[83]],[[84]],[[85]]]},{"type":"MultiPolygon","arcs":[[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102,103,104,105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164,165,166,167,168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]]]},{"type":"MultiPolygon","arcs":[[[220]],[[221]]]},{"type":"Polygon","arcs":[[222]]},{"type":"MultiPolygon","arcs":[[[223]],[[224]]]},{"type":"Polygon","arcs":[[225]]},{"type":"Polygon","arcs":[[226]]},{"type":"MultiPolygon","arcs":[[[227]],[[228]],[[229]],[[230]],[[231]],[[232]]]},{"type":"MultiPolygon","arcs":[[[233]],[[234]],[[235]]]},{"type":"Polygon","arcs":[[236]]},{"type":"MultiPolygon","arcs":[[[237]],[[238]],[[239]]]},{"type":"MultiPolygon","arcs":[[[240]],[[241]],[[242]]]},{"type":"Polygon","arcs":[[243]]},{"type":"Polygon","arcs":[[244]]},{"type":"Polygon","arcs":[[245]]},{"type":"Polygon","arcs":[[246]]},{"type":"MultiPolygon","arcs":[[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268,269]],[[270]]]},{"type":"MultiPolygon","arcs":[[[271,272,273,274,275],[276]],[[277]],[[278]],[[279]],[[280]]]},{"type":"MultiPolygon","arcs":[[[281,282,283,284,285,286,287,288,289,290,291]],[[292]]]},{"type":"Polygon","arcs":[[293,294,295,296,297]]},{"type":"MultiPolygon","arcs":[[[298]],[[-55,299,300,301,302]]]},{"type":"MultiPolygon","arcs":[[[303]],[[304,305,306,307,308,309,310]],[[311,312,313]]]},{"type":"MultiPolygon","arcs":[[[314,315,316]],[[317]],[[318]]]},{"type":"MultiPolygon","arcs":[[[319]],[[320]]]},{"type":"MultiPolygon","arcs":[[[321]],[[322]],[[323]]]},{"type":"Polygon","arcs":[[324,325,326,327]]},{"type":"MultiPolygon","arcs":[[[328]],[[329,330]],[[331,332]]]},{"type":"MultiPolygon","arcs":[[[333]],[[334]],[[335]],[[336,337,338,339,340,341,342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]]]},{"type":"MultiPolygon","arcs":[[[349]],[[350]],[[-8,351,352,353,-294,354,355,356,357]],[[358]]]},{"type":"MultiPolygon","arcs":[[[-53,359,360,361]],[[-57]],[[362]]]},{"type":"MultiPolygon","arcs":[[[363]],[[364]]]},{"type":"Polygon","arcs":[[-310,365,366,367,368,369]]},{"type":"Polygon","arcs":[[370,371,372,373,374,375]]},{"type":"MultiPolygon","arcs":[[[376]],[[377]],[[378,379,380]],[[381]],[[382]],[[383]]]},{"type":"Polygon","arcs":[[384,385]]},{"type":"Polygon","arcs":[[386,387,388,389]]},{"type":"Polygon","arcs":[[-297,390,391,392,393,394]]},{"type":"Polygon","arcs":[[-393,395,396,397,398,399,400,401]]},{"type":"MultiPolygon","arcs":[[[402]],[[403]],[[404]]]},{"type":"MultiPolygon","arcs":[[[405]],[[406]],[[407]],[[408]],[[409,410,411,412,413,414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]]]},{"type":"MultiPolygon","arcs":[[[422,423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]]]},{"type":"MultiPolygon","arcs":[[[-1,434,-386,435,436,437,438],[439]],[[440]]]},{"type":"Polygon","arcs":[[441,442,443,444]]},{"type":"Polygon","arcs":[[-444,445,446,447]]},{"type":"MultiPolygon","arcs":[[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]]]},{"type":"Polygon","arcs":[[-289,469,470,471,472]]},{"type":"Polygon","arcs":[[473,474,475,476,477]]},{"type":"Polygon","arcs":[[478]]},{"type":"MultiPolygon","arcs":[[[479,480,481]],[[482]]]},{"type":"Polygon","arcs":[[483]]},{"type":"Polygon","arcs":[[484,485,486,487,488,489,490,491]]},{"type":"Polygon","arcs":[[492,493,494,495,496,497,498]]},{"type":"MultiPolygon","arcs":[[[499]],[[500]],[[-12,501,502,503,504,505,506,507,-274,508]],[[509]]]},{"type":"MultiPolygon","arcs":[[[510]],[[511]]]},{"type":"Polygon","arcs":[[512]]},{"type":"MultiPolygon","arcs":[[[513]],[[514]]]},{"type":"MultiPolygon","arcs":[[[515]],[[516]],[[517]]]},{"type":"Polygon","arcs":[[518]]},{"type":"MultiPolygon","arcs":[[[519]],[[520]]]},{"type":"Polygon","arcs":[[-295,-354,521,522]]},{"type":"MultiPolygon","arcs":[[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541,542,543,544,545,546,547,548,549,-292,550,551,552,553,554,555,556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637,638,639,640,641]],[[-283,642]]]},{"type":"Polygon","arcs":[[-285,643,644,-492,645,-287,646]]},{"type":"Polygon","arcs":[[-507,647]]},{"type":"MultiPolygon","arcs":[[[648]],[[-414,649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]]]},{"type":"Polygon","arcs":[[-290,-473,657,658,659,660,661,-640,662,663]]},{"type":"MultiPolygon","arcs":[[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]]]},{"type":"Polygon","arcs":[[712,713,714,715,716,717]]},{"type":"Polygon","arcs":[[718,719,720]]},{"type":"MultiPolygon","arcs":[[[721]],[[722]],[[723,724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]]]},{"type":"MultiPolygon","arcs":[[[748,749,750,751]],[[752]],[[753]],[[754]],[[755]]]},{"type":"MultiPolygon","arcs":[[[756]],[[757]]]},{"type":"Polygon","arcs":[[758,759,760,761,762,763]]},{"type":"MultiPolygon","arcs":[[[764]],[[-13,-509,-273,765]],[[-276,766]],[[-277]]]},{"type":"MultiPolygon","arcs":[[[-379,767,-556,768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]]]},{"type":"MultiPolygon","arcs":[[[-423,800,801,-542,802]],[[803]]]},{"type":"MultiPolygon","arcs":[[[804]],[[805,806,807,808,809]]]},{"type":"Polygon","arcs":[[-810,810,811,812,813,814,815]]},{"type":"Polygon","arcs":[[816,817,818,819]]},{"type":"MultiPolygon","arcs":[[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]]]},{"type":"Polygon","arcs":[[833]]},{"type":"Polygon","arcs":[[834]]},{"type":"MultiPolygon","arcs":[[[835,836,837]],[[838,839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]]]},{"type":"Polygon","arcs":[[850]]},{"type":"Polygon","arcs":[[851]]},{"type":"Polygon","arcs":[[852,853]]},{"type":"Polygon","arcs":[[854]]},{"type":"Polygon","arcs":[[-5,855,-438,856,857]]},{"type":"Polygon","arcs":[[-4,-10,858,-357,859,-436,-385,-435],[860],[861]]},{"type":"Polygon","arcs":[[862,863,864]]},{"type":"Polygon","arcs":[[865,866,867,-864]]},{"type":"Polygon","arcs":[[-488,868,869,870,871,872]]},{"type":"Polygon","arcs":[[-544,873]]},{"type":"Polygon","arcs":[[-286,-647]]},{"type":"Polygon","arcs":[[874,875]]},{"type":"MultiPolygon","arcs":[[[-167,876,877,878,879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]]]},{"type":"Polygon","arcs":[[895]]},{"type":"MultiPolygon","arcs":[[[896]],[[-499,897,-867,898,899]]]},{"type":"MultiPolygon","arcs":[[[900]],[[901]]]},{"type":"Polygon","arcs":[[-493,-900,902,-813,903,904,905]]},{"type":"MultiPolygon","arcs":[[[906]],[[907]]]},{"type":"MultiPolygon","arcs":[[[-341,908]],[[909,910,911,912,913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920,921]]]},{"type":"MultiPolygon","arcs":[[[-862]],[[-861]],[[-9,-358,-859]]]},{"type":"MultiPolygon","arcs":[[[922]],[[923]],[[924]]]},{"type":"Polygon","arcs":[[-486,925,926,927,928]]},{"type":"Polygon","arcs":[[929,930,931]]},{"type":"MultiPolygon","arcs":[[[-642,932]],[[-639,933,934,935,-663]]]},{"type":"Polygon","arcs":[[-372,936]]},{"type":"Polygon","arcs":[[-315,937,938,-398,939,-815,940]]},{"type":"Polygon","arcs":[[-480,941,942,943,944,945]]},{"type":"Polygon","arcs":[[-440]]},{"type":"Polygon","arcs":[[-369,946,947]]},{"type":"Polygon","arcs":[[-935,948,949,-552,950]]},{"type":"Polygon","arcs":[[-21,951,-337,952,953]]},{"type":"Polygon","arcs":[[-52,954,955,-360],[-58],[-59],[-363]]},{"type":"MultiPolygon","arcs":[[[956]],[[-505,957,958]]]},{"type":"Polygon","arcs":[[-487,-929,959,-869]]},{"type":"MultiPolygon","arcs":[[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]]]},{"type":"MultiPolygon","arcs":[[[979]],[[-298,-395,980,-442,981,-355]]]},{"type":"MultiPolygon","arcs":[[[982]],[[983]],[[984]],[[-56,-303,985,-546,986,-955]]]},{"type":"Polygon","arcs":[[-367,987,-503,988,989,990,991]]},{"type":"MultiPolygon","arcs":[[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]]]},{"type":"Polygon","arcs":[[1026]]},{"type":"MultiPolygon","arcs":[[[-374,1027,-476,1028,1029],[36],[-513]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]]]},{"type":"Polygon","arcs":[[-368,-992,1037,-990,1038,1039,1040,1041,-947]]},{"type":"MultiPolygon","arcs":[[[-1041,1042,1043]],[[-991,-1038]]]},{"type":"MultiPolygon","arcs":[[[1044]],[[-269,1045]]]},{"type":"Polygon","arcs":[[-309,1046,1047,-958,-504,-988,-366]]},{"type":"MultiPolygon","arcs":[[[1048]],[[-301,1049,-762,1050,-1047,-308,1051,1052,1053,1054]]]},{"type":"MultiPolygon","arcs":[[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[-910,1082]],[[1083]],[[1084]],[[1085]],[[-330,1086,-333,1087]],[[1088]],[[1089]],[[1090]],[[-724,1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[-921,1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]]]},{"type":"MultiPolygon","arcs":[[[-760,1189,1190,-853,1191,1192,1193,1194,1195,1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]]]},{"type":"Polygon","arcs":[[1210]]},{"type":"Polygon","arcs":[[-288,-646,-491,1211,-478,1212,-470]]},{"type":"MultiPolygon","arcs":[[[-820,1213,1214,1215,1216]],[[1217]],[[1218]]]},{"type":"MultiPolygon","arcs":[[[1219,1220]],[[1221]],[[1222]]]},{"type":"Polygon","arcs":[[-33,1223,-389,1224]]},{"type":"MultiPolygon","arcs":[[[-495,1225,1226]],[[1227]],[[1228]],[[1229]],[[1230]],[[1231]],[[1232]]]},{"type":"Polygon","arcs":[[-482,1233,-1226,-494,-906,1234,-942]]},{"type":"Polygon","arcs":[[-879,1235,1236,-1216,1237,1238]]},{"type":"Polygon","arcs":[[1239]]},{"type":"MultiPolygon","arcs":[[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[-313,1279,1280,-927,1281]]]},{"type":"Polygon","arcs":[[-327,1282,1283,1284,1285,1286]]},{"type":"MultiPolygon","arcs":[[[-376,1287,-930,1288,-838,1289,1290,1291,-659,1292,1293]],[[1294]],[[-661,1295]],[[1296]],[[1297]],[[1298]]]},{"type":"Polygon","arcs":[[-305,1299,-549,1300,1301]]},{"type":"Polygon","arcs":[[-497,1302]]},{"type":"Polygon","arcs":[[1303,1304,1305,1306]]},{"type":"MultiPolygon","arcs":[[[1307]],[[-375,-1030,1308,-876,1309,-412,1310,-410,1311,1312,-931,-1288]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[-387,1320,1321]]]},{"type":"MultiPolygon","arcs":[[[1322]],[[1323]]]},{"type":"MultiPolygon","arcs":[[[1324]],[[1325]]]},{"type":"Polygon","arcs":[[1326,1327]]},{"type":"Polygon","arcs":[[1328]]},{"type":"MultiPolygon","arcs":[[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]]]},{"type":"MultiPolygon","arcs":[[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]]]},{"type":"MultiPolygon","arcs":[[[1356]],[[1357]],[[1358]]]},{"type":"MultiPolygon","arcs":[[[1359]],[[1360]],[[1361]]]},{"type":"MultiPolygon","arcs":[[[-380,-769,-555,1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]]]},{"type":"MultiPolygon","arcs":[[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]]]},{"type":"Polygon","arcs":[[-394,-402,1391,1392,-446,-443,-981]]},{"type":"MultiPolygon","arcs":[[[-950,1393,-553]],[[1394]],[[1395]],[[1396]]]},{"type":"MultiPolygon","arcs":[[[-401,1397,1398,-1392]],[[1399]],[[1400]]]},{"type":"MultiPolygon","arcs":[[[1401]],[[-1306,1402,1403]]]},{"type":"Polygon","arcs":[[-1215,1404,-1238]]},{"type":"Polygon","arcs":[[-399,-939,1405,-1043,-1040,1406]]},{"type":"MultiPolygon","arcs":[[[-717,1407,1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]]]},{"type":"Polygon","arcs":[[-1220,1417]]},{"type":"Polygon","arcs":[[1418]]},{"type":"Polygon","arcs":[[-447,-1393,-1399,1419]]},{"type":"MultiPolygon","arcs":[[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]]]},{"type":"MultiPolygon","arcs":[[[1437]],[[1438]],[[1439]],[[1440]],[[1441]]]},{"type":"MultiPolygon","arcs":[[[1442]],[[-1291,1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]]]},{"type":"Polygon","arcs":[[-472,1454,-1293,-658]]},{"type":"Polygon","arcs":[[1455,1456]]},{"type":"Polygon","arcs":[[-1456,1457]]},{"type":"MultiPolygon","arcs":[[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]]]},{"type":"MultiPolygon","arcs":[[[-474,-1212,-490,1465,1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[-872,1478,1479]]]},{"type":"MultiPolygon","arcs":[[[-1284,1480]],[[-905,1481,-1286,1482,-945,943,-943,-1235]]]},{"type":"Polygon","arcs":[[-751,1483,-818,1484]]},{"type":"Polygon","arcs":[[-7,1485,1486,1487,1488,1489,-391,-296,-523,1490,-352]]},{"type":"Polygon","arcs":[[-1304,1491,1492,-1489,1493,1494]]},{"type":"MultiPolygon","arcs":[[[1495]],[[1496]],[[1497]]]},{"type":"MultiPolygon","arcs":[[[-35,1498,-718,-1409,1499,-749,1500]],[[1501]]]},{"type":"MultiPolygon","arcs":[[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512]],[[-22,-954,1513,-1194,1514,-1192,-854,-1191,1515,-764,1516,-361,-956,-987,-545,-874,-543,-802,1517,1518,1519,1520,1521]],[[1522]]]},{"type":"Polygon","arcs":[[-1521,1523]]},{"type":"MultiPolygon","arcs":[[[-1519,1524]],[[1525]],[[1526]]]},{"type":"MultiPolygon","arcs":[[[1527]],[[1528]],[[-715,1529,1530,1531]],[[1532,1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]]]},{"type":"Polygon","arcs":[[-397,1561,1562,-806,-816,-940]]},{"type":"Polygon","arcs":[[-392,-1490,-1493,1563,-1562,-396]]},{"type":"MultiPolygon","arcs":[[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]]]},{"type":"MultiPolygon","arcs":[[[1572]],[[1573]],[[1574]],[[-106,1575,-169,1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[-165,1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[-104,1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]]]},{"type":"Polygon","arcs":[[-807,-1563,-1564,-1492,-1307,-1404,1714]]},{"type":"MultiPolygon","arcs":[[[1715]],[[1716]],[[-20,1717,338,-339,-338,-952]]]},{"type":"MultiPolygon","arcs":[[[-343,1718,1719,-1195,-1514,-953]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]]]},{"type":"Polygon","arcs":[[-353,-1491,-522]]},{"type":"Polygon","arcs":[[-328,-1287,-1482,-904,-812,1738]]},{"type":"Polygon","arcs":[[-314,-1282,-926,-485,-645,1739]]},{"type":"MultiPolygon","arcs":[[[-913,1740]],[[-912,1741]]]},{"type":"MultiPolygon","arcs":[[[-34,-1225,-388,-1322,1742,-62,1743,-719,1744,-713,-1499]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1755]],[[1756]],[[1757]],[[1758]],[[1759]],[[1760]]]},{"type":"Polygon","arcs":[[-2,-439,-856]]},{"type":"Polygon","arcs":[[-873,-1480,1761,-1466,-489]]},{"type":"Polygon","arcs":[[-714,-1745,-721,1762,-1530]]},{"type":"Polygon","arcs":[[-1193,-1515]]},{"type":"Polygon","arcs":[[-325,-1739,-811,-809,1763]]},{"type":"MultiPolygon","arcs":[[[-878,1764,-1236]],[[1765]],[[1766]]]},{"type":"Polygon","arcs":[[-836,-1289,-932,-1313,1767,-839]]},{"type":"Polygon","arcs":[[-291,-664,-936,-951,-551]]},{"type":"Polygon","arcs":[[1768]]},{"type":"MultiPolygon","arcs":[[[-1196,-1720,1769,1770]],[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]]]},{"type":"Polygon","arcs":[[1777]]},{"type":"MultiPolygon","arcs":[[[1778]],[[1779]],[[1780]],[[1781]],[[1782]],[[1783]],[[1784]],[[1785]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]]]},{"type":"MultiPolygon","arcs":[[[-307,1793,-1052]],[[-1054,1794,-1301,-548,1795],[1796]],[[1797]]]},{"type":"Polygon","arcs":[[-371,-1294,-1455,-471,-1213,-477,-1028,-373,-937]]},{"type":"MultiPolygon","arcs":[[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]]]},{"type":"MultiPolygon","arcs":[[[1840]],[[1841]],[[1842]]]},{"type":"Polygon","arcs":[[1843]]},{"type":"Polygon","arcs":[[1844]]},{"type":"Polygon","arcs":[[1845]]},{"type":"MultiPolygon","arcs":[[[-306,-1302,-1795,-1053,-1794],[-1798]],[[-1797]]]},{"type":"MultiPolygon","arcs":[[[-61,1846,-1531,-1763,-720,-1744]],[[-1533,1847]],[[1848]],[[1849]]]},{"type":"MultiPolygon","arcs":[[[1850]],[[1851]]]},{"type":"MultiPolygon","arcs":[[[-1488,1852,-1494]],[[-6,-858,1853,-1486]]]},{"type":"Polygon","arcs":[[-411,-1311]]},{"type":"Polygon","arcs":[[-316,-941,-814,-903,-899,-866,-863,1854]]},{"type":"Polygon","arcs":[[-870,-960,-928,-1281,1855]]},{"type":"Polygon","arcs":[[-54,-362,-1517,-763,-1050,-300]]},{"type":"Polygon","arcs":[[-759,-1516,-1190]]},{"type":"MultiPolygon","arcs":[[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]]]},{"type":"Polygon","arcs":[[-1327,1964]]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[339,908,341,1718,1769,1770,1196,760,1050,1047,958,505,647,507,274,766,271,765,10,501,988,1038,1406,399,1397,1419,447,444,981,355,859,436,856,1853,1486,1852,1494,1304,1402,1714,807,1763,325,1282,1480,1284,1482,945,480,1233,1226,495,1302,497,897,867,864,1854,316,937,1405,1043,1041,947,369,310,1299,549,281,642,283,643,1739,311,1279,1855,870,1478,1761,1466,474,1028,1308,874,1309,412,649,414,1311,1767,839,836,1289,1443,1291,659,1295,661,640,932,637,933,948,1393,553,1362,380,767,556,802,423,800,1517,1524,1519,1523,1521,18,1717],[985,546,1795,1054,301]],[[13]],[[14]],[[15]],[[16]],[[17]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[389,1320,1742,59,1846,1531,715,1407,1499,749,1483,818,1213,1404,1238,879,167,1576,102,1621,104,1575,1596,165,876,1764,1236,1216,816,1484,751,1500,35,1223]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[269,1045]],[[270]],[[277]],[[278]],[[279]],[[280]],[[292]],[[298]],[[303]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[328]],[[1087,330,1086,331]],[[333]],[[334]],[[335]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[358]],[[363]],[[364]],[[376]],[[377]],[[381]],[[382]],[[383]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[440]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[478]],[[482]],[[483]],[[499]],[[500]],[[509]],[[510]],[[511]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[648]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[721]],[[722]],[[724,1091]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[764]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[803]],[[804]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[854]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[900]],[[901]],[[906]],[[907]],[[910,1741,1740,913,1082]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[921,1158]],[[922]],[[923]],[[924]],[[956]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[982]],[[983]],[[984]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1044]],[[1048]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1083]],[[1084]],[[1085]],[[1088]],[[1089]],[[1090]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1217]],[[1218]],[[1220,1417]],[[1221]],[[1222]],[[1227]],[[1228]],[[1229]],[[1230]],[[1231]],[[1232]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1294]],[[1296]],[[1297]],[[1298]],[[1307]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1322]],[[1323]],[[1324]],[[1325]],[[1327,1964]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]],[[1360]],[[1361]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1394]],[[1395]],[[1396]],[[1399]],[[1400]],[[1401]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1418]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1456,1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1495]],[[1496]],[[1497]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512]],[[1522]],[[1525]],[[1526]],[[1527]],[[1528]],[[1533,1847]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1715]],[[1716]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1755]],[[1756]],[[1757]],[[1758]],[[1759]],[[1760]],[[1765]],[[1766]],[[1768]],[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]],[[1781]],[[1782]],[[1783]],[[1784]],[[1785]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[1844]],[[1845]],[[1848]],[[1849]],[[1850]],[[1851]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]]]}]}},"arcs":[[[5869,3893],[-3,4],[-3,2],[-5,1],[-5,-1],[-7,-1],[-8,2],[-8,6],[-7,2],[-8,-2],[0,-1]],[[5815,3905],[-1,3],[-2,4],[-4,1],[-1,1],[-1,2],[0,2],[-1,2],[1,7],[0,1],[-1,1],[-2,1],[-5,3],[-6,4],[-10,3],[-4,1],[0,1],[-2,3],[-1,9],[-2,5],[-4,9],[-1,3],[0,6],[1,6],[0,5],[0,4],[0,6],[0,3],[-1,2],[-1,1],[-5,0],[-5,0],[0,6],[0,8],[-1,5],[-2,3],[-2,3],[-5,3],[-7,6],[-5,8],[-7,11],[-2,1],[-2,10],[-4,17],[1,5],[-1,3],[-4,8],[0,4],[-1,5],[-6,12],[-2,5],[-1,6],[-1,6],[-2,2],[-1,4],[-1,4],[-1,3],[1,4],[0,3]],[[5701,4159],[5,-3],[3,0],[3,1],[2,-2],[4,-5],[4,-1],[4,3],[5,-1],[7,-5],[5,-1],[7,4],[6,14],[6,12],[5,15],[3,11],[5,10],[7,7],[6,6],[10,8],[2,6],[1,7],[0,9],[1,6],[1,3],[1,2],[2,3],[7,7],[6,5],[6,3],[8,0],[7,0],[4,0]],[[5844,4283],[0,-9],[0,-11],[1,-1],[5,0],[9,0],[8,-1],[5,-8],[2,-1],[6,-2],[7,-12],[8,-2],[6,-3],[5,-5],[3,-5],[2,-1],[2,0],[2,-1],[-1,-3],[-1,-7],[0,-9],[2,-12],[1,-11],[-1,-18],[0,-19],[0,-6],[0,-5],[1,-2],[0,-3],[-2,-7],[-1,-8],[0,-4],[0,-2],[-1,-2],[-4,-4],[0,-2],[0,-4],[0,-4],[2,-1],[1,-2],[1,-3],[0,-2],[-1,-5],[-1,-9],[1,-10],[2,-6],[2,-7],[1,-5],[0,-3],[0,-3],[-4,-14],[-2,-8],[-3,-9],[-4,-5],[-1,-3],[0,-3],[0,-7],[0,-7],[-4,-11],[2,-9],[0,-1],[-1,-1],[-5,-10],[-5,-11],[-4,-8],[-4,-8],[-5,-10],[-4,-9],[-3,-6]],[[5701,4159],[-5,9],[-2,4],[-2,1],[-6,2],[-12,2],[-2,-1],[-5,-1],[-6,-3],[-6,-2],[-6,-2]],[[5649,4168],[-6,9],[-6,11],[-6,12],[-5,10],[-3,5],[-4,8],[-3,3],[-1,2],[-3,19],[-2,18],[0,13],[0,19],[0,18],[0,19],[0,18],[0,19],[0,18],[0,18],[0,19],[0,9],[6,0],[8,0],[7,0],[8,0],[9,0],[8,0],[6,0],[1,0],[2,1],[0,1],[-2,10],[0,3],[1,6],[1,5],[1,7],[0,4],[-1,14],[0,7],[0,8],[1,7],[-1,6],[1,2],[1,4],[0,5],[0,2],[0,2],[0,3],[-1,8],[0,10],[-1,8]],[[5665,4558],[1,-1],[2,-1],[1,-3],[1,-4],[1,-1],[4,-2],[1,-3],[1,-7],[0,-4],[-2,-3],[2,-3],[2,-2],[2,1],[4,5],[1,1],[2,1],[2,1],[6,2],[3,1],[2,2],[1,0],[1,-1],[-1,-6],[0,-4],[1,-9],[1,-4],[1,-3],[2,-1],[1,-3],[3,0],[7,-4],[2,-2],[2,-2],[2,-1],[7,-1],[3,-1],[4,-2],[4,0],[3,1],[1,1],[2,1],[0,1],[1,5],[1,9],[1,3],[1,1],[2,1],[1,-2],[1,-10],[5,-9],[2,-8],[1,-7],[1,-1],[2,-3],[3,-1],[3,0],[6,-5],[5,-3],[3,-3],[2,-2],[1,-4],[0,-2],[1,-7],[2,-6],[1,-1],[2,0],[1,-4],[2,-3],[2,-8],[2,-5],[0,-6],[2,-3],[3,-2],[3,0],[1,2],[4,2],[2,4],[2,1],[2,-1],[0,-2],[1,-4],[0,-3],[2,-2],[2,1],[0,2],[0,2],[0,11],[0,10],[0,10],[0,12],[0,10],[0,8],[0,9],[-1,-1],[-2,-2],[-3,0],[-2,-2],[0,-2],[0,-3],[0,-4],[-1,-1],[-1,-1],[-2,1],[-5,2],[-3,2],[-3,5],[-3,8],[-2,4],[-6,8],[-1,2],[-1,3],[-2,7],[0,4],[-1,4],[-1,4],[1,8],[2,14],[2,10],[0,8],[3,7],[0,7],[-1,9],[0,5],[1,12],[0,10],[0,6],[-1,8],[-2,10],[-4,14],[0,2],[3,4],[3,5],[2,4],[2,4],[1,3],[2,6],[2,5],[0,6],[-1,6],[2,1],[7,2],[7,3],[8,2],[8,3],[8,2],[7,2],[5,2]],[[5854,4712],[0,-4],[2,-7],[2,-5],[2,-5],[1,-2],[2,-1],[7,0],[3,-3],[2,-3],[1,-5],[2,-4],[1,-2],[1,-1],[1,1],[2,0],[2,-1],[1,-1],[0,-5],[1,-2],[2,0],[3,-1],[2,-3],[3,0],[3,-2],[2,-3],[3,-3],[4,-3],[3,-4],[2,-1]],[[5914,4642],[0,-2],[1,-2],[1,-3],[0,-3],[0,-2],[1,-1],[1,0],[1,2],[1,0],[2,-2],[0,-3],[1,-4],[2,-3],[1,-3],[-1,-6],[0,-4],[2,-5],[3,-5],[1,-2],[0,-6],[0,-3],[2,-5],[1,-4],[0,-2],[-5,-11],[-2,-1],[-1,-1],[-2,-2],[-1,-3],[1,-1],[0,-4],[1,-6],[2,-4],[-1,-5],[-2,-9],[-1,-1],[-1,-7],[1,-2],[1,-2],[1,-5],[0,-6],[-1,-5],[-1,-13],[3,-11],[0,-1],[4,0],[0,-1],[-1,-4],[-1,-3],[-1,-2],[-4,-3],[-6,-5],[-2,-4],[0,-6],[0,-3],[1,-2],[0,-5],[-1,-6],[0,-4],[0,-4],[-1,-2],[-1,-6],[-1,-5],[-1,-3],[-2,-3],[-2,-2],[0,-1],[3,-3],[0,-2],[1,-1],[-1,-1],[0,-2],[1,-2],[1,-1],[2,-4],[1,-5],[1,-2],[0,-1],[1,1],[2,3],[1,1],[2,-4]],[[5922,4377],[-6,-4],[-3,-3],[-9,-6],[-8,-5],[-2,-1],[-4,-3],[-2,-1],[-7,-5],[-3,-2],[-3,-3],[-5,-3],[-6,-4],[-6,-3],[-7,-4],[-3,-2],[-3,-3],[-6,-5],[0,-1],[0,-3],[1,-7],[1,-6],[1,-3],[1,-9],[1,-8]],[[6474,6143],[-14,-11],[-4,-4],[-3,-6],[-3,-7],[-1,-12],[1,-11],[0,-6],[-4,-4],[-3,-3],[-4,-5],[-2,-1],[-2,-3],[-2,-3],[-8,-6],[-9,-5],[-13,-6],[-5,-6],[-5,-5],[-7,-1],[-10,-6],[-6,-5],[-7,-8],[-1,-3],[-1,-5],[-3,-5],[-4,-9],[-3,-4],[-2,0],[-4,-2],[-5,-1],[-8,3],[-2,-2],[-1,-3],[-6,-6],[-7,-11],[-4,-3],[-8,-4],[-5,-5],[-3,-2],[-5,0],[-8,0],[-8,-2],[-7,-3],[-4,-6],[-4,-10],[-6,-4],[-2,-3],[-2,-7],[-4,-2],[-3,-1],[-4,3],[-7,-8],[-3,-2],[-4,0],[-3,-2],[-2,0],[-3,4],[-6,4],[-4,-3],[0,8],[-7,25],[2,21],[0,3],[-2,10],[-4,9],[0,11],[-1,8],[-1,8],[0,2],[0,2],[-2,13],[0,2],[-1,3],[1,2],[0,2],[-1,4],[-1,7],[-6,6],[1,6],[2,-2],[1,-2],[0,4],[0,2],[-2,16],[3,22],[-1,20]],[[6188,6127],[5,8],[2,2],[1,2],[1,5],[1,1],[1,5],[0,2],[-1,2],[-1,6],[0,7],[1,2],[0,6],[2,2],[0,1],[-1,4],[0,2],[3,5],[1,2],[2,2],[2,0],[2,-1],[1,-2],[2,-3],[2,-3],[2,-1],[2,0],[1,-1],[1,0],[2,2],[2,0],[2,2],[5,1],[6,-1],[5,2],[6,0],[5,0],[2,-1],[1,-1],[5,-5],[3,-1],[7,-1],[8,-1],[7,-2],[5,1],[5,1],[1,0],[2,-3],[3,-7],[2,-8],[5,0],[3,3],[3,3],[2,3],[3,12],[1,8],[3,8],[3,8],[4,9],[2,5],[4,11],[4,4],[8,7],[8,8],[5,5],[4,2],[7,2],[8,3],[8,2],[9,2],[10,3],[7,2],[8,2],[7,2],[7,2],[6,2]],[[6443,6278],[1,-6],[2,-6],[1,-5],[1,-6],[1,-6],[2,-6],[1,-5],[1,-6],[1,-6],[1,-6],[2,-5],[1,-6],[1,-6],[1,-6],[2,-5],[1,-6],[1,-6],[2,-2],[1,-5],[2,-8],[2,-7],[1,-8],[2,-7]],[[6182,6065],[0,-1],[-1,2],[1,5],[1,2],[0,-4],[0,-2],[-1,-2]],[[6187,5973],[-2,-2],[1,5],[2,1],[-1,-4]],[[6188,5989],[0,-2],[-1,1],[-2,3],[2,3],[1,-3],[0,-2]],[[6493,5912],[1,-1],[3,2],[8,0],[9,-6],[-2,-2],[-1,-2],[-4,-2],[-4,-5],[-11,-3],[-4,2],[-3,4],[-5,7],[2,4],[1,1],[1,2],[2,3],[3,0],[4,-4]],[[7890,5782],[0,-3],[0,-6],[-1,-7],[0,-3],[0,-2],[-2,13],[-3,5],[0,2],[1,0],[3,3],[1,0],[1,-2]],[[7998,6423],[-1,-1],[-3,0],[-3,-5],[-2,-2],[-3,-2],[-3,-3],[-1,-5],[0,-4],[-1,-4],[-5,-7],[-1,1],[-1,2],[-2,0],[-1,-1],[-1,0],[-2,-2],[-2,1],[-1,2],[-1,0],[-1,0],[-1,-2],[2,-9],[1,-4],[-6,-12],[1,-8],[-2,-6],[-3,-4],[-7,-13],[-3,0],[-2,-3],[-5,-20],[0,-7],[0,-5],[0,-5],[-2,-9],[-2,-5],[-1,-5],[3,-11],[1,-1],[1,-6],[1,-4],[2,-4],[4,-11],[3,-3],[2,-3],[5,-9],[3,-7],[-2,-4],[1,-9],[-3,3],[0,-1],[4,-5],[6,-17],[5,-8],[6,-10],[1,-9],[5,-6],[6,-9],[-1,-2],[2,-2],[4,-5],[2,-4],[1,-5],[1,-1],[1,1],[2,1],[1,-1],[2,-5],[2,-4],[1,-4],[1,0],[1,0],[0,-4],[0,-2],[3,-7],[2,-6],[3,-11],[3,-5],[2,-4],[2,-2],[2,-12],[1,-10],[3,-12],[1,-5],[0,-9],[2,-10],[1,-6],[1,-7],[0,-3],[1,-3],[1,-11],[0,-5],[-1,5],[0,-15],[1,-8],[0,-10],[1,-4],[1,-11],[2,-4],[0,-14],[0,-6],[-1,4],[-2,4],[-1,-2],[-2,-4],[2,-14],[-2,1],[0,-20],[1,-4],[0,-3],[0,-2],[-1,3],[0,3],[0,-1],[0,-2],[-1,-3],[-1,-4],[1,-4],[0,-3],[0,-3],[-1,-4],[-3,0],[-1,-8],[0,-7],[-5,-1],[-3,-7],[-4,-3],[-4,-6],[-4,-6],[-3,-1],[-2,-2],[-3,-10],[-4,-1],[-8,-8],[-3,-4],[-2,-2],[-3,-3],[-1,1],[-1,3],[-3,1],[-2,4],[0,4],[0,2],[-1,-3],[-1,-10],[0,-2],[-1,-1],[-3,3],[-2,6],[-4,-4],[2,-1],[1,0],[1,-1],[1,-4],[0,-2],[0,-2],[-3,-1],[-5,1],[3,-4],[4,-2],[1,-3],[0,-2],[-2,-3],[-1,-4],[0,-2],[0,-3],[-2,-2],[-1,0],[-3,4],[-9,17],[2,-5],[9,-19],[1,-6],[1,-4],[-1,-2],[-2,-3],[-3,0],[-5,7],[-7,17],[-3,2],[8,-19],[1,-5],[1,-5],[0,-3],[-1,-3],[-18,-17],[-3,-8],[-2,-9],[-4,-5],[-2,-5],[-6,-3],[-4,1],[4,9],[-2,3],[0,22],[1,24],[1,12],[3,3],[2,2],[1,3],[-1,3],[-1,4],[-2,2],[-3,0],[-2,5],[-1,0],[-2,-1],[-2,2],[0,3],[-3,4],[-2,4]],[[7900,5783],[1,1],[1,2],[2,3],[3,1],[4,0],[1,1],[1,3],[2,4],[2,2],[1,2],[-1,4],[-1,5],[1,1],[3,-1],[4,-2],[1,-1],[2,6],[0,1],[1,0],[4,1],[3,1],[2,0],[1,-4],[2,-3],[0,-1],[2,2],[1,-2],[3,-3],[2,0],[-1,7],[1,5],[0,2],[-2,2],[-5,9],[-1,3],[0,5],[0,6],[-1,5],[0,2],[1,2],[1,1],[1,0],[0,2],[2,4],[3,0],[3,-3],[3,-1],[2,0],[0,1],[0,2],[0,10],[0,2],[3,1],[3,0],[2,1],[2,4],[4,1],[4,6],[3,6],[1,1],[2,1],[2,0],[1,-3],[2,2],[1,4],[1,4],[1,6],[0,10],[-1,7],[-1,6],[0,5],[2,12],[1,12],[0,5],[-2,7],[-2,10],[-2,10],[-1,1],[0,3],[0,3],[0,11],[1,3],[2,5],[1,6],[1,6],[0,3]],[[7986,6031],[0,6],[0,3],[-1,3],[0,4],[0,2],[2,2],[1,4],[1,4],[1,3],[-1,4],[-2,4],[-3,5],[-3,5],[-2,3],[-1,4],[-1,4],[-1,3],[1,2],[4,5],[1,2],[1,2],[-1,3],[-1,1],[-1,1],[-3,3],[-4,8],[-2,2],[-2,3],[-1,2],[-1,7],[0,1],[-1,-2],[-2,-3],[-1,1],[-1,2],[-1,2],[-1,4],[-1,3],[-1,10],[0,3],[0,4],[-1,2],[-2,1],[-2,8],[-2,4],[-7,12],[-1,2],[-2,4],[-3,7],[-3,5],[-2,6],[-1,5],[0,4],[-2,5],[-1,4],[-2,2],[-2,0],[-2,3],[-3,6],[-1,4],[-1,2],[0,3],[1,5],[1,2],[0,2],[-1,2],[-3,3],[-8,4],[-3,3],[-3,4],[-2,3],[-9,12],[-3,2],[-2,3],[-1,2],[0,2],[1,1],[3,3],[1,4],[0,5],[-2,4],[1,2],[1,0],[2,0],[3,1],[8,-5],[1,1],[5,8],[1,4],[1,4],[1,3],[2,4],[0,4],[-1,5],[-1,1],[-1,1],[-3,0],[-1,1],[-1,3],[0,3],[-1,2],[-3,3],[-3,0],[-1,1],[1,3],[2,2],[2,2],[1,2],[0,3],[-1,2],[-2,3],[-3,5],[-4,5],[-3,2],[-1,0],[-5,-5],[-3,-3],[-2,-5],[-2,-1],[-2,2],[-3,3],[-7,3],[-3,3],[-6,18],[-1,4],[1,4],[0,6],[1,4],[1,3],[0,3],[0,4],[-1,1],[-1,1],[-1,1],[-1,4],[0,-1],[-1,-5],[-1,-2],[-1,-1],[-1,1],[-1,2],[0,4],[-1,4],[0,3],[-3,4],[-1,4],[-4,8],[-3,6],[-2,6]],[[7836,6473],[1,2],[2,3],[2,4],[2,6],[1,4],[0,1],[2,1],[1,0],[2,-3],[4,-3],[3,-3],[1,-4],[2,-3],[1,-1],[2,3],[2,2],[0,3],[2,3],[2,4],[1,3],[1,-1],[3,-9],[1,0],[1,1],[1,7],[2,3],[0,-1],[8,-13],[1,1],[1,2],[0,4],[2,5],[2,3],[2,1],[1,-3],[1,-3],[2,0],[5,5],[1,1],[2,0],[1,0],[2,3],[1,2],[1,6],[0,5],[1,2],[1,2],[3,2],[5,5],[2,2],[1,1],[2,-2],[2,-4],[2,-3],[1,-3],[0,-3],[4,-3],[3,-3],[1,-3],[2,0],[2,1],[1,2],[2,0],[2,0],[1,-1],[2,-5],[0,-1],[2,1],[3,1],[3,1],[2,-2],[4,-5],[-1,-4],[-1,-4],[-2,-3],[-1,-1],[-1,-4],[0,-6],[0,-3],[1,-1],[1,-2],[1,-3],[0,-6],[0,-7],[0,-2],[1,0],[1,1],[2,-1],[2,-2],[1,-2],[2,1],[1,-2],[0,-4],[1,-2],[3,-4],[3,-1],[2,-6],[2,2],[2,-2],[4,1],[4,2],[1,0],[3,-5],[1,-3]],[[7961,5684],[-1,0],[-1,1],[3,4],[0,-3],[0,-1],[-1,-1]],[[7976,5783],[-2,-4],[0,3],[2,2],[0,1],[1,0],[-1,-2]],[[7968,6383],[-1,-1],[-1,2],[-1,2],[1,3],[1,-4],[1,-2]],[[7988,6406],[-4,-7],[-1,0],[1,8],[1,2],[2,-3],[1,0]],[[7986,6389],[-2,-1],[-1,0],[2,3],[1,3],[1,1],[0,-3],[-1,-3]],[[7972,6379],[-1,0],[-2,4],[1,3],[3,-2],[0,-1],[0,-1],[0,-2],[-1,-1]],[[3310,5710],[-3,-2],[0,2],[1,2],[2,1],[0,1],[1,1],[1,0],[1,-1],[-2,-2],[-1,-2]],[[3226,5825],[1,-8],[0,-1],[-3,-5],[-2,0],[-2,0],[-1,1],[-2,3],[-1,-1],[-4,1],[-1,1],[1,4],[3,2],[1,0],[1,-2],[2,-2],[2,-1],[1,4],[3,6],[1,-2]],[[3188,5812],[-1,-1],[-3,1],[-1,2],[0,2],[3,0],[2,-3],[0,-1]],[[3305,5695],[-1,-2],[-1,6],[1,2],[3,4],[1,1],[0,-1],[0,-1],[1,-2],[0,-3],[-1,-3],[-3,-1]],[[3333,5676],[5,-14],[0,-1],[-1,-2],[-3,-3],[-1,-2],[-1,-6],[-4,-4],[-3,-4],[-2,-4],[-1,-1],[-3,-1],[-1,-3],[-2,-7],[-1,-3],[-2,-3],[0,-2],[3,-8],[0,-3],[-1,-3],[0,-3],[2,-3],[1,-1],[2,2],[2,-1],[1,0],[1,-1],[0,-3],[-1,-5],[-1,-3],[-5,-5],[-3,-3],[-1,-2],[-3,1],[-1,0],[-1,-2],[-1,-1],[-2,-1],[-3,-1],[-1,-1],[-1,-2],[0,-4],[0,-4],[1,-4],[0,-3],[1,-10],[-1,-3],[-2,-2],[-2,-5],[-3,-6],[1,-2],[6,-13],[6,-14],[5,-14]],[[3312,5483],[1,0],[1,-2],[1,-4],[1,-6],[0,-2],[0,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-2],[-2,-7],[-1,-2],[-1,-1],[-2,-1],[-3,0],[-2,1],[-2,-5],[-3,-2],[-2,-6],[-8,-5],[-7,-5],[-2,-1],[-7,3],[-2,-1],[-2,-3],[-1,-2],[-2,-1],[-1,-1],[-1,-4],[-1,-16],[-2,-4],[-3,0],[-3,5],[-2,4],[-5,10],[-1,1],[-1,0],[-4,-3],[-2,1],[-1,2],[-3,-1],[-5,0],[-3,0],[-1,3],[-1,5],[-1,2],[-1,1],[-2,1],[-8,0],[-1,0],[-1,1],[-2,5],[-1,2],[-2,0],[-1,-2],[3,-9],[1,-4],[3,-7],[8,-13],[2,-5],[0,-5],[0,-9],[0,-8],[2,-11],[3,-12],[1,-7],[-1,-6],[0,-3],[0,-1],[0,-1],[3,-2],[6,-1],[3,0],[6,-1],[0,-4],[0,-7],[-1,-4],[-1,-1],[-3,-1],[-3,-4],[-5,-4],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-7],[-1,-9],[-3,-5],[-3,-4],[-2,-1],[-3,0],[-1,-1],[-1,-3],[-3,-5],[-1,-2],[-3,0],[-2,-2],[-4,-3],[-2,-3],[-2,-5],[-2,-6],[-3,-3],[-1,-5],[-2,-5],[-2,-1],[-1,4],[2,5],[-2,5],[-2,3],[-1,0],[-1,0],[-2,-2],[-4,-4],[-2,-4],[-1,-1],[-4,-1],[-3,-1],[-1,1],[-3,3],[-5,10],[-7,13]],[[3142,5254],[-1,4],[1,4],[-2,6],[0,6],[-1,2],[0,5],[-2,8],[-1,7],[-1,3],[0,3],[0,3],[-1,2],[-1,8],[0,3],[0,3],[-1,3],[-2,2],[-2,5],[-3,5],[-1,2],[-1,1],[-1,4],[-1,2],[-1,0],[-3,2],[-2,-2],[0,3],[0,2],[9,17],[5,8],[0,1],[1,2],[0,3],[-1,2],[-4,13],[-2,3],[-1,2],[-2,5],[-2,13],[-1,7],[-1,5],[0,5],[0,4],[-1,3],[0,10],[1,15],[0,11],[0,8],[1,6],[2,5],[2,6],[0,9],[2,7],[2,5],[1,6],[-1,5],[0,4],[-2,3],[-5,3],[-3,0],[-3,-3],[-5,-2],[-9,-3],[-8,0],[-5,3],[-4,-1],[-3,-4],[-2,-1],[-2,2],[-1,1],[-2,-1],[-4,11],[-4,10],[-5,12],[-5,13],[-1,1],[-2,0],[-2,0],[-4,1],[-2,2],[-2,2],[-3,3],[-2,0],[-2,-1],[-6,-4],[-3,-1],[-3,0],[-6,3],[-5,0],[-5,-2],[-2,-1],[-3,3],[-3,4],[-2,8],[-1,7],[-3,2],[-2,1],[-2,2],[0,4],[-1,5],[1,9],[0,3],[0,9],[2,4],[1,3],[0,3],[-1,8],[-1,6],[-3,6],[-4,8],[-1,12],[-2,15],[-2,2],[-1,-1],[-2,1],[-1,6],[-2,1],[-2,-2],[-1,-2],[-4,-1],[-1,1],[0,2],[2,6],[2,7],[2,6],[2,7],[2,7],[1,13],[1,10],[2,17],[3,14],[2,6],[3,8],[1,4],[2,4],[6,5],[6,23],[2,4],[6,3],[6,3],[3,3],[2,1],[1,1]],[[3019,5867],[-1,-3],[-2,-3],[-2,-2],[-11,-5],[-1,-2],[-1,-2],[0,-5],[0,-4],[3,-13],[1,-3],[5,-7],[-1,-1],[-2,0],[1,-9],[3,-6],[0,-4],[-2,-13],[-4,-7],[-2,-9],[-2,-3],[-4,-17],[3,-10],[0,-5],[3,-7],[2,-3],[1,-2],[0,-5],[1,-7],[1,-4],[2,-1],[3,0],[6,4],[2,2],[1,4],[3,7],[0,10],[1,11],[-1,7],[-3,11],[-2,7],[-3,7],[-2,12],[-1,3],[-1,6],[-1,9],[3,3],[-1,7],[6,2],[12,12],[8,3],[9,7],[2,3],[2,5],[1,1],[4,-5],[3,2],[1,4],[-2,7],[-2,0],[-8,-3],[-1,4],[0,2],[-2,9],[1,7],[2,6],[2,2],[3,2],[3,-3],[1,-4],[1,-3],[1,-9],[1,-10],[1,-6],[2,-5],[2,0],[1,1],[9,1],[5,-3],[6,-2],[6,-7],[6,-8],[1,-7],[1,-6],[1,-4],[-1,-4],[1,-7],[1,-6],[3,-5],[7,-1],[8,3],[13,3],[4,2],[20,1],[4,-3],[1,-3],[0,-3],[6,-12],[6,-2],[5,-4],[4,-2],[6,-3],[2,0],[3,1],[2,0],[19,21],[10,0],[1,1],[1,2],[-3,3],[-8,1],[-3,-2],[-1,5],[2,0],[9,2],[11,-1],[8,4],[5,0],[2,0],[7,2],[13,-3],[10,2],[-1,-3],[-4,-2],[-5,-1],[-4,-5],[-9,1],[-6,-2],[2,-1],[0,-5],[1,-1],[1,0],[2,-4],[0,-3],[1,-5],[-1,-5],[-1,-3],[2,1],[2,3],[0,2],[0,3],[1,-1],[1,-1],[3,-15],[3,-8],[0,1],[1,0],[0,1],[1,4],[1,-2],[1,-1],[0,3],[0,4],[0,2],[1,0],[1,-1],[2,-1],[3,-5],[2,-5],[0,-3],[1,-1],[1,-2],[1,-2],[0,4],[-1,3],[0,3],[4,0],[1,5],[2,-3],[6,-12],[2,-2],[6,-3],[4,-6],[2,-5],[-1,-6],[-4,-2],[-1,-4],[-1,-3],[0,-4],[-1,-4],[-1,-1],[0,-6],[-2,-7],[-2,-7],[-10,0],[3,-3],[2,-2],[4,-6],[3,5],[4,0],[5,5],[2,1],[9,-3],[2,4],[2,1],[4,-1],[5,-4]],[[5345,7597],[0,1],[0,-1]],[[9631,4330],[2,-19],[2,0],[1,1],[1,4],[1,7],[1,1],[1,0],[-1,-3],[1,-5],[1,-3],[1,-1],[1,-15],[1,-3],[-1,-2],[-2,-6],[-5,1],[-3,-4],[-2,0],[0,4],[-1,3],[-2,6],[0,12],[-3,20],[0,6],[1,6],[1,1],[2,-6],[2,-5]],[[9649,4257],[2,-2],[1,-2],[4,-6],[1,0],[1,-3],[1,-1],[1,-4],[1,-3],[-2,-4],[-4,2],[-2,-5],[-3,1],[0,3],[-1,6],[-1,9],[0,5],[-1,3],[-2,-2],[-1,-1],[-2,5],[1,8],[0,3],[2,0],[2,-2],[2,-10]],[[9678,4217],[1,0],[-1,-3],[-3,3],[-3,-1],[-1,0],[-1,2],[-1,4],[0,4],[2,2],[1,-3],[1,-1],[1,-1],[2,-4],[2,-2]],[[9674,4243],[-3,-1],[-5,2],[-1,3],[-1,2],[1,2],[2,1],[3,6],[1,-3],[1,-6],[1,-2],[1,-2],[0,-2]],[[9678,4173],[3,-8],[1,0],[-2,-6],[-3,-1],[-4,2],[1,2],[-1,2],[-1,0],[-1,-1],[-1,1],[1,3],[2,6],[1,0],[1,0],[3,0]],[[9663,4295],[-2,-3],[-3,0],[-1,2],[4,8],[5,2],[-3,-9]],[[9672,4264],[-1,0],[0,3],[-2,14],[1,12],[1,-2],[2,-23],[0,-3],[-1,-1]],[[9671,4301],[-1,-4],[-1,4],[0,18],[0,1],[0,1],[2,-13],[0,-7]],[[9644,4278],[0,-1],[-3,3],[0,4],[3,-1],[0,-5]],[[9654,4362],[-1,-3],[-3,1],[-1,1],[0,5],[1,2],[2,1],[3,-2],[-1,-5]],[[9652,4383],[-1,-1],[-1,1],[-1,7],[0,2],[2,2],[2,-4],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1]],[[9718,4021],[-1,-3],[-1,0],[-2,2],[0,3],[3,0],[1,-2]],[[9707,4058],[-1,-6],[-3,2],[-2,4],[-1,4],[0,8],[2,1],[1,-1],[0,-7],[4,-5]],[[9703,4093],[-2,-3],[-1,0],[-7,7],[0,2],[0,7],[1,4],[2,1],[1,0],[1,-6],[3,-2],[-2,-2],[3,-4],[1,-4]],[[6970,7617],[1,1],[2,1],[2,-2],[2,-2],[1,-1],[0,-2],[-6,-5],[-3,-2],[-1,0],[-1,-1],[-1,-6],[-2,-1],[-3,-1],[-2,-3],[-3,-6],[-7,-9],[0,-2],[0,-1],[3,-1],[3,-3],[2,-2],[5,3],[1,-1],[1,-3],[1,-8],[3,-2],[2,-1],[2,-1],[3,-2],[3,-1],[2,1],[2,-2],[1,1],[0,12],[2,-2],[2,0],[1,2],[0,1],[1,4],[-1,4],[1,2],[1,1],[1,-1],[0,-1],[0,-4],[2,-1],[1,-1],[0,-3],[1,-3],[1,-6],[2,-1],[3,-1],[2,1],[1,-1],[0,-3],[0,-3],[1,-2],[0,-1],[2,2],[2,0],[2,-2],[2,-2],[4,-5],[1,-1],[4,-1],[1,-1],[2,0],[2,1],[4,-2],[0,-1],[-1,-1],[-9,-8],[-1,-2],[-2,-3],[-2,-2],[-1,0],[-5,3],[0,-1],[0,-1],[0,-1],[1,-4],[-1,-2],[-1,-1],[-3,1],[0,1],[0,1],[-1,0],[-2,-1],[-3,-6],[-2,-3],[0,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-2],[-1,1],[0,2],[-1,0],[-1,0],[-2,0],[-2,2],[-2,2],[-2,0],[-6,-1],[-3,-1],[-1,-1]],[[6970,7501],[-1,0],[-7,-2],[-2,1],[-1,3],[0,3],[-2,2],[-2,1],[-1,1],[0,1],[0,2],[0,1],[5,6],[4,6],[1,0],[0,1],[1,2],[0,1],[-3,3],[-1,1],[1,1],[0,1],[-2,4],[-4,7],[-1,0],[-1,0],[-1,-6],[-1,-2],[-4,-4],[-4,-3],[-7,-5],[-1,-1],[-1,0],[-2,1],[-3,5],[-3,2],[-1,-2],[-1,-3],[0,-5],[-2,-2],[-1,-2],[2,-13],[0,-2],[-2,-1],[2,-5],[-2,0],[-3,1],[-4,1],[-9,-3],[0,-1],[-1,-1],[1,-1],[4,0],[4,1],[1,-1],[0,-2],[0,-1],[-2,0],[-2,-1],[-1,-1],[0,-2],[1,-3],[1,-1],[0,-2],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-2],[0,-1],[-2,1],[-1,-1],[-1,-5],[-1,-6],[-2,-4],[-1,-2],[-2,0],[-2,0],[-2,1],[-5,1],[-4,1],[-6,2],[-5,-4],[-1,-2],[-1,-2],[-1,-1],[-2,-13],[0,-1],[2,-2],[6,-2],[0,-1],[1,-2],[0,-5],[1,-1],[2,-1],[3,0],[2,1],[2,-1],[2,-1],[1,-2],[0,-2],[-2,-13],[0,-5],[1,-6],[1,-5],[3,-6],[2,-3],[1,-1],[0,-3],[0,-3],[-2,-5],[-1,-4],[-2,-2],[-2,-5],[-2,-7],[-5,-8],[-1,-5],[0,-14],[-1,-4]],[[6882,7325],[-1,1],[-1,2],[-3,0],[-1,1],[-1,1],[-2,0],[-4,-3],[-3,1],[-4,6],[-6,2],[-9,-1]],[[6847,7335],[0,6],[0,8],[0,11],[3,9],[0,1],[-1,2],[0,1],[-6,2],[-1,2],[-2,2],[-3,3],[-2,2],[-3,3],[-3,1],[-2,-1],[-2,-1],[-1,0],[-2,0],[-6,7],[-9,11],[-7,7],[-5,4],[-1,1],[-2,4],[-6,9],[-4,-2],[-6,6],[-5,6],[-2,2],[-6,11],[-6,7],[-6,8],[-4,4],[-7,9],[-4,5],[-1,1],[-1,4],[-2,17],[-2,8],[-3,4],[-3,8],[-2,12],[-2,8],[-1,4],[-3,4],[-4,4],[-4,2],[-2,0],[-1,0],[0,-1],[-2,-3],[-2,-1],[-2,0],[-2,1],[-5,2],[-2,1],[-3,-1],[-7,-1],[-1,0],[-7,7],[-4,3],[0,2],[0,3],[1,4],[1,3],[-1,2],[-1,4],[0,3],[1,2],[2,-1],[1,2],[-1,1],[-1,2],[-1,3],[-4,2],[-1,1],[1,2],[0,1],[0,3],[0,4],[1,1],[0,2],[0,1],[-2,2],[-2,3],[-3,0],[-8,0],[-3,2],[-2,1],[-2,8],[-1,1],[-1,1],[-3,0],[-3,1],[-1,1],[-4,7],[-4,6],[-2,-6],[-1,-1],[-4,1],[-2,1],[-2,-2],[-1,-2],[0,-1],[1,-2],[2,-3],[4,-7],[2,-3],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[-1,3],[-2,2],[-1,1],[-2,1],[-2,1],[-2,0],[-1,-2],[-1,-2],[-1,-5],[-2,-6],[-1,-2],[-3,-2],[-9,0],[-2,-2],[-2,-2],[-3,-8],[-2,-2],[-2,-3],[0,-11],[1,-13],[2,-3],[1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,0],[-3,0],[-3,1],[-8,1],[-6,0],[-8,1]],[[6554,7564],[0,13],[0,13],[0,14],[0,13],[0,13],[0,13],[0,13],[0,14],[0,13],[0,13],[0,13],[0,14],[0,13],[0,13],[0,13],[0,13],[4,2],[4,2],[4,2],[5,2],[6,3],[5,2],[5,3],[5,2],[4,2],[5,2],[8,4],[5,2],[5,2],[4,2],[3,1],[3,-3],[4,-4],[4,-4],[4,-3],[3,-4],[4,-4],[4,-4],[4,-4],[4,-3],[4,-4],[3,-4],[4,-4],[4,-4],[4,-3],[4,-4],[4,-4],[3,-4],[4,-3],[2,-3],[0,-6],[2,-4],[3,-5],[3,-5],[4,-7],[3,-5],[3,-4],[4,-8],[3,-5],[3,0],[4,1],[6,1],[5,2],[6,1],[6,2],[4,1],[7,-1],[6,-1],[5,-1],[4,0],[6,-1],[3,0],[3,-1],[2,1],[3,3],[3,2],[3,2],[2,2],[3,-4],[2,-4],[3,-5],[2,-4],[3,-3],[4,-4],[2,-6],[2,-8],[2,-5],[2,-6],[3,3],[3,2],[2,2],[0,-7],[0,-6],[-1,-9],[0,-8],[-1,-9],[0,-7],[0,-6],[0,-5],[5,0],[4,0],[4,0],[1,-6],[1,-9],[1,-8],[0,-6],[2,-9],[0,-4],[1,-5],[1,-2],[2,0],[6,0],[6,1],[4,0],[4,1],[6,0],[2,-1],[1,1],[2,1],[2,-4],[1,-2],[1,-2],[1,-2],[0,-4],[-1,-6],[0,-3],[1,-3],[2,-2],[3,-3],[4,-3],[2,0],[2,1],[1,2],[0,3],[-1,3],[0,3],[0,3],[3,5],[2,5],[3,4],[4,5],[1,4],[1,5],[2,4],[3,2],[3,2],[1,3],[5,5],[2,2],[4,1],[5,4],[3,4],[4,7],[3,5],[2,2],[2,1],[2,-3],[1,0],[1,1],[1,3],[2,4],[1,1],[3,1],[2,2]],[[6962,7542],[0,1],[-1,2],[-1,2],[-1,-1],[1,-2],[1,-2],[1,0]],[[6977,7482],[-1,-1],[-3,0],[-1,1],[1,4],[0,1],[-1,1],[-1,2],[-1,3],[1,2],[1,2],[0,-1],[2,-4],[1,-1],[3,0],[-1,-4],[1,-5],[-1,0]],[[6993,7485],[-1,-3],[-1,1],[-1,2],[0,1],[2,1],[1,0],[0,-2]],[[3517,3240],[-1,-2],[-2,-4],[-1,-10],[-6,-13],[-1,-7],[-7,-8],[-4,-9],[-3,0],[-2,-4],[-15,-11],[-6,2],[-4,0],[-3,5],[-9,2],[-5,-2],[-7,-6],[-2,0],[-2,1],[-4,2],[-2,5],[-11,5],[-8,13],[-11,1],[-8,-2],[-1,2],[-1,3],[-1,5],[-7,11],[-6,11],[-1,12],[1,12],[2,14],[-1,5],[2,2],[2,1],[2,3],[2,6],[0,4],[-1,8],[-1,11],[-1,5]],[[3383,3313],[2,9],[0,4],[-1,4],[0,4],[0,4],[0,3],[-1,4],[1,3],[2,2],[1,4],[1,5],[1,3],[0,3],[-1,2],[-1,3],[1,4],[2,7],[2,6],[0,5],[0,4],[-1,4],[1,2],[1,1],[1,3],[0,9],[-2,7],[1,5],[4,7],[1,5],[0,4],[1,2]],[[3399,3445],[2,-4],[5,-1],[4,0],[1,1],[2,7],[2,2],[3,0],[3,0],[3,-5],[9,-15],[6,-10],[2,-5],[2,-4],[1,-3],[0,-9],[0,-4],[0,-1],[1,0],[3,0],[1,2],[2,3],[1,2],[1,2],[1,1],[0,2],[1,1],[1,-2],[3,-5],[3,-4],[0,-3],[1,-3],[1,-2],[1,-3],[2,-3],[2,-2],[2,2],[4,-6],[8,-6],[2,-3],[1,-5],[3,-7],[5,-6],[3,-3],[3,-1],[2,-2],[1,-2],[2,-3],[1,-1],[1,-2],[1,-5],[1,-7],[2,-6],[3,-5],[3,-5],[4,-2],[2,-4],[1,-3],[-3,-5],[-2,-6],[-3,-5],[-2,-3],[-1,-2],[0,-4],[0,-19],[-1,-7],[1,-2],[0,-1],[2,-2],[1,-1],[1,-1]],[[9526,5491],[1,-3],[-2,1],[0,1],[1,1]],[[8836,5731],[-2,-5],[0,2],[1,3],[1,3],[1,2],[1,0],[0,-2],[0,-3],[-2,0]],[[9212,5607],[-1,-1],[-1,0],[-1,1],[1,1],[0,1],[1,0],[1,-1],[0,-1]],[[9218,5612],[-1,0],[0,1],[1,1],[1,-1],[-1,-1]],[[9397,5576],[-2,-1],[-2,1],[-1,4],[-1,1],[1,3],[1,2],[3,-2],[1,-3],[0,-2],[0,-3]],[[9711,5520],[0,-2],[-1,0],[0,1],[1,2],[1,5],[1,2],[1,2],[0,-2],[-2,-2],[-1,-6]],[[9689,5605],[-1,-1],[-2,0],[-2,2],[1,0],[2,0],[2,-1]],[[9765,5590],[1,-1],[2,0],[2,-4],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,1],[0,2]],[[9752,5595],[3,-3],[5,1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-3,2],[-2,3],[0,1],[2,-2]],[[9635,5826],[-1,0],[0,1],[1,0],[0,-1]],[[9047,6264],[-1,-2],[-1,2],[0,3],[1,0],[1,-1],[0,-2]],[[9047,6125],[-1,-1],[-1,1],[0,1],[-1,1],[2,0],[1,-1],[0,-1]],[[9034,5999],[-1,-2],[-1,0],[-1,1],[0,2],[2,1],[1,0],[0,-2]],[[9048,6225],[-1,-1],[2,6],[0,1],[1,-3],[-2,-3]],[[9048,6055],[0,-1],[-2,0],[0,1],[1,5],[2,3],[1,0],[-1,-2],[0,-3],[-1,-3]],[[9045,6046],[-1,-3],[-1,5],[0,2],[1,1],[1,0],[0,-5]],[[3198,6240],[-2,-1],[-3,3],[3,1],[1,-1],[1,-2]],[[3204,6241],[-2,-2],[-2,1],[1,2],[3,-1]],[[3201,6209],[2,-3],[3,0],[-3,-2],[-6,-1],[0,4],[4,2]],[[9020,5948],[-1,-1],[-1,2],[-1,2],[0,6],[4,6],[1,5],[1,0],[1,-1],[1,-2],[-4,-9],[-1,-8]],[[258,4357],[-2,0],[-1,2],[3,3],[1,1],[3,-1],[-2,-1],[-2,-4]],[[3163,6246],[1,-1],[0,3],[6,-2],[3,-2],[4,-1],[0,-8],[-3,-4],[-2,-3],[-1,-4],[-4,-5],[-4,-1],[-3,0],[-2,0],[-1,1],[-2,-1],[-3,2],[-2,-1],[-5,1],[-2,-2],[-2,0],[-1,0],[-2,1],[-3,0],[-2,1],[1,9],[0,4],[-1,4],[-1,2],[-1,3],[2,1],[1,3],[0,3],[1,1],[2,1],[7,-2],[17,-1],[1,0],[1,-2]],[[3182,6227],[-2,-1],[-1,1],[-1,1],[3,2],[3,0],[2,-1],[0,-1],[-4,-1]],[[3114,6224],[0,1],[-1,1],[0,1],[0,1],[2,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1312,8440],[0,-1],[-3,0],[-2,1],[0,2],[0,2],[1,2],[1,3],[1,6],[5,-6],[2,-3],[0,-4],[-1,-1],[-3,0],[-1,-1]],[[1312,8424],[-2,-1],[-2,1],[-4,5],[0,1],[1,2],[2,3],[1,0],[6,0],[1,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-3,-2]],[[1269,8538],[0,-2],[-4,0],[-4,3],[-2,2],[1,1],[3,2],[4,-3],[2,-3]],[[969,8659],[-1,-1],[-2,0],[-2,1],[5,4],[0,-1],[0,-3]],[[984,8629],[-1,0],[2,4],[3,4],[2,2],[3,2],[0,-2],[-4,-4],[-5,-6]],[[888,8643],[-1,-1],[-6,1],[1,3],[5,2],[4,-3],[-3,-2]],[[777,8661],[-1,-1],[2,3],[1,6],[1,-1],[1,-1],[-3,-6],[-1,0]],[[546,8371],[0,-4],[-4,3],[-1,1],[1,1],[3,0],[1,-1]],[[573,8350],[-1,0],[-1,4],[-1,1],[2,-1],[1,-2],[0,-2]],[[569,8360],[0,-4],[-1,-1],[0,1],[-2,-1],[-1,1],[1,2],[0,1],[1,0],[0,2],[0,1],[0,2],[1,1],[1,-5]],[[383,8278],[-1,1],[0,2],[0,1],[2,2],[1,1],[1,0],[0,-1],[-1,-2],[-1,-2],[-1,-2]],[[111,8168],[-2,-1],[-4,2],[1,3],[3,-2],[2,-2]],[[386,8998],[-1,0],[0,1],[3,2],[6,3],[-4,-3],[-4,-3]],[[237,8849],[1,-1],[2,0],[5,0],[4,-2],[4,1],[6,4],[3,1],[4,1],[3,-1],[4,-3],[1,-1],[1,-2],[1,-3],[1,-2],[7,-3],[4,-1],[1,-1],[1,-2],[4,-1],[3,0],[2,0],[7,-1],[7,-2],[-1,-5],[-2,-3],[-8,1],[-7,-1],[-3,-3],[-2,-3],[0,-4],[-2,-1],[-1,-1],[-1,2],[-2,6],[-1,2],[-1,1],[-4,1],[-3,2],[-3,0],[-1,2],[-1,3],[-1,1],[-3,3],[-3,1],[-9,4],[-3,1],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,0],[-4,1],[-3,2],[-1,2],[-1,3],[0,3],[1,3],[1,7],[3,1],[5,-5]],[[385,8662],[3,-3],[1,0],[4,1],[2,-1],[1,-1],[1,-2],[0,-3],[0,-3],[0,-5],[0,-1],[2,-3],[1,-3],[0,-3],[-5,-1],[-5,-1],[-4,-2],[-1,-2],[1,-2],[-1,-1],[-1,1],[-2,2],[-3,1],[-8,2],[-10,7],[-4,1],[-4,5],[-4,7],[3,1],[2,0],[12,-1],[1,5],[2,1],[3,1],[4,3],[1,0],[2,-1],[3,1],[2,1],[1,-1]],[[753,8514],[0,-3],[1,1],[4,3],[3,1],[2,0],[3,-2],[0,-1],[0,-1],[-2,-3],[0,-2],[2,-3],[5,-2],[1,-1],[0,-1],[-4,-5],[-1,-2],[-1,0],[-6,1],[-5,2],[-3,0],[-2,-2],[1,-1],[5,0],[2,-2],[0,-2],[1,-2],[-1,-1],[-2,-1],[-3,0],[-3,-2],[-2,-2],[-6,-1],[-4,-3],[-2,-2],[-1,-2],[-1,-2],[-4,-1],[2,-1],[0,-1],[0,-2],[0,-1],[-3,-6],[-6,-5],[-2,0],[0,1],[-1,1],[0,1],[8,9],[0,1],[-3,0],[-3,3],[-2,-2],[-1,0],[1,2],[1,3],[0,1],[-1,1],[-2,0],[-3,0],[-2,-1],[-1,-1],[0,-1],[3,1],[1,-1],[0,-1],[1,-2],[0,-2],[-1,-2],[-1,-3],[-2,0],[-5,7],[-2,10],[-3,7],[-1,2],[1,5],[4,6],[4,2],[3,3],[3,0],[2,0],[2,-1],[1,-2],[0,-1],[0,-1],[2,-2],[1,-5],[3,-4],[1,-2],[2,-2],[-2,4],[-1,4],[-1,9],[0,3],[1,0],[3,0],[0,1],[-4,3],[-2,3],[0,1],[0,2],[2,3],[1,0],[1,1],[2,-1],[1,-1],[2,-5],[1,-2],[1,0],[1,1],[1,2],[1,1],[1,0],[3,-1],[1,1],[0,1],[0,3],[1,1],[0,1],[-1,3],[1,1],[7,-2],[2,-2],[-1,-5]],[[1388,8403],[-1,-3],[-1,-3],[-1,-4],[0,-4],[0,-4],[0,-3],[2,-7],[1,-4],[0,-2],[-4,-9],[-1,-5],[0,-2]],[[1383,8353],[-3,-4],[-5,-7],[-2,-4]],[[1373,8338],[-1,2],[-7,1],[-2,8],[-1,6],[-2,6],[0,1],[1,4],[7,3],[0,1],[-2,1],[-1,1],[-1,6],[0,5],[0,4],[-1,7],[-1,4],[-5,9],[0,2],[2,3],[1,2],[-7,-4],[-10,-5],[-4,-3],[-1,-1],[0,-1],[1,-3],[0,-1],[-1,-2],[-1,-5],[-2,-5],[-1,-1],[-4,2],[-1,1],[-2,7],[0,2],[2,2],[2,3],[2,5],[5,14],[2,0],[6,2],[-8,2],[-2,0],[-1,2],[-1,3],[-1,3],[-4,1],[-1,2],[-2,3],[-1,2],[-1,2],[0,3],[-1,1],[-2,1],[-1,1],[0,6],[-5,2],[-1,2],[-3,4],[-1,2],[0,2],[1,4],[-1,1],[-2,0],[-16,7],[1,9],[-3,13],[-3,5],[1,2],[1,1],[1,0],[6,-4],[5,-4],[1,1],[-9,9],[-2,3],[0,3],[0,2],[0,1],[9,-1],[-8,3],[-2,0],[-2,-4],[-1,-1],[-2,1],[-2,5],[-2,3],[-4,5],[-1,3],[0,5],[0,4],[3,10],[2,2],[0,1],[-1,0],[-1,-1],[-2,-5],[-3,-7],[-2,-3],[-2,1],[-2,3],[-4,4],[-5,1],[-3,4],[-5,11],[0,5],[-1,2],[-2,1],[-2,3],[-2,14],[-3,9],[-1,5],[0,5],[-1,-4],[-1,-2],[-2,0],[2,-4],[1,-2],[-1,0],[-2,0],[3,-7],[2,-10],[2,-8],[1,-6],[1,-5],[1,-4],[2,-10],[0,-2],[0,-1],[-1,-2],[-1,-1],[-5,1],[-1,3],[-3,4],[-3,2],[-8,-1],[-1,1],[0,3],[1,7],[-1,2],[-4,10],[0,2],[6,4],[-3,1],[-2,-2],[-1,1],[-2,6],[-1,2],[0,1],[0,-6],[1,-3],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,0],[-2,1],[-2,2],[-2,1],[-1,1],[-1,3],[-2,2],[-7,2],[-4,3],[-1,-1],[2,-3],[0,-2],[-1,0],[-2,-3],[0,-1],[2,1],[3,0],[4,-2],[3,-2],[1,-1],[1,-2],[0,-1],[4,-2],[0,-1],[-2,-4],[4,0],[3,-1],[3,-5],[1,-3],[1,-4],[-1,-2],[-2,0],[-9,-2],[-3,-4],[-1,0],[-2,1],[-5,4],[-6,3],[-13,11],[0,3],[-1,1],[-2,1],[-3,2],[-3,5],[-2,3],[0,3],[-2,3],[-6,6],[-3,2],[-3,1],[-2,1],[-1,1],[1,1],[0,1],[-5,1],[-5,3],[-13,8],[-6,5],[-4,2],[-2,1],[0,2],[0,1],[3,1],[2,1],[3,5],[0,2],[-2,4],[0,3],[0,2],[0,2],[0,1],[2,1],[0,1],[1,-1],[4,-4],[0,-2],[0,-6],[1,-8],[0,1],[0,2],[1,5],[0,2],[1,2],[1,1],[3,0],[2,0],[-7,4],[-4,6],[-1,0],[-3,1],[-2,-3],[-7,-8],[-2,-1],[-8,-5],[-6,-1],[-6,1],[-5,1],[-14,7],[-2,2],[3,5],[0,1],[-1,4],[-1,2],[-1,0],[-1,-1],[1,-3],[-1,-1],[-3,-2],[-3,-1],[-12,4],[-13,3],[-11,0],[-15,-2],[-9,-3],[-5,0],[-4,1],[-1,1],[3,1],[-1,2],[-2,3],[-4,3],[-6,1],[-3,1],[-1,1],[-2,1],[-3,2],[-1,2],[1,7],[1,4],[1,3],[3,5],[-1,0],[-4,-4],[-3,-3],[-4,-5],[-1,-2],[-3,-2],[-3,0],[-6,3],[-4,2],[-3,0],[-2,0],[3,3],[1,2],[2,4],[0,1],[-13,1],[0,2],[0,1],[-1,1],[-2,1],[-2,-1],[-5,-2],[-1,2],[0,1],[2,0],[2,3],[-3,2],[-2,2],[-1,1],[0,6],[1,3],[8,4],[-2,1],[-6,0],[-4,-3],[-4,-4],[-3,-2],[-1,1],[-2,0],[-3,0],[-2,-1],[0,-2],[-1,-1],[-1,-1],[-1,1],[-1,1],[-3,2],[-1,1],[-1,-1],[-1,-3],[-1,-1],[-4,-1],[-2,0],[-3,3],[0,1],[1,3],[6,12],[-1,0],[-2,-2],[-4,-5],[-2,-1],[-3,0],[-1,0],[-2,0],[-2,-1],[-1,-2],[-1,-1],[1,0],[3,1],[2,1],[0,-1],[-2,-5],[-2,-5],[-1,-1],[-2,0],[-3,-1],[0,-1],[5,-4],[1,-1],[2,-1],[1,-1],[-1,-4],[-1,-2],[-1,0],[-3,0],[-1,-1],[-3,-2],[-1,-2],[3,1],[3,1],[4,0],[3,1],[1,2],[2,-1],[2,-2],[1,-2],[-1,-2],[-1,-2],[-3,0],[-1,-2],[-1,-1],[0,-3],[0,-3],[0,-6],[-1,-1],[-1,0],[-1,-1],[-3,-8],[-1,-1],[-1,1],[-1,0],[-1,-1],[-2,-1],[-3,0],[-3,0],[-4,2],[-2,1],[-1,2],[-4,-2],[-1,0],[-3,6],[0,-1],[-1,-5],[-1,-2],[-2,-4],[-2,-8],[0,1],[-2,7],[-1,1],[-2,-4],[0,-1],[0,-5],[-5,2],[-1,0],[1,-4],[0,-1],[-6,-7],[-2,0],[-1,1],[-1,0],[-4,-3],[-1,0],[-2,2],[-1,0],[0,-2],[0,-3],[-2,-3],[-4,-5],[-2,-2],[-1,-4],[-3,2],[-4,1],[1,-2],[0,-1],[-2,-1],[-2,0],[-2,1],[-3,-1],[-4,-2],[-3,0],[-5,4],[-1,0],[0,2],[1,3],[1,2],[1,2],[4,3],[5,1],[3,2],[4,4],[2,3],[4,8],[-1,1],[-9,-8],[-1,0],[-2,0],[-7,2],[-1,2],[-1,3],[2,8],[1,4],[3,6],[5,6],[1,5],[3,11],[0,5],[-1,6],[0,3],[1,1],[10,6],[5,4],[9,7],[3,0],[1,-3],[3,-1],[2,-2],[3,1],[4,1],[6,0],[13,-5],[3,0],[0,1],[-2,3],[-9,1],[-3,2],[-11,7],[-2,3],[1,1],[2,2],[1,1],[1,1],[1,3],[3,3],[3,3],[8,5],[-3,0],[-5,-1],[-2,-1],[-4,-3],[-1,-2],[-2,-5],[-1,-1],[-4,0],[-10,-1],[-2,3],[-1,0],[-1,0],[-9,-6],[-3,-3],[-3,-4],[-3,-2],[-5,-2],[-4,-2],[-4,-4],[-1,-3],[0,-1],[1,-5],[-1,-1],[-3,0],[-3,-3],[-8,-9],[-1,-3],[0,-1],[1,-3],[0,-1],[-3,-3],[-4,-4],[-3,-2],[-3,0],[-1,1],[-4,3],[-3,0],[0,-1],[4,-2],[4,-4],[2,-3],[1,-2],[0,-3],[-1,-2],[-2,-5],[-3,-1],[-7,-1],[-2,-2],[-1,0],[5,-2],[0,-1],[0,-4],[-2,-1],[-4,-2],[-3,-1],[-1,1],[1,2],[0,1],[-2,1],[-1,-1],[-5,-5],[-1,0],[2,-1],[0,-1],[-3,-3],[-1,-3],[-2,-2],[-7,-6],[0,-2],[-2,-5],[-1,-5],[2,-2],[6,-2],[3,-1],[4,-2],[6,-4],[3,-3],[0,-2],[0,-1],[-1,-2],[-2,-4],[-5,-6],[-2,-1],[-4,-2],[-1,-1],[-4,-5],[-2,-3],[1,-3],[-1,-1],[-6,-4],[0,-1],[2,0],[0,-3],[-1,-4],[-1,-1],[-3,0],[-5,-2],[0,-3],[-12,-3],[-2,-5],[-2,-2],[-4,-5],[-3,-1],[-3,-1],[-2,-2],[0,-2],[-1,-1],[-3,-3],[-1,-3],[-1,-1],[-5,-1],[-1,-1],[-1,-4],[-1,0],[-2,1],[-2,-1],[-6,-5],[-1,-2],[0,-1],[1,-1],[2,-3],[-1,-2],[-2,-6],[0,-1],[-3,-1],[-1,-4],[-2,1],[-2,-1],[-1,-2],[-2,-1],[-1,0],[-2,-2],[-2,-3],[-2,-2],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,-1],[-2,-2],[-1,-5],[-1,-2],[-1,-1],[-2,1],[-3,1],[-2,-1],[-5,-3],[-1,-2],[3,0],[1,-1],[0,-1],[-1,0],[-3,0],[-1,-1],[-2,-1],[-5,-2],[-1,-1],[-4,-5],[0,-2],[2,1],[2,-1],[1,-2],[1,-1],[1,-3],[-4,-5],[-1,-2],[-1,-1],[-1,6],[0,1],[-1,0],[-1,-2],[-3,-6],[-2,-3],[-18,-9],[-2,-2],[-1,-3],[0,-3],[-2,-3],[-1,-1],[0,1],[0,8],[-1,2],[-1,1],[-1,0],[-1,0],[-2,-2],[-1,-1],[-1,0],[-3,-1],[-5,-6],[-4,-2],[-1,-1],[-1,-3],[-1,-1],[-2,0],[-2,1],[-1,-1],[-2,-3],[-1,0],[-3,1],[-2,-1],[-2,-3],[-2,-2],[-2,-1],[-6,-1],[-2,1],[-1,1],[0,3],[1,3],[1,2],[1,1],[2,0],[3,-1],[0,1],[-1,1],[-3,2],[-3,1],[-2,-1],[-2,-1],[-1,-2],[-1,-2],[-1,-6],[-1,-2],[-7,-11],[-2,-3],[-3,0],[-1,-1],[-2,-3],[-1,-1],[-2,0],[-1,0],[-1,1],[0,1],[1,1],[0,2],[-2,4],[-1,2],[-3,0],[0,-2],[1,-8],[0,-2],[-2,-2],[-4,-3],[-1,0],[-4,5],[-3,1],[0,-1],[0,-4],[0,-3],[-3,-3],[-2,-2],[-1,0],[0,3],[1,4],[0,3],[0,3],[0,2],[0,2],[5,4],[2,1],[1,-2],[1,0],[2,1],[1,1],[0,2],[2,3],[4,3],[4,6],[4,8],[6,7],[6,6],[6,5],[14,7],[1,-1],[-1,-2],[0,-1],[2,0],[5,1],[2,1],[0,-1],[-1,-2],[-3,-2],[1,-1],[4,-7],[1,-1],[1,0],[1,1],[-1,5],[2,1],[3,0],[2,-1],[1,-1],[1,-1],[3,-1],[1,0],[1,2],[-1,1],[-5,5],[-1,1],[0,3],[0,3],[2,4],[2,6],[2,4],[4,5],[3,2],[7,8],[14,7],[4,5],[5,5],[2,1],[0,-2],[0,-2],[3,-1],[2,0],[1,0],[1,2],[-1,3],[0,4],[0,3],[1,2],[2,4],[3,5],[4,6],[3,3],[2,1],[3,2],[4,6],[1,1],[3,1],[1,0],[1,-2],[1,0],[3,-1],[2,1],[0,1],[-2,0],[-1,1],[-1,4],[-2,2],[-1,2],[1,4],[2,8],[0,9],[1,6],[4,1],[6,2],[-4,2],[-1,0],[-3,1],[-1,6],[0,4],[2,4],[6,8],[8,6],[-1,0],[-1,2],[3,11],[3,10],[-4,-9],[-5,-6],[-15,-7],[-10,-7],[-4,-1],[-3,1],[-3,6],[-1,3],[-2,3],[1,6],[1,3],[3,1],[4,-2],[3,0],[-4,3],[-6,3],[-2,-1],[-2,-5],[-3,-3],[-2,1],[-1,2],[1,-5],[-2,-6],[-1,-4],[3,-12],[-1,-4],[-4,-2],[-4,4],[-8,14],[-2,4],[-6,7],[-2,-1],[-3,-3],[-2,-1],[-7,5],[-3,3],[-3,5],[-4,-2],[-4,-3],[-4,-5],[-3,0],[-8,-4],[-1,0],[-1,-3],[-1,-1],[-1,-4],[-11,-3],[-11,2],[4,2],[4,2],[4,4],[-2,6],[0,3],[0,4],[4,5],[-4,0],[-3,-2],[-3,5],[-1,7],[3,5],[1,4],[2,5],[0,4],[-3,7],[-6,16],[-3,11],[-5,6],[4,10],[4,9],[5,4],[0,1],[-3,0],[-2,-1],[-2,-3],[-1,-2],[-6,-12],[-4,-5],[-2,-2],[4,-2],[0,-2],[1,-4],[-1,-5],[-1,-3],[-4,0],[-4,-4],[-10,-4],[-13,-3],[-6,1],[-7,5],[0,3],[1,2],[-10,9],[-5,9],[-4,0],[-3,3],[-4,3],[0,3],[1,3],[-3,1],[-3,0],[-3,1],[9,11],[3,8],[3,1],[3,-1],[5,-3],[4,-1],[2,-2],[1,-3],[-2,-4],[-1,-3],[2,1],[5,5],[3,4],[2,-1],[1,0],[2,-5],[3,-4],[5,4],[3,5],[-2,3],[-3,1],[-8,2],[2,1],[5,0],[2,2],[-2,2],[-3,2],[-6,-6],[-13,0],[-9,3],[-8,0],[-2,0],[-1,2],[5,5],[3,2],[0,2],[-2,0],[-4,-1],[-1,2],[0,3],[-1,0],[-1,-2],[-2,1],[-2,2],[1,1],[2,3],[-1,0],[-2,0],[-1,-3],[0,-3],[0,-4],[-3,0],[-2,0],[-2,4],[-2,8],[-4,2],[-2,4],[3,5],[-1,2],[-3,1],[-4,-3],[-1,3],[-1,2],[0,4],[1,0],[1,-1],[7,2],[1,1],[-6,3],[-1,4],[2,1],[4,0],[7,2],[-3,4],[-1,2],[0,3],[1,5],[7,11],[7,10],[2,2],[4,2],[3,-1],[3,-2],[0,1],[-1,0],[-1,4],[4,2],[3,4],[0,2],[-3,-2],[-3,-3],[0,3],[-1,7],[1,7],[1,3],[3,3],[7,1],[1,-1],[0,2],[-4,4],[2,3],[1,2],[8,3],[5,-1],[6,-3],[3,-4],[0,-2],[-1,-1],[-2,-2],[-1,-1],[1,-1],[2,3],[4,3],[2,-2],[2,-2],[2,0],[6,2],[4,2],[4,5],[5,4],[7,11],[2,4],[3,1],[2,-1],[1,-3],[3,-1],[13,0],[6,2],[5,4],[5,6],[3,4],[1,5],[-2,6],[-2,6],[-2,13],[-6,8],[-5,2],[-3,0],[2,5],[6,0],[4,1],[4,2],[1,2],[1,4],[0,5],[-1,2],[-2,2],[-3,4],[-2,1],[-1,0],[-8,-7],[-5,0],[-3,1],[-3,-4],[-9,-4],[-4,-4],[-9,-9],[-2,-4],[-2,0],[-2,8],[-9,8],[-3,-3],[1,-2],[2,-2],[4,-1],[-2,-2],[-1,-3],[-3,2],[-6,5],[-7,2],[-16,0],[-11,-5],[-1,1],[-1,1],[-2,-1],[0,-2],[-2,-1],[-2,-1],[-4,1],[-9,3],[-19,4],[-5,2],[-5,6],[1,4],[1,2],[0,5],[-3,2],[-8,8],[-3,4],[1,0],[1,-1],[3,-1],[6,2],[2,5],[5,1],[4,0],[-1,1],[-1,1],[-11,3],[-2,-1],[-20,5],[-16,8],[-2,2],[-1,4],[2,3],[2,2],[0,-2],[1,-2],[9,4],[5,6],[9,1],[2,2],[3,3],[4,5],[6,3],[4,3],[5,1],[4,-2],[2,-1],[8,0],[2,1],[1,1],[1,1],[-8,4],[1,3],[1,2],[9,5],[7,2],[4,0],[11,6],[6,2],[11,1],[9,1],[2,-3],[-4,1],[-3,-1],[2,0],[2,-2],[-1,-2],[-3,-7],[0,-5],[-2,-2],[-2,-2],[10,-8],[14,0],[8,1],[5,-2],[4,-1],[10,1],[8,-1],[3,0],[7,12],[3,1],[3,-1],[4,-2],[3,1],[2,-3],[-1,6],[-2,3],[-11,4],[-8,-2],[-3,2],[1,5],[-8,11],[-4,3],[-4,0],[-2,4],[-2,5],[4,2],[3,1],[3,-2],[3,-7],[3,-1],[0,-6],[3,-6],[9,-6],[7,2],[5,0],[3,-1],[8,-6],[3,0],[12,2],[0,6],[-1,3],[-3,3],[-7,-1],[-6,4],[-6,-1],[-9,-6],[-5,2],[-3,3],[-5,4],[-1,6],[4,6],[3,4],[-2,2],[-7,2],[-12,-2],[0,2],[0,3],[-5,-5],[-5,1],[-7,-1],[-15,5],[-5,5],[-2,4],[-4,12],[-5,8],[-35,25],[-16,6],[-8,7],[-5,2],[-4,1],[-6,2],[4,3],[3,1],[-3,-3],[2,-1],[3,2],[2,2],[3,9],[3,12],[-1,5],[19,-1],[13,1],[5,1],[16,2],[4,2],[8,4],[9,8],[8,10],[1,3],[1,-1],[1,0],[1,4],[1,9],[4,9],[16,19],[8,8],[3,3],[2,3],[2,-3],[1,0],[1,-1],[-2,-1],[-3,-2],[-3,-2],[-1,-1],[2,0],[6,2],[4,2],[18,4],[10,7],[0,1],[14,9],[2,-1],[3,-1],[-4,-5],[2,-2],[-2,-6],[5,0],[1,-3],[1,2],[-1,4],[1,4],[1,2],[3,-1],[9,3],[-10,0],[-6,6],[-4,0],[11,9],[11,5],[2,0],[1,-1],[0,-1],[-2,-1],[-2,-2],[1,-2],[1,0],[5,1],[2,2],[11,0],[3,1],[1,1],[13,0],[3,1],[8,5],[8,6],[3,3],[7,8],[5,5],[9,5],[2,-1],[-3,-1],[-2,-2],[3,-3],[18,-6],[4,0],[2,-4],[-1,-3],[-5,-4],[-9,-4],[2,-1],[2,-4],[3,0],[5,1],[3,2],[8,7],[2,4],[2,1],[6,-1],[3,-2],[4,-3],[-1,-4],[-2,-2],[6,-2],[5,-1],[6,-2],[7,4],[6,1],[6,0],[7,2],[13,-3],[3,1],[5,-1],[5,-2],[2,-2],[-5,-4],[-1,-5],[2,-2],[3,0],[1,-3],[2,0],[11,0],[-1,-1],[0,-2],[-4,-3],[20,-2],[3,2],[4,0],[9,3],[3,-1],[4,-3],[4,0],[3,0],[8,4],[9,0],[4,-1],[4,1],[11,-5],[5,0],[5,-6],[3,0],[4,2],[3,0],[3,-2],[4,-1],[3,-3],[2,-2],[18,-3],[9,2],[13,-1],[6,-1],[6,0],[11,-6],[6,-1],[1,-2],[16,-1],[5,3],[10,1],[9,3],[5,0],[6,-1],[2,0],[2,1],[14,-4],[8,-6],[3,-4],[17,-6],[5,-3],[3,-3],[2,-1],[1,1],[6,0],[2,0]],[[1083,9196],[0,-17],[0,-17],[0,-17],[0,-17],[0,-17],[0,-16],[0,-17],[0,-17],[0,-17],[0,-17],[0,-17],[0,-16],[0,-17],[0,-17],[0,-17],[0,-17],[0,-17],[0,-16],[0,-17],[0,-17],[0,-17],[0,-17],[0,-17],[0,-16],[0,-17],[0,-17],[0,-17],[0,-17],[0,-17],[0,-16],[0,-17],[0,-17],[7,-2],[6,-3],[2,5],[8,-4],[6,-3],[4,4],[4,5],[6,0],[6,0],[5,0],[0,-3],[-2,-6],[-1,-5],[4,-6],[4,-2],[5,-3],[2,-7],[5,-6],[4,-4],[3,-4],[6,-5],[3,-4],[5,-6],[3,-3],[1,-6],[2,-7],[-1,-5],[2,0],[5,4],[4,3],[5,4],[4,3],[6,0],[3,7],[0,11],[3,-1],[2,2],[1,3],[-2,4],[6,2],[5,1],[6,4],[7,4],[3,-3],[3,-3],[5,-7],[1,-1],[-1,-3],[0,-3],[3,-9],[1,-1],[3,-1],[4,-3],[1,-3],[5,-4],[1,-2],[1,-2],[1,-3],[0,-1],[1,-3],[3,-3],[4,-3],[3,-2],[4,-3],[4,-6],[3,-5],[4,-6],[0,-4],[4,-7],[4,-8],[3,-7],[3,-5],[3,-6],[3,-7],[4,-8],[3,-6],[4,-7],[2,-5],[-2,-3],[-1,-4],[5,-1],[3,-2],[-1,-4],[-1,-5],[4,-3],[3,-1],[-1,-3],[2,-3],[0,-6],[5,1],[2,0],[3,-3],[4,-3],[3,-3],[4,-2],[4,-2],[5,-2],[3,-5],[4,-1],[2,-7],[6,-2],[3,2],[1,-3],[1,-3],[0,-4],[0,-3]],[[459,8351],[3,-10],[1,-2],[2,-1],[2,-1],[1,-1],[2,-2],[0,-1],[-8,3],[-5,-5],[-1,-1],[-14,0],[-2,-1],[-2,-2],[-3,-5],[-2,-2],[-1,-1],[-4,-2],[-4,1],[-2,0],[-2,3],[-1,4],[0,2],[1,2],[4,3],[1,2],[5,11],[1,1],[2,1],[4,-1],[3,3],[8,5],[2,1],[5,0],[2,-1],[1,-1],[1,-2]],[[1297,8383],[1,-2],[0,-1],[-4,-3],[0,-1],[-1,-3],[-1,0],[-2,-3],[-3,-3],[1,9],[-3,4],[3,3],[2,-1],[3,0],[3,2],[1,-1]],[[1352,8356],[2,-7],[1,-3],[-3,-1],[-2,1],[-1,0],[-1,2],[1,4],[-1,2],[-2,1],[-1,-2],[-1,4],[2,3],[-1,3],[0,3],[0,1],[2,0],[3,-3],[2,-8]],[[1330,8416],[0,-10],[-2,1],[-1,0],[-2,-2],[-2,1],[-1,1],[0,1],[0,3],[-1,2],[-5,0],[-1,1],[-1,3],[0,4],[0,1],[3,1],[1,5],[1,1],[4,9],[1,-1],[3,-5],[4,-9],[-1,-7]],[[1362,8380],[-1,-6],[-2,-7],[-3,-3],[-2,0],[-2,3],[-1,0],[-2,1],[-1,2],[1,3],[0,2],[-1,-2],[-2,-2],[-3,-2],[-2,-5],[-1,-3],[-2,4],[0,7],[-1,4],[3,5],[3,4],[1,15],[9,7],[1,-1],[4,-5],[3,-7],[1,-4],[0,-6],[0,-4]],[[1295,8467],[2,-2],[1,2],[2,0],[3,-2],[3,-2],[1,-3],[0,-2],[-1,-4],[1,-4],[0,-2],[-1,-1],[-1,-2],[-1,0],[-2,4],[-3,6],[-3,2],[0,-1],[1,-1],[2,-4],[0,-2],[1,-3],[1,-1],[0,-3],[0,-2],[0,-2],[-1,-1],[0,-1],[-5,1],[-3,-2],[-3,1],[-1,1],[-1,2],[0,5],[-1,6],[1,5],[-3,5],[-1,3],[-3,2],[-2,2],[1,2],[2,2],[5,0],[9,-4]],[[1309,8346],[1,-1],[1,0],[1,2],[2,0],[1,-1],[1,0],[0,-3],[-1,-5],[-1,-2],[0,-2],[-3,1],[-3,3],[-3,5],[-2,4],[0,2],[-1,1],[-2,7],[-2,5],[-2,0],[-2,2],[-1,3],[1,2],[3,1],[6,-6],[1,-3],[2,-3],[0,-4],[1,-2],[2,-6]],[[933,8666],[1,-2],[5,0],[2,0],[1,-1],[-1,-1],[-2,-1],[-6,-3],[-5,-3],[-1,0],[-1,4],[-1,1],[0,2],[0,1],[1,2],[2,2],[1,0],[4,-1]],[[896,8629],[-3,-1],[-1,2],[2,4],[1,2],[1,1],[4,5],[4,3],[3,5],[4,8],[1,2],[1,1],[3,-2],[2,-3],[-1,-2],[-9,-10],[-1,-1],[-1,-4],[-1,-1],[-1,-1],[-1,-1],[0,-3],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-2,-1]],[[898,8666],[0,-2],[-1,-1],[1,-3],[-1,-5],[-1,-3],[-1,-1],[0,-1],[-1,0],[0,1],[0,2],[-2,0],[0,4],[1,1],[0,2],[0,1],[2,5],[0,1],[0,-2],[1,0],[1,3],[1,-2]],[[891,8687],[-4,0],[-1,1],[-1,0],[1,3],[0,1],[2,1],[2,-1],[0,-2],[1,-3]],[[750,8474],[-4,-2],[-3,-3],[-1,-2],[-2,3],[0,5],[2,3],[10,-1],[0,-1],[0,-1],[0,-1],[-2,0]],[[764,8552],[-1,0],[-2,2],[-1,2],[1,1],[4,3],[2,0],[1,-1],[0,-2],[-1,-1],[-3,-4]],[[743,8516],[-1,-2],[0,1],[-2,2],[-3,2],[-1,2],[-1,1],[2,1],[3,-2],[2,-2],[1,-3]],[[679,8399],[-1,-2],[-3,0],[-1,1],[0,2],[3,4],[1,1],[1,-2],[0,-4]],[[703,8434],[-2,-1],[0,1],[0,1],[0,1],[1,2],[3,4],[3,2],[1,0],[1,-2],[-2,-3],[-5,-5]],[[716,8439],[-1,0],[-2,1],[0,2],[3,2],[3,0],[0,-1],[0,-2],[-1,-1],[-2,-1]],[[536,8370],[1,0],[1,0],[2,3],[0,1],[0,-1],[-1,-4],[2,-4],[1,-2],[0,-1],[-3,-1],[-3,1],[-1,0],[-2,-2],[0,2],[-1,8],[0,1],[2,3],[1,1],[1,0],[1,-1],[0,-2],[-1,-2]],[[492,8343],[-1,0],[-2,1],[-1,2],[0,2],[4,3],[1,0],[0,-2],[0,-1],[-1,-4],[0,-1]],[[485,8317],[-3,-1],[-2,1],[-3,3],[0,3],[5,-2],[1,-1],[2,-3]],[[559,8359],[-2,-1],[0,-2],[-1,0],[-2,-2],[-3,-6],[-2,-1],[2,5],[0,2],[0,1],[0,4],[1,0],[1,0],[1,4],[2,0],[2,4],[1,0],[-1,-3],[2,-2],[0,-2],[-1,-1]],[[393,8298],[-1,-1],[-1,0],[0,1],[-3,-1],[-1,0],[-1,4],[0,1],[0,2],[2,1],[2,1],[2,0],[3,-3],[2,-2],[0,-1],[-1,-1],[-3,-1]],[[401,8302],[-1,0],[-1,3],[-1,4],[2,1],[1,0],[1,0],[1,-3],[1,-1],[1,-1],[-1,0],[-3,-3]],[[530,8558],[-2,-1],[-2,0],[-2,6],[1,0],[3,4],[6,3],[2,0],[-6,-12]],[[202,8666],[6,-4],[3,1],[3,-4],[2,-2],[-5,2],[-6,0],[-9,7],[-4,2],[1,4],[4,3],[1,-6],[4,-3]],[[273,8477],[-3,-2],[-2,1],[-1,2],[0,1],[8,2],[-2,-4]],[[286,8228],[0,-3],[-1,0],[-4,1],[-3,-1],[0,2],[0,1],[5,2],[2,0],[1,-1],[0,-1]],[[257,8212],[-1,-1],[-1,0],[0,3],[1,1],[3,4],[2,-1],[1,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[-2,-1]],[[209,8195],[-2,-1],[-2,1],[1,3],[1,1],[2,2],[3,-1],[1,-2],[-4,-3]],[[285,8446],[3,-1],[2,0],[2,0],[0,-1],[-3,-3],[-1,0],[-4,3],[1,2]],[[103,8167],[-2,-3],[-1,1],[0,5],[1,1],[2,-3],[0,-1]],[[111,8179],[-1,-2],[-3,2],[-1,2],[0,1],[1,3],[2,0],[1,-1],[1,-2],[1,-1],[-1,-2]],[[79,8163],[-1,-1],[-1,-1],[-4,1],[-3,0],[-3,-1],[-2,-1],[0,2],[0,1],[9,3],[2,2],[1,2],[2,4],[1,1],[2,-2],[-1,-2],[-1,-2],[0,-1],[-1,-5]],[[9959,8174],[-1,-1],[-1,3],[0,1],[1,2],[1,-1],[1,-2],[-1,-2]],[[9984,8143],[-5,0],[-10,9],[-5,3],[-3,3],[2,1],[6,-2],[5,-5],[2,-4],[3,-2],[4,-2],[1,-1]],[[9825,8200],[-2,-1],[-1,2],[-6,1],[0,2],[3,1],[4,3],[3,-1],[-1,-2],[0,-5]],[[1251,8487],[2,-6],[2,-5],[1,-6],[3,-12],[1,-5],[0,-2],[1,-7],[-1,-1],[0,-2],[-1,-2],[1,-5],[0,-7],[-1,-5],[-2,1],[-2,3],[-1,2],[-3,8],[-1,3],[0,3],[1,2],[1,1],[1,3],[-1,0],[-3,-1],[-2,3],[-2,1],[1,5],[-1,1],[-3,-2],[-1,2],[-1,1],[0,3],[1,2],[3,5],[0,1],[-2,1],[-2,2],[-1,6],[-2,3],[-1,0],[-3,-10],[-2,-2],[-4,-2],[1,3],[1,3],[-2,7],[0,3],[1,2],[3,1],[2,1],[1,2],[0,2],[2,6],[1,1],[3,0],[6,-6],[2,-1],[3,-4]],[[1259,8534],[7,-2],[5,1],[5,-9],[3,-7],[1,-5],[1,-4],[2,-5],[-1,-1],[-2,4],[-2,6],[-1,2],[-1,1],[-1,3],[-2,5],[0,2],[-1,2],[-1,0],[-1,0],[-1,-1],[0,-4],[1,-4],[5,-10],[4,-6],[0,-2],[1,-5],[-2,-2],[2,-5],[0,-1],[0,-1],[-5,-2],[-5,-9],[-4,-5],[-3,-1],[-1,1],[-1,2],[0,3],[-1,3],[2,2],[2,11],[0,4],[-3,5],[-2,4],[-1,5],[-1,15],[-1,5],[-1,4],[-2,3],[-1,4],[0,3],[0,2],[2,-2],[3,-6],[2,-3]],[[1230,8539],[4,-6],[0,-1],[-1,-4],[-2,-1],[0,-2],[2,-1],[1,1],[4,5],[1,2],[1,0],[5,-2],[5,-3],[1,-2],[1,-3],[-1,-8],[-4,-1],[-2,0],[-2,1],[-3,-3],[3,-2],[7,0],[3,-5],[0,-3],[-1,-6],[-4,1],[-4,4],[-8,5],[-2,0],[-1,-1],[0,-3],[0,-6],[-2,-4],[-6,2],[-3,5],[-2,8],[-8,9],[-3,2],[-3,6],[2,4],[0,3],[1,1],[3,2],[1,4],[2,-3],[3,-4],[0,3],[1,3],[3,0],[2,0],[1,3],[3,1],[2,-1]],[[1290,8429],[5,-1],[5,0],[1,-3],[2,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[9,-5],[5,-6],[1,-3],[1,-2],[2,-7],[4,-7],[2,-2],[1,-3],[-3,2],[-6,5],[-1,-3],[-1,-2],[-1,-2],[1,-1],[5,2],[4,-5],[1,-1],[2,-4],[0,-1],[-1,-3],[-1,-1],[2,-1],[4,1],[1,-1],[-1,-10],[1,-4],[0,-2],[-1,-2],[0,-2],[1,-2],[0,-2],[-1,-4],[-2,-1],[-2,0],[-1,1],[-2,4],[-2,6],[-1,1],[-3,1],[0,1],[-2,0],[-1,2],[0,4],[-1,3],[0,2],[-1,0],[-1,-1],[0,-3],[0,-3],[-3,2],[-3,8],[-4,6],[-2,2],[1,1],[2,1],[1,0],[1,1],[-4,7],[0,2],[1,3],[-1,1],[-4,-1],[-2,1],[-1,2],[-1,2],[-4,1],[-1,0],[-2,3],[-1,2],[0,1],[2,2],[2,0],[2,-2],[1,0],[2,2],[1,3],[2,2],[-1,2],[-1,3],[-2,1],[-5,-2],[-4,-3],[-1,1],[-1,2],[5,6],[2,3],[-1,1],[-1,3],[0,6],[1,1]],[[1278,8458],[2,-4],[2,0],[2,-3],[1,-4],[-1,-3],[-1,1],[-1,-2],[-1,-6],[0,-5],[0,-6],[-2,-6],[0,-3],[-1,-1],[0,-1],[-1,1],[-1,1],[-2,-3],[-2,0],[-1,7],[1,12],[3,3],[-2,3],[-3,4],[0,2],[-3,6],[0,1],[0,6],[3,4],[4,1],[2,-2],[2,-2],[0,-1]],[[766,8545],[1,0],[1,3],[1,0],[3,-3],[2,1],[2,-4],[1,0],[1,1],[0,-1],[0,-3],[-2,-4],[-1,-1],[-2,1],[-2,2],[0,2],[-1,0],[-2,-3],[0,-1],[1,-2],[0,-1],[-2,0],[-2,0],[-2,-2],[-1,1],[0,3],[-1,0],[-1,-4],[-1,-2],[-3,-2],[0,-1],[-2,0],[-2,-1],[-2,0],[-9,4],[-2,2],[8,8],[4,4],[2,-1],[2,-1],[1,1],[0,3],[-2,3],[0,1],[5,2],[2,0],[2,-1],[1,-1],[2,-3]],[[334,8256],[-8,-6],[-3,-4],[-2,-5],[-2,-2],[-1,0],[-1,-2],[-3,-3],[-1,0],[-9,-7],[-1,0],[0,2],[3,2],[2,3],[2,4],[1,1],[1,2],[0,4],[0,2],[2,3],[2,1],[1,1],[4,-1],[2,2],[0,1],[-1,1],[0,2],[0,3],[1,3],[2,2],[3,2],[3,2],[3,0],[4,-3],[1,-2],[-1,-2],[-1,-3],[-3,-3]],[[372,8288],[1,-2],[2,1],[2,3],[1,3],[1,1],[1,-2],[2,-2],[-2,-3],[-5,-5],[-1,-4],[0,-1],[4,1],[1,0],[1,-1],[-1,-2],[-2,-1],[-3,-2],[-5,-5],[-2,-3],[-2,-1],[-3,-1],[-5,-2],[-3,-2],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-1,-1],[-2,0],[-3,3],[0,1],[2,3],[2,1],[3,0],[3,3],[6,3],[2,2],[2,6],[1,1],[1,3],[3,0],[2,-3],[0,-1],[0,1],[1,2],[1,2],[-1,1],[-3,1],[-2,1],[-2,0],[-1,1],[-1,1],[0,2],[0,2],[1,2],[1,2],[2,1],[3,1],[3,1],[2,0],[1,0],[1,-6]],[[179,8187],[6,-3],[6,1],[3,-1],[0,-1],[-5,0],[-1,0],[-4,-1],[-2,-1],[-6,2],[-5,-1],[-1,0],[-1,1],[-2,2],[0,1],[1,0],[4,-1],[1,1],[3,1],[3,0]],[[148,8181],[-15,-2],[-2,1],[2,1],[3,1],[5,2],[7,3],[5,3],[5,1],[1,3],[-4,2],[0,1],[2,2],[1,2],[4,2],[3,-3],[1,-2],[0,-2],[-1,-3],[-3,-1],[0,-2],[1,-3],[-6,-4],[-9,-2]],[[95,8171],[0,-2],[3,1],[1,-1],[0,-4],[0,-1],[-1,-1],[-1,1],[-1,-2],[-6,-4],[-2,2],[-4,-4],[3,11],[3,1],[1,2],[-1,3],[2,5],[3,0],[1,-2],[0,-2],[-1,-3]],[[59,8159],[-1,-2],[-4,3],[-1,1],[3,2],[0,1],[0,1],[-2,2],[-3,3],[-1,2],[1,1],[1,1],[5,0],[2,-3],[2,-1],[4,-1],[-2,-2],[-1,-1],[-2,-5],[-1,-2]],[[9991,8173],[-2,-1],[-3,1],[-1,2],[0,3],[4,3],[4,-4],[-2,-4]],[[9927,8172],[-2,-2],[-2,2],[0,1],[3,5],[3,0],[1,2],[1,5],[2,0],[1,0],[0,-3],[-2,-3],[0,-3],[-5,-4]],[[9799,8237],[5,-2],[3,1],[5,-3],[5,-5],[-1,-1],[-2,-1],[-1,0],[-4,0],[-2,0],[-4,-4],[-5,3],[-1,5],[-4,1],[-2,2],[5,4],[3,0]],[[678,6279],[-1,-3],[-2,0],[-5,6],[-1,3],[1,15],[-2,12],[-3,9],[2,5],[2,4],[3,7],[-2,8],[0,6],[1,1],[6,-7],[12,-10],[3,-6],[1,-8],[2,-1],[1,-5],[3,-4],[1,-3],[-1,-4],[-6,-7],[-7,-4],[-6,-9],[-2,-5]],[[633,6406],[6,-2],[1,1],[1,-1],[5,-1],[1,-1],[-1,-3],[-3,-2],[-5,2],[-7,1],[0,2],[1,2],[0,3],[1,-1]],[[653,6389],[1,-1],[3,2],[2,1],[3,-4],[2,-3],[2,-3],[1,-2],[-1,-2],[-2,-4],[-4,-1],[-2,-2],[-3,1],[-1,0],[0,5],[-1,6],[-2,-1],[-1,2],[-3,5],[0,2],[1,5],[2,0],[2,-2],[1,-4]],[[617,6420],[1,-1],[1,1],[0,-5],[2,-2],[0,-2],[-1,-2],[-3,0],[-2,1],[-1,3],[-2,-1],[0,2],[0,1],[-1,0],[1,-3],[-3,-1],[-1,1],[-1,3],[-3,7],[0,2],[-1,3],[5,1],[2,5],[2,1],[3,-9],[0,-2],[1,-2],[1,-1]],[[573,6447],[-3,-3],[-1,1],[-3,1],[-1,2],[-3,2],[-1,3],[2,6],[4,5],[6,0],[2,-4],[0,-3],[-1,-3],[0,-5],[-1,-2]],[[550,6442],[0,-3],[-1,1],[0,2],[0,3],[2,3],[2,4],[1,-1],[-1,-2],[0,-3],[-2,-2],[-1,-2]],[[643,6380],[-2,-1],[-1,0],[-1,4],[-2,5],[3,1],[2,-1],[1,-2],[1,-2],[-1,-4]],[[2924,7776],[2,0],[6,0],[12,0],[11,0],[12,0],[11,0],[12,0],[12,0],[11,0],[3,11],[2,5],[4,-1],[2,0],[2,3],[1,1],[2,0],[1,-3],[0,-1],[1,0],[1,3],[0,3],[1,2],[1,0],[2,0],[0,1],[0,2],[0,2],[0,3],[3,6],[3,3],[2,2],[0,4],[2,4],[1,2],[0,2],[0,2],[0,5],[1,5],[0,6],[2,5],[3,6],[1,7],[1,8],[4,8],[4,9],[3,5],[4,9],[3,6],[2,3],[1,4],[3,-1],[3,-2],[-1,-5],[1,-3],[1,-2],[2,-2],[1,0],[2,0],[4,3],[5,1],[3,2],[1,2],[1,0],[2,0],[4,-4],[5,-6],[3,-5],[0,-9],[0,-9],[0,-9],[0,-7],[1,-9],[0,-8],[0,-9],[0,-5],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[1,-2],[1,-1],[1,-1],[1,-1],[2,-2],[2,0],[1,0],[2,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[0,-2],[0,-2],[1,-1],[1,-3],[-1,-2],[0,-1],[-1,-2],[1,-2],[1,-2],[1,-2],[2,-1],[1,0],[0,1],[1,1],[1,0],[1,-1],[1,-1]],[[3135,7785],[0,-1],[1,-3],[0,-6],[-1,-2],[1,-4],[2,-1],[1,-1],[0,-1],[-6,-9],[-5,1],[-2,-2],[-3,-1],[-1,-4],[-2,0],[-2,0],[-1,1],[-2,-1],[-2,-7],[-1,1],[-1,-3],[-1,-1],[-1,-1],[-1,3],[0,3],[-1,1],[-2,1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-1,1],[-1,2],[-1,-3],[-1,-4],[1,-4],[-1,-3],[-1,1],[-1,2],[-3,2],[-3,0],[1,2],[2,4],[-1,0],[-1,0],[1,3],[0,4],[-1,-1],[-2,-4],[-3,-3],[0,-5],[-3,-10],[0,-4],[-2,-4],[-2,-3],[-4,1],[-2,-2],[-1,-3],[-1,-1],[-1,4],[0,1],[-1,-5],[-1,-1],[-1,4],[0,3],[-1,-2],[-1,-6],[-1,0],[0,2],[-1,1],[0,-3],[0,-3],[0,-2],[-1,1],[-1,2],[-2,-2],[-1,0],[0,2],[0,2],[-2,-1],[-4,-4],[-2,-6],[1,-1],[1,-1],[-5,-9],[-4,-7],[-4,-13],[-1,-1],[-1,-2],[-1,-8],[-2,-7],[1,-2],[1,-4],[1,-3],[1,0],[1,1],[1,0],[0,-2],[0,-1],[-1,-1],[-3,-2],[-2,-1],[-1,-3],[-2,-4],[-3,-6],[2,-2],[5,-2],[2,-2],[3,-11],[-1,-1],[0,-2],[3,-3],[1,-7],[2,-3],[4,-2],[5,3],[3,3],[0,3],[-2,6],[-1,3],[-2,2],[0,-2],[-1,2],[0,1],[1,1],[1,0],[1,-2],[4,-6],[1,-9],[0,-6],[0,-2],[-1,1],[-2,-1],[-10,-3],[-2,-2],[-5,-3],[0,1],[0,3],[0,6],[-1,1],[-8,-10],[-3,-1],[-2,-2],[-1,1],[0,7],[1,6],[-3,-3],[-1,2],[-1,2],[-1,2],[0,-5],[-1,-4],[-1,-11],[-2,-4],[-7,-3],[-4,1],[-4,-1],[-6,-2],[-3,1],[-3,-2],[-10,0],[-2,1],[-3,-4],[-4,-3],[-11,-8],[-3,-4],[-3,-5],[-2,-2],[-1,-1],[-1,-3],[-1,-1],[1,5],[1,4],[1,9],[-1,6],[-1,3],[-1,2],[1,-7],[1,-8],[-1,-5],[-3,-9],[-1,-2],[-1,-2],[-1,0],[-1,-2],[-1,-2],[-1,-5],[0,-4],[6,-2],[1,2],[1,-3],[0,-4],[0,-5],[-1,-4],[-1,-6],[0,-9],[-1,-7],[0,2],[0,9],[-1,-1],[0,-2],[-2,-12],[-2,-7],[-2,-4],[-2,1],[0,-4],[0,-2],[-1,-4],[-1,-2],[-1,0],[-2,-2],[-1,-1],[0,-3],[-1,-2],[-4,-12],[-3,-3],[-1,0],[1,6],[0,6],[-2,2],[-2,1],[-2,0],[-3,5],[-3,3],[-5,8],[0,3],[0,4],[1,6],[2,5],[2,2],[5,2],[1,4],[1,3],[-2,-5],[-5,-2],[-2,-2],[-2,-3],[-1,-4],[-2,-4],[0,-3],[1,-2],[-1,-4],[2,-5],[3,-7],[0,-11],[3,-7],[3,-8],[3,-3],[0,-3],[-1,-5],[-2,-2],[2,0],[1,-1],[1,-4],[0,-5],[0,-2],[-1,-1],[0,2],[0,1],[-1,-1],[0,-1],[-1,-5],[0,-3],[-2,-1],[-2,-6],[-1,-4],[-7,-25],[0,-4],[-1,-1],[-2,-1],[-2,-3],[-1,-3],[-1,-7],[-3,-8],[-1,3],[0,3],[0,8],[3,13],[2,8],[2,3],[2,8],[-2,1],[-3,0],[0,3],[1,4],[-1,3],[-1,0],[-1,1],[1,3],[0,3],[0,3],[1,2],[-1,0],[-2,-3],[0,-1],[-1,3],[-1,-1],[0,-1],[-1,-1],[-2,2],[-2,2],[-2,5],[-1,3],[1,6],[2,1],[2,-1],[4,0],[-1,2],[-1,-1],[-3,5],[-1,3],[-2,1],[-1,-3],[-1,-1],[1,7],[2,0],[2,2],[-1,3],[-1,2],[-3,-2],[0,2],[1,4],[2,0],[1,-1],[2,5],[0,2],[-2,-3],[-1,7],[2,7],[3,3],[2,0],[3,1],[-2,1],[-1,1],[1,3],[1,0],[1,3],[-3,-1],[1,5],[-2,-1],[-1,-1],[-1,-2],[0,-3],[0,-2],[-1,-2],[-2,-1],[-1,2],[0,1],[-1,-5],[0,-1],[-2,4],[0,-1],[0,-1],[0,-2],[-2,-1],[0,-3],[0,-2],[-4,3],[0,-1],[2,-6],[2,-2],[0,-3],[-2,-2],[-2,2],[1,-4],[1,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[1,-12],[1,-3],[1,-3],[1,-3],[-2,-1],[-2,3],[-1,2],[-2,6],[-1,2],[0,2],[0,-5],[1,-4],[6,-11],[1,-4],[1,-3],[0,-3],[-2,2],[-1,3],[-4,3],[-5,2],[-3,7],[0,-3],[0,-3],[-2,4],[-1,2],[0,3],[-2,0],[-3,-3],[-2,1],[0,5],[1,3],[2,6],[2,3],[1,4],[0,7],[0,-7],[-2,-3],[-2,-2],[-2,-5],[-1,-4],[-1,-8],[1,-2],[1,-1],[4,2],[2,-1],[3,-9],[8,-4],[2,-2],[2,-5],[4,-3],[2,-4],[0,-2],[-1,-3],[0,-5],[-1,-2],[-3,0],[-1,0],[-8,15],[-1,1],[-4,8],[-3,4],[-1,0],[5,-8],[2,-5],[4,-7],[2,-4],[2,-5],[2,-2],[5,-3],[-2,-3],[3,-2],[1,-3],[-1,-4],[-4,1],[0,-3],[1,-2],[-2,-1],[-2,2],[-6,11],[0,-1],[0,-2],[4,-7],[3,-5],[2,-2],[3,-3],[0,-3],[1,-3],[-2,-2],[-2,-2],[-1,3],[-1,2],[-3,4],[-1,5],[-2,-1],[-8,6],[-7,1],[1,-1],[0,-1],[6,-1],[2,-3],[4,-2],[3,-1],[1,-7],[4,-5],[0,-4],[3,0],[4,3],[3,-1],[4,-1],[1,-3],[0,-6],[2,-6],[3,-24],[6,-21],[1,-3],[-2,3],[-4,13],[-2,10],[-2,17],[-1,4],[-1,1],[0,-1],[-1,-2],[1,-2],[-1,-5],[0,-3],[2,-3],[1,-6],[2,-9],[-2,3],[-2,2],[-3,2],[-3,2],[1,-3],[-1,-4],[-2,1],[-1,1],[1,-4],[-2,1],[-2,0],[-1,-4],[-2,-2],[-2,-1],[-3,4],[-1,4],[-1,5],[0,-6],[1,-6],[-1,-4],[4,-1],[3,1],[4,0],[2,0],[2,2],[4,-1],[0,-6],[-1,-5],[0,-5],[1,0],[2,1],[0,10],[4,4],[1,0],[1,-3],[0,-4],[1,-4],[-1,-7],[-5,-8],[-4,-7],[-2,-2],[-3,1],[-3,2],[-2,0],[-1,0],[-1,2],[0,4],[-1,1],[-1,0],[-1,-4],[-3,-1],[-4,1],[-4,4],[2,-4],[10,-7],[1,-2],[1,-2],[-1,-3],[-1,-3],[0,-3],[-1,-2],[-4,-5],[-2,1],[-6,9],[3,-8],[2,-3],[4,-2],[8,3],[3,-3],[-3,-5],[-2,-4],[-3,-1],[-2,-1],[-1,-2],[-2,0],[-2,0],[-5,-1],[-2,1],[-3,-5],[-1,-1],[-2,1],[-1,4],[-1,2],[0,-8],[1,-2],[0,-2],[-4,-4],[-3,-5],[-2,-2],[-1,-2],[-3,-8],[-1,-6],[-1,-6],[0,3],[0,4],[-1,6],[0,-10],[-1,-5],[-11,0],[-5,-2],[-7,-9],[-3,-4],[-6,-14],[-1,-9],[-1,4],[0,2],[0,3],[-2,-5],[2,-8],[-1,-3],[-4,-5],[-3,-1],[-2,-1],[-1,-6],[-3,-5],[-2,-2],[-4,2],[1,-5],[-1,-4],[-2,-2],[-3,-2],[-2,0],[-1,-1],[-1,-2],[-3,-2],[-2,1],[-3,1],[-2,-2],[3,-2],[1,-3],[0,-4],[-1,-1],[-2,-3],[0,1],[-1,2],[0,4],[-1,-1],[0,-2],[-1,-1],[-3,7],[0,-5],[1,-4],[1,-2],[1,-1],[0,-2],[-2,-4],[0,-1],[-2,0],[-1,-3],[0,-2],[-1,-5],[-4,-3],[-1,0],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-2],[-2,-1],[-1,-2],[1,-2],[0,-1],[0,-3],[-2,-2],[0,-2],[1,0],[1,0],[-1,-3],[-1,-3],[-1,-3],[-3,-1],[0,-2],[2,-1],[1,-2],[-2,-6],[-2,1],[-1,1],[0,-4],[0,-3],[0,-4],[-1,-6],[-1,-2],[0,-4],[1,-4],[1,-5],[2,-22],[1,-7],[3,-20],[4,-20],[6,-23],[9,-28],[1,-4],[-1,-4],[-1,-3],[0,-6],[1,-5],[1,-6],[2,-10],[-1,2],[-3,14],[-1,8],[1,12],[-1,-1],[-1,-3],[0,-5],[-1,-2],[-1,7],[0,3],[1,4],[0,1],[-2,2],[0,3],[0,3],[-1,1],[-1,0],[1,-7],[1,-4],[1,-11],[1,-6],[1,-5],[12,-56],[3,-7],[1,-5],[1,-11],[0,-14],[-2,-25],[0,-17],[0,2],[-1,0],[-2,-8],[-2,-7],[-1,-11],[-1,-5],[-3,-6],[-2,0],[-5,-4],[-3,1],[-5,-3],[-2,1],[-2,5],[0,2],[1,3],[1,0],[4,-5],[0,2],[-1,3],[-2,1],[-1,2],[-4,12],[-3,9],[0,6],[-6,3],[-4,5],[-3,10],[-1,16],[-2,2],[-1,2],[2,6],[2,5],[-2,-1],[-1,-2],[-1,-5],[-1,-1],[-1,1],[-1,9],[0,11],[2,4],[-3,0],[-2,-2],[0,-3],[0,-2],[-2,0],[-1,2],[-2,3],[-2,7],[-5,20],[-1,3],[-2,3],[1,1],[1,0],[3,9],[3,5],[1,4],[0,2],[-1,2],[-2,-2],[-1,1],[-1,4],[-2,1],[-1,-1],[1,-3],[1,-2],[0,-5],[0,-2],[-1,-2],[-2,1],[-1,-1],[-1,1],[0,3],[-1,4],[2,22],[3,15],[0,16],[0,2],[0,5],[-3,9],[-15,23],[-11,27],[-10,11],[-7,-3],[-1,-2],[-1,-2],[0,-3],[0,-2],[-2,1],[-3,-1],[-7,-7],[-2,0],[-3,-2],[-1,-1],[-5,-1],[-3,-2],[-2,1],[-1,4],[0,5],[1,-4],[1,-2],[1,1],[0,2],[-1,5],[-4,5],[-5,9],[1,-1],[1,2],[-2,3],[1,2],[1,3],[-2,0],[-2,-2],[0,-3],[0,-2],[-1,1],[-2,2],[-9,7],[-8,4],[6,1],[3,-1],[0,2],[-1,1],[-2,2],[-4,0],[-2,0],[-2,-1],[-2,-3],[-2,-1],[-8,-2],[-7,-2],[2,2],[1,2],[3,2],[1,4],[-1,4],[-1,-1],[-1,-3],[-1,2],[-2,0],[0,-5],[-2,-3],[-1,-4],[-5,-2],[-1,1],[2,3],[0,1],[-2,-1],[-3,-6],[-11,-2],[1,1],[2,1],[3,2],[-1,3],[-1,3],[-1,1],[-1,2],[0,6],[0,4],[-2,4],[-1,-1],[-1,-7],[-1,-8],[0,-3],[-4,0],[-2,0],[-10,-1],[-3,3],[-2,1],[-1,0],[-4,-3],[-5,-2],[-1,1],[-1,0],[-4,-7],[-4,-4],[-10,6],[-3,5],[-2,1],[-3,1],[-2,-6],[-3,-8],[4,-5],[3,-2],[5,2],[3,4],[2,0],[1,1],[1,2],[2,-2],[0,-2],[-1,-2],[-2,-2],[-1,-2],[2,-4],[3,-2],[1,1],[1,5],[2,3],[2,-1],[0,-2],[0,-2],[2,-3],[-1,-4],[1,-2],[-3,-2],[-2,0],[-2,-3],[1,-2],[-2,-1],[-1,1],[0,-1],[-1,-2],[0,-1],[1,-5],[2,-3],[2,-4],[8,-5],[2,0],[1,-5],[2,-1],[1,-1],[0,-4],[-3,-2],[0,-3],[-1,-2],[-1,2],[-1,2],[-3,-5],[-1,-1],[1,5],[-1,2],[-2,5],[-2,4],[-2,1],[-1,2],[-1,0],[-1,0],[-2,1],[-1,3],[0,2],[-2,3],[-8,4],[0,-2],[1,-1],[1,-1],[1,-2],[0,-5],[0,-3],[-1,-3],[0,-3],[-1,-3],[-2,-2],[-1,2],[-2,7],[-2,2],[-3,0],[-3,-1],[-2,-7],[-2,-1],[-7,3],[-8,6],[0,2],[1,0],[3,-1],[0,2],[-3,6],[0,3],[0,4],[-1,0],[-1,-3],[-5,2],[-2,3],[-3,8],[-4,0],[-2,5],[-3,-2],[-2,-2],[-2,-4],[1,-1],[2,-3],[-1,-2],[-5,-2],[-11,3],[-4,2],[-4,4],[-6,4],[-3,1],[-3,-1],[-9,-1],[-2,0],[-2,-2],[-1,2],[0,3],[1,0],[1,2],[1,4],[0,2],[-1,1],[-1,1],[-3,-10],[2,-5],[0,-2],[-6,-1],[-13,-11],[-5,-6],[0,2],[6,8],[-2,1],[-4,-2],[-1,1],[2,6],[-1,5],[-2,0],[-2,-4],[-1,0],[-2,2],[-1,0],[1,-10],[2,-4],[1,-6],[-4,-6],[-3,-5],[0,-5],[-4,-7],[-3,-4],[-7,-9],[-2,-1],[-4,-5],[-4,-3],[-5,-5],[-1,0],[2,4],[4,4],[-3,-1],[-5,2],[-2,0],[0,-1],[-2,-2],[-3,3],[0,2],[-1,2],[-1,0],[-1,-1],[4,-12],[1,-1],[1,-1],[-1,-3],[-3,-2],[-3,-2],[-2,5],[-1,-6],[0,-6],[-1,-1],[-2,-2],[0,1],[-1,2],[-1,-2],[-1,-1],[-2,0],[-2,-1],[0,-3],[0,-2],[3,2],[-1,-6],[-2,-6],[-3,-2],[-3,1],[-1,-1],[-1,-1],[4,-9],[-2,-15],[-2,-5],[-1,-1],[-1,0],[-5,5],[-2,3],[2,-10],[6,-2],[0,-4],[0,-3],[-1,-4],[-1,-5],[1,-3],[1,-9],[0,-4],[1,-12],[1,-5],[5,-19],[2,0],[0,-2],[0,-4]],[[2301,6679],[-4,-1],[-1,-2],[0,-1],[-1,-1],[-2,1],[-4,5],[-6,4],[-8,1],[-5,3],[-3,4],[-3,2],[-3,1],[-3,2],[-2,4],[-3,2],[-4,1],[-2,3],[-2,7],[-2,11],[-2,7],[-4,9],[0,1],[0,2],[1,5],[-1,3],[-1,3],[0,4],[0,3],[0,4],[0,5],[-3,5],[-4,5],[-4,8],[-3,10],[-3,8],[-3,4],[-2,4],[-1,6],[-1,4],[1,0],[-2,7],[-4,12],[-3,9],[0,5],[-3,7],[-5,7],[-2,5],[-1,4],[-7,10],[-2,6],[-2,2],[-2,0],[-1,0],[0,2],[-1,0],[-1,-2],[-4,0],[-6,1],[-5,2],[-3,2],[-2,0],[-1,-3],[-3,-3],[-4,-1],[-3,-6],[-3,-11],[-1,-8],[0,-3],[0,-2],[-2,-2],[-2,-3],[-2,-5],[-2,-3],[-2,0],[-5,4],[-7,8],[-5,5],[-4,2],[-3,3],[-3,6],[-3,3],[-2,2],[-3,6],[-3,10],[-2,8],[0,8],[-4,19],[-3,7],[-1,4],[-4,4],[-5,5],[-6,10],[-8,15],[-6,9],[-4,3],[-3,6],[-2,7],[-3,5],[0,1],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[0,-6],[0,-7],[0,-6],[0,-7],[-10,0],[-10,0],[-10,0],[-9,0],[-10,0],[-10,0],[-10,0],[-10,0],[-13,9],[-13,8],[-13,9],[-13,8],[-14,9],[-13,8],[-13,9],[-13,8],[1,3],[2,9],[-3,0],[-8,-2],[-8,-1],[-8,-1],[-8,-1],[-8,-2],[-8,-1],[-8,-1],[-8,-1]],[[1746,7058],[0,6],[-1,3],[-2,-2],[-1,8],[1,4],[0,4],[-2,9],[-4,12],[-9,14],[-5,4],[-3,6],[-2,2],[-3,0],[-1,-2],[-3,1],[0,7],[-3,9],[-3,1],[-6,0],[-9,5],[-2,3],[-1,5],[-4,5],[-6,4],[-3,-1],[-3,1],[-6,3],[-3,1],[-7,-1],[-2,0],[-2,4],[-2,3],[0,5],[0,4],[0,4],[-1,8],[1,7],[-1,3],[-1,2],[-4,3],[-1,4],[1,5],[-1,3],[-4,3],[-3,8],[-4,4],[-2,6],[-2,4],[-1,4],[-6,13],[-6,10],[-1,6],[0,8],[3,5],[1,5],[0,3],[-1,3],[-2,5],[-8,3],[-6,13],[0,9],[-3,10],[0,7],[0,6],[2,2],[1,-1],[0,-2],[1,-5],[2,-4],[2,-2],[1,-3],[2,-1],[1,-1],[-1,3],[0,1],[-1,5],[-2,6],[-2,3],[-1,7],[-1,1],[-1,2],[2,3],[3,2],[4,0],[10,-1],[2,2],[2,0],[1,0],[-3,1],[-1,0],[-2,0],[-4,0],[-1,1],[-2,1],[-1,1],[-3,-4],[-2,1],[-3,3],[-2,1],[-2,-2],[-1,-9],[1,-7],[-2,0],[-1,2],[-3,2],[-2,2],[-3,5],[-2,2],[-2,-4],[0,2],[1,4],[0,8],[3,-6],[-1,4],[-2,4],[-2,2],[-2,8],[-5,5],[-4,8],[-7,14],[-1,12],[-3,14],[2,9],[-1,6],[-1,9],[-1,5],[-7,13],[-6,9],[-1,7],[0,7],[1,6],[2,7],[0,1],[1,0],[-1,-2],[1,0],[1,3],[0,1],[-1,0],[0,1],[1,2],[2,9],[0,10],[1,13],[0,5],[-1,9],[-1,6],[-2,4],[1,6],[0,5],[-4,8],[-2,10],[0,5],[0,12],[-1,5],[-3,8],[2,7],[1,4],[3,19],[0,2],[2,0],[2,3],[-1,1],[-2,-2],[2,8],[1,6],[1,2],[1,21],[1,16],[1,6],[0,5],[0,7],[0,8],[3,36],[-1,4],[1,6],[-1,15],[1,17],[-1,3],[0,2],[2,-2],[6,0],[5,2],[1,-1],[2,-3],[2,0],[3,0],[-1,1],[-1,0],[-3,3],[-2,3],[-5,0],[-1,2],[-6,-2],[-1,2],[-4,-2],[1,6],[0,7],[0,6],[1,-5],[2,-5],[1,6],[0,7],[-1,3],[-4,2],[-1,7],[8,6],[-4,1],[-2,3],[-2,0],[0,-2],[0,-3],[-1,4],[0,4],[-1,7],[-3,11],[-2,15],[-2,7],[-5,7],[-1,4],[-1,10],[1,8],[-1,5],[2,0],[5,-4],[8,-4],[2,-2],[3,-2],[19,-3],[1,1],[3,1],[1,0],[3,-4],[1,0],[2,0],[1,1],[2,2],[1,-1],[0,-2],[0,-4],[2,-4],[1,-3],[-4,-9],[0,3],[-1,1],[-6,-14],[-2,-7],[-1,-3],[0,-2],[1,0],[2,1],[3,2],[0,1],[-2,-1],[-2,0],[1,3],[0,2],[2,4],[2,3],[2,3],[2,2],[1,4],[3,4],[1,1],[-1,4],[1,0],[1,0],[1,-6],[-1,-3],[-2,-3],[-1,-1],[1,-5],[-1,0],[-1,0],[3,-5],[0,-3],[1,-4],[-1,-6],[-1,-1],[-1,0],[-2,2],[0,-1],[-1,-5],[-1,1],[-1,6],[-3,-2],[-1,-3],[0,-4],[-2,-2],[4,-1],[2,1],[3,-2],[3,2],[0,2],[2,6],[1,1],[1,0],[1,1],[2,3],[0,2],[0,7],[0,5],[-1,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[2,5],[0,2],[2,4],[0,2],[-2,2],[-1,2],[-1,3],[-1,1],[1,-5],[0,-1],[-3,3],[0,2],[-1,2],[0,2],[2,1],[2,1],[0,1],[-3,5],[-1,2],[-1,1],[-2,0],[0,1],[-1,1],[1,2],[1,0],[2,0],[1,1],[0,1],[0,1],[0,7],[-1,5],[-1,1],[-1,0],[-1,0],[-1,1],[-1,4],[-2,8]],[[1589,8006],[3,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[12,0],[11,0],[12,0],[12,0],[12,0],[12,0],[6,0],[0,12],[1,9],[6,-1],[1,-2],[1,0],[0,-3],[0,-8],[1,-7],[3,-8],[0,-3],[1,-2],[1,-2],[6,-2],[10,-3],[6,-3],[1,-3],[3,-1],[4,0],[3,2],[2,3],[3,1],[3,0],[3,-1],[2,0],[4,-3],[3,-2],[4,-4],[2,-1],[1,-4],[2,-6],[2,0],[1,3],[3,1],[5,-2],[4,-6],[6,-5],[4,-3],[3,0],[5,3],[5,5],[3,1],[2,-1],[2,-4],[1,-1],[4,0],[8,-1],[6,1],[2,-2],[1,-4],[2,-1],[4,1],[6,0],[3,-1],[5,2],[2,1],[4,3],[4,3],[8,7],[7,2],[6,-4],[5,-4],[2,-2],[4,-4],[7,-6],[8,-6],[8,-7],[7,-5],[5,-4],[2,-2],[5,-5],[6,-4],[5,-5],[6,-4],[5,-5],[5,-5],[6,-4],[5,-5],[1,-8],[2,-7],[3,-5],[3,-5],[1,0],[2,2],[1,1],[2,0],[4,2],[1,0],[1,-1],[0,-2],[0,-1],[-1,-2],[1,-4],[0,-5],[1,-4],[2,-4],[1,-4],[2,0],[4,2],[3,0],[1,0],[3,-3],[1,-2],[0,-2],[-3,-10],[5,-5],[6,-6],[7,-6],[5,-4],[6,-6],[1,-9],[0,-6],[2,-10],[1,-10],[1,-10],[1,-10],[1,-12],[1,-10],[1,-11],[2,-15],[-1,-5],[-4,-12],[-2,-11],[-1,-3],[-2,-16],[-1,-7],[-3,-4],[-3,-4],[-3,-6],[-4,-3],[-2,-2],[-1,-3],[-1,-6],[0,-9],[3,-9],[5,-4],[5,-5],[7,0],[6,6],[7,7],[6,5],[7,7],[6,6],[7,2],[10,3],[12,4],[6,4],[7,6],[9,6],[7,6],[4,3],[3,4],[1,2],[-1,2],[0,1],[-1,1],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[1,10],[-1,3],[-2,7],[4,4],[5,3],[3,3],[7,0],[7,0],[9,0],[8,0],[9,0],[6,0],[7,0],[3,9],[3,8],[4,7],[6,9],[1,2],[1,4],[4,3],[4,3],[2,3],[0,2],[11,16],[6,7],[5,4],[4,2],[3,0],[1,0]],[[2986,7545],[-2,-4],[1,-1],[2,2],[1,2],[4,3],[3,1],[2,-2],[3,2],[2,1],[-12,-10],[-2,-1],[-4,-3],[-3,-2],[-2,0],[-12,-8],[-1,0],[-1,1],[-10,-4],[-4,0],[-4,-1],[3,3],[0,1],[-1,1],[-1,-1],[-2,-3],[-2,-1],[-1,4],[1,2],[1,3],[3,3],[3,3],[2,2],[1,-2],[0,2],[1,2],[1,1],[2,0],[2,0],[1,1],[1,0],[2,-1],[3,0],[2,2],[2,0],[6,1],[5,1],[3,2],[4,6],[3,1],[-4,-6],[-2,-3]],[[3106,7737],[-2,-1],[-2,1],[0,-3],[0,-1],[-2,1],[-1,1],[0,4],[2,4],[1,1],[2,-1],[1,-4],[1,-2]],[[2939,7518],[-1,0],[1,5],[2,3],[1,-1],[0,-2],[0,-1],[-2,-3],[-1,-1]],[[3041,7567],[-8,-3],[-1,2],[2,1],[3,4],[1,1],[3,-3],[0,-2]],[[3021,7574],[-2,-2],[-1,0],[1,2],[0,4],[1,3],[0,1],[1,1],[0,-9]],[[3056,7561],[-2,-1],[-5,2],[4,2],[1,0],[0,3],[0,1],[2,-5],[0,-2]],[[2899,7249],[-1,-1],[-2,6],[2,-2],[1,-2],[0,-1]],[[2901,7214],[-3,-2],[-1,1],[4,3],[2,11],[0,6],[-1,9],[0,2],[1,-3],[1,-9],[-1,-6],[-1,-10],[-1,-2]],[[2895,7211],[-5,-4],[-1,0],[3,3],[3,1]],[[2875,7179],[-1,0],[2,7],[5,9],[2,1],[-4,-8],[-4,-9]],[[2721,6707],[-1,-1],[-2,1],[-1,2],[-1,4],[2,-4],[1,-1],[2,-1]],[[2720,6713],[0,-3],[-2,5],[-1,7],[2,-2],[1,-7]],[[2767,6632],[-6,-11],[1,3],[2,6],[1,2],[1,2],[2,3],[0,4],[2,2],[0,1],[-3,-12]],[[2450,6883],[-1,-1],[-5,5],[0,2],[2,2],[2,0],[2,-2],[1,-1],[0,-1],[0,-2],[-1,-2]],[[2305,6791],[-1,0],[2,4],[0,2],[2,6],[1,1],[1,-2],[-2,-5],[-3,-6]],[[2312,6805],[-1,0],[1,3],[2,2],[5,6],[2,0],[0,2],[1,1],[0,-3],[-4,-4],[-6,-7]],[[2296,6756],[-1,-3],[0,5],[2,11],[5,15],[2,2],[-6,-16],[-2,-14]],[[2360,6863],[-2,-1],[6,9],[2,3],[1,0],[-2,-5],[-5,-6]],[[2301,6691],[-1,-3],[-2,12],[-4,29],[0,16],[1,5],[1,-22],[4,-29],[1,-8]],[[1658,7144],[-1,-1],[-3,1],[1,1],[1,1],[1,0],[1,-2]],[[1682,7097],[-1,0],[-2,0],[-1,4],[2,0],[1,-1],[1,-2],[0,-1]],[[1712,7075],[-1,-1],[-2,1],[-2,6],[-1,4],[1,1],[1,-4],[3,-6],[1,-1]],[[1665,7137],[-2,0],[-1,0],[-2,6],[5,1],[2,-3],[-2,-4]],[[1670,7147],[5,-3],[3,1],[1,-1],[0,-1],[-7,-3],[-2,2],[-1,2],[0,2],[1,1]],[[1712,7107],[2,-4],[-2,0],[-2,0],[-1,2],[-1,3],[0,1],[-1,0],[-1,1],[0,1],[1,1],[4,-4],[1,-1]],[[1589,7987],[1,-1],[-2,-1],[-2,2],[0,-3],[0,-1],[-2,2],[-1,1],[1,2],[1,1],[1,0],[3,-2]],[[1583,7977],[1,-2],[-3,2],[-2,1],[0,1],[-1,3],[1,1],[1,1],[3,-4],[0,-3]],[[1595,7958],[1,-8],[1,3],[4,-5],[0,-3],[-1,-1],[-1,1],[-1,1],[-1,1],[-2,1],[0,2],[-1,2],[0,4],[0,1],[-1,1],[-1,1],[-2,2],[0,1],[1,3],[1,4],[1,2],[1,-1],[1,-1],[1,-2],[0,-2],[-4,-3],[2,-1],[0,-1],[1,-2]],[[3017,7573],[0,-1],[-1,3],[1,3],[1,-1],[-1,-4]],[[2940,7469],[-3,-8],[0,1],[4,11],[-1,-4]],[[2907,7366],[-1,-1],[4,12],[3,9],[1,4],[-1,-7],[-2,-6],[-4,-11]],[[2873,7180],[-1,0],[-2,2],[1,0],[2,-2]],[[2740,6604],[0,-2],[-1,1],[0,2],[-1,3],[0,1],[3,-3],[0,-1],[-1,-1]],[[2754,6612],[0,1],[1,2],[1,-1],[0,-1],[-2,-1]],[[2760,6618],[-1,0],[1,2],[0,-2]],[[2748,6607],[-1,-1],[-1,1],[1,1],[5,2],[-2,-2],[-2,-1]],[[2738,6968],[-1,-14],[-1,5],[0,4],[1,3],[1,2]],[[2734,6601],[-2,-1],[2,2],[0,4],[1,-3],[0,-1],[-1,-1]],[[2772,6755],[1,-4],[-3,10],[-3,15],[-2,12],[2,-3],[1,-7],[4,-23]],[[2728,6598],[-1,-1],[0,1],[1,1],[1,0],[0,-1],[-1,0]],[[2531,6895],[-2,-3],[0,1],[1,3],[1,2],[0,-3]],[[2540,6924],[-1,0],[-2,1],[-2,1],[0,1],[4,-2],[1,-1]],[[2553,6926],[-2,-1],[-4,0],[0,1],[1,0],[4,2],[1,-2]],[[2521,6917],[0,-3],[-1,1],[-2,0],[1,1],[1,1],[0,1],[2,3],[0,-2],[-1,-2]],[[2532,6901],[0,-2],[0,9],[-1,7],[1,-3],[1,-4],[-1,-7]],[[2641,6891],[-3,-2],[-3,2],[2,0],[2,-1],[3,3],[2,2],[2,1],[-5,-5]],[[1587,7903],[0,-1],[-1,2],[0,2],[0,1],[1,-4]],[[1600,7914],[0,-2],[-1,-1],[-1,1],[0,1],[-1,-1],[0,3],[0,4],[1,0],[1,-2],[1,-3]],[[1597,7925],[0,-1],[-2,1],[0,2],[0,2],[0,2],[1,0],[1,0],[0,-1],[0,-5]],[[1588,7973],[-2,1],[-1,1],[0,1],[1,4],[1,0],[0,-3],[1,-2],[0,-2]],[[3093,7729],[-1,-1],[-1,1],[0,2],[1,1],[0,1],[1,-1],[0,-3]],[[4270,1818],[0,-3],[-4,3],[-1,1],[1,2],[3,0],[1,-1],[0,-2]],[[3969,2070],[3,-3],[2,2],[2,0],[1,-1],[1,-1],[2,0],[3,-4],[-1,-5],[3,1],[2,-3],[1,0],[1,1],[2,2],[1,-2],[1,-4],[2,-2],[1,-4],[2,-5],[1,-1],[2,0],[2,1],[-1,-5],[0,-4],[3,-3],[-2,-2],[-2,-3],[-4,-1],[-1,0],[-3,5],[-2,5],[-4,7],[-1,2],[0,1],[-4,1],[-3,2],[-2,3],[-1,2],[-1,2],[-3,0],[-2,2],[-3,2],[-9,7],[-4,-1],[-1,2],[0,3],[2,2],[-9,1],[-2,1],[2,1],[11,0],[4,0],[1,-1],[3,-3],[4,0]],[[7013,4759],[-1,-2],[-1,-1],[0,5],[-2,4],[1,0],[1,-2],[1,-5],[0,1],[0,2],[0,2],[0,2],[-1,2],[1,1],[1,-2],[0,-2],[0,-5]],[[4841,4262],[-2,0],[0,3],[2,3],[1,-1],[0,-3],[-1,-2]],[[4601,4724],[-1,0],[-1,1],[0,1],[1,2],[0,2],[1,0],[1,-2],[0,-1],[0,-1],[-1,-2]],[[1436,3779],[0,-1],[-1,0],[0,2],[0,2],[0,1],[1,-1],[0,-2],[0,-1]],[[3250,6233],[-5,-3],[0,2],[4,4],[1,0],[0,-3]],[[3365,2231],[4,-4],[5,2],[3,-1],[1,-3],[-1,-3],[-1,1],[-2,-1],[0,-4],[1,-1],[6,-4],[1,0],[0,2],[-1,2],[0,3],[0,2],[2,1],[6,1],[2,-1],[3,-7],[-3,0],[-1,-3],[2,-2],[2,-1],[-1,-3],[0,-2],[-5,-2],[-4,-1],[-1,-3],[-4,-2],[-9,-5],[1,-3],[0,-2],[-1,-4],[-13,5],[-2,0],[4,-9],[-3,-2],[-2,1],[-3,-1],[-1,-6],[-4,4],[-3,6],[0,3],[3,6],[-1,3],[7,8],[2,3],[2,1],[2,1],[1,1],[0,2],[-1,3],[0,6],[6,8],[-1,5],[2,0]],[[3325,2220],[4,-1],[4,4],[2,1],[2,-1],[2,-2],[2,0],[6,2],[1,0],[2,3],[2,-2],[1,-2],[0,-3],[-2,-2],[-1,-3],[-1,-2],[-3,-2],[-1,-3],[-4,-7],[-6,-10],[-2,0],[-4,-1],[-1,1],[-2,-1],[-1,-5],[-2,-3],[-1,-1],[-2,-1],[-1,-2],[-5,1],[-4,2],[-4,5],[6,7],[5,-1],[4,5],[3,2],[1,2],[1,2],[0,2],[-1,1],[-1,0],[-2,-1],[-3,-1],[-2,2],[1,1],[2,0],[5,2],[1,1],[-1,4],[-4,2],[-2,3],[-1,2],[1,2],[-2,4],[2,0],[2,-3],[4,-3]],[[3305,2201],[2,-1],[2,1],[-1,-6],[-1,-3],[-3,0],[-2,4],[-1,2],[3,1],[1,2]],[[3376,2188],[1,-5],[-3,2],[0,2],[1,2],[1,0],[0,-1]],[[3330,2223],[-4,0],[-1,2],[0,5],[3,1],[3,-2],[0,-2],[-1,-4]],[[3342,2175],[-2,-1],[0,1],[-1,2],[0,3],[0,1],[1,0],[2,-3],[0,-3]],[[2739,6298],[1,-1],[1,1],[1,1],[4,-1],[1,-2],[-4,0],[-1,-2],[-1,0],[-3,0],[0,6],[1,0],[0,-2]],[[2778,6319],[-1,0],[-2,-2],[-1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[0,-1]],[[2782,6319],[-1,-1],[-1,1],[2,2],[1,1],[1,0],[1,0],[0,-1],[-3,-2]],[[3202,7044],[-3,-2],[-1,0],[0,1],[2,2],[3,4],[-1,-5]],[[3211,6247],[-1,0],[0,1],[0,2],[3,0],[-2,-3]],[[3205,6244],[-2,0],[1,2],[2,0],[1,0],[-2,-2]],[[3214,6263],[0,-2],[-2,2],[-1,0],[-1,1],[3,0],[1,-1]],[[3009,6437],[-2,2],[-3,0],[0,3],[1,0],[4,-1],[1,-2],[-1,-2]],[[3003,6442],[0,-1],[-2,2],[0,2],[-1,0],[-1,1],[0,2],[3,0],[0,-5],[1,-1]],[[2990,6442],[4,-3],[2,1],[0,-1],[-1,-1],[-1,0],[-3,-1],[-1,0],[0,2],[0,3]],[[3273,6148],[0,-3],[-2,1],[0,3],[1,3],[1,0],[0,-4]],[[4943,8019],[1,-2],[-2,-1],[-1,1],[-2,0],[-2,-1],[1,5],[4,0],[1,-2]],[[4930,8035],[-1,-4],[-3,1],[0,1],[3,2],[1,0]],[[4877,8305],[-6,-8],[-2,2],[-2,-1],[1,3],[1,6],[2,2],[3,7],[3,2],[0,-1],[1,0],[1,-7],[-1,-3],[-1,-2]],[[4925,8157],[-2,-2],[-6,-3],[-3,-2],[-5,-6],[-1,0],[-7,1],[-6,7],[-4,3],[-1,1],[-2,-1],[-3,-1],[-3,0],[2,3],[2,2],[-5,2],[-2,1],[-1,2],[-4,0],[-2,0],[-4,-3],[-5,-4],[-6,5],[-1,2],[0,4],[-1,3],[-2,1],[3,4],[2,3],[6,2],[9,7],[5,2],[4,5],[2,3],[2,4],[1,4],[2,4],[-2,1],[-1,3],[0,3],[1,2],[0,4],[-2,3],[0,3],[1,3],[-4,-1],[-4,0],[-3,-2],[-3,-3],[-3,-1],[0,3],[2,2],[3,4],[3,3],[1,3],[1,3],[2,2],[4,4],[9,5],[1,0],[3,0],[3,0],[3,2],[3,1],[6,-5],[-1,7],[2,2],[4,-7],[2,-1],[3,1],[-1,2],[-2,0],[-1,1],[-2,2],[-3,7],[1,4],[1,5],[2,4],[-1,1],[-2,1],[0,4],[0,4],[4,3],[1,5],[0,5],[0,2],[-4,0],[-1,-1],[-2,-2],[-1,0],[-5,6],[-2,5],[-5,9],[0,6],[3,12],[6,7],[6,3],[-1,1],[-10,0],[-3,-1],[-3,-3],[-2,-1],[-2,-1],[-1,-1],[-2,-3],[-1,-1],[-4,0],[-1,0],[-1,1],[-1,2],[-2,1],[-1,-1],[-3,-3],[-3,-1],[-4,2],[-4,3],[-1,-1],[-1,-3],[-1,-5],[-3,4],[-3,6],[-1,3],[0,4],[1,1],[2,-1],[3,9],[5,12],[1,4],[2,5],[-1,3],[-1,2],[-4,6],[0,5],[0,5],[1,3],[1,1],[6,0],[-2,1],[-5,5],[0,2],[1,4],[-1,-2],[-2,-5],[-2,-1],[-3,-1],[-1,-3],[0,-1],[-2,0],[0,-2],[-1,0],[0,2],[0,4],[0,4],[2,3],[5,7],[-3,-2],[-5,-7],[-3,-4],[-1,-1],[0,-1],[0,-1],[1,-8],[0,-3],[-5,-22],[-1,-2],[-1,-1],[-3,0],[-1,2],[0,1],[1,3],[2,11],[1,3],[1,2],[3,5],[-2,-1],[-1,1],[-1,1],[1,13],[1,5],[1,7],[1,5],[2,5],[1,5],[1,2],[1,4],[2,4],[1,4],[-10,-11],[-2,-2],[-4,0],[-2,2],[-2,2],[-1,5],[-3,0],[-2,1],[0,1],[3,2],[4,1],[4,4],[-3,3],[0,1],[3,3],[4,8],[1,7],[-2,4],[-1,2],[-3,3],[-1,3],[0,2],[2,2],[1,1],[3,1],[-2,2],[-1,2],[-1,2],[0,1],[1,7],[1,2],[2,4],[7,-1],[1,2],[1,0],[3,-1],[0,1],[-6,8],[-1,2],[2,4],[0,2],[0,2],[0,1],[2,1],[6,0],[1,1],[0,2],[-2,2],[0,3],[0,2],[1,4],[0,1],[1,3],[1,1],[2,0],[3,0],[1,-2],[2,-2],[1,0],[4,3],[1,0],[1,-3],[7,3],[9,1],[6,1],[6,1],[5,2],[6,-1],[0,-1],[0,-2],[-2,-4],[0,-5],[0,-1],[-1,-2],[-2,-3],[-5,-5],[-10,-10],[-6,-6],[-1,-2],[-1,-4],[4,-1],[1,-1],[0,-2],[-6,-6],[-1,-6],[4,0],[3,1],[7,4],[6,3],[3,0],[6,-2],[1,0],[3,1],[2,0],[17,-1],[5,1],[3,-1],[3,-4],[2,-7],[0,-1],[-1,-3],[-3,-4],[-3,-5],[0,-3],[-1,-3],[-1,-3],[-4,-14],[-5,-8],[-2,-5],[-3,-4],[-2,-3],[-3,-2],[-7,-2],[-2,-1],[-3,-3],[-2,-1],[3,0],[3,2],[5,0],[7,-4],[-1,-4],[-2,-3],[-6,-1],[-6,-6],[-2,-2],[-3,-1],[-3,0],[-6,2],[-3,2],[3,-3],[2,-2],[16,-3],[1,0],[5,4],[6,0],[13,-7],[3,-6],[6,-8],[2,-3],[3,-2],[1,-5],[2,-13],[3,-14],[4,-14],[1,-4],[2,-3],[11,-7],[3,-2],[4,-6],[4,-7],[4,-5],[4,-4],[-2,-2],[-1,-4],[1,-4],[1,-5],[4,-7],[3,-7],[-1,1],[-1,0],[-2,0],[-2,1],[-2,2],[-3,3],[-5,-1],[-3,0],[-3,0],[5,-1],[5,-1],[12,-13],[4,-7],[2,-10],[-1,-5],[-3,-3],[-2,-3],[-2,-4],[6,-6],[2,1],[1,0],[1,2],[3,5],[1,2],[4,0],[3,0],[4,-1],[3,0],[6,-2],[3,-2],[8,-8],[1,-4],[1,-6],[0,-6],[-1,-6],[-2,-5],[-1,-7],[0,-2],[-1,-2],[-4,-5],[-3,-3],[-1,1],[-1,0],[0,-1],[1,-3],[0,-3],[-2,-2],[-3,-1],[-4,1],[-6,-5],[4,-2],[1,-2],[-1,-5],[-2,-2],[-3,-1],[-3,0],[-2,-1],[-3,-2],[3,1],[2,-1],[1,-3],[2,-1],[5,-2],[4,0],[6,1],[4,0],[1,-1],[0,-3],[-1,-7],[-1,-2],[-8,-6],[-2,-4],[-1,-3],[-5,1],[-2,-3],[-5,-2],[-3,-2],[-3,-3],[-3,0],[-11,3],[-7,-1],[-9,-2],[-3,0],[-3,3],[-4,1],[-4,1],[-4,2],[2,-4],[-5,-4],[-2,-1],[-2,0],[-5,-1],[-5,0],[1,-3],[1,-2],[-1,-1],[-1,-1],[-9,2],[-1,0],[-1,-2],[-3,1],[-3,3],[-4,2],[-3,1],[-3,0],[-11,-5],[-2,-5],[-1,-7],[-2,-6],[-3,-4],[-3,-1],[-3,3],[-5,4],[-2,2],[-1,0],[-1,-1],[-2,-1],[-2,0],[-4,-1],[-6,-3],[-2,-2],[-6,-5],[-1,-2],[-2,-5],[-3,-1],[-2,3],[-3,2],[-4,-1],[-2,-2],[-1,1],[0,3],[3,4],[6,3],[6,7],[2,5],[2,2],[1,2],[2,0],[0,3],[8,11],[1,3],[0,5],[1,4],[6,3],[3,9],[1,1],[9,2],[6,-1],[7,-1],[3,-1],[3,1],[3,3],[4,9],[3,4],[3,3],[3,4],[4,8],[-3,-3],[-4,-4]],[[4883,8255],[1,-1],[3,0],[-1,-2],[-3,-3],[-2,-3],[-3,-2],[-1,3],[-2,0],[-2,5],[0,7],[3,2],[4,0],[3,-6]],[[4929,8595],[-3,0],[1,4],[2,1],[4,-1],[-1,-1],[-3,-3]],[[4971,8669],[-1,0],[-3,5],[2,7],[3,0],[0,-2],[0,-1],[-2,-1],[1,-3],[0,-4],[0,-1]],[[4963,8671],[1,-4],[1,1],[2,-4],[1,0],[2,1],[0,-3],[-2,-10],[-1,-2],[0,-3],[0,-1],[-1,-6],[-1,-2],[-1,-5],[-1,0],[-1,2],[1,7],[1,4],[0,3],[-1,2],[-3,0],[-2,-1],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[-1,2],[0,1],[3,1],[2,0],[3,2],[-2,8],[-3,0],[0,1],[0,2],[2,0],[2,4],[2,1],[1,0],[0,-4]],[[4978,8686],[-1,-5],[0,-2],[-3,0],[0,1],[-1,3],[1,3],[1,1],[0,-1],[2,2],[1,-2]],[[4912,8570],[-2,-1],[-2,1],[-2,3],[-1,2],[0,2],[1,0],[3,0],[1,-3],[0,-2],[0,-1],[2,0],[0,-1]],[[4918,8567],[-1,1],[-2,4],[3,1],[1,-1],[0,-1],[-1,-4]],[[4915,8584],[-1,-2],[2,0],[3,-1],[2,0],[2,-1],[-1,-3],[-1,-1],[-1,0],[-4,3],[-4,-2],[-1,1],[-1,1],[0,1],[0,2],[-1,0],[-1,-2],[-1,0],[0,1],[-1,2],[1,3],[1,4],[1,0],[3,0],[3,-2],[1,-2],[0,-1],[-1,-1]],[[4924,8593],[-3,-2],[-1,2],[0,3],[-3,2],[-1,1],[-1,2],[2,1],[3,-3],[1,-3],[3,-1],[0,-2]],[[4816,8443],[-2,0],[3,4],[2,1],[-1,-3],[-2,-2]],[[4858,8378],[-4,0],[-1,0],[-2,1],[-1,8],[0,3],[1,1],[1,2],[2,0],[1,-1],[1,-2],[2,-5],[0,-5],[0,-2]],[[4839,8429],[-11,-3],[-4,0],[0,2],[1,1],[3,1],[1,8],[-5,3],[0,1],[0,2],[1,1],[3,1],[1,1],[1,-1],[2,-2],[2,-4],[3,-1],[2,-1],[0,-9]],[[4829,8405],[1,-7],[1,-5],[0,-1],[-1,-2],[-4,-3],[-2,0],[1,3],[-1,4],[1,2],[-1,1],[0,-1],[-4,-4],[-1,0],[0,1],[1,3],[0,2],[0,2],[1,1],[1,1],[1,0],[1,-1],[3,3],[2,1]],[[4834,8399],[-1,-1],[-1,0],[-1,1],[0,2],[0,2],[1,2],[3,3],[-1,1],[0,1],[1,2],[3,4],[1,0],[1,0],[-2,-6],[-4,-11]],[[4827,8545],[-3,-10],[-2,0],[-1,-2],[-4,-3],[4,0],[1,-1],[0,-2],[-1,-1],[-4,-5],[-3,-2],[-3,-4],[-2,0],[-1,-4],[-2,-1],[-1,1],[-2,3],[3,3],[1,1],[2,2],[0,1],[-4,2],[-2,2],[1,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,2],[1,3],[1,1],[0,1],[1,1],[1,-1],[2,-2],[2,1],[3,-1],[0,1],[-2,5],[0,1],[1,1],[6,4],[7,6],[1,0],[1,0],[0,-3],[0,-5]],[[4825,8465],[-1,-1],[-1,0],[-1,1],[-1,3],[3,2],[1,-1],[1,-2],[0,-1],[-1,-1]],[[4829,8496],[0,-3],[-1,-3],[1,-3],[0,-2],[1,-1],[1,-1],[5,-1],[5,0],[1,-1],[0,-1],[-1,-2],[-2,-3],[-4,-4],[-1,-1],[-1,-1],[-1,1],[0,8],[-4,-1],[-3,1],[-1,1],[-1,2],[-2,5],[-7,2],[-2,3],[0,1],[0,1],[1,2],[2,0],[1,0],[1,1],[0,1],[-1,2],[6,3],[1,3],[1,1],[2,-2],[2,-3],[1,-5]],[[4799,8506],[3,-3],[-2,-5],[-4,0],[-5,4],[0,2],[1,0],[1,1],[1,-1],[2,1],[2,0],[1,1]],[[4798,8474],[-1,-1],[-2,1],[-1,0],[0,4],[-1,2],[1,4],[0,5],[3,0],[1,-1],[0,-14]],[[4793,8465],[-2,-1],[-1,1],[1,2],[1,1],[2,-1],[0,-1],[-1,-1]],[[4827,8299],[-3,1],[-1,-1],[-1,-1],[-1,0],[-3,-1],[-3,0],[-1,2],[1,5],[-1,1],[-2,0],[-1,1],[-2,4],[0,1],[-1,2],[-1,3],[-2,2],[-1,0],[-3,-3],[-2,-4],[1,-1],[1,-2],[-1,-2],[-3,-3],[-1,-1],[-1,-1],[-1,1],[-4,0],[-2,0],[-2,3],[-5,2],[0,3],[-1,1],[-6,7],[-1,2],[1,2],[2,2],[7,3],[1,1],[0,2],[-2,1],[-2,1],[0,1],[0,1],[1,1],[2,1],[2,-1],[1,1],[2,1],[2,1],[1,4],[2,3],[0,1],[1,6],[1,1],[4,4]],[[4799,8357],[1,-2],[2,-1],[2,2],[3,6],[1,1],[2,-1],[3,1],[7,3],[2,0],[4,-2],[3,0],[3,-4],[1,-7],[3,-6],[5,-6],[0,-3],[-2,-2],[-3,-2],[0,-3],[2,1],[2,1],[4,-1],[2,-2],[1,-4],[1,-3],[-1,-3],[-1,1],[-1,3],[-1,1],[-2,1],[1,-4],[-1,-6],[1,0],[2,-1],[-1,-5],[-3,-2],[-3,0],[-1,-2],[-1,-3],[-1,-4],[-3,-2],[-2,1],[-3,1]],[[4970,8103],[-2,-2],[-1,-2],[-1,-1],[-1,0],[-2,0],[-6,4],[-1,0],[1,2],[4,2],[2,2],[5,-2],[2,-3]],[[6563,6661],[2,-4],[0,-32],[1,-2]],[[6566,6623],[-1,-1],[-1,-2],[-2,-4],[-1,-2],[-2,-2],[-1,-3],[-1,0],[-2,3],[-1,4],[1,1],[0,1],[0,3],[-1,1],[-1,0],[-2,-1],[-1,-2],[-1,-3],[0,-5],[0,-5],[0,-3],[0,-4],[-1,-5],[1,-3],[0,-3],[1,-2],[-2,-6],[1,-1],[4,0],[1,-5],[1,-2],[-1,-2],[-2,-1],[-3,-2],[-3,1],[-4,-2],[-2,-3],[1,-2],[1,-1],[0,-4],[-1,-6],[-1,-5],[-1,-7],[-2,-7],[-2,-12],[-2,-8],[-1,-7],[1,-4],[-1,-8]],[[6532,6492],[-2,-5],[-2,0],[-1,0],[-2,1],[-3,1],[-5,1],[-5,1],[-5,2],[-6,1],[-6,2],[-6,1],[-6,2],[-6,1],[-5,1],[-4,2],[-4,0],[-2,1],[-3,1],[-1,3],[-2,4],[-1,3],[-2,4],[-1,4],[-2,4],[-1,3],[-2,4],[-1,4],[-2,4],[-1,4],[-2,3],[-1,4],[-2,4],[-1,4],[-2,3],[-1,4],[-2,3],[0,3],[0,7],[0,2]],[[6432,6583],[1,3],[0,-3],[1,-2],[2,0],[1,0],[1,-11],[1,-3],[2,-2],[6,-1],[4,2],[7,7],[4,2],[10,0],[9,-3],[13,-2],[2,1],[7,5],[5,5],[2,1],[2,5],[1,6],[1,4],[1,2],[2,3],[1,5],[2,6],[10,13],[6,11],[0,4],[3,5],[3,6],[11,17],[3,8],[1,7],[0,1]],[[6557,6685],[1,0],[2,-1],[0,-6],[-1,-5],[0,-6],[0,-3],[1,-3],[2,-1],[1,0],[0,1]],[[6563,6637],[0,3],[0,1],[-2,0],[0,-2],[0,-3],[1,0],[1,1]],[[6481,6581],[-2,0],[-2,2],[4,3],[1,1],[1,3],[1,-2],[-1,-4],[-1,-2],[-1,-1]],[[6461,6583],[-1,-1],[0,3],[0,1],[1,2],[1,-3],[-1,-2]],[[6497,6576],[0,-2],[-2,1],[-1,-1],[-3,1],[-2,1],[2,2],[4,3],[1,-2],[1,-3]],[[6512,6592],[0,-1],[-1,0],[-2,1],[0,1],[1,2],[1,-2],[1,-1]],[[6061,7896],[-1,0],[-10,0],[-2,0],[-6,-1],[-5,-9],[-4,0],[-5,-2],[-3,-3],[-4,-7],[-2,3],[-4,0],[-4,-1],[-4,-5],[-2,0],[-5,1],[-5,-3],[-12,-14],[-4,-10],[-2,-2],[-2,-2],[-2,-2],[-1,0],[6,8],[1,2],[1,2],[0,4],[-2,4],[-5,-10],[-2,-2],[-4,-3],[0,-6],[1,-5],[1,-7],[3,-8]],[[5972,7818],[-2,0],[-4,3],[0,6],[-3,5],[-5,0],[-2,-1],[-2,6],[-4,2],[-3,-1],[-2,1],[-7,6],[-4,1],[0,-4],[-1,-3]],[[5933,7839],[-3,-1],[-2,-1],[-5,4],[-1,2],[-8,-3],[-4,1],[-8,-3],[-5,3],[-8,7],[-3,2],[-2,0],[-2,2],[2,1],[2,0],[2,1],[1,2],[0,2],[-5,2],[-4,0],[-2,3],[-2,2],[4,0],[5,-2],[7,0],[6,-2],[2,2],[4,4],[0,2],[-6,-3],[-6,2],[-2,2],[-2,4],[-1,5],[0,4],[0,7],[-2,6],[-1,4],[-2,3],[2,-7],[1,-5],[1,-4],[0,-12],[-1,-4],[-3,-1],[-3,0],[-4,2],[1,6],[-2,-2],[-2,-6],[-3,-1],[-5,0],[-9,-4],[-1,-4],[-1,-7],[-2,-3],[0,-2],[-4,-10],[-1,0],[-7,-13],[-1,-1],[-5,-3],[-3,-3],[-2,-1],[-4,1],[-2,-2],[0,-2],[0,-5],[2,-3],[1,-12],[0,-4]],[[5825,7791],[-2,3],[-2,3],[-5,3],[-5,-1],[-5,-5],[-4,-2],[-2,2],[-1,0],[-1,-2],[1,-1],[0,-1],[-1,-1],[-8,4],[-4,3],[-3,6]],[[5783,7802],[2,2],[1,0],[4,1],[1,1],[0,1],[0,2],[0,2],[0,3],[2,4],[3,3],[1,4],[1,5],[3,2],[3,4],[0,5],[1,2],[-2,7],[0,4],[0,4],[1,2],[2,2],[3,2],[1,0],[1,-2],[0,-7],[1,1],[1,4],[1,-1],[2,-1],[1,2],[1,-1],[1,-1],[1,-1],[2,-1],[1,1],[2,2],[1,0],[2,-5],[1,0],[6,1],[1,1],[0,2],[-5,6],[0,5],[0,6],[-1,3],[-1,3],[-4,3],[-3,3],[-1,2],[0,2],[0,3],[-2,2],[0,2],[1,4],[0,3],[0,2],[-1,1],[-1,0],[-2,2],[-2,3],[-3,4],[-2,0],[0,2],[-1,2],[1,3],[1,5],[1,4],[0,3],[-1,6],[-2,4],[0,1],[-2,-1],[-2,-1],[-1,1],[-2,2],[-2,7],[-5,2],[-2,0],[-2,-3],[-1,1],[0,2],[-1,1],[-1,-1],[-1,1],[1,3],[-2,1],[-3,0],[-2,1],[-1,3],[-1,1],[-2,1],[-2,2],[-2,2],[-3,2],[-4,1],[0,1],[-3,-2],[-1,-2],[-2,1],[-3,-3],[-6,0],[-3,0],[-2,1],[-6,-6],[0,-2]],[[5739,7963],[-1,0],[-4,-1],[-4,-2],[-1,-5],[-1,-3],[-2,-4],[-7,-1],[-6,-2],[-6,-2],[-8,-5],[-3,-4],[-3,-1],[-2,-1],[-2,3],[-5,6],[-2,4],[-2,0],[-3,0],[-3,-2],[-3,0],[-3,2],[-1,0],[-1,0],[-8,3],[-1,0],[-1,0],[-6,0],[-6,5],[-2,1],[-1,-3],[-1,-2],[-4,-3],[-1,-1]],[[5635,7945],[-1,1],[0,2],[0,2],[0,2],[-2,2],[0,1],[-2,0],[0,-1],[-1,1],[-2,1],[-2,4],[-3,3],[-2,0],[-1,2],[0,2],[-1,2],[0,3],[-1,0],[-3,0]],[[5614,7972],[1,9],[4,7],[1,3],[1,8],[2,3],[1,3],[1,3],[1,2]],[[5626,8010],[1,1],[3,-3],[3,-1],[1,1],[0,2],[0,1],[-2,3],[-2,2],[0,1],[1,3],[0,3],[0,3],[-2,8],[0,3],[1,4],[5,9],[2,4],[2,4],[7,10],[4,6],[2,3],[4,6],[2,2],[7,2],[1,3],[2,3],[1,1],[0,5],[-2,6],[-1,2],[0,2],[0,1],[1,1],[1,0],[1,1],[0,2],[-3,4],[-2,3],[-2,8],[-4,8],[-1,2],[0,3],[0,2],[0,3],[-2,4]],[[5655,8151],[0,1],[0,4],[1,2],[2,0],[2,0],[2,-1],[3,-2],[5,5],[4,6],[1,4],[1,1],[4,1],[3,1],[2,-1],[5,1],[3,1],[3,1],[5,0],[9,0],[6,0],[4,-1],[9,-3],[4,-1],[1,-2],[3,0],[6,-2],[5,-1],[3,0],[2,0],[4,-8],[1,-1],[1,0],[3,0],[4,0],[3,-2],[-1,-4],[1,-1],[1,0],[1,3],[1,3],[1,0],[4,-1],[2,0],[2,2],[1,0],[3,-1],[4,-1],[3,0],[2,-1],[1,-5],[1,-1],[2,-1],[1,5],[2,1],[2,2],[1,0],[1,2],[2,1],[1,0],[1,0],[1,-2],[1,-5],[2,-5],[2,-2],[3,2],[2,1],[5,1],[5,1],[5,1],[2,0],[2,-2],[2,-3],[1,-4],[3,-3],[3,0],[1,3],[1,2],[0,3],[-1,3],[-1,4],[0,4],[1,5],[2,5],[0,2],[3,5],[2,3],[4,6],[3,1],[2,0],[2,-1],[3,3],[6,0],[6,0]],[[5882,8185],[3,-2],[3,-1],[1,0],[3,0],[2,2],[2,1],[2,10],[1,1],[1,1],[2,0],[4,-2],[5,-2],[2,1],[7,5],[4,0],[5,-1],[4,0],[3,1],[3,-2],[3,-4],[2,-5],[3,-10],[8,-12],[0,-2],[-1,-1],[-4,-2],[-3,-1],[0,-2],[1,-2],[1,-3],[1,-4],[0,-3],[0,-4],[1,-1],[1,-2],[-2,-2],[0,-1],[0,-1],[7,0],[4,-2],[3,-2],[1,0],[3,1],[3,1],[2,0],[1,-1],[1,-4],[1,-3],[1,-1],[2,0],[1,0],[1,-1],[-1,-2],[0,-3],[1,-2],[1,-6],[1,-2],[1,-2],[0,-3],[-1,-2],[0,-2],[0,-4],[2,-5],[2,-1],[1,-4],[2,-1],[4,3],[2,2],[4,-1],[3,-1],[2,-2],[1,-3],[2,-2],[2,1],[3,-1],[2,-3],[2,-1],[2,2],[1,3],[7,2],[4,1],[1,1],[2,1],[3,2],[2,-1],[2,-4],[2,-2],[1,-5],[3,-6],[7,-8],[2,-3],[2,1],[1,0],[0,1],[1,4],[1,2],[1,0],[5,-5],[3,-1],[3,0],[4,-4],[3,-3],[3,-1],[3,2],[2,0],[1,-1],[1,-3],[1,-2],[2,-1],[3,0],[4,-4],[4,-5],[3,0],[2,1],[2,0],[2,-1],[0,-2],[-1,-2],[0,-4],[2,-4],[0,-3],[0,-3],[-2,-3],[-2,-4],[-3,-4],[-3,-2],[-2,-1],[0,-3],[2,-3],[3,-2],[3,-1],[1,-2],[-1,-1],[-2,-1],[-3,1],[-1,-1],[-2,-3],[-1,-4],[0,-4],[3,-2],[2,-1],[1,-4],[0,-3],[0,-4],[-1,-1],[0,-2],[1,-1],[1,0],[1,-1],[0,-2],[-2,-4],[-2,-7],[-1,-5],[0,-4],[-1,-2],[-2,-1],[-7,0],[-7,0],[-3,1],[-4,0],[-2,-1],[-3,-7],[-2,-3],[-4,-2],[-4,-1],[-2,-3],[-1,-4],[0,-5],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-2],[0,-3]],[[5889,7845],[3,-3],[-3,1],[-9,3],[-4,2],[-1,3],[0,4],[2,-4],[1,-2],[11,-4]],[[5941,5126],[-3,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-4,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-3,0],[-1,0],[-2,0],[-2,-3],[-2,-1],[-2,1],[0,-1]],[[5847,5122],[-1,0],[-2,1],[-1,-1],[-1,-2],[-1,-4],[-2,-4],[-2,-4],[-1,-3],[-4,-5],[-1,-1],[-1,0],[-1,1],[-1,6],[0,1],[-6,-3],[-1,0]],[[5821,5104],[0,2],[0,13],[0,9],[0,5],[1,6],[0,5],[1,9],[0,5],[1,19],[0,3],[1,9],[1,3],[1,1],[1,6],[2,9],[1,5],[0,10],[0,6],[0,2],[3,3],[4,6],[1,7],[3,5],[4,3],[13,26],[6,14],[3,7],[0,2],[0,3],[-1,3],[-1,2],[-1,3],[-1,1],[-1,0],[-1,1],[-1,3],[-2,2],[-3,0],[-3,3],[0,5],[1,8],[2,10],[0,2],[0,3],[0,2],[-1,2],[-1,2],[0,7],[2,7],[1,3],[1,4],[0,3],[-2,2]],[[5856,5385],[1,3],[2,5],[3,5],[3,4],[2,0],[3,-3],[4,-3],[2,0],[2,1],[5,6],[1,-2],[1,-4],[2,-5],[3,-3],[1,-2],[1,0],[1,0],[1,5],[1,2],[3,3],[5,3],[4,1],[2,0],[3,2],[4,4],[4,-6],[5,-1],[5,0],[1,2],[1,1],[5,10],[6,14]],[[5943,5427],[5,-19],[1,-1],[0,-2],[-1,-2],[3,-4],[4,-3],[1,-2],[0,-2],[-1,-12],[0,-3],[1,-11],[2,-2],[2,-12],[4,-5],[0,-1],[1,-5],[1,-6],[1,-2],[1,0],[1,-6],[-1,-4],[1,-11],[2,-9],[0,-12],[0,-5],[0,-3],[0,-5],[-1,-2],[-1,-3],[-2,-3],[-1,-5],[0,-2],[0,-6],[0,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-3],[-2,-3],[-2,-10],[-3,-8],[-1,-3],[-3,-4],[-1,-6],[-1,-7],[-1,-5],[-3,-7],[0,-11],[0,-22],[-1,-25],[0,-10]],[[6475,7419],[-1,-3],[-1,8],[-1,9],[1,3],[1,0],[-1,-4],[2,-13]],[[6847,7335],[-1,0],[-4,1],[-6,3],[-6,5],[-4,4],[0,-1],[-2,-2],[-1,-3],[-1,-6],[-2,-7],[-7,0],[-6,0],[-3,-3],[-4,-3],[-1,-5],[-1,-5],[-2,-12],[-2,-12],[-1,-7],[-2,-5],[-4,-7],[-5,-4],[-2,-2],[-1,-3],[-1,-2],[-1,-1],[-2,0],[-2,0],[-4,-3],[-5,-3],[-6,-3],[-4,0],[-1,-1],[-1,-1],[1,-3],[1,-2],[0,-3],[-1,-3],[-1,-4],[-1,-7],[-2,-2],[-4,-3],[-3,-5],[-1,-1],[-2,-1],[-3,1],[-2,0],[-2,-1],[-2,-3],[-1,1],[0,3],[-2,2],[-3,6],[-3,3],[-1,1],[-3,-1],[-3,-1],[-3,1],[-2,1],[-4,5],[-1,3],[-1,2],[-2,-1]],[[6701,7235],[-1,3],[0,2],[1,4],[0,6],[-2,4],[-1,2],[0,1],[1,3],[1,3],[0,5],[-1,6],[-1,8],[0,8],[-1,4],[-11,0],[-11,0],[0,1],[-4,10],[-3,8],[-3,4],[-8,6],[-3,2],[-3,4],[-3,5],[0,7],[-1,2],[0,1],[-1,1],[-1,0],[-9,7],[-3,2],[-3,-1],[-1,-1],[-3,3],[-3,-3],[-2,0],[-2,0],[-1,1],[-5,7],[-3,3],[-3,2],[-5,2],[-5,1],[-3,2],[-2,1],[0,1],[0,2],[0,4],[-1,2],[-1,3],[-2,2],[-3,0],[-5,0],[-4,2],[-2,0],[-4,0],[-3,0],[-2,-2],[-1,-1],[-1,-6],[-1,-1],[-1,0],[-1,0],[-4,0],[-6,1],[-7,0],[-5,-3],[-5,-4],[-4,-4],[-5,-7],[-1,-3],[-3,-13],[-1,-2],[-2,-1],[-2,-1],[-3,-2],[-4,-3],[-3,-1],[-8,1]],[[6497,7335],[0,4],[-2,15],[-1,14],[0,7],[1,14],[0,7],[0,6],[0,6],[1,7],[0,7],[0,5],[-2,4],[-2,5],[-1,3],[0,3],[-2,1],[-2,3],[-2,2],[-4,2],[-2,0],[-2,-2],[-1,-3],[-1,5],[0,5],[3,10],[2,-3],[2,-1],[3,0],[3,1],[0,3],[-2,2],[-1,2],[-1,4],[0,5],[1,5],[-1,1],[-1,1],[-3,0],[-5,2],[-4,0],[-1,-5],[3,-7],[-2,3],[-2,5],[-3,8],[-2,9],[0,11],[2,8],[1,8],[1,10],[2,11],[2,-5],[1,-4],[3,-4],[1,-1],[4,-1],[2,0],[3,3],[3,-1],[2,-4],[2,-5],[3,-1],[6,3],[3,1],[2,-1],[2,-1],[1,1],[-1,4],[-1,4],[2,2],[5,-2],[3,1],[0,1],[1,1],[0,4],[0,3],[0,3],[-1,3],[-2,4],[-9,10],[-3,4],[-2,5],[-2,7],[-1,8],[-1,5],[-3,13],[-1,2],[-2,0],[-3,1],[-4,-1],[-6,-2],[-3,0],[-1,-1],[-4,-5],[-2,-5],[-3,-11],[2,-3],[0,-2],[-1,-16],[1,-8],[-1,0],[0,2],[-2,7],[-4,10],[-3,14]],[[6458,7590],[5,10],[5,6],[4,4],[1,1],[6,4],[6,3],[6,2],[6,2],[2,0],[4,0],[2,-2],[2,-1],[5,-6],[6,-6],[5,-6],[1,-3],[1,-3],[1,-3],[4,-10],[2,-4],[2,-6],[2,-3],[2,-4],[1,-3],[2,-1],[1,-1],[4,1],[4,2],[3,1],[1,0]],[[5721,7496],[-7,-2],[-2,2],[2,3],[4,2],[1,0],[2,-3],[0,-2]],[[6152,7575],[2,-1],[4,-2],[2,-1],[1,-1],[3,4],[4,0],[4,-1],[2,0],[2,-2],[3,0],[1,1],[2,6],[1,1],[2,0],[2,0],[1,-1],[1,-4],[2,-2],[4,-6],[3,-3],[1,-1],[-1,-1],[0,-2],[2,-2],[2,-1],[2,0],[1,-1],[1,-1],[0,-1],[0,-1]],[[6206,7552],[0,-3],[2,-3],[2,-3],[1,-2],[2,-8],[1,-4],[0,-4],[-2,-4],[-2,-5],[0,-3],[1,-3],[0,-2],[2,-6],[1,-5],[-1,-1],[-1,-1],[4,-3],[4,-3],[2,0],[5,1],[3,0],[3,-3],[4,-6],[5,-8],[1,-2]],[[6243,7471],[0,-1],[1,-2]],[[6244,7468],[-1,0],[-1,1],[-4,5],[-2,-2],[-2,-3],[-2,-15],[-1,-1],[-3,0],[-3,0],[-2,0],[-1,-1],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[2,-3],[0,-2],[-1,-3],[0,-2],[0,-1],[0,-4],[2,-4],[1,-1],[0,-8],[0,-4],[1,-4],[0,-8],[0,-2],[0,-1],[2,0],[2,-1],[0,-1],[0,-1],[-2,-4],[0,-2],[-1,-4],[0,-2],[-2,-4],[-1,-4],[-1,-4],[1,-1],[3,-1],[2,-2],[4,-5],[1,-2],[-1,-3],[0,-1],[0,-2],[1,-3],[0,-3],[0,-4],[0,-1],[3,-3],[3,-4],[0,-2],[-1,-3],[0,-3],[0,-1]],[[6243,7323],[-1,1],[-2,1],[-2,0],[-1,-1],[-2,-3],[-2,-3],[-2,-2],[-2,-2],[-1,0],[0,2],[-1,2],[0,9],[0,2],[-1,2],[-1,1],[-2,1],[-1,0],[-2,-3],[-3,-2],[-4,0],[-3,1],[-2,0],[-6,4],[-1,0],[-2,2],[-3,1],[-4,-2],[-2,0],[-2,2],[-1,0],[-3,-7],[-5,-7],[-3,-1]],[[6176,7321],[-1,7],[-1,3],[-1,0],[-1,1],[-1,0],[-3,-5],[-5,-3],[-4,-2],[-6,-2],[-5,-1],[-2,0],[-5,1],[-4,1],[-4,0],[-3,0],[-7,-6],[-12,-10],[-9,-5],[-5,-2],[-4,-1],[-7,0],[-6,0],[-4,0],[-2,2],[-3,4],[-4,4],[-1,1],[-3,1],[-3,0],[-8,-6],[-2,-2],[-3,-1],[-5,-4],[-3,-2],[-3,1],[-4,0],[-3,0],[-2,3],[-1,3],[-5,2],[-3,1],[-1,-2],[-1,-4],[-1,-11],[-1,-3],[3,-11],[0,-2],[-2,-1],[-2,0],[-2,-1],[-1,-2],[-1,-9],[-3,-2],[-1,-2],[-1,-6],[-1,0],[-5,4],[-2,1]],[[5996,7253],[2,4],[-2,10],[-2,8],[2,6],[4,6],[5,8],[0,5],[-1,4],[-1,2],[-2,4],[-4,-4],[-3,-4],[-2,-1],[-2,-2],[-1,-4],[-2,-3],[-4,-2],[-6,4],[-7,5],[-4,4],[-3,1],[-2,-1],[-9,-11],[-7,-15],[-2,-3],[-8,-6],[-4,-2],[-3,0],[-9,-3],[-5,0],[-4,-4],[-7,4],[-4,5],[-3,5],[-4,10],[-3,5],[-7,5],[-12,10],[-3,2],[-8,1],[-8,1],[-2,-4],[-1,-15],[-1,-5],[-1,-8],[-1,-2],[-1,-2],[-3,3],[-2,1],[-4,-3],[-8,-5],[-3,-1],[-9,6],[-4,4],[-2,4],[-1,7],[-1,4],[0,3],[-1,3],[-2,2],[-2,-3],[-2,0],[-3,2],[-6,6],[-5,0],[-3,-7],[-3,-2],[-2,-1],[0,2],[2,5],[-8,-1],[-4,-4],[-4,1],[-2,1],[0,2],[3,1],[2,2],[8,1],[2,1],[3,5],[3,5],[1,2],[-3,0],[-13,-2],[-9,1],[-1,-2],[-1,0],[-1,5],[2,3],[2,0],[4,2],[0,5],[-3,4],[-1,2],[-3,0],[-1,2],[-1,6],[-1,7],[-3,3],[1,2],[4,2],[1,9],[-1,5],[-2,1],[-6,4],[-2,0],[-2,5],[-3,3],[-2,-1],[-1,-2],[-2,1],[-2,3],[-3,2],[-1,2],[1,5],[2,0],[1,4],[-2,7],[0,3],[2,1],[2,0],[2,-4],[1,-4],[-1,-4],[1,-4],[1,-1],[1,4],[1,1],[1,-2],[3,-1],[6,2],[1,3],[-4,-1],[-2,2],[-2,5],[-1,4],[0,2],[-1,2],[1,2],[3,2],[3,7],[-1,1],[-2,1],[-1,0],[-2,2],[0,3],[1,2],[0,4],[-3,8],[-1,2],[0,3],[3,4],[3,6],[0,2],[-2,1],[-10,-3],[-4,-2],[-6,-1],[-1,3],[0,3],[2,5],[0,12],[1,7],[3,2],[5,10],[7,12],[8,0],[3,3],[4,0],[1,-2],[1,-3],[4,-3],[7,1],[1,1],[2,2],[-3,5],[1,2],[3,0],[3,-1],[0,-1],[-1,-2],[-1,-3],[1,-1],[9,2],[10,-2],[3,1],[7,0],[2,2],[-3,3],[-2,1],[-1,1],[-2,1],[5,6],[2,1],[13,4],[9,1],[1,2],[-2,0],[-12,2],[-3,3],[-4,5],[-1,1],[-1,3],[1,5],[1,5],[1,2],[5,0],[17,-4],[11,3],[13,-7],[13,2],[2,2],[3,10],[18,15],[6,8],[6,5],[12,5],[9,6],[3,1],[22,-3],[16,-1],[7,7],[4,-2],[0,-3],[-1,-2],[0,-3],[2,-6],[3,-4],[7,-5],[10,4],[2,0],[2,-1],[3,-15],[3,-5],[4,-4],[3,-1],[2,4],[1,2],[4,0],[6,-5],[2,-5],[10,-4],[9,-2],[4,-5],[14,-4],[4,1],[9,4],[16,5],[10,-7],[3,-1],[3,1],[3,-2],[4,1],[12,9],[3,4],[4,2],[4,2],[9,10],[2,5]],[[5778,7601],[-1,-6],[2,-8],[4,-10],[4,-5],[16,-12],[4,-1],[-1,-6],[-1,-4],[-1,-3],[-5,-2],[-14,5],[-3,1],[-2,-1],[-5,-4],[-5,1],[-7,-2],[-2,-8],[-4,-9],[-8,-7],[-6,-4],[-8,-13],[-4,-8],[-2,-2],[-2,-1],[1,4],[1,3],[0,3],[0,4],[3,4],[2,3],[8,6],[2,5],[-6,0],[-6,-1],[-4,0],[-3,0],[-1,4],[-1,3]],[[5723,7530],[1,0],[1,1],[2,4],[1,4],[3,4],[0,2],[0,2],[0,2],[0,2],[0,3],[0,5],[6,6],[1,1],[1,2],[0,7],[-1,5],[-1,0],[-2,2],[-1,2],[-1,1],[-2,2]],[[5731,7587],[-1,1],[1,2],[1,1],[4,2],[0,1],[1,3],[1,3],[1,1],[2,0],[3,0],[2,1],[3,2],[1,2],[5,1],[1,1],[2,0],[2,-4],[3,-4],[1,-2],[2,1],[2,2],[2,0],[2,-1],[1,2],[1,0],[4,-1]],[[5319,7095],[0,-1],[-1,-11],[0,-4],[0,-7],[0,-8],[2,-7],[0,-3],[-1,-3],[-4,-4],[-5,-5],[-5,-5],[-5,-5],[-1,-4],[-3,-2],[-2,-3],[0,-3],[-2,-4],[-2,-4],[-4,-2],[-1,-1],[-2,-6],[-1,-2],[-2,-5],[2,-12],[2,-13],[0,-5],[0,-4],[-1,-5],[-2,-7],[-2,-5],[-4,-9],[-1,-2],[-2,-3],[-5,-3],[-3,-3]],[[5264,6925],[-2,14],[-1,11],[-1,10],[-3,17],[-1,14],[-2,14],[-2,13],[-1,13],[-1,2],[-5,6],[-4,6],[-5,6],[-5,7],[-1,9],[-2,13],[-3,8],[-1,2],[-6,4],[-3,4],[-1,2],[0,5],[-3,11],[-2,10],[-1,6],[0,9],[0,6],[1,2],[6,8],[2,9],[3,3],[3,3],[2,3],[2,4],[2,5],[0,6],[0,9],[1,6],[3,6],[-1,6],[-2,6],[1,10],[0,4],[-1,4],[-1,5],[0,4],[0,10],[1,8],[1,11],[0,2],[-1,3],[-3,2],[0,1],[1,2],[4,5],[2,7],[2,2],[2,2],[0,3],[0,3]],[[5238,7311],[7,4],[6,9],[2,2],[16,9],[2,-1],[2,-1],[-1,-3],[-1,-3],[2,-4],[1,2],[0,2],[0,3],[3,0],[3,-1],[3,-2],[-1,-10],[5,-10],[-2,-5],[4,-3],[3,4],[1,5],[6,3],[5,7],[3,1],[0,-6],[2,-5],[-2,-2],[-3,-6],[-5,-14],[-4,-4],[-3,-6],[-1,-4],[-1,-5],[1,-8],[3,-8],[2,-5],[3,-2],[6,-8],[0,-4],[1,-6],[0,-7],[2,-5],[-4,-12],[-3,-9],[-5,-12],[-4,-7],[-9,-12],[-2,-4],[-2,-4],[-1,-4],[1,-5],[3,-11],[4,-8],[4,-3],[7,1],[0,-4],[0,-6],[3,0],[2,1],[2,6],[3,-4],[2,-11],[3,-4],[1,-1],[-2,-1],[0,-1],[1,-1],[2,-1],[2,0],[3,-2]],[[5313,7186],[-5,-5],[1,4],[3,4],[1,-1],[0,-2]],[[5304,7126],[-1,0],[-1,-2],[-1,0],[-2,2],[-1,0],[-1,1],[1,7],[0,2],[5,0],[3,-4],[0,-1],[0,-1],[-1,-2],[-1,-2]],[[3312,5828],[-2,-1],[1,2],[2,4],[4,3],[1,0],[0,-3],[-6,-5]],[[3305,5768],[-5,-4],[-11,0],[-5,1],[-4,-1],[7,7],[1,3],[3,0],[0,1],[1,16],[0,4],[-1,2],[-1,1],[-2,2],[-1,1],[2,2],[3,1],[3,2],[5,0],[3,2],[5,0],[-3,-7],[-1,-3],[1,-6],[-1,-4],[1,-6],[1,-4],[-1,-3],[0,-6],[0,-1]],[[134,3964],[1,0],[0,2],[2,1],[0,-2],[-2,-6],[-2,2],[-3,4],[-1,3],[1,2],[0,-1],[1,-1],[2,-1],[1,-1],[-1,-1],[1,-1]],[[168,4110],[-1,-3],[-1,0],[-1,2],[0,1],[2,4],[1,0],[1,-1],[0,-1],[-1,-2]],[[141,3957],[0,-9],[-1,4],[0,2],[1,3]],[[5025,5817],[-1,-6],[-2,-8],[-1,-2],[0,-19],[0,-2],[1,0],[4,-6],[6,-9],[4,-5],[1,-2],[0,-13],[0,-10],[1,-6],[0,-6],[1,-4],[4,-9],[1,-5],[0,-16],[0,-12],[1,-17],[0,-14],[0,-17],[0,-21],[0,-21],[-3,0],[1,-7],[1,-6],[0,-2],[-1,-3],[1,-4],[1,-2],[3,-9],[1,-8],[-5,-2],[1,-2]],[[5045,5542],[-9,-4],[-4,-3]],[[5032,5535],[0,3],[-1,0],[-1,1],[-1,2],[-2,4],[0,3],[-2,0],[-3,4],[-2,3],[-1,4],[0,2],[0,2],[-1,1],[-2,8],[-1,4],[-1,2],[0,3],[0,2],[0,3],[2,1],[0,2],[0,4],[1,7],[0,7],[-1,2],[-2,1],[0,2],[-1,4],[0,2],[3,11],[0,24],[0,4],[1,2],[2,3],[0,3],[-2,7],[-4,6],[-2,4],[-1,4],[0,2],[2,3],[1,3],[0,2],[-1,5],[0,8],[1,6],[1,8],[0,2],[-2,5],[-1,0],[-1,0],[-2,-3],[-1,0],[-1,1],[0,1],[1,2],[-1,2],[1,2],[2,1],[0,1],[-2,1],[0,1],[0,2],[1,0],[0,1],[1,6],[0,3],[0,4],[1,18],[0,2],[0,2],[-1,0],[-4,5],[-1,4],[-2,4],[-1,2],[-3,4],[-1,3],[0,2],[1,5],[1,5],[1,8],[-1,2],[-1,3]],[[4998,5824],[6,-3],[9,-4],[0,-1],[0,-1],[2,0],[2,1],[8,1]],[[8489,4715],[-2,-10],[-2,2],[3,6],[1,1],[0,1]],[[8473,4636],[-1,7],[-1,4],[-1,1],[0,3],[0,2],[1,1],[3,0],[2,4],[0,5],[-1,2],[-1,0],[-3,-3],[-1,0],[-1,2],[0,5]],[[8469,4669],[3,5],[3,8],[1,4],[4,3],[2,1],[12,5],[3,0],[7,0],[10,1],[2,1],[4,2],[3,2],[1,2],[2,2],[3,-2],[4,-1],[1,-2],[1,-1],[-5,-10],[-5,-7],[-4,-2],[-3,-2],[-3,-3],[-2,-5],[-3,-2],[-3,-1],[-3,-1],[-3,-3],[-3,-5],[-2,0],[-1,0],[-3,-2],[-9,-6],[-6,-8],[-4,-6]],[[8445,4646],[4,5],[7,3]],[[8456,4654],[0,-2],[-1,-5],[-1,-2],[-2,-3],[-1,-1],[-4,1],[0,-1],[-1,0],[-1,3],[0,2]],[[7849,5856],[0,-6],[-2,3],[1,3],[0,1],[1,-1]],[[7844,5874],[0,-1],[-1,1],[-2,0],[-1,8],[0,2],[1,-1],[2,-4],[1,-3],[0,-2]],[[7733,5639],[0,-4],[-2,0],[-1,-3],[-1,8],[1,12],[0,2],[1,-3],[3,-1],[-1,-7],[0,-4]],[[7780,6354],[0,-3],[1,-1],[1,1],[1,4],[1,2],[2,1],[1,-3],[2,-5],[2,-4],[1,-3],[0,-2],[-1,-5],[-1,-7],[-2,-7],[1,-7],[2,-5],[3,-3],[4,1],[1,1],[2,3],[1,1],[2,0],[5,-1],[2,-2],[0,-4],[-1,-9],[1,-7],[2,-7],[0,-6],[-2,-11],[-2,-10],[-1,-5],[-2,-3],[0,-2],[0,-2],[1,-3],[2,-4],[0,-4],[0,-4],[-1,-7],[-3,-13],[-3,-12],[2,-3],[2,-2],[2,-1],[1,1],[4,7],[3,5],[4,6],[4,4],[1,4],[1,4],[2,2],[1,-1],[2,2],[3,5],[1,3],[2,-1],[2,-3],[3,-6],[3,-3],[3,-1],[1,-3],[0,-3],[1,-2],[1,-1],[0,2],[1,2],[3,3],[3,2],[2,1],[2,2],[1,7],[1,4],[2,3],[2,1],[0,1],[-1,2],[0,2],[1,2],[3,1],[3,0],[4,-2],[4,-4],[3,-1],[2,1],[2,-6],[5,-13],[3,-10],[3,-7],[3,-5],[3,-4],[3,-4],[2,-10],[-2,-13],[0,-11],[0,-13],[2,-11],[3,-7],[3,-6],[0,-4],[3,-4],[5,-3],[2,-3],[-1,-3],[0,-3],[1,-3],[2,-3],[2,-3],[2,-2],[1,-2],[0,-4],[-1,-6],[-1,-4],[-2,-3],[0,-3],[-1,-3],[0,-8],[2,-5],[0,-6],[-1,-5],[0,-11],[0,-4],[-1,-3],[-1,-4],[-3,-3],[-2,-3],[-2,-1]],[[7921,6010],[-2,-4],[-1,-3],[-1,0],[-1,2],[-1,2],[0,4],[-2,2],[-3,2],[-6,-2],[-4,-2],[-6,2],[-4,-2],[-2,0],[-3,0],[-2,0],[-2,1],[-4,2],[-1,0],[-4,-2],[-3,-2],[-3,-1],[-5,-4],[-3,-7],[-1,-5],[-2,-4],[-2,-8],[-3,-7],[-2,-3],[0,-2],[0,-3],[-4,-1],[-2,0],[-1,-1],[1,-15],[1,-5],[1,-7],[1,-4],[1,-10],[0,-9],[4,-6],[2,-5],[2,-3],[-1,-3],[-1,-7],[1,-10],[5,-20]],[[7858,5860],[0,-2]],[[7858,5858],[-1,4],[-2,7],[-1,7],[-3,8],[-2,3],[0,-3],[-1,-3],[-3,4],[-3,5],[-2,8],[-1,-2],[0,-2],[-3,6],[-2,6],[-3,1],[-2,2],[-1,3],[-3,3],[-8,-4],[-10,3],[-4,-3],[-1,2],[-1,3],[1,6],[0,13],[1,8],[0,7],[0,3],[1,4],[-2,2],[-7,4],[-1,2],[-2,-3],[-8,-2],[-4,-2],[-3,-5],[0,-6],[1,-5],[1,-7],[-2,-16],[-1,-4],[1,-20],[0,-10],[-2,-7],[-3,-7],[-1,-10],[-2,-6],[-2,-11],[-2,-14],[-1,-7],[-1,-12],[-6,-18],[-1,-11],[-2,-4],[1,-3],[0,-5],[-1,-14],[0,-12],[1,-6],[2,-12],[0,-3],[-1,-6],[3,-2],[1,-1],[9,6],[3,-1],[2,-6],[0,-4],[2,-26],[1,-4],[2,-5],[2,-5],[0,1],[0,2],[1,2],[1,-5],[2,-9],[5,-48],[1,-6],[1,-6],[-3,3],[-1,11],[0,4],[-1,1],[-2,0],[0,2],[1,3],[0,4],[-2,4],[-3,-3],[0,-7],[2,-6],[4,-13],[2,-5],[2,-2],[2,1],[3,-5],[3,-5],[6,-8],[4,1],[4,2],[3,-1],[3,-2],[3,-6],[5,-16],[8,-14]],[[7835,5543],[-1,-3],[0,-5],[-3,-7],[-1,-4],[-1,-5],[-2,-2],[-2,-1],[-1,1],[-1,1],[-2,4],[0,2],[-1,0],[-4,-3],[-4,-4],[-1,-3],[-1,-4],[-1,-1],[-1,-1],[-1,3],[-2,3],[-1,2],[1,5],[2,6],[0,4],[0,8],[-1,4],[0,1],[-2,0],[-3,0],[-1,4],[-1,6],[-1,2],[-1,1],[-3,-2],[-1,1],[-6,5],[-3,8],[-1,0],[-1,-1],[-1,-2],[0,-8],[-1,-3]],[[7780,5555],[-7,18],[-4,7],[0,13],[-1,3],[-2,0],[-1,4],[1,7],[-2,-1],[-3,0],[-2,2],[-1,11],[-1,4],[-3,5],[-3,0],[-1,3],[1,7],[-2,4],[-3,4],[-3,2],[-2,11],[-2,3],[-1,2],[-3,-1],[0,-4],[-2,-4],[-2,0],[-1,3],[-2,11],[0,7],[0,13],[3,11],[1,19],[2,12],[1,4],[2,15],[4,21]],[[7741,5771],[0,4],[1,5],[1,5],[0,7],[-1,4],[0,2],[1,3],[3,4],[4,8],[5,10],[4,17],[3,9],[0,4],[2,1],[1,3],[1,4],[0,1],[-2,18],[-2,6],[-1,7],[0,5],[-1,4],[0,5],[0,2],[-3,4],[-2,5],[-1,8],[0,4],[-1,4],[-1,5],[1,4],[1,3],[0,15],[0,5],[-1,8],[-1,6],[-2,7],[-3,6],[-6,11],[-4,7],[-2,6],[-2,8],[-2,5],[-3,7],[-1,9],[-1,10],[1,4],[1,2],[1,1],[2,1],[3,4],[2,0],[1,1],[0,2],[0,9],[0,12],[0,10],[1,6],[6,8],[1,3],[1,4],[0,3],[0,2],[-1,1],[-4,-6],[-1,1],[-2,11],[-1,3],[-1,4],[-1,6],[0,9],[-1,5],[-5,9],[-3,6],[-3,7],[-4,10],[-3,8],[-2,6],[-1,1],[0,2],[1,6],[0,6],[-2,8],[-1,4],[0,2],[-1,1],[-2,0],[-2,3],[-2,8],[0,1],[1,0],[2,-1],[1,0],[2,2],[2,2],[2,1],[1,2],[-2,18],[1,4],[2,8],[0,7],[0,12],[3,7],[2,4],[1,5],[1,2],[2,-1],[3,-4],[2,0],[2,0],[2,0],[1,1],[8,4],[1,0],[2,-1],[1,1],[1,2],[1,3],[1,10],[0,2],[1,1],[2,1],[2,0],[2,-2],[2,0],[1,1],[2,2],[1,1],[0,3],[0,4],[-1,5],[0,1],[2,-1],[3,-2],[2,1],[2,0],[1,3],[2,2],[2,0],[1,-2],[3,-4]],[[7779,5742],[0,-1],[-1,2],[-1,2],[0,3],[1,0],[1,-3],[0,-3]],[[7779,5736],[0,-3],[-1,-4],[-2,-3],[-1,4],[0,4],[1,2],[2,-1],[1,1]],[[7768,5559],[-1,0],[-1,5],[1,7],[2,-9],[-1,-3]],[[7738,5641],[0,-1],[-2,11],[2,-3],[0,-7]],[[7730,5705],[-2,0],[1,3],[0,2],[1,0],[0,-3],[0,-2]],[[7751,5621],[1,-7],[-1,2],[-1,3],[0,4],[0,1],[1,-3]],[[6097,4828],[2,-12],[-1,-2],[-1,-2],[-1,0],[-1,2],[-1,4],[-1,-1],[-2,5],[-2,0],[-1,6],[0,5],[0,9],[2,5],[1,7],[2,-5],[0,-8],[2,-9],[1,-3],[1,-1]],[[6107,4901],[0,-3],[-1,-2],[1,-9],[-1,-6],[-1,-8],[-1,-3],[-2,1],[-1,1],[0,3],[1,14],[-1,11],[3,-1],[3,2]],[[5854,4712],[-1,5],[-2,8],[-3,11],[-2,8],[-2,10],[-1,7],[-2,8],[-2,9],[-2,4],[-1,3],[-4,7],[-5,6],[-2,5],[-4,12],[-1,5],[-1,8],[-1,9],[1,3],[3,11],[0,3],[-1,4],[-1,9],[-1,6],[-1,5],[-1,8],[-3,11],[0,5],[0,3],[1,10],[1,10],[0,3]],[[5816,4928],[9,-1],[1,2],[5,7],[6,12],[1,6],[2,8],[2,4],[1,3],[1,4],[1,4],[2,6],[3,4],[0,2],[0,1],[0,1],[2,2],[3,2],[0,4],[0,5],[0,3],[0,3],[-1,2],[-2,0],[-2,3],[-3,1],[-2,1],[0,1],[0,3],[0,3],[0,1],[1,4],[-1,2],[0,1],[0,1],[3,11],[0,2]],[[5848,5046],[1,0],[2,1],[2,1],[1,-1],[1,1],[1,1],[0,4],[1,7],[0,6],[-1,4],[-1,7],[1,9],[-1,8],[-1,6],[-2,3],[-2,2],[-3,9],[-1,5],[0,2],[1,1]],[[5941,5126],[2,0],[2,-2],[3,-3],[5,-7],[6,-6],[6,-7],[6,-7],[6,-7],[6,-7],[6,-7],[6,-7],[6,-6],[6,-7],[6,-7],[6,-7],[5,-7],[6,-7],[6,-6],[6,-7],[3,-4],[0,-1],[1,-6],[0,-4],[0,-4],[-1,-5],[-1,-4],[0,-2],[2,-1],[1,-1],[0,-1],[1,-5],[1,-2],[3,-4],[4,-6],[4,-6],[5,-7],[4,-6],[4,-6],[4,-7],[5,-6],[4,-7],[2,-3],[1,0]],[[6089,4914],[-1,-5],[-2,-12],[0,-5],[-1,-6],[-1,-4],[-2,-16],[-2,-6],[-2,-15],[-1,-11],[2,-8],[0,-7],[3,-7],[3,-3],[1,-3],[3,-7],[2,-8],[5,-3],[2,-9],[-1,-6],[-2,-4],[-2,-8],[-2,-10],[0,-16],[1,3],[3,-4],[0,-12],[-3,-13],[-1,-6],[0,-6],[2,-16],[3,-8],[0,-2],[-1,-2],[6,-15],[-1,-12],[2,-10],[1,-8],[1,-7],[0,-4],[-1,-5],[4,-1],[2,-5],[1,-3],[3,0],[1,-3],[2,-2],[5,-7],[2,-3],[0,-2],[0,-1]],[[6123,4581],[-3,-5],[-5,-8],[-5,-7],[-5,-6],[-3,-2],[-4,-2],[-3,-3],[-3,-5],[-5,-2],[-5,0],[-5,-4],[-5,-7],[-3,-4],[-5,6],[-4,2],[-5,0],[-2,-1],[-1,-1],[-1,-4],[-1,-6],[-3,-5],[-5,-6],[-4,-2],[-5,2],[-3,2],[-1,3],[-2,2],[-3,-1],[-3,-2],[-3,-4],[-4,-2],[-6,1],[-3,2],[-1,3],[-2,4],[-5,5],[-4,0],[-2,-4],[-2,-3],[-2,-1],[-1,-1],[-2,1],[-1,1],[-6,0],[-7,0]],[[5970,4517],[0,2],[0,5],[-1,4],[-2,2],[-1,1],[-1,0],[0,1],[-1,4],[-1,4],[-1,3],[-1,3],[-1,2],[1,3],[1,7],[0,4],[0,5],[0,5],[-2,6],[0,1],[0,4],[0,3],[0,3],[0,5],[-2,10],[0,2],[-1,5],[-4,11],[0,1],[-7,11],[-2,3],[-1,-2],[-1,-2],[1,-4],[0,-2],[-1,0],[-1,0],[-1,0],[-3,3],[-2,1],[-4,-1],[-2,0],[-1,0],[-3,6],[-3,1],[-2,0],[-5,6],[-1,-1]],[[6102,4724],[-1,0],[-1,0],[-1,3],[2,2],[2,4],[3,6],[1,3],[1,1],[0,-4],[-2,-10],[-2,-1],[-2,-4]],[[6970,7501],[0,-1],[0,-1],[-6,-4],[-2,-2],[-1,-5],[-1,-2],[-1,-1],[-1,0],[-2,6],[-2,1],[-3,2],[-5,4],[-3,1],[-6,-2],[-6,-4],[-1,-2],[-1,-2],[0,-2],[1,-2],[-1,-2],[-1,0],[-2,2],[-1,1],[-1,-3],[-1,-5],[-1,-4],[2,-6],[0,-8],[3,1],[2,0],[4,2],[2,0],[2,-1],[6,0],[4,0],[1,0],[1,2],[1,-1],[1,-2],[4,3],[3,0],[2,-1],[1,0],[2,-6],[1,-3],[2,-1],[6,1],[1,5],[2,1],[2,0],[2,1],[2,2],[2,2],[2,0],[0,-1],[1,-2],[0,-2],[0,-2],[1,-2],[3,0],[2,-2],[0,-2],[0,-4],[1,-2],[1,0],[5,4],[1,0],[2,-2],[1,-3],[3,-3],[0,1],[1,3],[2,4],[4,1],[2,1],[2,0],[7,-1],[2,0],[4,0],[4,1],[2,2],[2,2],[2,1],[3,-1],[2,0]],[[7045,7456],[0,-3],[-1,-6],[0,-4],[2,-7],[2,-3],[1,-3],[0,-2],[0,-1],[-2,-2],[0,-1],[-1,-2],[1,-2],[1,-7],[1,-6],[2,-2],[3,-2],[2,1],[1,4],[1,3],[2,-1],[3,1],[6,-4],[7,-5],[1,-3],[1,-3],[-2,-8],[0,-4],[1,-5],[1,-4],[2,-7],[0,-5],[0,-2],[1,-2],[-1,-4],[0,-5],[0,-2],[2,-3],[3,-4],[1,-4],[-1,-2],[-2,-3],[-3,-3],[0,-1]],[[7080,7328],[-1,1],[-1,2],[-3,5],[-2,2],[-4,-1],[-2,1],[-2,1],[-3,0],[-1,-3],[-2,-2],[-2,-1],[-4,-2],[-5,-3],[-3,1],[0,1],[0,2],[2,2],[0,3],[0,2],[-2,1],[-1,1],[-4,1],[-2,0],[-5,-4],[-9,-8],[-4,-5],[-2,-8],[-9,-3],[-5,-5],[-6,-8],[-4,-4],[-2,0],[-2,0],[-2,3],[-2,6],[-1,10],[-1,6],[0,9],[1,9],[1,10],[1,11],[1,4],[0,2],[-1,2],[-2,0],[-3,-2],[-2,0],[-1,1],[0,5],[2,9],[-2,8],[-6,7],[-5,2],[-4,-2],[-3,-5],[-3,-8],[-3,-7],[-3,-5],[-2,-3],[0,-1],[-1,-2],[2,-7],[0,-6],[-2,-5],[-2,-2],[-2,0],[-2,2],[-1,2],[-3,0],[-6,-1],[-3,-2],[-2,-4],[-1,-5],[1,-6],[-1,-5],[-1,-3],[-2,-2],[-1,-1],[-2,3],[-4,6],[-2,4],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,-2],[-3,-2],[-4,-3],[-2,-3],[-1,-3],[-1,-1],[-1,0],[-4,-4],[-3,1],[-3,6],[-2,4],[0,2]],[[6963,7478],[-2,-3],[-2,1],[-1,2],[-1,2],[0,1],[1,0],[2,-1],[2,-1],[1,0],[0,-1]],[[8361,6487],[-2,-7],[-2,-7],[0,-7],[0,-7],[0,-6],[-1,-6],[-3,1],[-1,5],[-1,7],[-2,9],[0,2],[-3,5],[-3,3],[-2,4],[1,-1],[-2,5],[-1,5],[-2,15],[-1,4],[-1,3],[0,3],[0,4],[1,5],[0,6],[0,7],[0,7],[1,3],[13,45],[4,9],[2,5],[2,5],[1,7],[2,6],[2,2],[7,5],[3,5],[2,2],[2,0],[1,-3],[1,-3],[2,-1],[3,-3],[1,-3],[1,-5],[-2,-4],[-1,-4],[0,-5],[0,-6],[0,-6],[-2,-14],[-3,-9],[-1,-5],[-1,-11],[-1,-11],[-1,-14],[-3,-15],[-1,-6],[-2,-5],[-3,-11],[-4,-9]],[[8288,6596],[1,-4],[0,-2],[-4,1],[0,3],[1,-1],[2,3]],[[6176,7321],[0,-1],[0,-2],[-3,-5],[-5,-8],[-3,-5],[-5,-8],[-4,-2],[-6,-3],[-2,-3],[-2,-5],[0,-6],[-1,-4],[0,-7],[2,-8],[1,-8],[0,-5],[0,-4],[-1,-6],[-2,-7],[-1,-8],[0,-15],[0,-12],[0,-3],[-3,-9],[-3,-10],[-2,-3],[-6,-3],[-8,-7],[-8,-9],[-8,-8],[-8,-8],[-8,-9],[-6,-6],[-8,-8]],[[6076,7106],[-7,-8],[-7,-8],[-6,-6],[-8,-9],[-5,-6],[-7,-8],[-6,-7],[-8,-9],[-9,3],[-3,1],[-3,4],[-1,2],[-5,3],[-3,7],[-2,3],[-3,1]],[[5993,7069],[1,3],[1,5],[2,5],[-1,2],[0,3],[0,3],[1,2],[-1,4],[-1,3],[0,2],[0,3],[0,2],[1,3]],[[5996,7109],[1,2],[0,2],[1,2],[2,2],[0,1],[0,1],[-1,1],[-1,3],[1,4],[0,1],[1,2],[2,2],[2,1],[1,0],[2,0],[2,-1],[1,1],[-1,1],[-2,2],[0,2],[1,2],[1,3],[2,2],[1,0],[2,5],[2,5],[-3,12],[-1,2],[-2,2],[-1,0],[-1,1],[2,3],[1,2],[-1,3],[-2,1],[-1,-2],[-3,-1],[-5,0]],[[5999,7178],[-2,13],[-1,6],[0,6],[2,10],[-1,4],[0,3],[0,4],[-4,9],[2,16],[1,4]],[[5264,7921],[1,-1],[2,-2],[-1,-5],[-2,-6]],[[5264,7907],[-1,-6],[0,-4],[0,-2],[3,-1]],[[5266,7894],[1,0],[3,-1],[3,-2],[0,-1],[1,-3],[3,-3],[4,-2],[1,1],[5,7],[2,-1],[1,-4],[0,-2]],[[5290,7883],[-1,-7],[-1,-4],[1,-3],[1,-2],[-1,-2],[-2,0],[-2,1],[-2,3],[-2,0],[-1,-1],[-1,-3],[-1,-4],[1,-2],[1,-1],[0,-4],[1,-4],[0,-2],[0,-1],[-2,-1],[-1,1],[-2,5],[0,2],[-2,1],[-3,-2],[-4,-3],[-1,0],[-2,1],[-1,2],[-1,5],[-1,3],[-3,1],[-1,-1],[0,-5],[-1,-6],[-1,-4],[-4,-7],[-1,-3],[0,-2],[-1,-2],[1,-3],[1,-3],[-1,-2],[-2,0],[-1,1],[-1,4],[-3,4],[2,4],[-1,1],[-4,2],[-3,3],[-3,4],[0,3],[0,7],[0,1],[-1,1],[-1,0],[-2,-2],[-2,-4],[-4,-4],[0,-1],[1,-4],[0,-1],[-3,-7],[0,-2],[-4,-4],[-2,-1],[-6,3],[-1,0],[-3,-2],[-3,-2],[-5,-2],[-3,2],[0,1]],[[5195,7829],[-1,2],[-1,3],[-2,2],[-1,2],[-1,3],[-1,2],[1,6],[-1,2],[-1,4],[1,2],[-1,0],[-5,2],[-4,-1],[-3,-2],[-2,-4],[-1,0],[1,-1],[1,-3],[-2,-4],[-3,-2],[-3,0],[-1,0],[0,4],[2,1],[2,2],[0,4],[1,2],[-2,3],[0,2],[1,3],[1,3],[1,3],[3,4],[4,4],[0,4],[0,6],[1,1],[5,3],[1,1],[0,2],[4,6],[4,6],[0,2],[1,1],[0,1],[-1,1],[-1,1],[-1,2],[2,3],[2,2],[3,0],[1,-1],[0,-1],[1,-1],[1,-1],[2,1],[3,1],[1,3],[1,2],[3,3]],[[5211,7925],[2,-1],[7,-1],[4,1],[3,2],[4,0],[2,-1],[1,0],[1,1],[2,1],[1,1],[-1,0],[0,1],[-3,-1],[-1,1],[0,2],[1,2],[2,2],[2,1],[1,-1],[3,-4],[1,0],[0,1],[1,0],[1,-1],[1,-2],[7,1],[2,0],[4,-5],[5,-4]],[[5529,8515],[-2,-1],[-1,-4],[-2,-1],[-2,-1],[-1,-13],[4,-5],[-2,-1],[-2,-1],[-1,-2],[-1,-5],[-5,-3],[-1,-2],[-3,-4],[-1,-6],[-3,-3],[-2,-1],[1,5],[2,5],[-2,3],[-1,4],[-2,4],[2,3],[-1,7],[0,6],[2,3],[2,3],[4,5],[3,5],[6,2],[2,-2],[1,4],[1,1],[2,-1],[3,-4]],[[5459,8426],[-2,-3],[-1,0],[-1,4],[0,10],[0,5],[6,18],[3,1],[4,11],[1,5],[2,4],[1,4],[0,2],[2,-1],[1,-1],[-2,-2],[0,-3],[0,-1],[-5,-13],[-1,-8],[-1,-2],[-7,-30]],[[5316,8584],[2,-7],[2,-1],[3,2],[2,5],[1,8],[1,8],[-1,8],[-2,7],[0,2],[4,6],[2,5],[1,5],[1,1],[3,1],[3,1],[3,3],[3,4],[2,4],[1,7],[0,4],[1,3],[1,6],[-1,5],[-3,8],[-3,12],[-1,6],[2,2],[3,1],[6,0],[0,1],[1,3],[1,3],[2,3],[1,4],[0,4],[-3,5],[-5,5],[-3,2],[-5,5],[-4,4],[2,15],[2,11],[0,2],[0,4],[-5,18],[0,4],[1,3],[-1,6],[0,6],[1,1],[2,4],[-2,4],[0,1],[-4,11],[6,12],[-1,6],[3,4],[7,10],[3,6],[1,1],[3,2],[5,3],[6,1],[3,0],[10,-2],[8,-1],[1,1],[2,4],[2,4],[0,5],[0,7],[-1,5],[-6,3],[-6,4],[7,12],[6,9],[6,13],[2,5],[2,2],[2,20],[1,5],[1,3],[0,3],[-1,5],[-2,12],[11,1],[3,1],[3,1],[7,4],[3,3],[-2,11],[4,3],[9,13],[10,12],[4,4],[1,2],[0,4],[-2,5],[-2,4],[-5,6],[2,5],[3,1],[5,2],[3,4],[6,15],[10,8],[5,4],[6,-3],[10,-5],[4,8],[2,2],[1,4],[0,7],[0,8],[0,4],[4,1],[2,1],[11,-4],[3,0],[5,0],[5,-2],[12,-4],[5,-2],[3,0],[3,2],[5,5],[-8,4],[5,3],[3,4],[2,5],[1,5],[-1,3],[-1,2],[-5,5],[11,1],[3,0]],[[5572,9160],[8,-3],[0,-1],[0,-2],[1,-1],[7,-5],[2,-2],[5,-4],[1,-2],[4,-2],[3,-2],[3,-2],[4,-4],[6,-2],[5,-1],[11,-4],[2,-1],[4,-3],[3,-4],[2,-7],[4,0],[1,-2],[3,-5],[5,-3],[0,-1],[-4,-4],[0,-4],[0,-6],[1,-5],[0,-1],[-1,-2],[-1,-2],[0,-3],[0,-1],[2,0],[4,-1],[2,-1],[1,-5],[-1,-1],[-2,-3],[-1,-2],[0,-3],[0,-3],[1,-3],[2,-4],[3,-4],[2,-3],[1,-2],[1,-2],[-2,-2],[-1,-4],[0,-5],[-1,-2],[-2,-5],[-2,-1],[-1,-2],[0,-4],[1,-4],[0,-3],[0,-2],[1,-2],[5,-2],[2,-5],[1,-4],[3,-11]],[[5670,8974],[-7,-1],[-5,2],[-3,-1],[-5,0],[-6,-1],[-1,-2],[-2,-1],[-5,3],[-5,5],[-3,-4],[-2,-1],[-3,4],[-1,0],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[0,-6],[0,-1],[-5,1],[0,-2],[1,0],[1,-1],[-2,-2],[-5,0],[0,-1],[1,-2],[-1,-2],[-1,-1],[-5,-1],[-4,0],[0,-1],[-1,-2],[1,-1],[1,-1],[1,-1],[0,-2],[-1,-1],[-4,4],[-1,0],[1,-2],[2,-2],[1,-2],[1,-3],[0,-2],[-4,-7],[-4,-4],[-3,-3],[-1,-4],[1,-2],[3,-3],[1,-6],[2,-5],[3,-4],[0,-3],[-1,-2],[-6,-5],[-7,-7],[-7,-18],[-2,-2],[-6,-3],[-3,-3],[-4,-3],[-8,-3],[-4,-5],[-2,-4],[-2,0],[-1,2],[-3,1],[0,-3],[0,-2],[-4,3],[-2,-3],[-1,-4],[-6,-7],[-6,1],[-1,-1],[2,-1],[0,-1],[-1,0],[-1,0],[-3,-1],[-2,0],[-1,-3],[-1,-4],[-3,-1],[-2,-1],[-1,-2],[5,0],[0,-2],[0,-2],[-1,-2],[-6,-2],[-1,-2],[-1,-2],[-2,0],[0,2],[0,1],[-4,0],[-1,3],[-1,-1],[1,-2],[1,-3],[1,-4],[-1,-2],[-1,-1],[1,-1],[2,-1],[0,-2],[-2,-1],[-3,-4],[-3,0],[-2,-3],[-2,0],[-2,2],[-3,1],[-1,-2],[0,-3],[2,-5],[3,-4],[2,-2],[-2,-1],[-1,-3],[-2,-8],[-1,-3],[-1,-6],[1,-5],[0,-2],[2,-3],[-4,0],[-4,2],[1,-4],[-3,-5],[1,-4],[0,-2],[0,-5],[1,-1],[0,-3],[-1,-2],[1,-1],[0,-6],[1,-10],[-1,-1],[2,-9],[0,-2],[0,-4],[3,-3],[2,0],[3,0],[1,-1],[1,-3],[1,-2],[2,0],[4,2],[2,1],[2,-5],[4,-6],[2,-2],[5,-2],[4,-5],[-1,-5],[2,-2],[5,-3],[2,-3],[1,-2],[1,-3],[2,-6],[-1,-4],[-2,-2],[-5,-4],[-2,-3],[-1,-2],[-5,-5],[-2,0],[-2,-3],[-2,-1],[-1,1],[-6,-4],[1,-2],[4,-1],[2,1],[2,2],[2,1],[1,-1],[2,2],[2,1],[1,-1],[2,-4],[-4,-2],[-2,0],[-1,-7],[-2,-2],[-1,-2],[-5,-2],[-3,-4],[-4,-3],[-2,1],[-3,-3],[-6,-3],[-3,-5],[-6,-4],[-4,-3],[-9,0],[-9,1],[-3,-2],[3,0],[2,-2],[2,1],[6,-1],[3,-1],[4,-5],[-3,-2],[-5,-1],[2,-8],[1,-5],[-2,-3],[0,-14],[-3,-1],[-1,-5],[1,-3],[0,-7],[1,-4],[1,-4],[-1,-4],[-4,-10],[0,-4],[1,-3],[1,-4],[-2,-8],[-2,-7],[-1,-6],[-4,-7],[-2,-5],[-4,-16],[-2,-3],[-3,-2],[-3,2],[-2,1],[-4,0],[-5,-2],[-7,1],[-8,0],[-2,-2],[1,-6],[-2,-1],[-3,2],[-3,-2],[-1,-2],[-4,-5],[-2,-3],[0,-6],[2,-6],[2,-6],[-5,-7],[-2,-1],[-8,2],[-13,-4],[-13,3],[2,4],[0,3],[1,5],[0,5],[0,3],[-1,3],[-3,5],[-7,14],[-2,6],[-1,3],[1,0],[5,-3],[2,0],[1,2],[-2,4],[-1,2],[-1,4],[3,1],[3,-1],[1,4],[-1,6],[-2,2],[-2,0],[-4,10],[-4,5],[-8,18],[-3,13],[-2,-2],[-2,6],[0,5],[-1,4],[-4,2],[0,3],[0,12],[-5,2],[-2,6],[-1,13],[-3,2],[-2,0],[0,3],[1,3],[-2,12],[0,10],[-1,4],[-1,3],[1,4],[0,2],[3,0],[3,-3]],[[5532,8520],[-1,-4],[-1,1],[-2,2],[3,4],[4,0],[1,-1],[-4,-2]],[[5511,8584],[-1,-1],[-1,0],[1,3],[0,1],[2,1],[1,0],[-2,-4]],[[5516,8609],[-1,-2],[0,3],[0,2],[2,2],[2,-1],[0,-1],[-2,-2],[-1,-1]],[[5887,3689],[0,-1],[3,-3],[0,-5],[0,-6],[-1,-4],[1,-4],[0,-6],[1,-4],[0,-18]],[[5891,3638],[0,1],[-2,1],[-1,-1],[-1,-8],[0,-12],[0,-8],[-6,0],[-7,1],[-6,3],[-6,7],[-3,11],[-2,8],[-2,0],[0,1],[0,9],[0,9],[0,2],[4,12],[2,7],[2,6],[3,8],[4,5],[1,1],[1,0],[6,-7],[7,-7],[1,1],[1,1]],[[3495,5492],[-2,-4],[-3,-5],[-3,-10],[0,-4],[0,-2],[-1,-5],[1,-5],[0,-3],[1,-6],[-1,-6],[0,-3],[1,-5],[1,-6],[0,-2],[0,-2],[1,-2],[0,-5],[3,-9],[1,-3],[3,-4],[0,-4],[2,-4],[0,-1],[1,-1],[-1,-4],[0,-5],[-1,-5],[-4,-10],[0,-2],[1,-9],[-1,-7],[0,-3],[-1,-6],[-5,-14],[-2,-3],[-1,-4],[-1,0],[-1,-1]],[[3483,5318],[-2,0],[-1,2],[0,2],[0,2],[-2,1],[-2,-1],[-1,1],[-1,3],[-1,3],[-1,2],[-2,-2],[-1,-1],[-1,1],[-1,0],[-3,-3],[-2,-1],[-1,-3],[-7,-1],[-2,-1],[-5,5],[-1,2],[-1,0],[-1,-1],[0,-6],[-1,-2],[-1,-1],[-1,-3],[-1,-2],[2,-1],[2,-5],[1,-4],[1,-3],[0,-3],[0,-5],[-1,-2],[-1,-1],[-6,2],[-5,3],[-1,0],[-1,1]],[[3431,5296],[-1,2],[-2,1],[-1,1],[-2,1],[-2,5],[-2,6],[0,3],[-2,3],[-1,4],[0,3],[-1,4],[-1,1],[0,4],[0,2],[-1,0],[0,1],[-1,5],[-1,1],[0,1],[-1,3],[-1,1],[-1,2],[1,4],[-1,3],[0,4],[0,2],[-1,2],[0,1],[-1,3],[0,8],[0,1],[-3,0],[-1,-1],[-1,0],[-2,0],[-1,1],[-2,1],[0,2],[0,5],[-2,4],[-3,6],[-1,6],[-1,4],[-3,8],[-1,6],[0,4],[1,4],[2,6],[1,6],[0,3],[1,4],[1,6],[-1,3],[-1,3],[0,2],[1,4],[1,2],[1,1],[1,1],[2,2],[1,1],[2,0],[5,0],[2,1],[1,2],[0,3],[1,3],[1,1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[-2,5],[1,2],[1,4],[0,3],[2,3]],[[3411,5503],[0,-1],[1,7],[1,5],[0,6],[2,6],[2,3],[14,-3],[7,-3],[8,-5],[1,-6],[0,6],[0,5],[2,4],[5,2],[7,-2],[7,2],[8,0],[14,-5],[6,-3],[2,-3],[1,-5],[-1,-6],[-1,-6],[-2,-9]],[[5856,5385],[-1,2],[0,3],[-1,3],[-2,1],[-1,-1],[-2,0],[-1,1],[0,4],[0,4],[-1,3],[-3,3],[-6,5],[-5,11],[-2,6],[-2,3],[-2,9],[-3,6],[-4,3],[-2,-2],[-2,-6],[-5,-6],[-2,0],[-2,3],[-4,2],[-6,1],[-2,-3],[-3,-4],[-3,-3],[-2,0],[-1,1],[-2,0],[-1,0],[-4,5],[-1,3],[-1,3],[-2,2],[-2,2],[-2,2],[0,4],[-2,4],[-1,4],[-5,7],[-1,4],[-1,4]],[[5761,5478],[-2,5],[-2,5],[-1,9],[0,7],[-1,3],[-1,4],[-1,2],[-1,4],[-4,4],[-4,5],[-2,3],[-4,1],[-2,3],[-2,7],[-1,5],[-2,4],[0,3],[-1,4],[2,10],[-2,4],[-4,4],[-2,6],[-1,4],[-4,7],[-9,9],[-6,6],[-2,6],[-3,5],[0,2],[2,5],[0,5],[-2,5],[-5,9],[-4,10],[-3,3],[-8,2],[-2,1],[-3,2],[-2,5],[-1,5],[1,9],[0,2],[-2,1]],[[5670,5683],[1,2],[1,4],[2,2],[7,5],[0,1],[0,6],[1,2],[2,7],[0,3],[1,7],[0,3],[0,2],[2,3],[1,3],[0,4],[0,10],[1,4],[4,8],[1,4],[0,3],[0,4],[1,3],[1,4],[1,1],[3,1],[2,-1],[14,6],[2,-1],[0,-3],[0,-6],[1,-3],[0,-1],[3,-3],[1,-5],[1,-1],[2,-3],[11,-26],[3,-2],[3,1],[6,5],[2,2],[21,-2],[2,1],[3,-13],[2,-3],[22,0],[-1,4],[1,4],[2,5],[1,2],[1,1],[3,4],[4,3],[6,2],[2,5],[2,4],[0,9],[1,1],[1,2],[8,7],[1,2],[13,-17],[7,-14],[1,-1],[1,1],[0,1],[1,0],[3,0],[6,1],[2,1],[12,25],[3,7],[1,2],[1,5],[2,10],[0,1],[14,23],[0,2],[0,1],[-2,8],[0,3],[0,6],[0,10],[0,6],[0,1],[0,1],[-8,16],[19,1],[0,1],[0,1],[-1,2],[0,3],[0,1],[0,2],[0,1],[0,1],[14,-1],[-1,-4],[-1,-11],[0,-7],[-1,-8],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[3,-42],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[6,-4],[0,-1],[1,0],[2,-5],[12,-21],[0,-1],[2,-6],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-1],[1,-1],[0,-2],[0,-1],[-2,-7],[-1,-6],[0,-4],[0,-3],[0,-1],[1,-1],[5,0]],[[5946,5729],[0,-3],[0,-11],[0,-10],[1,-17],[0,-4],[-1,-6],[0,-2],[-2,-3],[-1,-3],[-5,-1],[-4,0],[-3,1],[-4,0],[-3,0],[-1,-3],[-2,-8],[-3,-12],[-2,-5],[0,-3],[0,-2],[2,-3],[4,-3],[5,-2],[3,-1],[3,-1],[2,-1],[6,-10],[2,-4],[1,-4],[1,-4],[1,-4],[3,-8],[3,-5],[5,-6],[2,-7],[3,-3],[2,-4],[1,-5],[2,-15],[2,-8],[1,-7],[1,-11],[2,-5],[1,-5],[2,-6],[3,-4],[0,-1]],[[5979,5500],[-5,-10],[-6,-12],[-6,-13],[-8,-15],[-5,-12],[-6,-11]],[[5670,5683],[-3,1],[-3,1],[-7,2],[-2,2],[-2,3],[1,7],[-1,1],[-1,2],[-1,3],[0,4],[4,8],[1,5],[0,16],[1,5],[-1,7],[-3,12],[-2,8],[-4,12],[-2,4],[-8,17],[-1,3],[-2,7]],[[5634,5813],[1,6],[2,9],[0,5],[-1,4],[-2,4],[-2,0],[-1,2],[-1,2],[-2,2],[-1,4],[-1,5],[1,18],[-1,3],[-2,1],[0,1],[0,3],[-1,11],[-2,9],[1,4],[-2,7],[-3,3],[-3,-1],[-3,-1],[-2,0],[-2,1],[-1,3],[0,3],[0,4],[2,8],[2,6],[5,6],[1,3],[1,4],[0,4],[0,4],[-1,4],[-1,5],[-1,6],[0,4],[0,3],[1,3],[3,4],[0,1],[2,2],[1,1],[4,5],[1,1],[-1,3],[-1,2],[-1,3],[0,3],[-1,6],[0,3],[-1,3],[1,2],[2,3],[1,1],[3,2],[1,2],[1,4],[-1,3],[1,3],[2,6],[1,2],[2,3],[1,4],[1,4],[0,5],[-1,12],[3,6],[2,4],[4,0],[6,1],[4,2],[3,0],[7,-3],[0,1],[1,4],[0,8],[0,26],[0,26],[0,25],[0,26],[0,26],[0,25],[0,26],[0,26]],[[5666,6307],[0,7],[0,7],[0,7],[0,8],[6,0],[7,0],[7,0],[7,0],[0,29],[0,28],[0,29],[0,29]],[[5693,6451],[11,0],[11,0],[10,0],[11,0],[10,0],[11,0],[11,0],[10,0],[11,0],[10,0],[11,0],[11,0],[10,0],[11,0],[10,0],[11,0],[3,0],[2,0],[2,11],[2,1],[1,-1],[1,-3],[-1,-3],[0,-5],[5,0],[9,0],[9,0],[9,0],[9,0],[9,0],[9,0],[10,0],[9,0],[9,0],[9,0],[9,0],[9,0],[9,0],[9,0],[9,0],[10,0]],[[6024,6451],[0,-13],[1,-11],[4,-15],[4,-8],[1,-4],[0,-2],[0,-2],[-1,2],[-2,1],[0,-7],[1,-5],[0,-9],[1,-10],[-1,-9],[1,-16],[1,-19],[0,-12],[3,-29],[3,-15],[2,-4],[2,-2],[3,-1],[6,-8],[4,-9],[2,-4],[2,-5],[1,1],[1,1],[1,-4],[7,-8],[1,-4]],[[6072,6221],[-3,-4],[-2,-7],[-1,-2],[0,-2],[-1,-2],[0,-2],[-2,-2],[-1,-2],[0,-1],[-1,-2],[-1,0],[-1,0],[-1,-2],[-2,1],[-2,-1],[-1,-2],[-2,-1],[-2,0],[0,-1],[-2,-2],[-2,-3],[-2,-2],[-1,0],[-1,-2],[-1,-11],[-1,-2],[-2,-1],[-3,0],[-2,-1],[-3,1],[-2,0],[0,-2],[0,-9],[0,-4],[-2,-4],[-1,-6],[1,-9],[0,-10],[-3,-14],[0,-3],[-2,-11],[-2,-4],[-3,-21],[-1,-7],[-3,-7],[1,-11],[0,-11],[1,-11],[1,-17]],[[6014,6005],[-2,-15],[0,-9],[-2,-12],[-1,-6],[-1,-4],[-1,-3],[-2,-8],[-1,-10],[-1,-11],[0,-6],[0,-2],[-1,-2],[-3,-1],[-5,-2],[-2,-1],[-2,-2],[-2,-5],[-4,-14],[-2,-8],[-3,-11],[-4,-9],[-1,-4],[-1,-7],[-1,-11],[-1,-9],[0,-6],[-1,-12],[0,-5],[-2,-4],[-1,-2],[-2,-1],[-2,3],[-2,4],[-1,0],[-2,-2],[-2,-3],[-3,-7],[-1,-8],[1,-16],[-1,-3],[0,-4],[-3,-12],[-1,-4],[-1,-7],[-1,-12],[0,-3]],[[7221,5739],[-2,-1],[-1,4],[-1,1],[1,1],[0,1],[1,-4],[2,-2]],[[7218,5705],[1,-4],[-2,3],[-2,2],[-1,2],[4,-2],[0,-1]],[[7221,5749],[3,0],[3,0],[2,-1],[3,-9],[9,-16],[5,-16],[1,-3],[0,-3],[2,-1],[1,-2],[5,-15],[0,-3],[0,-4],[1,-2],[1,-2],[2,0],[1,-3],[1,-12],[0,-4],[0,-2],[7,-19],[0,-2],[0,-2],[0,-2],[1,-3],[2,-9],[1,-2],[2,-8],[0,-16],[-1,-7],[-1,-8],[-1,-8],[-2,-6],[-2,-5],[-7,-11],[-2,-2],[-10,-7],[-6,-6],[-7,-2],[-6,4],[-5,8],[-2,12],[-2,13],[-2,14],[-2,44],[-1,12],[-2,15],[1,7],[1,7],[0,-15],[0,-1],[1,1],[1,15],[0,6],[3,16],[0,3],[-1,6],[1,3],[3,12],[1,6],[1,7],[0,7],[-1,7],[3,-2],[2,-2],[1,-2],[2,1],[1,0],[-1,4],[-3,3],[-6,3],[-2,2],[-1,3],[1,3],[0,1]],[[5044,7411],[-1,-1],[-2,1],[-2,0],[-1,3],[1,1],[0,2],[2,-3],[3,-1],[0,-2]],[[5087,7476],[3,-2],[2,1],[2,0],[1,-1],[1,-4],[-2,-4],[-1,-4],[-2,-4],[-1,-6],[-3,-3],[-2,-2],[-5,4],[-3,1],[-1,2],[0,6],[-1,1],[-2,1],[-2,-1],[-2,-3],[-1,3],[-2,0],[-1,2],[0,2],[12,14],[3,3],[7,4],[1,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-2]],[[5119,7479],[-1,-1],[-8,7],[-3,0],[-1,1],[0,4],[1,1],[5,1],[5,-2],[2,-7],[1,-1],[-1,-3]],[[5040,7425],[-1,-3],[-5,1],[-1,2],[1,4],[2,0],[0,3],[1,3],[6,2],[1,-2],[1,-3],[-4,-6],[-1,-1]],[[4950,7684],[0,-2],[1,-3],[1,-1],[2,-1],[2,0],[3,-1],[1,-2],[0,-2],[0,-3],[-1,-2],[-1,-2],[1,-1],[1,-1],[1,-1],[0,1],[1,1],[1,2],[0,-1],[1,-1],[3,-2],[7,-4],[2,0],[2,-1],[1,-2],[4,-6],[1,0],[2,0],[2,0],[2,2],[1,-1],[1,-1],[2,-1],[2,-2],[1,-3],[1,0],[7,1],[2,-1],[1,0],[2,0],[4,-1],[3,1],[1,6],[0,2],[1,1],[2,-1],[7,-3],[2,-2],[3,-2],[2,0],[2,-1],[2,-6]],[[5039,7637],[0,-2],[0,-1],[0,-2],[0,-2],[1,-2],[1,0],[1,0],[2,1],[2,3],[1,0]],[[5047,7632],[4,-3],[2,-2],[1,-1],[1,-2],[1,-1],[2,2],[3,2],[4,-2],[6,-2],[2,0],[0,1],[1,2],[1,0],[1,1],[2,1],[2,1],[2,1],[2,-1],[3,-1],[2,0]],[[5089,7628],[0,-4],[2,-1],[0,-3],[-2,-2],[-2,0],[0,-6],[1,-1],[1,-2],[0,-1],[1,-8],[-3,-5],[-4,-5],[-19,-18],[-5,-8],[-2,-2],[-14,-5],[-10,-6],[-5,-2],[-6,-10],[-3,-4],[3,-1],[2,-5],[-1,-2],[-3,-3],[-2,-1],[-1,1],[-1,-1],[-6,-17],[-6,-12],[-3,-5],[-4,-8],[-7,-21],[0,-6],[4,-20],[2,-6],[3,-4],[5,-4],[1,-4],[-2,-3],[-5,-7],[-9,-8],[-4,-7],[-1,-7],[-2,-3],[-1,-9],[-2,-6],[0,-2],[-2,-5],[0,-3],[2,-5],[-1,-2],[-1,-1],[-4,0],[-10,-1],[-9,-10],[-4,-9],[-4,-16],[-5,-10],[-2,-2],[-4,5],[-4,0],[-4,-1],[-2,-4],[-3,-1],[-3,1],[-7,1],[-3,0],[-5,-3],[-4,2],[-7,1],[-15,-2],[-2,-1],[-2,-4],[-4,-7],[-8,-1],[-6,-4],[-2,-3],[-3,-8],[0,-6],[-1,0],[-1,1],[-1,0],[0,-4],[-3,-2],[-2,-1],[-5,3],[-4,6],[-2,0],[-4,9],[-1,5],[-2,6],[1,2],[-1,2],[-3,2],[-1,5],[3,7],[2,3],[1,1],[-3,0],[-2,-5],[-3,7],[-11,14],[1,3],[0,2],[-2,-4],[-1,-1],[-6,1],[-6,-2]],[[4794,7325],[-2,15],[-1,5],[0,4],[2,8],[2,3],[2,7],[3,6],[3,1],[1,1],[2,5],[0,3],[0,1],[-4,-1],[-6,16],[0,2],[1,4],[0,5],[0,4],[2,3],[3,3],[2,5],[1,4],[0,4],[-1,3],[-4,2],[-3,12],[-1,7],[-1,1],[-2,3],[-2,6],[-1,1],[2,1],[10,0],[2,2],[2,5],[2,8],[0,5],[-1,2],[-3,5],[0,1],[1,3],[2,2],[2,3],[1,2],[0,2],[-1,2],[0,2],[1,3],[0,7],[0,2],[0,8],[-1,5],[-2,8],[0,2],[1,1],[3,3],[3,6],[3,5],[5,4],[3,5],[1,3],[1,1],[0,2],[-1,2],[-2,2],[-2,2],[-3,0],[-1,0],[-1,2],[1,5],[-1,5],[0,2],[-1,2],[-3,-1],[-2,2],[-1,0],[-1,-1],[-5,0],[-2,1],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[-4,-2],[-3,0],[-3,2],[-1,1],[-1,1],[-6,-2],[-1,1],[-1,-2],[-3,-2],[-2,0],[-1,1],[0,1],[-1,3],[0,2],[3,5],[-1,1],[-1,2],[0,2],[-1,2],[-1,0],[-2,-1],[-6,-3],[-1,-1],[-3,-3],[-2,-3]],[[4756,7600],[-2,-1],[-1,1],[0,9],[3,6],[2,4],[-1,0],[-2,0],[0,3],[1,2],[1,3],[-1,1],[-1,2],[0,5],[0,2],[0,3],[-5,-3],[-1,0],[0,4],[2,6],[1,2],[-4,1],[-2,3],[-1,2],[-2,4],[0,4],[2,8],[2,2],[2,1],[4,6],[6,-1],[3,1],[4,3],[1,0],[3,3],[0,3],[-1,3],[1,2],[3,3],[4,4],[4,0],[5,4],[3,-3],[2,1],[3,-2],[4,-6],[5,-3],[5,2],[8,1],[4,-1],[7,1],[4,0],[6,3],[5,-4],[10,-2],[6,-3],[16,-5],[6,0],[8,3],[3,2],[4,-1],[4,2],[3,0],[3,-3],[10,-5],[3,4],[2,1],[7,-3],[8,-5],[3,0],[6,1],[5,4],[1,0]],[[4546,6818],[-3,-13],[-2,-5],[-1,-2],[-3,-1],[-4,8],[-2,8],[-1,3],[2,2],[2,0],[6,2],[1,0],[5,9],[6,1],[0,-3],[-6,-9]],[[4619,6849],[-2,-4],[-2,2],[1,8],[1,2],[3,4],[4,1],[0,4],[2,2],[1,-2],[-1,-3],[-1,-8],[-2,-3],[-4,-3]],[[4605,6806],[-4,-6],[-3,1],[-1,1],[4,2],[3,5],[2,11],[4,12],[1,5],[1,2],[2,0],[1,0],[0,-3],[0,-6],[-1,-10],[-1,-9],[-8,-5]],[[4572,6805],[0,-4],[0,-5],[0,-7],[-1,-3],[-4,-4],[-2,1],[-2,1],[-3,6],[0,6],[3,4],[1,5],[6,-1],[1,1],[0,1],[1,-1]],[[4522,6798],[-1,-1],[-1,2],[-2,4],[1,4],[1,1],[1,0],[3,-2],[0,-3],[1,-2],[-3,-3]],[[4503,6786],[-3,-10],[-3,4],[-1,1],[-1,2],[3,0],[4,5],[1,-2]],[[4504,6825],[-1,0],[0,4],[-3,11],[2,5],[3,0],[2,-3],[0,-4],[-1,-2],[1,-4],[-1,-3],[-2,-4]],[[8517,7360],[1,1],[0,2],[0,5],[2,3],[4,8],[1,4],[2,3],[2,3],[3,1],[3,1],[7,-1],[1,1],[5,0],[1,-1],[3,0],[4,0],[2,1],[1,2],[2,4],[1,6],[2,5],[1,0]],[[8565,7408],[7,-25],[6,-17],[6,-12],[8,-23],[2,-13],[0,-7],[2,-11],[-1,-6],[0,-10],[-1,-4],[-1,-4],[0,-7],[1,-4],[0,-5],[0,-2],[1,0],[2,2],[1,0],[0,-6],[-2,-15],[-2,-11],[-2,-9],[-4,-9],[-3,-3],[-3,-1],[-5,-1],[-4,2],[-4,-1],[-2,-2],[-1,-3],[1,-5],[0,-4],[-2,1],[-3,2],[-3,0],[-2,1],[-1,5],[-2,0],[-3,-3],[-4,-1],[-2,-2],[0,-2],[0,-2],[3,-4],[-1,-3],[-3,-2],[-1,4],[-2,5],[-1,0],[-2,-1],[0,-5],[1,-3],[1,-4],[-2,-4],[-1,-3],[-1,-2],[-4,5],[0,3],[2,3],[0,4],[0,2],[-6,-9],[-4,-10],[-2,1],[-1,3],[-1,1],[-4,-7],[-1,-5],[-1,0],[-1,2],[0,5],[0,4],[-5,5],[-2,5],[2,3],[3,-2],[3,0],[-1,3],[-1,1],[2,1],[2,3],[-2,0],[-2,-1],[-1,1],[-1,6],[-2,6],[-1,7],[2,3],[1,6],[2,8],[1,3],[2,2],[1,2],[-1,1],[-2,1],[0,2],[1,1],[2,3],[3,3],[1,6],[-1,1],[-2,2],[1,3],[0,2],[0,2],[-2,3],[-2,4],[1,4],[-1,6],[0,5],[0,3],[-1,6],[0,6],[-2,-1],[-1,-1],[-4,2],[-2,0],[0,5],[1,6],[4,5],[2,0],[2,2],[2,1],[3,-3],[3,-1],[1,-6],[1,-1],[1,2],[2,3],[0,1],[0,1],[-3,2],[-2,7],[0,3],[-1,2],[1,6],[-3,7],[-1,2],[0,6],[-1,3],[-1,3],[0,3],[0,2],[1,0],[1,2]],[[8575,7188],[-2,-3],[-4,4],[-1,3],[3,4],[2,4],[2,1],[0,-13]],[[8557,7189],[-1,-6],[-2,0],[-1,3],[-1,-1],[-1,-1],[-1,5],[0,4],[2,2],[2,-1],[2,-1],[1,-4]],[[8506,7163],[-2,0],[-1,2],[-1,0],[1,3],[2,5],[1,2],[3,-1],[1,-3],[-2,-4],[-2,-4]],[[8514,7357],[-1,-7],[-1,0],[-1,1],[-1,1],[-1,7],[2,3],[2,-2],[1,-3]],[[8520,7162],[1,-3],[-3,1],[-1,2],[0,3],[2,0],[1,-3]],[[8549,7178],[0,-2],[-2,2],[2,3],[0,-3]],[[8511,7286],[-1,-4],[-1,2],[-1,9],[2,-3],[1,-4]],[[8504,7184],[0,-1],[-2,0],[-1,4],[0,3],[-2,2],[2,3],[3,-5],[0,-6]],[[8636,7342],[-2,-1],[-1,1],[0,2],[1,2],[1,1],[1,-2],[0,-3]],[[8508,7097],[-1,-1],[-1,1],[0,1],[-2,3],[0,2],[1,3],[4,5],[9,5],[2,0],[4,-2],[1,-4],[-1,-3],[-1,-3],[-4,-4],[-4,-2],[-7,-1]],[[5869,3893],[0,-3],[0,-1],[1,-8],[2,-12],[1,-11],[2,-15],[0,-8],[1,-4],[1,-4],[2,-7],[1,-4],[1,-3],[2,-5],[1,-9],[2,-11],[1,-6],[0,-2],[1,-5],[0,-10],[0,-12],[0,-13],[0,-11],[0,-6],[0,-16],[-2,-8],[0,-6],[1,-4]],[[5891,3638],[3,0],[4,-1],[4,0],[3,0],[5,0],[3,0]],[[5913,3637],[-1,-13],[-4,-21],[-1,-9],[-4,-34],[-4,-18],[-3,-7],[-7,-12],[-2,-3],[-2,-1],[-3,-2],[-12,-25],[-5,-13],[-4,-17],[-4,-10],[-6,-21],[-5,-16],[-5,-15],[-9,-20],[-4,-6],[-3,-3],[-7,-12],[-9,-19],[-8,-16],[-11,-19],[-7,-9],[-10,-16],[-2,-2],[-11,-16],[-8,-9],[-13,-11],[-5,-3],[-13,3],[-5,-1],[-4,-7],[0,-9],[-2,-2],[-3,1],[-8,4],[-5,-1],[-3,-5],[-2,-6],[-6,-1],[-12,7],[-13,4],[-3,0],[-7,-5],[-2,0],[-10,1],[-5,3],[-5,0],[-4,-3],[-5,-1],[-12,-17],[-7,0],[-6,-2],[-2,0],[-6,2],[-2,0],[-2,-1],[-3,-3],[-7,-1],[-3,-3],[-11,-16],[-3,1],[-2,1],[-6,0],[-7,9],[-2,-1],[0,3],[0,4],[-1,3],[-1,2],[-3,-1],[-1,4],[-4,1],[-2,-1],[-1,-1],[-1,4],[1,3],[-1,4],[0,4],[-2,2],[-1,0],[-3,0],[-2,-1],[-1,-1],[-1,-3],[0,-11],[-1,3],[-2,7],[0,6],[0,8],[3,3],[0,5],[-1,5],[-3,11],[-1,6],[-3,3],[-2,9],[-3,3],[-1,6],[-2,5],[-1,8],[2,4],[1,3],[2,-4],[3,1],[3,6],[2,9],[1,13],[-1,9],[-3,21],[-1,6],[-6,15],[-8,21],[-9,33],[-4,20],[-7,40],[-6,23],[-7,21],[-1,1]],[[5456,3535],[1,3],[4,5],[2,1],[1,0],[1,1],[1,3],[0,3],[0,5],[1,2],[1,6],[2,3],[3,2],[3,-3],[1,-3],[0,-3],[2,-2],[1,0],[2,-2],[0,-5],[0,-4],[-1,-2],[0,-3],[2,-3],[0,-4],[1,-4],[5,-3],[2,-1],[4,-1],[4,-2],[3,-3],[6,-1],[8,2],[7,-1],[5,-3],[4,-1],[2,2],[1,3],[0,4],[1,3],[3,1],[2,3],[1,5],[4,4],[6,3],[2,0],[0,8],[0,26],[0,25],[0,26],[0,26],[0,25],[0,26],[0,26],[0,24]],[[5554,3757],[2,-2],[9,-13],[2,-7],[1,-4],[4,-15],[3,-14],[2,-11],[0,-5],[1,-4],[0,-3],[0,-2],[-2,-6],[-2,-4],[-2,-6],[0,-8],[1,-10],[1,-4],[2,-2],[3,3],[2,-1],[4,-2],[10,1],[2,0],[4,-1],[1,1],[1,2],[2,5],[1,2],[2,1],[3,2],[2,3],[4,11],[7,10],[2,2],[1,3],[1,3],[3,12],[2,11],[0,5],[2,7],[2,6],[2,2],[1,1],[2,1],[4,1],[3,-1],[4,-3],[4,-5],[4,-7],[2,-3],[2,-1],[4,-1],[2,0],[4,-6],[2,0],[5,-2],[5,-2],[3,0],[4,3],[2,1],[4,-1],[3,1],[3,2],[2,3],[2,3],[2,10],[1,7],[2,9],[3,13],[0,8],[1,2],[4,3],[2,2],[8,3],[1,2],[2,4],[3,7],[4,5],[2,4],[4,27],[0,3],[3,8],[1,3],[2,0],[1,2],[2,4],[3,2],[2,1],[2,2],[1,4],[1,2],[2,0],[1,2],[1,2],[1,3],[2,2],[1,2],[0,3],[3,6],[5,11],[5,5],[4,2],[5,2],[4,3],[2,5],[2,7],[4,3],[6,1]],[[5798,3450],[4,4],[2,2],[2,2],[2,3],[0,6],[1,6],[1,3],[2,2],[1,3],[2,7],[1,7],[0,3],[-1,3],[-1,3],[-1,4],[-1,1],[-2,2],[-3,5],[-3,4],[-3,6],[-1,1],[-3,4],[-1,3],[-1,3],[0,1],[-2,-1],[-3,-1],[-6,-5],[-4,-5],[-4,-5],[-4,-2],[-2,-2],[-2,-6],[-2,-6],[-2,-5],[-1,-2],[-1,-2],[-1,-3],[-2,-6],[-1,-3],[-3,-2],[-3,-3],[-1,-2],[0,-2],[1,-5],[1,-5],[2,-6],[1,-4],[2,-5],[1,-3],[0,-5],[1,-2],[0,-2],[1,-1],[0,-1],[2,-1],[0,-1],[2,-2],[1,-3],[2,-4],[2,-4],[4,-1],[4,-1],[1,0],[1,3],[1,4],[0,4],[1,2],[4,11],[2,4],[1,1],[2,0],[2,1],[2,-1],[0,1],[3,1]],[[6051,2480],[-1,-1],[-6,1],[0,2],[1,3],[1,2],[3,-1],[2,-3],[1,-1],[-1,-2]],[[6153,5086],[0,5],[0,2],[-3,7],[-5,13],[-4,10],[-3,11],[0,8],[0,24],[0,49],[-1,48],[0,49],[0,24],[0,10],[1,2],[4,8],[6,12],[7,23],[4,12],[4,10]],[[6163,5413],[1,3],[3,6],[5,4],[4,0],[12,5],[2,2],[1,2],[1,5],[2,7],[3,4],[6,6],[6,6],[1,0],[7,4],[2,1],[2,1],[1,0],[10,-1],[7,-1],[8,-1],[1,1],[5,12],[9,19],[5,12],[8,19],[7,14],[7,15],[7,14],[8,16],[5,11],[9,16],[7,16],[7,13]],[[6332,5644],[4,13],[4,13],[5,14],[5,16],[5,16],[4,12],[0,7],[0,14],[0,9],[0,27],[0,16],[0,15],[0,16]],[[6359,5832],[3,1],[9,4],[7,6],[13,5],[10,11],[2,6],[3,7],[4,2],[11,-8],[2,-1],[-1,-5],[0,-5],[-2,-9],[-2,-9],[1,-15],[1,-24],[0,-4],[-1,-3],[0,-3],[-2,-1],[0,-2],[1,0],[3,2],[0,3],[0,2],[3,-3],[2,-2],[1,-3],[0,-2],[-4,1],[-1,2],[-5,-3],[-3,-3],[-1,-5],[0,-19],[-2,-12],[0,-16],[-4,-11],[-1,-8],[-6,-15],[-3,-13],[-1,-6],[-5,-18],[-7,-14],[-2,-17],[-3,-11],[-3,-10],[-6,-18],[-3,-12],[-4,-21],[-1,-14],[-11,-39],[-12,-31],[-7,-26],[-13,-31],[-17,-39],[-23,-47],[-7,-9],[-25,-29],[-16,-24],[-8,-17],[-9,-14],[-7,-13],[-21,-46],[-2,-5],[-2,-4],[-3,-8],[-2,-3],[-5,-13],[-3,-7],[-4,-6],[-1,-5],[-1,-5],[-1,-4],[-3,-13],[-3,-8],[-3,-7]],[[6332,5644],[-9,0],[-10,0],[-9,0],[-1,2],[-8,5],[-10,7],[-12,8],[-8,6],[-9,7],[-10,6],[-7,5],[-9,6],[-8,5],[-1,2],[-4,8],[-6,11],[-1,0],[-3,2],[-2,6],[-3,7],[-2,10],[-1,6],[-3,3],[-2,5],[-3,7],[-2,3],[0,4],[-1,6],[-2,7],[-1,4],[-1,2],[0,2],[3,9],[2,4],[1,3],[1,3],[1,2]],[[6192,5817],[3,12],[3,9],[3,8]],[[6201,5846],[5,-9],[5,-18],[7,-14],[8,-13],[3,-5],[3,-2],[16,0],[11,12],[10,9],[3,2],[6,-3],[6,0],[6,-3],[3,1],[11,10],[7,10],[5,4],[2,0],[7,-3],[8,1],[12,9],[4,2],[2,0],[7,-4],[1,0]],[[9435,4694],[-1,-1],[-2,2],[-1,2],[0,3],[1,1],[2,-2],[0,-2],[1,-3]],[[9636,4512],[-2,-1],[-1,0],[-2,5],[1,1],[2,0],[0,-3],[2,-2]],[[9614,4564],[-2,-1],[-1,0],[-2,0],[-2,-4],[-1,0],[-1,0],[-1,4],[0,1],[2,0],[0,3],[2,2],[3,1],[3,-1],[1,-1],[-1,-3],[0,-1]],[[9460,4504],[-2,-2],[-2,1],[-2,2],[-1,4],[-2,3],[-3,1],[-2,2],[0,1],[-2,1],[-1,2],[0,3],[1,1],[2,-1],[10,-12],[2,-3],[2,-3]],[[9486,4629],[1,-6],[0,-2],[-2,5],[-1,-2],[-1,2],[0,5],[0,5],[-1,4],[-1,5],[2,-1],[3,-15]],[[9421,4658],[-2,1],[-1,0],[-1,2],[1,3],[1,2],[1,-1],[1,-1],[1,0],[0,-4],[-1,-2]],[[9448,4666],[2,-1],[1,0],[1,-3],[3,-5],[-1,-2],[-2,1],[-1,0],[0,2],[-3,3],[-2,0],[0,2],[2,3]],[[9385,4690],[-2,0],[0,-2],[-2,5],[-3,1],[-1,3],[-1,7],[0,3],[-2,1],[-4,-1],[-1,-3],[-2,1],[-1,3],[1,3],[2,3],[1,3],[2,7],[2,1],[3,-2],[0,-9],[1,-3],[3,-2],[2,-5],[2,-10],[0,-4]],[[9394,4676],[-1,-1],[-1,3],[2,6],[1,-5],[0,-2],[-1,-1]],[[9385,4690],[1,1],[1,1],[1,2],[3,-2],[1,-1],[-2,-3],[0,-1],[1,-1],[0,-2],[-3,-5],[-2,2],[-1,3],[0,5],[0,1]],[[9371,4682],[0,-1],[-2,2],[-3,7],[1,3],[3,5],[1,1],[1,-3],[-1,-5],[-1,-1],[-1,-4],[2,-4]],[[9352,4727],[-1,0],[-1,3],[-1,1],[0,3],[-2,6],[-1,4],[2,4],[2,-3],[2,-4],[3,-2],[-1,-3],[-2,-6],[0,-3]],[[9349,4713],[0,-1],[-2,7],[0,3],[1,3],[1,-8],[0,-4]],[[9365,4717],[-1,-1],[-3,0],[-2,6],[0,5],[2,4],[2,0],[1,-1],[1,-4],[1,-4],[-1,-4],[0,-1]],[[9328,4775],[-3,-1],[-2,1],[1,5],[1,2],[4,-4],[-1,-3]],[[9378,4679],[0,-2],[-2,1],[-3,3],[0,1],[2,1],[1,-1],[1,-1],[1,-2]],[[9437,4650],[6,-10],[2,1],[8,0],[5,-6],[3,-4],[1,-5],[2,-2],[2,-3],[0,-5],[0,-1],[-3,-2],[-1,-1],[-5,2],[-5,4],[-8,1],[-5,1],[-1,1],[-1,3],[-2,5],[-2,6],[0,3],[0,7],[0,2],[2,3],[2,0]],[[9440,4692],[0,-1],[-4,5],[-2,6],[-8,6],[-2,3],[-2,1],[-4,5],[-4,4],[-2,4],[-1,2],[-1,1],[-3,5],[-2,4],[-1,6],[-3,4],[0,2],[7,-3],[4,-7],[3,-4],[1,-3],[3,-3],[2,-1],[3,-4],[2,-1],[2,-2],[11,-17],[-1,-4],[1,-4],[1,-4]],[[9374,4762],[1,-2],[-3,-4],[-2,2],[-1,2],[0,1],[-2,-1],[-4,2],[-5,8],[-6,16],[-6,8],[-1,3],[0,4],[1,2],[3,-2],[5,-7],[7,-7],[2,-4],[1,-9],[2,-3],[4,-7],[2,-1],[1,0],[1,-1]],[[9464,4705],[7,-17],[0,-3],[-1,-2],[0,-6],[1,-2],[1,-1],[4,-6],[1,-8],[0,-2],[1,-4],[0,-7],[3,-10],[1,-5],[-1,-2],[-1,1],[-3,12],[-5,5],[0,2],[-4,6],[-3,11],[-3,20],[1,5],[-3,10],[0,2],[2,0],[1,0],[0,1],[1,0]],[[9491,4586],[4,-4],[2,1],[3,-3],[2,2],[1,-3],[4,-12],[0,-4],[2,-3],[-2,0],[-2,1],[-3,-1],[-2,3],[-4,1],[-3,3],[-7,8],[0,5],[-1,2],[0,5],[-3,2],[-3,0],[0,3],[1,4],[2,0],[2,-2],[5,-6],[2,-2]],[[5614,7972],[0,-1],[-10,-3],[-1,0],[-1,2],[-1,2],[-1,1],[0,2],[-2,2],[-1,2],[-2,1],[-2,0],[-5,-2],[-3,0],[-3,0],[-3,2],[-6,0],[-4,-1],[-1,-2],[-4,-11],[-5,-5],[-5,-4],[-2,-1],[-2,1],[-3,3],[-2,1],[-2,0],[-2,-3],[-1,-3],[-5,-2],[-10,-2],[-4,-2],[-1,-4],[0,-3],[1,-2],[-1,-3],[0,-1],[-7,0],[-10,-1],[-5,0],[-5,0],[-4,3],[-4,4],[-5,6],[-1,1],[-2,0],[-1,0]],[[5476,7949],[-2,2],[0,2],[-3,7],[-3,11],[0,3],[1,4],[1,2],[0,2],[0,1]],[[5470,7983],[1,5],[2,5],[2,4],[2,1],[3,-1],[5,-1],[4,1],[4,3],[2,2],[1,2],[1,2],[1,1],[3,1],[1,2],[0,3],[1,3],[0,3],[1,2],[6,4],[0,2],[1,2],[2,1],[1,3],[2,1],[2,0],[2,1],[2,0],[1,1]],[[5523,8036],[3,-1],[0,-3],[0,-3],[5,0],[3,7],[2,0],[2,3],[1,2],[2,-2],[1,-4],[2,-3],[1,-1],[0,-1],[1,-1],[2,0],[1,-1],[0,-4],[0,-2],[0,-2],[-1,-2],[2,-1],[1,1],[2,1],[4,-2],[1,5],[2,2],[2,2],[1,1],[2,1],[1,0],[1,1],[1,0],[2,-1],[2,1],[3,-2],[2,-2],[2,-1],[2,0],[2,2],[2,4],[2,0],[2,1],[4,0],[8,-1],[2,-2],[4,-2],[3,-3],[1,-3],[0,-2],[5,-3],[8,-4],[2,-1]],[[5458,7862],[-2,2],[-3,0],[-1,-1],[-1,0],[-1,-2],[1,-5],[-1,-1],[-3,0],[-1,0],[-2,-4],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[0,-2],[0,-1],[2,-4],[0,-4],[0,-4],[-1,-3],[-1,-1],[-4,-2],[-5,-4],[0,-1],[2,-3],[0,-1],[-2,-2],[0,-2],[0,-2],[1,-2],[1,-2],[-3,-2],[-4,1],[-4,3],[-2,-1],[-1,-1],[-2,0],[-1,2],[-3,4],[-1,2],[0,2],[-1,1],[-1,-1],[-1,-3],[-2,-5],[-1,-2],[-3,1],[-3,0],[-2,-1],[-3,2],[0,-1],[-1,-2],[-2,-2],[-7,3],[-1,2]],[[5377,7805],[1,2],[3,3]],[[5381,7810],[1,-1],[2,1],[1,1],[-1,4],[-3,5],[-2,1],[-2,2],[-1,1],[2,7],[-1,1],[-2,0],[-1,1],[0,1],[0,2],[2,2],[2,3],[0,1],[0,2],[-2,1],[-2,1],[-1,0],[-1,0],[-1,2],[1,4],[2,3],[2,2],[2,2],[1,1],[1,3]],[[5380,7863],[1,0],[3,0],[2,-1],[3,-1],[2,-1],[5,-1],[4,-1],[1,-1],[1,0],[2,-1],[0,1],[1,1],[2,2],[2,2],[2,3],[1,2],[1,1],[2,1],[1,0],[6,1],[6,0],[3,1],[3,3],[3,0],[6,-2],[0,1],[0,1],[0,5],[2,3],[1,1]],[[5446,7883],[6,0],[0,-2],[1,-3],[0,-3],[1,-1],[1,-1],[-1,-3],[2,-2],[2,-5],[0,-1]],[[7887,5260],[-4,-3],[-5,3],[2,6],[3,1],[3,-2],[1,-1],[1,-2],[-1,-2]],[[4714,5673],[0,-2],[-1,-9],[-1,-7],[-1,-1],[-4,-2],[-1,-3],[-1,-10],[-1,-8],[-1,-2],[-6,-11],[-3,-4],[-2,-4],[-3,-5],[-2,-5],[-3,-8],[-3,-8],[-1,-2]],[[4680,5582],[-1,2],[-5,8],[-6,6],[-11,9],[-4,2],[0,3],[1,6],[-2,7],[1,5],[-1,0],[-2,-3],[-3,1],[-3,5],[-1,1],[-1,2],[-1,12],[-1,5],[-2,3],[-4,1],[-1,7],[-2,5],[0,4],[2,-1],[1,-2],[2,-1],[3,6],[2,3],[0,3],[0,1],[-1,-2],[-4,1],[-1,-3],[-2,0],[-1,7],[0,4],[1,4],[3,1],[1,1],[-3,1],[-3,5],[-1,4]],[[4630,5705],[2,1],[1,0],[2,-1],[1,1],[2,2],[0,3],[2,6],[3,3],[2,4],[2,6],[1,5],[1,2],[0,2],[1,2],[1,2],[1,5],[0,4],[2,2],[4,2],[4,-3],[6,2],[1,4],[5,0],[7,1],[5,0],[2,-2],[1,-3],[2,-4],[2,-4],[2,-7],[3,-8],[3,-8],[2,-4],[0,-1],[0,-2],[-1,-4],[-1,-4],[0,-1],[1,-1],[3,-1],[0,-5],[0,-6],[1,-6],[2,-5],[0,-1],[-4,-8],[-1,-7],[-1,-2],[0,-2],[1,-1],[1,1],[1,-1],[1,0],[2,2],[3,7],[1,1],[2,0]],[[4652,5612],[-1,-1],[-2,3],[-9,6],[2,3],[7,1],[2,-2],[1,-1],[0,-3],[0,-6]],[[6542,4913],[0,-5],[-1,2],[-1,3],[-1,3],[-1,2],[2,3],[2,-8]],[[5630,7732],[-1,-1],[-1,-2],[-1,-2],[0,-5],[-3,-3],[-2,0],[0,-3],[-1,-6],[0,-4],[0,-3],[1,-2],[1,-2],[1,-4],[0,-5],[2,-3],[4,-4],[2,-2],[1,-3],[1,-3],[4,-4],[-1,-2],[0,-3],[-1,-1],[-2,-3],[-1,-2],[-3,-6],[-4,0],[-1,-1],[-1,-2],[-1,-2],[0,-3],[0,-2],[0,-5],[1,-5],[1,-2],[0,-1],[0,-3],[-2,-4],[-1,-2],[-2,-1]],[[5620,7621],[-1,0],[-1,2],[-1,1],[-2,-2],[-3,-2],[-2,1],[-2,0],[-2,0],[-1,-1],[-2,-2],[-3,-1],[-2,0]],[[5598,7617],[0,2],[-1,3],[0,1],[3,2],[0,2],[3,10],[1,3],[0,2],[-1,0],[-2,0],[-7,4],[0,5],[-2,2],[-3,3],[0,2],[-3,5],[-2,3],[-2,1],[-2,2],[-2,2],[0,2],[0,1],[-1,2],[-1,-1],[-2,-1],[-2,-2],[0,-1],[1,-3],[0,-2],[0,-1],[-1,-3],[-4,-4],[0,-2],[1,-2],[-1,-2],[-3,-1]],[[5565,7651],[0,1],[-1,2],[-2,3],[-2,2],[-7,6],[-2,1],[-2,1],[-3,3],[-2,1],[-1,2],[-4,7],[-3,4],[-3,2],[0,2],[0,3]],[[5533,7691],[1,3],[2,1],[1,0],[1,-2],[2,0],[1,2],[0,3],[0,3],[-4,8],[-3,6],[0,1],[1,1],[1,1],[1,-1],[3,0],[2,0],[1,2],[0,2],[-1,1],[-3,5],[-2,4],[-3,3],[-3,2],[0,1],[0,2],[0,3],[0,4],[0,2],[2,5],[2,5],[2,5],[0,5],[0,1],[-1,1],[-2,1],[-3,-1],[-3,-2],[-1,0]],[[5527,7768],[0,2],[0,1],[1,0],[1,0],[1,1],[0,2],[-1,10],[2,0],[0,2],[0,1],[2,-2],[3,0],[2,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-5,3],[-3,4],[0,4],[1,2],[1,0],[0,1],[-3,2],[-1,2],[1,3],[-2,7],[-1,4],[1,2],[0,2],[1,1]],[[5525,7829],[3,2],[1,1],[0,2],[1,0],[1,-1],[2,-1],[2,1],[1,2],[2,1],[1,1],[1,1],[2,4],[2,1],[3,-1],[4,0],[2,1],[6,-2],[2,0],[1,-1]],[[5562,7840],[1,-4],[2,-4],[2,-2],[3,-2],[1,-2],[2,-5],[2,-3],[1,1],[1,0],[0,-2],[0,-3],[-1,-4],[1,-3],[0,-1],[-1,-1],[1,-1],[0,-1],[2,-3],[2,-3],[2,-3],[3,-1],[1,0],[2,-3],[4,-2],[2,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[2,-1],[0,-1],[-1,-1],[-2,-1],[-2,0],[0,-2],[4,-2],[2,-2],[1,-3],[3,-2],[5,-1],[3,-2],[2,-5],[3,1],[4,7],[4,2],[4,-3],[3,-3],[0,-2],[-1,-1],[-2,1],[-2,-2],[-1,-3],[-1,-3],[1,-3],[2,-2],[2,-2],[1,-1],[0,-3]],[[4658,6037],[3,-9],[-1,-5],[0,-6],[1,-5],[2,-3],[1,-3],[2,-4],[0,-8],[0,-5],[1,-3],[0,-3],[0,-3],[0,-2],[-2,-3],[0,-6],[2,-7],[2,-4],[0,-2],[1,-2],[1,-3],[1,0],[1,3],[0,1],[2,0],[1,-1],[2,-5],[0,-3],[1,-4],[1,-4],[2,-4],[0,-2],[1,-3],[-1,-6],[0,-3],[0,-9],[-1,-4],[1,-1],[1,-3],[0,-5]],[[4683,5898],[-2,1],[-3,1],[-6,-3],[-3,1],[-4,0],[-3,-1],[-4,-3],[-3,1],[-2,2],[-2,0],[-2,1],[-3,2],[-2,1],[-2,4],[-2,1],[0,-1],[-1,-2],[-1,-1],[-1,1],[-1,3],[1,2],[0,2],[-1,1],[-1,1],[-3,0],[-4,1],[-1,0],[-9,1]],[[4618,5914],[-9,0],[-8,0],[-10,0],[-7,0],[-7,0],[-5,-5],[-5,-6],[-7,-3],[-9,1],[-3,0],[-2,-3],[-2,-2],[-3,-1],[-4,1],[-2,-1]],[[4535,5895],[-1,3],[-1,4],[1,3],[2,2],[4,3],[2,-2],[1,0],[0,2],[-1,1],[-2,2],[-1,3],[-2,-2],[-1,-3],[0,-1],[-2,-1],[0,2],[-1,3],[1,1],[0,11],[0,5],[0,5]],[[4534,5936],[2,3],[1,2],[6,1],[6,0],[5,0],[6,0],[0,9],[2,1],[3,1],[4,1],[6,1],[1,2],[1,4],[1,2],[1,2],[1,-1],[2,-2],[2,-2],[3,-2],[1,-2],[4,-3],[6,-5],[6,-2],[6,4],[5,2],[0,4],[0,4],[-4,4],[-4,-1],[-2,-1],[-2,-1],[-1,0],[-3,1],[-2,3],[-2,3],[-3,2],[-3,1],[-4,7],[-3,1],[-2,0],[-5,-1],[-4,-4],[-2,-8],[-5,0],[-9,1],[-8,0],[-8,-1]],[[4539,5966],[0,6],[-2,5],[-3,4],[0,4],[1,3],[2,3],[1,2],[-1,-1],[-3,-1],[-1,-1],[0,6],[-2,6],[-3,11],[-3,5],[-2,9],[-3,4],[-2,1],[-2,0],[-1,-4],[-3,6],[4,2],[7,7],[9,22],[7,25],[1,6]],[[4540,6096],[1,5],[1,10],[1,6],[1,1],[1,5],[2,8],[1,5],[2,1],[2,-1],[1,-1],[3,-1],[6,-1],[4,2],[3,2],[3,2],[5,0],[3,1],[0,3],[1,-1],[1,1],[1,1],[1,0],[1,-1],[4,0],[7,0],[6,-4],[6,-10],[3,-6],[1,-3],[1,-3],[1,-3],[2,-1],[1,2],[2,0],[0,-2],[2,-1],[2,2],[1,-1],[1,-1],[0,-1],[1,0],[1,-2],[2,-5],[1,-7],[1,-9],[2,-5],[1,0],[2,-2],[0,-2],[0,-2],[1,-1],[2,1],[1,-3],[2,-7],[1,-3],[-1,-1],[0,-1],[2,-1],[1,-2],[1,-4],[2,-3],[3,-2],[2,-4],[2,-5],[3,-4]],[[6024,6646],[-2,4],[-1,3],[-2,2],[-5,3],[-1,3],[1,2],[1,-2],[1,-2],[4,-3],[5,-8],[1,0],[-2,-2]],[[6166,6147],[2,-1],[-1,2],[0,1],[1,3],[3,-6],[0,-6],[-1,-2],[0,2],[-1,1],[0,1],[-1,2],[-3,-1],[-2,2],[-2,5],[-1,4],[1,1],[1,2],[1,3],[-1,3],[2,0],[1,-4],[0,-7],[0,-2],[0,-1],[1,-2]],[[6188,6127],[0,4],[-2,7],[0,5],[-1,5],[-1,4],[-3,3],[0,6],[-2,5],[-2,4],[-2,8],[-1,10],[-6,14],[-9,12],[-2,7],[-5,14],[-2,12],[-5,13],[-1,5],[0,6],[-2,7],[-1,5],[-5,23],[-2,4],[-2,5],[0,4],[0,3],[-4,4],[-4,9],[-11,16],[-6,2],[-4,5],[-3,8],[-4,12],[-6,14],[-5,19],[2,7],[0,5],[-2,9],[-1,6],[-2,6],[1,9],[1,10],[1,5],[0,6],[-1,11],[-1,6],[0,4],[-2,2],[-2,5],[2,0],[-3,6],[-1,3],[-1,9],[-1,6],[-5,15],[-2,9],[-5,11],[-5,8],[-4,4],[-1,4],[-3,0],[-3,5],[-2,0],[-3,1],[-3,10],[-2,9],[-5,11],[1,3],[2,5],[-1,7],[-1,4],[-2,9],[-6,20],[-2,3],[-2,3],[-2,9],[-1,8],[-4,3],[-8,29],[-4,9],[-2,7],[-5,11],[-2,11],[-5,10],[-5,17],[-6,18],[-3,3],[-7,1],[-3,1],[-3,-4],[0,5],[2,7],[3,14],[0,12],[4,37]],[[5970,6875],[6,-2],[5,-2],[7,-2],[8,-3],[4,-1],[1,1],[6,9],[6,8],[3,10],[3,9],[1,2],[5,2],[8,3],[7,2],[1,1],[2,8],[2,10],[0,1],[1,1],[5,5],[3,4],[-4,9],[-5,9],[-5,11],[-4,8],[-6,12],[-4,8],[7,3],[8,4],[8,4],[9,5],[7,4],[11,6],[6,3],[1,0],[4,7]],[[6087,7034],[6,-2],[9,-3],[9,-2],[10,-4],[3,-2],[9,-10],[6,-6],[7,-7],[9,-10],[5,-6],[8,-8],[6,-9],[8,-12],[8,-13],[7,-10],[9,-13],[9,-14],[9,-13],[8,-11],[9,-13],[1,-1],[9,-1],[12,-2],[13,-2],[11,-2],[5,2]],[[6292,6860],[5,-2],[7,-1],[5,-1],[8,-2],[2,-9],[1,-6],[1,-6],[3,-6],[5,0],[5,1],[6,0],[5,0]],[[6345,6828],[2,-6],[0,-5],[3,-13],[4,-10],[1,-3],[1,-6],[-1,-2],[0,-2],[3,-6],[5,-4],[2,-2],[2,-2],[-2,-3],[3,-7],[4,-8],[3,-1],[5,-12],[8,-7],[4,-9],[0,-1],[-1,1],[-2,2],[-1,-2],[1,-4],[0,-4],[2,-4],[2,-3],[1,-6],[-1,-12],[-1,0],[-1,1],[-1,0],[-1,0],[2,-9],[1,-6],[2,-6],[1,-7],[1,-4],[5,-8],[1,-7],[2,-12],[3,-7],[1,-6],[3,-4]],[[6411,6612],[1,-7],[2,-5],[1,-1],[2,0],[2,0],[2,1],[2,1]],[[6423,6601],[2,-2],[2,0],[1,-2],[-2,-3],[-1,-8],[2,-1],[2,-1],[2,-1],[1,0]],[[6532,6492],[2,-7],[2,-5],[2,-8],[3,-8],[2,-7],[2,-6],[-1,-6],[-1,-6],[-1,-7],[-1,-6],[-1,-6],[-1,-7],[-1,-6],[-1,-6],[-1,-7],[-1,-6],[-1,-7],[-1,-6],[-1,-6],[-1,-7],[-1,-6],[-1,-6],[-1,-7],[-2,-7],[-2,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-4],[-4,-3],[-5,-3],[-5,-4],[-5,-3],[-4,-3],[-5,-4],[-5,-3],[-5,-3],[-5,-3],[-4,-4],[-5,-3],[-5,-3],[-4,-3]],[[6016,6665],[0,-1],[-1,2],[0,5],[1,2],[0,-3],[0,-4],[0,-1]],[[5206,5274],[-1,-1],[-2,1],[0,2],[2,5],[0,1],[1,-1],[0,-1],[0,-2],[0,-4]],[[5184,5191],[-2,-4],[-1,1],[-1,3],[-1,6],[0,3],[2,3],[3,4],[1,0],[2,-4],[0,-5],[-3,-7]],[[5346,7712],[-1,0],[-1,2],[1,3],[2,1],[0,-3],[-1,-3]],[[213,4408],[3,-5],[1,-7],[-1,-7],[-3,1],[-4,-1],[-2,0],[-3,9],[-2,4],[-1,3],[3,0],[4,2],[5,1]],[[237,4375],[-7,0],[-4,2],[-1,0],[-4,6],[0,3],[2,2],[3,1],[7,-5],[1,-3],[2,-1],[1,-1],[0,-3],[0,-1]],[[3300,5942],[0,-1],[-2,4],[0,4],[1,3],[1,1],[1,0],[1,-3],[-1,-6],[-1,-2]],[[3299,5932],[-1,0],[1,0],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[-1,-1],[0,-2]],[[3296,5915],[-1,0],[1,1],[0,1],[0,-1],[0,-1]],[[3308,5980],[-1,-6],[-3,4],[-1,4],[0,3],[2,6],[2,3],[1,2],[0,-5],[0,-11]],[[3263,6170],[-2,-1],[-1,1],[0,4],[1,1],[2,-2],[0,-3]],[[3260,6177],[-1,-1],[-1,3],[-2,1],[-2,3],[0,1],[0,1],[1,1],[3,-3],[1,-3],[1,-2],[0,-1]],[[5848,5046],[-1,0],[-1,1],[-2,4],[-4,-2],[-1,0],[-1,-2],[-1,-2],[-1,0],[-1,0],[-3,4],[-1,0],[-1,-12],[0,-7],[-1,-3],[-2,-3],[-3,-1],[-1,0],[-5,-1],[-2,0],[-1,1],[-2,7],[-3,3],[-2,1],[-1,0],[-1,-4],[-1,-3]],[[5805,5027],[-2,2],[-1,3],[0,5],[-1,6],[1,3],[1,1],[2,4],[3,4],[1,2],[0,4],[0,8],[0,8],[0,2],[1,6],[2,5],[3,6],[1,1],[2,2],[2,4],[1,1]],[[9051,7687],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1]],[[9065,7697],[-1,-1],[-1,1],[-1,0],[1,0],[0,1],[1,0],[1,-1]],[[9056,7684],[-1,1],[1,1],[1,0],[0,-1],[-1,-1]],[[8810,8357],[-4,-10],[-2,0],[-2,2],[-4,0],[-1,0],[2,3],[6,5],[2,0],[2,1],[1,-1]],[[9182,8583],[-2,0],[-1,1],[0,1],[3,3],[2,3],[2,-2],[0,-1],[-4,-5]],[[8340,9394],[-7,-3],[-6,0],[-4,5],[3,1],[6,1],[3,0],[4,-3],[1,-1]],[[8459,9437],[-2,0],[-3,2],[-1,2],[0,1],[3,1],[3,-1],[2,-2],[1,0],[-3,-3]],[[7951,9688],[-3,0],[-4,1],[1,3],[8,0],[3,4],[5,0],[2,-1],[1,-2],[0,-1],[-1,0],[-5,0],[-1,-1],[-6,-3]],[[7983,9633],[-3,0],[-1,3],[3,3],[3,0],[3,-1],[1,-1],[1,-1],[0,-2],[-7,-1]],[[7710,9596],[-1,-1],[-3,0],[-3,2],[-1,4],[2,1],[6,-6]],[[7690,9573],[-2,-1],[-1,1],[-1,0],[0,3],[3,4],[0,1],[1,1],[3,-1],[2,-2],[-2,-4],[-3,-2]],[[7781,9769],[-6,0],[0,4],[1,1],[3,0],[2,-1],[4,0],[-4,-4]],[[7131,9414],[-2,0],[-12,2],[-4,3],[1,1],[3,0],[14,-6]],[[7297,9451],[-3,-2],[-4,1],[-2,2],[-2,2],[2,1],[4,0],[2,0],[2,-3],[1,-1]],[[7354,9473],[-2,-4],[-7,2],[-2,1],[5,2],[3,2],[6,0],[-3,-3]],[[7406,9503],[3,-1],[7,1],[1,0],[2,-3],[-3,-4],[-2,-2],[-7,1],[-8,0],[-4,3],[2,2],[5,2],[3,1],[1,0]],[[6647,9867],[-6,-1],[-11,1],[-3,2],[1,1],[7,2],[5,0],[6,-2],[3,-2],[-2,-1]],[[6,9155],[5,-2],[2,0],[2,0],[3,-3],[2,-2],[11,-4],[5,-5],[5,-5],[-2,1],[-4,4],[0,-4],[1,-3],[6,-3],[7,-2],[4,-2],[1,-2],[1,-4],[-1,-3],[4,1],[3,3],[-2,2],[-11,8],[-3,3],[4,-1],[15,-11],[5,-4],[-2,0],[-1,-3],[1,-1],[2,1],[3,1],[3,-2],[4,-2],[7,-4],[43,-25],[1,-4],[1,-2],[1,-3],[0,-4],[-4,-6],[7,1],[0,1],[2,2],[2,1],[2,-2],[2,-3],[-1,-5],[-1,-3],[0,-7],[1,-5],[2,-2],[1,-3],[0,-8],[-3,-3],[-1,-6],[2,0],[5,-1],[2,-1],[3,-3],[0,-2],[1,-4],[1,-3],[1,-2],[4,5],[1,1],[3,2],[2,-6],[-1,-8],[1,0],[1,0],[1,3],[1,1],[2,3],[2,4],[-2,3],[-2,2],[-5,1],[-3,3],[-1,3],[3,1],[2,2],[1,5],[0,3],[0,3],[-2,4],[-2,2],[-3,1],[-2,2],[-2,0],[-3,1],[-1,1],[0,1],[3,1],[16,0],[6,2],[2,0],[3,-2],[9,-2],[0,-1],[-2,-1],[-3,-5],[0,-2],[0,-4],[2,0],[3,1],[-2,3],[0,3],[1,2],[1,0],[3,-3],[2,0],[9,-1],[3,0],[1,1],[-2,2],[-12,3],[0,2],[11,-3],[5,-2],[5,-1],[6,0],[7,-2],[6,-7],[6,-8],[6,-5],[6,-3],[10,-10],[2,-1],[1,-1],[-2,-2],[-2,-2],[3,1],[4,1],[1,0],[2,-1],[1,-2],[0,-2],[-1,-2],[10,0],[3,-1],[1,-5],[-3,-4],[-1,1],[-2,1],[-1,0],[-5,-1],[-6,-5],[-4,-3],[-1,-3],[1,-6],[-1,-4],[-3,-2],[-6,2],[-3,1],[-3,2],[-3,2],[-4,4],[-2,0],[-1,-1],[2,-2],[3,-3],[4,-4],[2,-5],[-1,-2],[-2,0],[-1,0],[-4,1],[-3,0],[-9,-1],[-3,-1],[-1,1],[-1,2],[-4,1],[-3,1],[-2,0],[-1,2],[-3,3],[-5,1],[-3,1],[-2,-1],[7,-4],[5,-7],[-1,-1],[0,-1],[3,-1],[2,1],[0,-2],[-1,-7],[-1,-1],[-10,-2],[2,-1],[3,-1],[3,1],[2,-1],[2,-5],[0,-5],[-2,-2],[-3,-2],[-5,-4],[-6,-1],[-3,0],[-3,0],[-1,-2],[-1,-2],[2,1],[3,0],[3,-2],[0,-2],[-3,-2],[0,-1],[1,-3],[-1,-2],[1,-1],[3,0],[4,-2],[4,-2],[1,-1],[1,-3],[1,-2],[-1,-1],[-8,0],[-1,0],[-1,3],[-1,2],[-3,1],[-1,-1],[1,-8],[-1,-2],[-2,-2],[-4,-1],[-3,1],[-3,4],[0,3],[2,2],[0,2],[-1,3],[-2,-3],[-2,-3],[-3,-4],[-2,0],[-2,0],[-5,3],[-2,2],[-6,7],[-3,4],[-7,4],[-7,4],[-6,2],[-3,0],[-3,-1],[-4,0],[-1,1],[-2,2],[-1,1],[-5,5],[-4,3],[0,3],[1,3],[-1,7],[-2,7],[-4,7],[-13,4],[-11,3],[-3,1],[-4,-1],[-8,-5],[-6,-1],[-17,0],[-3,0],[-2,3],[-1,3],[1,6],[0,2],[-1,1],[-1,0],[-3,3],[-3,4],[-3,4],[-2,5],[3,0],[3,-1],[0,1],[1,5],[2,3],[1,2],[2,7],[0,4],[-3,-2],[-3,-7],[-2,-2],[-2,-1],[-1,0],[-3,1],[-2,2],[0,6],[-1,2],[-1,-1],[-1,-3],[-2,0],[-2,-1],[1,-4],[0,-3],[-3,-2],[-5,0],[-2,3],[-2,-5],[-1,-5],[0,-6],[2,-6],[2,-3],[5,-4],[3,-3],[0,-3],[0,-4],[-3,-4],[-2,-3],[-3,-8],[-2,-4],[-8,-6],[0,14],[0,14],[0,14],[0,14],[0,14],[0,14],[0,14],[0,14],[0,14],[0,15],[0,14],[0,14],[0,14],[0,14],[0,14],[0,14],[6,-2]],[[8629,7620],[0,2],[-1,2],[-1,3],[-1,3],[-1,4]],[[8625,7634],[1,2],[0,3],[-1,3],[-3,0],[0,1],[0,2],[1,1],[1,2],[2,2],[4,1],[3,1],[1,1],[2,-1],[2,2],[2,1],[0,3],[0,5],[1,1],[1,2],[1,3],[1,6],[1,5],[0,2],[0,3],[0,3],[-1,1],[-1,1],[0,3],[0,5],[0,3],[1,17],[1,4],[-3,23],[-2,7],[0,4],[-2,6],[-1,2],[1,3],[1,2],[1,2],[4,0],[1,1],[5,3],[2,1],[2,5],[1,3],[1,4],[3,2],[1,3],[2,2],[1,-4],[2,-1],[3,-1],[3,-2],[5,-2],[5,-2],[3,-2],[2,-1],[3,-1],[1,-1],[2,-1],[2,3],[3,3],[-1,5],[1,6],[2,10],[2,3],[1,1],[1,1],[3,2],[1,2],[-1,3],[1,3],[0,3],[1,4],[1,1],[1,2],[2,2],[1,3],[0,3],[0,4],[1,3],[3,2],[0,2],[1,3],[0,2],[1,1],[-1,4],[0,4],[2,7],[2,5],[0,9],[1,1],[0,4],[1,2],[1,5],[2,3],[0,4],[-1,4],[0,2],[2,3],[1,2],[0,2],[2,1],[1,0],[3,1],[1,2],[2,2],[3,6],[1,3],[0,2],[-1,5],[-2,4],[-1,6],[-1,3],[1,3],[1,2],[1,2],[0,4],[0,2],[-3,4],[-3,2],[-3,1],[-2,0],[-2,-1],[-10,-5],[-5,-4],[-3,-4],[-2,-2],[-5,0],[-4,1],[-4,-3],[-4,-5],[-3,-2],[-2,0],[-2,-3],[-2,-7],[-2,-3],[-3,1],[-6,-1],[-10,-2],[-7,0],[-2,3],[-4,0],[-6,-2],[-3,0],[-1,1],[-1,3],[0,4],[-2,5],[-3,6],[-1,6],[2,7],[1,5],[-2,3],[0,2],[-2,3],[-2,6],[-1,1],[0,5],[1,5],[-1,5],[-6,0],[-4,2],[-5,5],[-7,13],[-3,4],[-2,1],[-2,2],[-1,4],[-1,0],[-2,0],[-1,-2],[-1,-1],[-2,2],[-1,0],[-2,-1],[-2,1],[-1,2],[-2,2],[-4,1],[-1,2],[1,2],[-1,2],[-2,2],[-5,-1],[-8,-2],[-6,1],[-5,3],[-3,3],[-1,2],[-1,3],[-3,2],[-1,4],[0,6],[0,6],[2,8],[-5,5],[-2,3],[1,2],[-1,2],[-1,2],[0,2],[2,3],[0,5],[-2,4],[-3,7],[-5,10],[-2,6],[-1,4],[0,4],[-1,1],[-1,3],[1,4],[-1,2],[-1,2],[1,3],[-1,3],[-2,1],[-1,2],[1,6],[-2,4],[-4,9],[-1,6],[0,5],[-2,3],[0,2],[0,4],[-1,2],[-1,1],[1,2],[-1,2],[-2,3],[-1,2],[0,2],[-1,1],[-4,2],[0,2],[0,2],[0,2],[1,1],[0,1],[-1,2],[-1,1],[-1,2],[-2,4],[-3,1],[-1,0],[-2,3],[1,1],[0,3],[-2,2],[-1,1],[-1,-1],[-4,2],[-5,5],[-5,2],[-2,0],[-2,-2],[-1,-2],[-2,0],[-5,5],[-4,1],[-3,2],[-2,4],[-2,2],[-2,-1],[-5,3],[-7,6],[-3,2],[-2,-1],[-2,0],[-1,0],[-4,2],[-4,-1],[-5,-3],[-6,-2],[-7,0],[-3,0],[-2,1],[-6,-1],[-10,-4],[-9,-4],[-12,-2],[-8,-7],[-8,-11],[-5,-8],[-4,-3],[-1,-4],[0,-5],[3,-1],[6,1],[4,-1],[4,-2],[1,-5],[-1,-5],[0,-6],[2,-5],[0,-7],[-2,-7],[-4,-7],[-8,-7],[-5,-7],[-2,-10],[-5,-9],[-1,-5],[-1,-4],[-1,-5],[-3,-5],[-2,-5],[0,-4],[-2,-5],[-3,-4],[-1,-4],[-1,-4],[-1,-3],[-2,-2],[1,-1],[3,-2],[1,-4],[0,-7],[-2,-5],[-3,-4],[-5,-2],[-6,0],[-9,-7],[-7,-9],[-9,-10],[-1,0],[-3,1],[-7,4],[-6,1],[-6,4],[-4,3],[-6,5]],[[8240,8054],[-1,3],[-2,2],[-6,3],[-4,2],[-2,0],[-6,-3],[-3,-3],[-2,-1],[-4,0],[-4,1],[-2,1],[-3,2],[-5,6],[-2,5],[-4,2],[-4,3],[-1,1],[-4,0],[-4,0],[-3,2],[-2,-1],[-4,-3],[-5,-6],[-5,-3],[-4,-3],[-4,-4],[-3,-4],[-4,-4],[-2,-6],[-1,-4],[-4,-3],[-3,-3],[-3,-1],[-6,2],[-3,-1],[-8,-5],[-5,-1],[-2,-1],[-3,0],[-5,-1],[-1,-1],[-3,-1],[-2,1],[-4,-3],[-10,-8],[-4,-2],[-2,0],[-3,3],[-2,2],[-3,0],[-4,-3],[-5,2],[-7,2],[-6,2],[-2,1],[-6,2],[-9,0],[-5,0],[-4,0],[-2,1],[-3,3],[-6,7],[-3,3],[-2,1],[-1,3],[-1,1],[-1,2],[0,3],[0,6],[1,4],[-1,2],[-4,0],[-4,2],[-8,0],[-3,0],[-3,3],[-2,3],[-3,6],[-3,3],[-4,4],[-3,1],[-6,-1],[-4,-1],[-4,2],[-2,2],[-4,2],[-5,1],[-4,1],[-4,2],[-4,-1],[-2,-2],[-2,-2],[-4,0],[-8,-3],[-2,-1],[-4,-1],[-3,-1],[-3,-4],[-2,-3],[-3,0],[-3,0],[-3,1],[-1,0],[-3,-1],[-2,-1],[-4,1],[-2,1],[-3,1],[-2,4],[-2,1],[-4,1],[-5,2],[-2,2],[-2,1],[-4,4],[-2,4],[-2,1],[-2,0],[-1,2],[-1,3],[1,2],[0,3],[-1,3],[-1,1],[0,2],[0,5],[-1,4],[0,4],[-1,4],[0,6],[0,2],[0,3],[-1,3],[-4,1],[-4,3],[-7,2],[-3,0],[-3,-1],[-2,2],[-2,2],[-4,2],[-5,3],[-5,3],[-5,3],[-2,1],[-7,0],[-5,1],[-3,1],[-4,4],[-2,3],[-3,1],[-2,0],[-3,2],[-7,4],[-2,2],[-2,0],[-2,4],[-2,1],[-1,-3],[-1,-7],[-1,-3],[-4,-6],[-8,-4],[-1,-3],[-1,-2],[-1,-3],[0,-5],[-1,-1],[-3,0],[-2,-2],[-1,-4],[-1,-2],[-1,-4],[0,-1],[0,-2],[0,-3],[-2,-7],[0,-4],[0,-2],[2,-3],[1,-2],[0,-2],[0,-3],[1,-4],[1,-3],[2,-3],[1,-2],[3,0],[1,-2],[1,-2],[-1,-4],[-1,-7],[-1,-4],[-1,-3],[-1,-4],[-1,-2],[-2,-3],[-2,-1],[-3,-3],[-2,0],[-1,0],[-2,-1],[-2,-1],[-1,-4],[-4,-4],[-1,-2],[-5,-1],[-2,2],[-1,2],[-1,2],[-2,3],[-7,2],[-2,-1],[-1,-1],[-2,1],[-1,1],[-1,0],[-3,-1],[-1,0],[-3,3],[-3,2],[-1,1],[-2,0],[0,-2],[-2,-1],[-1,2],[-1,1],[-2,0],[-2,-2],[-4,-2],[-1,-1],[-3,0],[-1,1],[-2,0],[-4,0],[-2,0],[-2,2],[-1,2],[-2,2],[-3,0],[-3,0],[-1,-1],[-2,0],[-1,4],[-2,2],[-1,2],[-2,1],[-1,2],[0,5],[-1,6],[-1,6],[-1,3],[-5,1],[-2,-1],[-5,1],[-4,0],[-1,0],[-4,1],[-3,1],[-3,0],[-1,0],[-4,-1],[-2,3],[-1,4],[0,2],[-1,2],[-2,0],[-3,0],[-1,-4],[-1,-2],[-2,0],[-1,3],[-3,2],[-1,2],[-2,3],[-2,0],[0,-3],[-1,-2],[-2,-4],[-2,0],[-4,0],[-5,0],[-2,-2],[-2,-3],[-1,-2],[-2,-1],[-3,-2],[0,-3],[-3,0],[-1,-1],[-1,0],[-5,-2],[-1,0],[-3,-3],[-2,-3],[-3,-1],[-1,-2],[-2,-2],[-3,-1],[-5,-3],[-1,-1],[-3,-2],[-3,0],[-1,-1],[-2,-1],[0,-5],[-3,-2],[-4,0],[-3,-3],[0,-4],[1,-5],[0,-2],[-2,-1],[-3,-2],[-3,-3],[-2,0],[-2,1],[-1,-2],[-1,-3],[-1,-2],[-3,-2],[-1,1],[-1,1],[-1,2],[-1,0],[0,-3],[-1,-2],[-3,0],[-1,1],[-2,1],[-2,0],[-3,-1],[-1,1],[-2,-1],[-4,-1],[-2,-4],[0,-5],[0,-2],[-3,-2],[-1,-2],[-1,-1],[-3,-1]],[[7439,8015],[-2,1],[-3,-1],[-2,-1],[-2,-1],[-1,-2],[-2,0],[-2,0]],[[7425,8011],[-1,4],[-2,4],[-2,1],[-2,1],[-2,2],[-1,2],[-4,9],[-3,4],[-2,1],[-1,2],[2,3],[1,2],[0,3],[-1,2],[-2,-1],[-2,-3],[-3,-4],[-4,-3],[-1,-2],[-2,-3],[-2,0],[-2,0],[-2,0],[-1,3],[-1,0],[-11,3],[-3,1],[-3,-1],[-1,1],[-1,2],[-2,5],[-2,4],[-2,5],[0,3],[0,3],[0,3],[-2,2],[-2,0],[-7,6],[-3,1],[-2,1],[-2,0],[-2,3],[-2,9],[-1,5],[-2,5],[-2,4],[-2,5],[-2,3],[-4,4],[-4,3],[-6,3],[-3,0],[-3,0],[-2,-2],[-2,-4],[-2,0],[-5,0],[-1,-1],[-1,-3],[-2,-3],[-3,-2],[-5,0],[-3,-1],[-3,0],[-5,3],[-5,0],[-3,-2],[-5,0],[-1,2],[1,3],[-1,3],[0,2],[-1,3],[-2,0],[-5,-1],[-2,2],[0,2],[1,3],[1,5],[0,2],[-3,0],[-2,0],[-1,3],[-1,3],[-2,0],[-2,0],[-2,-1],[-2,-3],[-1,0],[-2,-1],[-1,-1],[-1,-3],[1,-2],[0,-6],[-1,-3],[-2,-1],[-2,0],[-1,-1],[-3,-3],[-1,-1],[0,-2],[-1,-3],[-2,1],[-3,11],[-4,12],[-5,12],[-2,7],[-9,21],[-4,11],[-8,17],[-7,17],[-8,16],[-4,10],[-5,10],[-2,3],[-2,3],[-7,7],[-9,10],[-9,9],[-7,7],[-1,3],[-1,1],[-1,2],[-1,4],[0,2],[7,-1],[1,3],[2,8],[2,7],[-3,-1],[-4,-3],[-2,-2],[-1,-1],[-6,-1],[-4,-3],[-7,-5],[-5,-3],[-1,-1],[-6,-1],[-1,-1],[0,-3],[-1,-3],[-4,-4],[-5,-4],[-2,0],[-3,1],[-1,-1],[-4,-4],[-7,-6],[0,-3],[0,-3],[-1,-2],[-1,-1],[-2,2],[-2,3],[-4,2],[-6,0],[-4,-1],[-2,-1],[-5,-6],[-2,-2],[-1,1],[0,3],[-1,2],[-1,3],[1,6],[2,6],[4,4],[4,3],[1,4],[0,3],[-1,1],[-2,0],[-1,-1],[-2,-3],[-3,-2],[-3,0],[-2,0],[-3,1],[-5,7],[-5,1],[-3,1],[-2,-1],[0,-2],[0,-2],[1,-2],[0,-1],[-2,-1],[-2,-2],[-1,1],[-1,5],[0,4],[-2,4],[-1,5],[-3,3],[-2,-1],[-1,-5],[-2,-1],[-3,1],[-6,-3],[-9,-1],[-7,3],[-1,3],[3,6],[0,5],[0,5],[1,4],[-2,6],[-4,14],[-2,10],[-3,8],[-2,2],[-7,-1],[-2,-2],[-1,-2],[-2,-2],[-3,-1],[-3,1],[-3,1],[-3,3],[-3,3],[-7,3],[-7,1],[-8,1],[-3,-2],[-4,-3],[-5,-5],[-3,-1],[-3,-1],[-3,-1],[0,-3],[1,-3],[-1,-3],[-1,-2],[-3,-1],[-3,0],[-4,-1],[-3,-4],[-6,-1],[-6,-1],[-5,-2],[-9,-3],[-6,-2],[-9,-2],[-8,-1],[-1,2],[-5,-4],[-7,0],[-1,-2],[-2,-1],[-1,-1],[-3,-2],[-1,-4],[-1,-5],[-2,-1],[-2,1],[-2,2],[-3,-2],[-5,-1],[-3,1],[-2,1],[-7,-2],[-4,-2],[-1,-2],[-1,-1],[-4,-1],[-4,0],[-4,-1],[-4,-2],[-4,-1],[-2,0],[-2,-2],[-2,-2],[-12,-2],[-1,-1],[-3,-2],[-12,-1],[-1,-1],[-1,-2],[-1,0],[-10,3],[-7,3],[-3,-2],[-2,-3],[-1,-5],[0,-4],[0,-3],[-1,-3],[-3,-3],[0,-2],[4,-2],[4,-2],[2,1],[2,1],[2,0],[1,-2],[1,-1],[-1,-2],[0,-1],[-3,-1],[-3,0],[-2,-1],[-1,-2],[-1,-4],[1,-3],[3,-1],[4,-2],[4,-1],[2,1],[3,-3],[7,-4],[2,-3],[0,-3],[-1,-2],[-2,-2],[-3,1],[-4,1],[-5,0],[-4,1],[-5,0],[-5,-1],[-1,-2],[-2,-5],[-1,-2],[-3,-4],[0,-4],[1,-6],[4,-10],[1,-4],[-2,-3],[-3,-3],[-4,-4],[-5,-1],[-2,-1],[-6,-6],[-4,-2],[-1,-3],[1,-2],[6,-4],[3,-3],[1,-4],[1,-3],[5,-2],[9,-5],[1,0],[0,-2],[10,-3],[1,-2],[4,-5],[1,-5],[-2,-6],[-1,-8],[-2,-8],[-5,-5],[-8,-4],[-8,-2],[-4,0],[-2,1],[-4,1],[-3,4],[-2,4],[-1,1],[-2,-1],[-1,-2],[-2,-7],[-2,-6],[-2,-2],[-6,-3],[-1,1],[1,4],[-1,2],[-1,0],[-8,2],[-3,1],[-2,1],[-3,1],[-2,2],[-4,8],[-3,6],[-6,5],[-4,1],[-1,-1],[-3,0],[-6,2],[0,-1],[-2,-2],[-1,-4],[-2,-3],[-3,-2],[-3,0],[-4,3],[-3,5],[-5,2],[-5,-1],[-1,-1],[-5,-3],[-1,2],[-2,0],[-5,-4],[-5,-6],[-1,-4],[-2,-3],[-3,-4],[-4,-3],[-3,-1],[-4,1],[-5,4],[-4,5],[-5,7],[-5,4],[-3,3],[-3,1],[-2,-1],[0,-3],[0,-2],[1,-2],[1,-5],[0,-7],[0,-4],[-1,-3],[-1,0],[-1,0],[-2,2],[0,6],[-1,6],[-3,7],[-3,5],[-2,3],[-2,4],[-3,3],[-5,3],[-2,2],[-5,8],[-2,3],[-3,2],[-3,1],[0,-1],[-5,-1],[-4,0],[-2,2],[-3,0],[-3,-1],[-1,0],[-2,2],[-2,5],[-3,5],[-3,1],[-6,-2],[-6,-7],[-5,-4],[-4,0],[-2,-1],[-1,1],[-2,1],[0,2],[0,4],[-3,3],[-4,2],[-4,2],[-3,0],[-1,-3],[-3,-5],[-3,-5],[-5,-7],[-1,-3],[-2,-2],[-4,-2],[-5,-3],[-3,-4],[-4,-2],[-5,-1],[-2,-3],[-1,-5],[-2,-5],[-7,-7],[-4,-5],[-3,-3],[-2,1],[-2,0],[-1,0],[1,-4],[1,-11],[2,-7],[0,-4],[1,-4],[1,-5],[-1,-2],[-1,-2],[-5,-4],[-4,-2],[-3,2],[-3,4],[-1,2],[-4,7],[-5,11],[-4,5],[-3,3],[-3,-1],[-2,-3],[-2,-2],[-1,-3],[-1,-3],[0,-4],[0,-5],[-1,-3],[-3,-4],[-4,-5],[-3,-9],[-2,-11],[-1,-8],[2,-3],[3,-3],[1,-3],[1,-3],[-1,-3],[-1,-4],[-3,-4],[-4,-9],[-3,-13],[2,-10],[5,-5],[4,-2],[2,-3],[1,-6],[0,-6],[0,-4],[1,-5],[2,-4],[2,-3],[3,1],[2,2],[4,-1],[9,-1],[5,-1],[1,-2],[3,-7],[4,-8],[4,-8],[1,-3],[4,-9],[3,-9],[3,-10],[0,-3],[-2,-1],[-3,0],[-2,2],[-1,1],[-1,0],[-2,0],[-1,-1],[0,-2],[0,-3],[1,-3],[1,-1],[1,-1],[4,-3],[5,-4],[7,-6],[1,0]],[[6367,7853],[0,-3],[-3,0],[0,-4],[-1,-2],[-8,-5],[-2,0],[-1,-1],[0,-3],[0,-3],[2,-3],[-1,-2],[-1,0],[-2,1],[-1,2],[-1,0],[-2,0],[-6,-9],[-3,-3],[-3,-1],[-6,-3],[-2,0],[-2,1],[-1,-1],[0,-5],[-2,3],[-2,3],[-1,0],[1,-5],[1,-4],[-1,-2],[-1,-2],[0,-1],[-2,-1],[0,-7],[-1,-5],[-2,-4],[-2,-7],[-2,-3],[-1,-4],[-1,-5],[-1,1],[-1,3],[-1,-3],[0,-3],[-3,-4],[-3,-3],[-1,-6],[0,-3],[0,-3],[1,-2],[5,-2],[3,-2],[2,-5],[3,-4],[2,-5],[2,-6],[2,-13],[1,-13],[3,17],[2,2],[-1,-4],[-1,-7],[-2,-10],[0,-7],[0,-7],[0,-3],[-1,-10],[1,-2],[1,-2],[3,-4],[2,-5],[0,-8],[1,-2],[2,-2],[7,-15],[4,-10],[2,-5],[2,-8],[2,-1],[1,-2],[3,-3]],[[6349,7594],[-2,-4],[-2,-6],[-1,-4],[-3,-3],[-4,-4],[-3,-1],[-2,-7],[-3,-7],[-2,-1],[-6,1],[-2,1],[-5,3],[-2,1],[-1,9],[-2,3],[-2,2],[-2,2],[0,2],[-2,3],[-3,4],[-2,4],[-2,1],[-2,-1],[-1,-1],[-1,1],[0,3],[-3,2]],[[6289,7597],[-4,4],[-2,1],[-1,0],[-4,1],[-2,2],[-1,2],[-2,2],[-3,3],[-3,3],[0,1],[1,8],[2,6],[-1,2],[-1,1],[-3,1],[-6,-1],[-4,7],[-1,2],[-3,1],[-3,2],[-2,1],[-1,0],[-2,-8],[-2,6],[-2,1],[-1,1],[-2,0],[-5,-3],[-4,-2],[-3,-3],[-2,-1],[-2,-1],[-3,0],[-2,1],[-1,1],[1,3],[1,2],[0,2],[0,1],[-5,3],[-2,3],[-6,3],[-7,5],[-2,3],[0,3],[-3,2],[-4,2],[-3,0],[-2,-1],[-4,4],[-4,1],[-5,-2],[-1,0],[-1,-1],[-13,2],[-3,3],[-3,4],[-7,2],[-4,3],[-4,3],[-5,3],[-3,-1],[-5,2],[-5,1],[-2,-1],[-2,-4],[-1,-3]],[[6110,7685],[-3,3],[-10,14],[-5,10],[-17,23],[-2,1],[-9,4],[-4,2],[-9,16],[-4,-2],[-4,1],[-2,1],[-2,2],[-2,4],[-2,6],[-2,4],[-7,6],[-9,3],[0,1],[0,2],[7,4],[2,2],[-4,3],[-1,1],[-2,1],[2,2],[2,1],[4,-2],[3,-5],[3,-2],[2,3],[10,3],[1,3],[0,4],[-1,0],[-1,0],[0,4],[2,5],[5,9],[2,11],[2,3],[2,-2],[0,-2],[0,-2],[2,3],[1,6],[4,0],[2,-1],[3,1],[-5,8],[-7,9],[-3,-1],[-1,2],[-3,7],[-2,6],[3,0],[3,-1],[5,4],[2,1],[3,-2],[5,0],[0,3],[-2,5],[5,4],[5,2],[9,6],[4,1],[1,2],[0,2],[-1,5],[-2,4],[-5,1],[-2,-6],[-7,-2],[-4,1],[3,3],[2,2],[1,1],[-5,-1],[-3,-4],[-7,-5]],[[5882,8185],[0,1],[-2,6],[-1,2],[-2,1],[0,2],[0,6],[0,7],[1,0],[-3,5],[0,4],[1,2],[0,2],[-1,2],[-2,4],[-3,4],[-1,3],[-1,1],[1,3],[2,5],[0,2],[1,1],[4,0],[3,0],[2,-1],[1,-2],[2,-2],[6,-1],[2,0],[3,2],[5,5],[1,3],[3,3],[2,0],[2,1],[0,2],[0,3],[-1,1],[-6,6],[0,2],[-1,2],[1,2],[0,2],[-7,6],[-6,0],[-5,0],[-2,1],[1,3],[1,4],[1,4],[-1,2],[0,1],[-5,4],[-6,4],[-3,6],[-2,6],[-1,3],[-3,2],[0,2],[2,5],[0,1],[-1,1],[-4,3],[-5,5],[0,2],[0,3],[1,3],[1,1],[3,7],[0,2],[-1,3],[-2,5],[-2,3],[0,1],[1,2],[1,1],[1,3],[0,7],[0,3],[-1,1],[0,1],[-2,-1],[-2,2],[-2,1],[-1,1],[-1,2],[-3,4],[-1,1],[-6,3],[-5,0],[-3,0],[-2,0],[-1,-2],[-2,-2],[-2,0],[-2,-1],[-4,-4],[-2,2],[-1,4],[0,3],[1,2],[0,2],[-1,2],[-2,1],[-6,4],[-1,0],[-2,-2],[-5,-3],[-1,1],[-2,2],[-1,4],[-2,2],[-4,-1],[-1,0],[-2,-2],[-1,1],[-4,5]],[[5781,8418],[1,2],[1,4],[0,3],[-1,5],[-2,7],[0,2],[-3,3],[0,2],[-1,4],[-2,2],[0,5],[-1,1],[-1,1],[-4,-1],[-1,0],[2,8],[0,4],[2,5],[1,2],[0,1],[1,3],[-1,3],[0,1],[-4,3],[-4,4],[0,4],[-2,1],[-3,0]],[[5759,8497],[0,2],[1,3],[1,3],[2,4],[1,2],[0,2],[6,2],[1,1],[0,1],[0,1],[-2,1],[-1,2],[-1,4],[-2,7],[-2,5],[0,3],[0,3],[1,3],[0,4],[-3,17],[0,3],[1,3],[2,3],[3,3],[3,6],[3,8],[1,5],[1,1],[3,0],[0,2],[1,1],[2,1],[0,1],[0,1],[-2,3],[-1,2]],[[5778,8610],[1,4],[-1,5],[0,5],[1,3],[2,0],[2,-3],[3,-2],[3,2],[1,5],[2,2],[2,-2],[4,0],[3,0],[3,1],[0,1],[1,3],[2,3],[2,3],[15,-3],[12,-5],[1,2],[1,3],[-4,3],[-2,1],[-3,6],[-4,4],[-4,0],[-6,-1],[-8,1],[-7,8],[-5,2],[-3,7],[-1,3],[3,-3],[1,3],[0,4],[-2,2],[-2,2],[-9,-6],[-10,-2]],[[5772,8671],[9,12],[8,8],[1,2],[3,2],[3,2],[2,4],[7,6],[7,7],[7,9],[2,3],[3,3],[7,9],[2,3],[8,12],[5,6],[2,3],[11,12],[7,9],[2,5],[3,7],[2,5],[2,6],[0,2],[0,2],[-2,3],[-3,3],[-3,5],[-1,3],[-6,6],[-9,7],[-7,5],[-10,10],[-1,3],[0,1],[6,3],[5,8],[3,4],[0,4],[0,3],[0,4],[-1,2],[-2,2],[-8,5],[-2,5],[-2,4],[0,2],[4,5],[0,3],[0,2],[-1,2],[-8,2],[-3,3],[-1,4],[-1,3],[0,2],[0,2],[3,2],[2,2],[1,2],[0,2],[-1,1],[-5,2],[0,1],[0,1],[3,4],[0,8],[3,5],[-3,4],[4,2],[5,0],[1,1],[1,3],[-1,3],[-4,14],[-1,4],[-3,4],[-2,4],[-1,2],[-3,5],[-1,5],[-2,5],[-3,5],[-2,4],[-5,9],[-1,3],[0,2],[0,2],[5,7],[4,6],[5,8],[5,5],[5,7],[1,7],[0,2],[-4,3],[-8,10],[-5,8],[-8,3],[-11,4],[-3,10],[-3,8],[1,2],[7,14],[1,2],[0,2],[-1,1],[-1,0],[-7,1],[-1,2],[4,1],[3,2],[6,3],[2,0]],[[5804,9159],[4,2],[2,1],[1,2],[4,10],[1,1],[12,4],[5,2],[2,2],[1,2],[1,2],[1,2],[0,3],[-1,2],[1,1],[1,0],[4,-3],[7,-3],[5,0],[2,0],[1,1],[0,3],[0,3],[-1,7]],[[5857,9203],[5,-1],[11,-4],[3,0],[3,2],[3,5],[3,1],[3,-1],[1,1],[-2,5],[1,2],[11,-5],[5,-3],[10,-4],[2,-1],[0,-3],[0,-3],[-2,-1],[-5,0],[-16,4],[-2,-2],[2,-3],[4,-2],[2,-4],[7,0],[7,-1],[3,0],[1,-1],[-3,-4],[1,-1],[8,4],[4,1],[2,-1],[0,-3],[-1,-4],[0,-3],[-3,-6],[-3,-2],[-2,-3],[5,2],[3,2],[5,9],[2,1],[15,0],[4,0],[14,-5],[4,0],[5,0],[1,2],[2,1],[15,-5],[22,-11],[30,-18],[18,-16],[2,-3],[6,-2],[2,1],[3,-1],[21,-14],[7,-1],[-1,3],[-2,3],[2,-1],[3,-2],[3,-6],[5,-4],[5,-6],[4,-3],[4,-1],[3,-1],[5,-2],[3,-16],[2,-3],[0,-7],[4,-3],[2,0],[0,-5],[-2,-12],[-2,-5],[-19,-22],[-12,-8],[-22,-10],[-18,-4],[-7,0],[-14,2],[-7,2],[-10,5],[-8,3],[-6,1],[-11,1],[-24,5],[-4,2],[-15,10],[-6,-2],[-4,-1],[-2,4],[1,1],[0,1],[-8,3],[-7,0],[-4,3],[-4,1],[-2,-1],[-2,0],[-9,5],[-4,4],[-4,6],[1,2],[1,2],[-15,4],[-14,0],[3,-2],[6,-1],[4,-2],[4,-4],[-1,-5],[6,-5],[5,-5],[0,-1],[2,-1],[7,-2],[1,-4],[-1,-2],[1,-2],[5,-3],[3,-1],[4,-1],[-1,-4],[-4,-2],[-3,-1],[2,-1],[4,1],[15,-6],[8,-5],[8,-10],[3,-6],[0,-2],[-1,-3],[-1,-3],[0,-3],[-3,-9],[-2,-3],[-4,-4],[4,-6],[3,-7],[4,-10],[1,-4],[0,-7],[3,-2],[-1,-1],[-1,-2],[0,-9],[5,-7],[7,-4],[4,-1],[6,2],[4,-3],[9,-8],[5,-9],[2,-2],[9,-3],[7,-2],[12,-5],[1,-1],[6,5],[9,3],[3,5],[0,3],[-3,7],[0,7],[-3,2],[-3,2],[-9,-1],[-4,0],[-3,2],[-4,4],[-7,12],[-4,3],[-2,3],[-1,3],[0,5],[4,0],[3,3],[3,11],[5,1],[2,0],[11,-5],[13,-13],[3,-2],[3,0],[5,0],[1,-1],[3,-2],[2,-1],[12,-4],[14,-8],[6,0],[2,5],[0,2],[6,4],[4,1],[6,-1],[1,1],[-2,7],[-3,6],[-4,3],[-6,11],[-3,6],[-1,5],[0,5],[1,4],[15,9],[5,5],[5,7],[2,2],[8,2],[11,5],[9,8],[8,12],[4,3],[3,0],[4,-2],[4,-3],[5,-1],[6,1],[6,-1],[9,-5],[2,-2],[1,-2],[-3,-5],[0,-3],[2,2],[3,0],[3,-1],[3,-2],[2,-3],[2,-2],[1,3],[1,3],[-2,7],[4,10],[2,4],[5,11],[-1,7],[0,8],[-1,4],[-3,6],[-6,4],[-6,1],[-2,4],[0,4],[2,6],[5,14],[5,18],[0,5],[0,2],[0,2],[-1,6],[-1,4],[-21,17],[-1,1],[-1,2],[2,1],[2,0],[16,-8],[3,0],[26,2],[12,-2],[10,-4],[8,-11],[7,-10],[7,-8],[0,-7],[-7,-2],[-7,0],[-18,-3],[-4,-4],[-12,-13],[-1,-3],[1,-4],[5,-4],[12,-5],[5,-12],[4,-5],[3,-3],[2,0],[6,0],[5,-2],[1,-1],[1,1],[4,1],[23,6],[4,3],[2,3],[1,14],[2,4],[2,6],[-1,4],[0,4],[11,3],[11,3],[5,-1],[1,3],[-3,6],[-2,2],[2,1],[2,-1],[3,-1],[6,1],[21,11],[9,7],[5,2],[8,6],[4,2],[6,0],[7,3],[8,4],[11,4],[1,0],[2,-1],[5,-4],[-2,-2],[-1,-3],[2,-1],[2,-1],[2,1],[2,1],[5,3],[2,3],[-2,2],[-3,5],[-3,1],[-3,0],[10,7],[20,10],[11,5],[11,0],[8,0],[-3,-2],[-14,-2],[-2,-1],[0,-2],[3,0],[2,-2],[-2,-2],[-1,0],[-1,-6],[-2,-4],[4,-6],[0,-5],[-2,-3],[-4,1],[-4,-2],[-6,-2],[-1,-2],[-1,-2],[4,-1],[3,0],[11,-1],[1,0],[4,1],[4,1],[4,0],[3,1],[2,-1],[4,-5],[4,1],[2,10],[6,6],[8,5],[7,1],[7,3],[3,1],[7,-2],[9,0],[8,-3],[6,-1],[9,5],[20,15],[2,-3],[3,4],[16,5],[4,0],[0,-1],[1,-5],[3,-3],[5,-6],[-2,-2],[-3,-1],[-3,-4],[0,-10],[6,-2],[8,-3],[3,0],[3,1],[1,1],[1,2],[1,3],[0,2],[-2,5],[1,6],[7,0],[10,1],[4,4],[5,6],[3,5],[-2,9],[-6,-2],[-9,20],[-4,8],[3,4],[8,2],[7,7],[2,2],[3,0],[21,-5],[24,-1],[20,-4],[23,-8],[12,-6],[9,-6],[-1,-5],[4,2],[8,-4],[6,-2],[5,-2],[2,-3],[8,-3],[8,-4],[1,-1],[10,-3],[6,-1],[5,-7],[13,-10],[3,-4],[12,-6],[6,-5],[3,2],[9,12],[6,15],[3,7],[-6,1],[-5,-3],[-2,1],[-4,2],[-5,6],[-7,10],[-1,10],[-2,4],[-6,3],[-4,3],[-16,6],[-3,-2],[0,-4],[-1,-2],[-2,3],[-1,3],[0,5],[1,6],[2,10],[4,-1],[2,1],[3,5],[-1,4],[-2,2],[1,5],[2,11],[1,14],[-2,4],[-2,2],[-9,-2],[-3,1],[-1,2],[0,3],[3,3],[2,6],[-4,-1],[-2,2],[4,3],[4,9],[10,3],[7,4],[12,8],[9,8],[5,9],[4,10],[6,21],[6,16],[10,17],[6,1],[2,0],[1,-1],[-2,-1],[0,-2],[2,-1],[5,0],[8,1],[13,-1],[23,2],[4,-1],[8,-5],[5,1],[10,-3],[5,-2],[5,-3],[-1,-12],[-1,-8],[-3,-16],[-2,-3],[-5,-11],[-3,-8],[-4,-5],[-6,-3],[-1,-2],[0,-3],[6,-9],[13,-9],[4,-11],[1,-8],[-1,-21],[-2,-3],[-2,-3],[-3,-4],[2,-6],[2,-22],[0,-18],[-1,-6],[-1,-13],[0,-4],[1,-7],[3,-5],[4,-4],[10,-6],[10,-7],[1,-3],[1,-3],[-4,-3],[-6,-8],[-3,-6],[0,-5],[1,-7],[-1,-6],[-2,-6],[-3,-4],[-10,-6],[-21,-34],[-5,-4],[-8,2],[2,-5],[3,-7],[0,-4],[-6,0],[-8,-5],[-3,-3],[-6,-2],[-5,2],[-5,3],[1,3],[1,1],[4,2],[3,2],[-2,1],[-1,0],[-4,-4],[-4,0],[-6,4],[-4,4],[-2,1],[-3,-2],[-15,1],[-4,-1],[-2,-1],[1,-2],[2,-2],[1,-5],[1,-3],[6,-4],[8,-2],[8,-5],[10,-3],[23,1],[5,0],[6,-1],[10,-5],[4,0],[7,4],[2,10],[1,4],[26,14],[4,3],[8,8],[3,5],[2,14],[3,5],[17,16],[2,4],[1,8],[-1,5],[-1,5],[-3,8],[-3,5],[-3,7],[2,13],[3,6],[15,6],[13,2],[14,5],[6,1],[4,-1],[4,-5],[4,-7],[10,-10],[4,-7],[0,-9],[0,-22],[-2,-9],[4,-3],[2,-2],[5,-3],[3,-3],[3,-1],[6,-1],[16,1],[10,1],[-1,1],[-2,1],[-8,1],[-11,2],[-15,4],[-2,9],[0,6],[4,10],[2,2],[3,1],[4,1],[-1,7],[-2,6],[-3,9],[-4,16],[-5,0],[-4,3],[-19,9],[-18,7],[-12,1],[-4,-1],[-10,-7],[-7,-2],[-12,3],[-11,-1],[-4,1],[-1,4],[3,12],[-2,5],[-5,7],[-2,5],[0,5],[7,22],[3,5],[8,10],[3,8],[-1,4],[-16,24],[-4,9],[-2,2],[-4,4],[-6,3],[-2,4],[17,23],[7,4],[10,2],[5,3],[9,4],[5,4],[2,3],[1,4],[0,9],[-1,7],[-1,5],[-3,5],[-3,6],[2,1],[2,1],[6,0],[6,-3],[3,-7],[3,-6],[0,-4],[0,-3],[2,-4],[1,-2],[1,-3],[-1,-3],[-1,-1],[-3,-3],[-4,-11],[-4,-1],[-1,-9],[8,-9],[-1,-7],[-2,-2],[-4,-4],[1,-3],[1,-2],[11,-4],[10,-3],[18,-1],[5,-4],[2,3],[17,-1],[13,-11],[7,-3],[6,-1],[11,1],[2,1],[2,3],[-5,0],[-3,-1],[-2,0],[-4,1],[-2,2],[-3,3],[-5,11],[-9,3],[-5,-1],[-6,0],[-11,6],[-6,2],[-13,6],[-3,3],[-3,5],[-3,8],[-2,5],[3,1],[8,4],[13,2],[5,-2],[13,-9],[7,-1],[11,5],[1,2],[-2,5],[-4,3],[-6,1],[-8,-2],[-2,2],[0,3],[1,2],[5,0],[3,2],[6,6],[7,3],[7,1],[26,-1],[15,-9],[15,-4],[6,-3],[2,-1],[1,-2],[1,-5],[18,-13],[5,-1],[11,-1],[13,3],[6,0],[6,-1],[4,-1],[3,-3],[-2,-4],[-1,-2],[-4,-7],[-1,-2],[-12,-7],[-5,-2],[-1,-9],[-1,-2],[0,-4],[2,-7],[0,-4],[-1,-6],[-3,-6],[0,-5],[1,-7],[1,2],[-1,3],[1,4],[6,8],[4,12],[4,3],[3,1],[4,-4],[1,-4],[0,-7],[0,-7],[-3,-10],[-5,-7],[-2,-4],[2,-3],[3,-3],[3,-1],[3,0],[1,1],[0,3],[-1,3],[0,4],[6,2],[6,2],[4,4],[1,3],[1,4],[-2,7],[-2,6],[-7,13],[-5,6],[3,10],[6,11],[2,3],[0,2],[1,3],[-1,3],[0,2],[-6,8],[-4,3],[-12,1],[-3,2],[-9,8],[-1,2],[-2,6],[-1,2],[-2,1],[-9,4],[-5,1],[-9,1],[-5,1],[-8,6],[0,2],[-3,7],[-1,4],[0,3],[3,5],[2,6],[-2,4],[-4,1],[-3,2],[-2,4],[-1,5],[0,3],[0,4],[1,3],[4,4],[-1,2],[1,3],[24,4],[10,1],[48,1],[3,1],[21,2],[9,2],[10,-2],[3,0],[7,1],[4,5],[11,2],[17,2],[8,0],[2,-2],[2,-2],[-9,-6],[-10,-6],[-7,-2],[-8,-5],[0,-2],[-1,-1],[1,-4],[0,-3],[8,-3],[6,-4],[5,-3],[5,-2],[1,1],[-16,10],[-5,2],[-1,3],[0,4],[2,1],[3,2],[1,1],[7,2],[20,3],[5,5],[2,3],[6,3],[-2,1],[-5,1],[-3,2],[-14,18],[-4,3],[-11,2],[-5,2],[5,6],[6,2],[4,0],[4,-2],[6,-5],[9,2],[-3,2],[-6,3],[-5,4],[-8,4],[-9,2],[-9,1],[3,6],[5,-1],[1,2],[3,3],[12,-8],[6,2],[5,4],[11,9],[1,4],[-5,3],[-4,1],[-6,0],[0,2],[2,3],[5,2],[14,-4],[23,9],[6,5],[16,6],[8,-1],[16,8],[23,3],[13,0],[11,4],[15,2],[6,2],[26,4],[14,3],[3,3],[-13,-2],[-3,2],[-3,-2],[-2,-1],[-6,3],[-2,-1],[-2,-2],[-2,0],[-2,0],[-1,4],[3,6],[3,-3],[5,4],[3,0],[8,-3],[5,3],[7,1],[8,-1],[3,0],[2,3],[13,-2],[9,1],[6,0],[10,-1],[4,-2],[-2,-4],[-10,-7],[3,-1],[5,3],[16,5],[3,-1],[-2,-4],[-1,-2],[10,2],[9,5],[4,1],[5,-3],[3,3],[1,3],[7,0],[3,3],[5,2],[4,1],[9,3],[3,-1],[6,-1],[5,-1],[11,-4],[1,-2],[2,0],[3,-3],[-3,-4],[-2,-6],[-4,-3],[2,0],[2,0],[4,4],[3,3],[-1,12],[-6,6],[-4,2],[-10,6],[-4,3],[-4,3],[2,2],[19,-3],[10,1],[11,0],[14,3],[6,-3],[7,0],[8,-2],[3,2],[-13,3],[-6,0],[-2,1],[2,4],[3,5],[-3,4],[-2,3],[-1,4],[2,5],[6,3],[3,4],[6,5],[30,18],[15,7],[6,1],[6,-1],[13,6],[4,0],[18,-5],[4,-3],[9,-2],[12,-2],[5,-2],[2,-2],[2,-4],[-9,-2],[-9,-6],[-14,-4],[-16,-2],[-3,-2],[31,-1],[9,1],[2,-6],[3,0],[9,2],[5,1],[10,-2],[2,1],[5,0],[9,-3],[4,-3],[-6,-6],[-7,-6],[-9,-9],[-2,1],[-5,0],[1,-4],[8,0],[4,-2],[9,2],[13,0],[2,0],[5,3],[2,5],[2,4],[4,1],[5,-1],[8,0],[20,1],[17,-2],[14,3],[18,-2],[7,-2],[6,-4],[5,-1],[5,-3],[4,-4],[-2,-4],[-2,-2],[5,3],[5,0],[3,-1],[6,-2],[1,-9],[2,-2],[1,-3],[-2,-3],[-1,-2],[4,1],[6,3],[2,1],[1,2],[-2,3],[-2,1],[2,1],[6,0],[2,-4],[2,-4],[4,-13],[8,2],[0,-4],[-3,-9],[-4,-6],[-1,-2],[-2,0],[0,3],[-1,3],[-2,1],[-7,1],[-14,8],[-4,1],[-1,-1],[0,-1],[8,-5],[6,-9],[6,2],[2,0],[3,-5],[6,-1],[4,-3],[-3,-9],[-19,-16],[-20,-10],[-9,-6],[-16,-5],[-11,-6],[-15,-5],[-4,-5],[-11,-3],[1,-2],[1,-2],[-1,-3],[-2,-2],[-8,-5],[-12,-3],[-24,-20],[-12,-4],[-14,0],[-3,-2],[-10,-12],[-3,-2],[-14,-2],[-14,-20],[-8,-7],[-7,-3],[7,0],[9,3],[10,7],[2,3],[1,3],[3,3],[5,2],[17,2],[8,-1],[10,0],[7,4],[4,1],[4,1],[2,2],[6,1],[14,3],[3,1],[4,6],[9,-2],[6,1],[16,9],[9,3],[3,3],[-2,1],[-2,1],[-9,-3],[-9,-1],[-9,1],[-1,1],[-2,4],[3,4],[3,3],[6,4],[5,1],[18,-4],[4,0],[2,6],[6,0],[6,-1],[-3,-2],[-6,-2],[2,-5],[3,-3],[11,-5],[9,-2],[7,0],[11,2],[2,2],[2,4],[-2,7],[2,-1],[3,-2],[4,-4],[4,-8],[3,-3],[-2,-4],[-6,-7],[4,-4],[6,-3],[0,-11],[-1,-6],[-3,-6],[-3,-2],[-3,-4],[0,-4],[1,-2],[4,-4],[10,-2],[1,2],[-2,1],[-7,2],[-3,1],[-2,4],[3,4],[3,4],[3,7],[1,5],[0,5],[2,2],[3,3],[2,0],[2,1],[-3,2],[-2,0],[-5,3],[-1,5],[10,1],[6,3],[21,1],[14,6],[32,-2],[23,-4],[31,-1],[12,-3],[1,-1],[1,-2],[-5,-1],[-8,0],[-3,-5],[2,-7],[15,-8],[13,-3],[9,-5],[4,0],[19,0],[11,-2],[10,2],[11,0],[4,-1],[4,-3],[6,-1],[8,-1],[4,1],[2,1],[-1,2],[-6,2],[1,2],[2,1],[11,-4],[4,0],[4,3],[3,4],[2,4],[1,1],[2,1],[1,1],[-3,4],[-4,4],[0,4],[-1,1],[-1,6],[3,6],[2,2],[9,-2],[4,3],[2,2],[10,2],[5,0],[7,-3],[23,-11],[-1,-4],[5,1],[3,2],[6,1],[4,2],[1,-1],[2,-1],[-1,-3],[-2,-2],[1,-2],[1,0],[6,-3],[8,5],[4,6],[2,1],[19,-4],[6,-2],[2,-1],[0,-2],[4,-2],[4,-1],[-1,-2],[0,-2],[9,0],[4,-2],[4,-3],[0,-2],[1,-2],[4,0],[1,0],[-1,-4],[-6,-4],[-3,-2],[-4,-3],[2,0],[10,-1],[6,-5],[0,-5],[-3,-1],[-9,-5],[-5,-2],[-3,-1],[-3,0],[4,-3],[16,0],[4,-3],[4,-7],[0,-9],[-4,-4],[-9,-1],[-13,10],[-8,4],[-11,7],[-2,-1],[3,-6],[5,-4],[10,-9],[15,-19],[4,1],[2,3],[1,3],[-1,4],[2,-2],[3,-4],[4,-6],[-6,0],[-8,-2],[-3,-3],[2,-3],[6,-1],[3,-4],[4,-6],[11,-17],[7,-3],[7,-7],[7,-3],[4,0],[2,4],[2,-1],[2,-8],[4,-3],[3,-1],[3,2],[5,3],[4,5],[5,11],[4,6],[4,2],[-1,3],[0,3],[3,8],[3,9],[3,5],[6,10],[3,2],[2,-4],[1,-4],[1,-2],[1,0],[8,-9],[8,-6],[8,-4],[11,-3],[17,1],[3,4],[6,3],[9,2],[6,3],[9,2],[5,-1],[9,-3],[20,-9],[5,-3],[3,-3],[7,-6],[4,-2],[4,-2],[1,1],[0,1],[-2,1],[-2,2],[5,2],[0,2],[2,1],[6,1],[-6,2],[-2,0],[-3,1],[0,3],[2,2],[2,4],[2,2],[3,2],[2,0],[6,-2],[4,4],[3,0],[6,-5],[6,-6],[3,0],[9,2],[10,1],[-2,3],[-6,9],[0,10],[-4,3],[-6,1],[8,3],[6,8],[4,1],[5,2],[-1,1],[-15,1],[-3,-1],[-2,-3],[-7,0],[-1,6],[0,4],[9,8],[4,1],[24,0],[7,2],[10,4],[-3,2],[0,5],[-9,7],[1,2],[1,1],[2,0],[14,-2],[6,-4],[15,-4],[41,-1],[4,-1],[18,-2],[7,-2],[17,-2],[8,-2],[7,-2],[10,-2],[5,-2],[-1,-5],[-21,1],[-7,1],[-9,1],[-3,-1],[-6,-5],[-6,-2],[-5,0],[3,-4],[5,-1],[16,5],[43,2],[7,0],[-1,-3],[-6,-7],[-5,-5],[-8,-5],[-3,0],[6,11],[-3,0],[-2,0],[-7,5],[-1,0],[-1,-1],[0,-2],[-2,-6],[3,-3],[0,-4],[-10,-3],[-4,0],[-4,2],[-1,0],[-1,-2],[1,-2],[0,-2],[-2,-2],[0,-2],[2,-3],[3,-1],[17,3],[8,4],[8,6],[15,16],[6,6],[4,2],[4,1],[27,-2],[16,-4],[15,-5],[7,-4],[6,-6],[1,-2],[0,-3],[-4,-3],[-16,-1],[-7,-2],[-2,-2],[0,-1],[-1,-2],[1,-1],[8,0],[7,-1],[10,-4],[1,-1],[3,-4],[1,0],[15,0],[1,-1],[1,-2],[-4,-4],[-4,-3],[-8,-7],[4,3],[17,5],[4,1],[5,0],[12,-5],[5,-4],[9,-11],[-3,-2],[-6,-1],[20,-8],[8,0],[19,2],[9,0],[17,6],[17,3],[16,1],[8,3],[22,0],[22,-1],[16,-2],[18,-6],[18,-9],[11,-8],[2,-2],[3,-6],[1,-5],[2,-6],[-1,-6],[-3,-3],[-1,-5],[0,-5],[-3,-7],[3,-5],[8,-3],[17,-4],[5,-3],[0,-9],[2,-7],[1,-13],[3,-4],[5,-3],[1,-4],[-6,-15],[-4,-3],[-4,-4],[7,2],[4,5],[3,10],[4,1],[2,4],[0,9],[-2,8],[0,5],[1,5],[12,9],[6,4],[5,2],[16,2],[7,2],[9,-1],[5,1],[7,1],[6,0],[10,-7],[35,-1],[6,-2],[23,-3],[2,0],[5,3],[15,11],[7,-1],[2,-2],[3,-4],[3,-3],[2,-7],[2,-10],[3,-2],[5,-1],[10,-4],[10,-4],[3,-10],[5,-7],[13,0],[13,2],[13,13],[0,5],[-3,7],[-5,7],[-4,12],[-11,2],[1,3],[4,4],[4,6],[1,5],[-1,10],[10,-1],[11,-1],[20,-4],[16,-2],[9,-3],[5,-3],[6,-2],[2,5],[3,2],[8,-4],[6,-1],[10,1],[13,-2],[14,1],[13,2],[5,0],[5,-2],[8,-6],[15,-7],[13,-2],[15,-6],[14,-3],[11,-4],[2,-1],[0,-2],[1,-2],[9,-2],[16,-14],[4,-2],[0,-225],[-5,-2],[-5,-7],[-5,-6],[-9,-2],[-12,-9],[-5,-1],[-7,4],[-15,2],[-4,4],[-7,9],[-2,1],[-2,4],[-9,3],[-7,-2],[-6,2],[-2,-2],[3,-1],[6,-1],[8,1],[3,-1],[2,-3],[3,-5],[-2,-4],[-2,-1],[-7,4],[-8,-1],[-3,1],[-10,6],[-8,-6],[-11,-4],[-8,0],[-15,-6],[4,0],[11,4],[6,0],[10,2],[5,3],[2,2],[3,2],[4,-1],[2,-2],[1,-4],[2,-4],[-2,-3],[-2,-1],[-2,-3],[10,5],[6,-3],[3,1],[6,5],[9,3],[2,-1],[1,-1],[-2,-10],[1,-7],[7,-8],[7,-5],[3,0],[2,1],[1,4],[2,3],[2,-3],[2,-3],[3,-8],[0,-2],[-1,-4],[2,-2],[4,-1],[1,-7],[1,-10],[-2,-1],[-1,0],[-5,-3],[0,-1],[6,-1],[1,-2],[-1,-5],[0,-2],[2,-1],[1,3],[0,4],[0,2],[4,-8],[0,-4],[3,-3],[8,-6],[2,-2],[0,-4],[-2,-1],[-2,-3],[2,-4],[2,-3],[3,-1],[2,-6],[0,-5],[-3,-4],[-5,-6],[-3,-2],[-1,-4],[0,-5],[-3,1],[-2,1],[-26,11],[-10,2],[-9,1],[-1,0],[0,3],[0,2],[2,3],[-1,3],[-1,0],[-1,-2],[-3,0],[-2,2],[-2,0],[-1,-4],[0,-1],[0,-2],[1,-2],[5,-2],[-1,-2],[-7,-1],[-6,-2],[-7,-5],[-3,-4],[-20,-9],[-5,-4],[-2,0],[-2,-1],[-3,-4],[-10,-6],[-3,1],[-3,-5],[-2,-2],[-7,-1],[-4,-1],[-9,-7],[-5,3],[-7,-10],[-7,-8],[-2,0],[-5,3],[-2,-2],[1,-3],[2,-4],[-1,-1],[-2,1],[-2,0],[-1,-1],[0,-2],[-3,-4],[-2,0],[-3,-1],[-1,-3],[1,-3],[-5,-4],[-4,-5],[-2,0],[-2,-3],[-3,-1],[-3,0],[-6,-6],[-15,-12],[-5,-2],[-5,-3],[0,-3],[0,-3],[-3,-4],[-2,-13],[-1,-2],[-1,-2],[-5,1],[-5,5],[-2,2],[-1,2],[0,4],[-1,2],[-1,1],[-5,10],[-10,7],[-1,2],[-12,-2],[-4,0],[-5,2],[-9,-1],[-11,-4],[-4,-2],[-11,-4],[-7,-6],[-14,-20],[-4,-5],[-1,-1],[-3,0],[-1,4],[0,4],[1,6],[2,5],[1,10],[1,4],[1,4],[-5,-1],[-6,-7],[-10,-7],[-5,-1],[-4,-5],[-2,0],[-3,-2],[-1,-8],[-1,-5],[-2,-1],[-3,0],[-2,1],[-3,8],[-4,3],[-2,1],[-2,-1],[-3,-5],[-4,-4],[0,5],[-3,2],[-3,1],[-4,0],[-1,-1],[-1,-3],[-3,-3],[-2,-2],[-3,-3],[-1,-3],[-1,-4],[-2,-11],[0,-12],[-5,-10],[-2,1],[-1,-1],[-1,-1],[2,-6],[-1,-2],[-1,-1],[-2,-1],[-6,-8],[-5,-6],[-9,-15],[-3,-10],[-2,-11],[1,-6],[1,-3],[2,-3],[3,-2],[5,-3],[0,-2],[0,-2],[2,3],[2,8],[3,3],[2,-1],[12,-6],[2,-3],[0,-6],[-1,-2],[-2,-5],[-4,-5],[-5,-6],[-1,-5],[0,-2],[1,-8],[1,-5],[-1,-8],[0,-4],[2,-3],[2,-2],[3,1],[3,-1],[3,-2],[0,-7],[1,-7],[1,-12],[-2,-4],[-2,-2],[-4,-5],[-2,-1],[-4,2],[-6,10],[3,5],[5,4],[2,3],[2,4],[-3,0],[-2,-2],[-5,1],[-3,-2],[-2,-4],[1,-8],[-2,-1],[-4,-3],[-5,-3],[-2,-3],[-4,-14],[-4,-11],[-2,-9],[1,-8],[1,-8],[1,-4],[5,-8],[2,-7],[1,-8],[-4,-3],[-7,-9],[-2,-1],[-10,0],[-4,5],[-6,-2],[-4,-2],[-7,-6],[-6,-8],[-6,-6],[-2,-3],[-3,-7],[-2,-13],[1,-7],[1,-3],[1,-4],[-1,-6],[0,-4],[3,-6],[0,-8],[-2,0],[-5,6],[-5,0],[-12,-7],[-6,-4],[-5,-8],[-2,2],[-1,4],[-2,2],[-3,-1],[-1,-4],[4,-2],[1,-3],[-2,-10],[-2,-4],[1,-10],[0,-4],[-1,-5],[-4,-12],[-6,-16],[-8,-12],[-5,-4],[-3,-3],[-1,-4],[-8,-11],[-10,-12],[-3,-2],[0,4],[-1,4],[-1,6],[-4,5],[0,4],[-1,6],[0,25],[-3,26],[0,8],[-4,7],[-2,7],[-2,7],[0,8],[-4,42],[-1,11],[-6,34],[-2,20],[-2,19],[0,9],[2,25],[3,16],[7,36],[1,4],[1,1],[13,14],[6,8],[3,8],[4,10],[-1,5],[0,3],[-2,4],[-3,4],[1,2],[2,1],[3,2],[6,-3],[7,1],[6,13],[8,-2],[7,2],[2,-1],[1,4],[3,5],[7,7],[10,8],[5,5],[2,6],[4,5],[4,6],[7,18],[14,16],[6,9],[4,3],[4,1],[10,13],[7,10],[8,7],[3,5],[4,11],[2,3],[5,4],[13,7],[7,7],[11,1],[3,3],[3,1],[4,3],[-5,6],[1,3],[1,2],[8,7],[3,6],[-1,3],[0,1],[-5,3],[1,5],[1,5],[4,4],[1,10],[1,9],[3,15],[3,3],[8,7],[2,0],[6,-2],[7,-1],[2,-3],[1,2],[-1,3],[2,1],[4,-1],[-1,2],[-9,2],[-7,3],[-7,6],[-4,1],[-4,0],[-26,-8],[-1,-3],[-1,-3],[1,-5],[-1,-2],[-1,-1],[-2,-3],[-1,-6],[0,-6],[-3,-9],[0,-6],[6,-3],[1,-2],[-2,-4],[-1,-1],[-2,-3],[-1,-1],[-1,0],[-2,3],[-2,6],[-3,0],[-1,-1],[-1,-2],[-2,0],[-3,1],[-3,-1],[-6,-7],[-32,-33],[-3,-4],[-4,-8],[-8,-1],[-3,-1],[-3,-3],[-3,-2],[0,3],[1,3],[1,6],[4,11],[-3,1],[-2,0],[-5,-2],[-4,-4],[-2,1],[1,3],[3,7],[-1,6],[-1,3],[2,2],[6,12],[2,7],[2,8],[0,3],[0,3],[-2,0],[-1,0],[-13,-8],[-5,-2],[-1,3],[-3,2],[-3,6],[-3,1],[-3,-1],[-7,-4],[-8,-2],[-6,1],[-5,-4],[-2,0],[-8,2],[-9,0],[-3,-3],[-7,-4],[-6,-6],[-3,-2],[-3,-3],[-1,-12],[-4,-4],[-4,-3],[-8,-9],[-6,-13],[-3,-5],[-8,-8],[-13,-10],[-11,-16],[-4,-12],[-1,0],[-3,-3],[-1,-6],[0,-4],[-1,-3],[-2,-4],[2,-3],[1,-1],[3,1],[6,3],[11,-5],[5,-5],[0,-5],[0,-5],[-4,0],[-5,0],[-4,-3],[-6,5],[-3,-2],[-3,-5],[-7,-2],[-3,3],[-6,6],[-9,-1],[-2,-7],[-2,1],[-4,-1],[-5,-8],[-2,-1],[-7,1],[-5,5],[-2,0],[-4,-2],[-2,-5],[-11,-3],[-10,1],[-6,12],[11,5],[6,-1],[7,0],[8,4],[-3,3],[-2,1],[-4,-1],[-4,3],[-9,11],[-4,2],[-5,2],[-4,0],[-1,-1],[-2,-3],[-1,-3],[-1,0],[-3,0],[-3,2],[-4,0],[2,1],[3,2],[-6,2],[-3,3],[-4,1],[-15,6],[-6,0],[-4,-2],[-6,-6],[2,-4],[1,-2],[1,-2],[-2,0],[-6,-1],[-4,4],[-2,-5],[1,-4],[4,1],[2,-2],[-1,-5],[-6,-1],[-6,0],[-7,9],[-10,-2],[-5,-5],[-5,-1],[-13,5],[-7,1],[-7,4],[-3,-1],[-5,-12],[-6,-3],[-3,2],[-3,7],[-2,3],[-6,2],[-29,-2],[-10,2],[-8,0],[-9,-4],[-9,1],[-17,-7],[-7,-5],[-9,-9],[-7,-15],[-4,-5],[-8,-7],[-10,-6],[-5,-7],[-3,-5],[-5,-20],[-2,-3],[-12,-7],[-4,-8],[-1,-2],[-6,-4],[-3,-5],[-1,-2],[-8,-4],[-6,-10],[-8,-7],[-13,-19],[-1,-3],[-1,-5],[-1,-4],[-11,-17],[-3,-1],[-6,-8],[-5,-5],[-5,-5],[-6,-6],[-9,-7],[-3,-4],[-5,-9],[-12,-11],[-6,-3],[-8,-10],[0,-2],[-1,-3],[1,-7],[2,-1],[3,-1],[12,-6],[11,1],[9,0],[4,1],[2,0],[1,-4],[0,-6],[-2,-6],[-1,-16],[-1,-8],[1,-7],[2,-1],[3,3],[3,0],[4,-1],[3,12],[-3,1],[-2,5],[2,3],[6,5],[4,1],[4,-1],[-4,-7],[-2,-1],[-1,-1],[-2,-1],[4,-4],[4,-4],[6,-1],[-1,-2],[-4,-3],[-4,-9],[-6,-4],[-2,-3],[1,-2],[2,0],[11,1],[6,2],[8,7],[4,11],[3,3],[1,0],[1,-1],[0,-7],[-4,-9],[-3,-4],[-2,-4],[2,0],[4,0],[2,2],[4,10],[1,8],[0,10],[0,6],[0,4],[-1,4],[1,2],[11,-6],[6,-2],[11,5],[2,-1],[2,-3],[9,-9],[2,-3],[3,-11],[9,-12],[9,-6],[0,-2],[6,-7],[4,-3],[1,-6],[-2,-5],[-4,-5],[-8,5],[-2,0],[1,-3],[6,-8],[5,-4],[0,-10],[0,-6],[-4,-7],[1,-4],[5,-5],[2,-3],[2,-3],[-3,-7],[0,-8],[-3,-3],[-4,-8],[-5,-6],[-3,-12],[-4,-10],[0,-11],[-1,-3],[-4,-11],[-1,-15],[2,-24],[1,-1],[1,-2],[0,-1],[-1,-1],[-3,-7],[0,-5],[1,-4],[0,-10],[-2,-15],[-1,-2],[-1,-4],[0,-4],[-1,-2],[0,-4],[0,-3],[2,-2],[-5,-11],[-1,-14],[-2,-6],[-3,-6],[-7,-8],[-2,-5],[-4,-7],[-4,-5],[-6,-15],[-5,-14],[-11,-19],[-2,-4],[-1,-5],[-3,-9],[-1,-11],[-4,-5],[-3,-12],[-9,-19],[-2,-6],[-8,-10],[-7,-15],[-10,-12],[-2,-6],[-3,-6],[-4,-9],[-6,-8],[-1,-7],[-2,-4],[-4,-3],[-4,-3],[-9,-24],[-1,-4],[0,-3],[-7,-9],[-3,-9],[-6,-6],[-6,-8],[-15,-14],[-4,-5],[-9,-7],[-3,0],[-7,-4],[-5,-4],[-3,2],[-2,4],[-2,0],[-1,0],[-5,4],[-3,0],[-3,2],[-5,-1],[1,20],[-1,5],[-2,-4],[-5,-8],[-3,-1],[-2,0],[1,4],[3,7],[-1,1],[-1,0],[-4,-3],[-2,-3],[-6,-12],[-3,-10],[-3,-3],[-1,-4],[-3,-4],[-3,1],[-2,-1],[-6,3],[-1,-1],[3,-8],[-2,-11],[-2,-2]],[[6317,9841],[13,-3],[9,1],[3,0],[3,-1],[3,-1],[4,-4],[0,-5],[-2,0],[-16,2],[-7,5],[-2,1],[-3,-2],[-3,-3],[-3,0],[-3,-4],[-3,0],[-1,0],[-4,-3],[-9,0],[-2,-1],[-3,-4],[-3,-1],[-7,-1],[-2,3],[-1,3],[-2,1],[-9,-1],[-7,1],[-6,2],[-7,1],[6,2],[33,5],[13,1],[6,4],[10,2],[2,0]],[[6396,9845],[4,-1],[10,0],[4,-1],[15,-8],[3,-1],[4,-3],[-16,-5],[-5,-3],[-19,-1],[-12,-2],[-3,-1],[2,-3],[-6,-3],[-19,0],[-3,-1],[-3,-3],[0,-1],[6,0],[1,-1],[1,-1],[1,-2],[-1,-3],[-3,0],[-2,0],[-6,2],[-1,-1],[-1,-1],[-1,-3],[-3,-1],[-6,2],[-2,0],[-2,-2],[-2,0],[-6,-1],[-3,2],[3,2],[7,4],[-2,1],[-7,1],[-6,-1],[-3,-2],[-2,-1],[-7,0],[-4,3],[-3,2],[-3,2],[21,8],[7,3],[7,2],[8,1],[3,1],[3,0],[2,0],[4,-3],[13,0],[3,3],[0,5],[-1,4],[2,6],[8,3],[17,3],[4,0]],[[6882,9575],[-11,-4],[-7,-3],[-7,-3],[-6,-1],[-11,-4],[-18,-4],[-12,-4],[-12,-3],[-14,-4],[-13,-3],[-3,0],[-10,-4],[-7,-1],[-28,-9],[-12,-6],[-4,0],[-3,0],[-3,-2],[-3,-4],[-6,-3],[-3,-3],[-3,-2],[-2,-1],[-3,0],[-2,0],[-5,-3],[-1,-2],[6,-1],[1,-3],[-2,-2],[-4,-2],[-2,-2],[-4,-2],[-2,-1],[-7,0],[0,-3],[1,-2],[-1,-1],[-2,-2],[-2,0],[-10,5],[-2,-2],[0,-3],[-1,-3],[-1,-3],[-2,-1],[-3,-1],[-11,2],[-1,-2],[2,-3],[2,-5],[1,-2],[-1,-4],[-5,-6],[-19,-6],[0,-2],[2,-5],[1,-3],[-1,-2],[-2,-2],[-3,0],[-2,0],[-4,3],[-4,1],[0,-2],[5,-4],[2,-5],[-3,-2],[-9,-6],[-4,-8],[-9,-4],[-6,0],[-6,1],[-5,1],[-14,1],[-7,2],[-8,4],[-6,-1],[-6,-1],[-7,-4],[-5,7],[2,4],[-10,9],[-2,4],[2,2],[3,1],[6,3],[6,3],[6,1],[1,1],[3,4],[2,4],[3,2],[3,3],[9,13],[2,1],[18,3],[2,1],[-6,2],[-5,0],[-3,1],[-1,2],[-1,2],[2,2],[8,8],[8,6],[8,3],[-2,1],[-3,2],[-9,0],[-4,3],[-1,2],[0,2],[3,2],[3,2],[3,-1],[4,-1],[3,-1],[2,-3],[3,0],[8,9],[-1,2],[-1,3],[1,1],[4,1],[3,1],[6,-1],[9,-2],[0,1],[2,6],[2,3],[9,5],[-1,1],[0,3],[10,3],[7,3],[6,5],[3,1],[3,0],[7,2],[12,2],[7,2],[2,5],[5,2],[9,1],[3,-1],[2,-2],[4,0],[2,1],[1,2],[0,3],[0,4],[3,2],[1,1],[11,0],[6,0],[12,-3],[7,0],[8,0],[6,0],[15,4],[26,4],[7,3],[6,3],[4,1],[3,0],[3,1],[7,3],[3,1],[3,0],[3,2],[3,4],[2,3],[8,5],[14,5],[12,3],[7,2],[4,1],[10,-2],[13,-3],[6,-4],[4,-4],[2,-2],[0,-3],[-1,-3],[-1,-3],[1,-2],[-9,-7],[-10,-8],[-1,-1],[-11,-3]],[[6536,9406],[13,-2],[10,-1],[6,-2],[2,-1],[-1,-4],[-2,-1],[-4,-5],[0,-2],[0,-5],[0,-3],[-2,-3],[-1,-1],[-7,0],[-3,-1],[0,-3],[0,-2],[-3,-5],[-5,-1],[-1,-1],[1,-3],[-2,-2],[0,-4],[1,-1],[0,-4],[4,-5],[-1,-3],[-3,-4],[0,-5],[-3,-5],[5,-4],[2,-5],[2,-5],[6,-10],[6,-10],[12,-14],[12,-10],[4,-3],[12,-5],[2,-1],[2,-2],[-5,-4],[-5,-2],[0,-1],[-3,-1],[-14,3],[-1,0],[-1,3],[-2,2],[-3,0],[-4,-1],[2,-2],[2,-1],[4,-4],[-1,-2],[-2,0],[-8,6],[-1,-1],[-1,-2],[-4,2],[-1,-1],[-3,-1],[-2,2],[0,2],[-1,1],[-12,-2],[-5,0],[-6,1],[-6,3],[-1,-1],[0,-2],[-2,1],[-5,3],[-4,1],[-13,3],[-10,3],[3,2],[4,0],[0,2],[-1,3],[0,3],[2,2],[5,-1],[0,4],[2,0],[5,-2],[2,2],[-8,4],[-8,5],[1,2],[-3,1],[-3,0],[-3,3],[1,5],[2,3],[-1,0],[-13,-2],[-6,0],[-8,2],[-6,-2],[-7,-1],[-3,1],[-4,2],[-3,2],[-2,5],[-2,7],[0,3],[0,6],[1,3],[3,5],[2,2],[4,2],[3,1],[5,-2],[5,0],[2,2],[2,2],[2,3],[3,2],[1,1],[1,2],[1,3],[1,3],[1,3],[3,4],[-1,2],[0,2],[2,2],[-6,1],[-2,1],[-3,2],[1,2],[1,1],[6,5],[3,2],[3,1],[3,-1],[4,0],[3,1],[-4,3],[0,2],[-1,5],[0,3],[2,2],[3,2],[4,1],[3,1],[3,2],[4,1],[6,-2],[3,1],[3,1],[10,4],[4,1],[3,0],[5,-2],[6,-3]],[[7681,9854],[1,-3],[3,-2],[2,-2],[18,-7],[8,-1],[4,-1],[1,-2],[-1,-4],[-3,0],[-2,-1],[-12,-2],[-3,-2],[-3,-4],[2,-1],[1,-2],[4,-7],[1,-2],[3,-1],[-3,-3],[-3,-1],[-37,-4],[-25,-2],[-8,-1],[-3,0],[-7,-3],[-12,-4],[-6,0],[-18,6],[-23,4],[-3,3],[-5,1],[-7,1],[-3,5],[4,4],[6,3],[10,1],[9,2],[7,5],[4,5],[8,5],[-14,-1],[-5,1],[1,1],[3,4],[1,1],[5,2],[3,4],[9,2],[3,1],[4,-1],[7,2],[7,1],[7,1],[6,1],[7,1],[6,3],[3,5],[17,0],[3,-1],[2,-3],[3,-1],[3,0],[8,-5],[2,-1]],[[7712,9801],[7,-4],[3,-4],[-3,-1],[-3,-3],[-1,-3],[-4,-3],[-1,-4],[2,-1],[2,1],[4,4],[5,3],[6,-2],[2,1],[4,4],[0,3],[1,2],[2,1],[8,-1],[11,-1],[3,-2],[2,-1],[2,-2],[5,-1],[3,-1],[4,-3],[3,-4],[-4,-2],[-2,-4],[-1,-1],[-1,-2],[0,-3],[-1,-3],[-1,-2],[0,-1],[0,-5],[-1,-3],[-4,-3],[-4,0],[-6,2],[-2,0],[-2,-1],[8,-4],[6,-5],[6,-2],[2,0],[2,-6],[1,-2],[-11,-6],[-3,-1],[-17,-1],[-11,-2],[-4,0],[-6,2],[-4,-1],[-6,1],[-4,0],[-8,2],[-9,4],[-2,2],[-2,1],[-10,1],[-2,1],[-16,-1],[-2,1],[-5,5],[-3,0],[-8,-3],[-3,0],[-7,2],[-4,2],[0,1],[0,3],[-4,2],[-5,5],[-3,5],[-12,3],[-8,1],[-6,-1],[-5,3],[9,7],[12,4],[5,4],[6,4],[3,6],[10,4],[3,2],[4,3],[1,0],[8,-4],[2,1],[1,2],[3,2],[10,0],[8,-1],[4,1],[3,0],[20,2],[13,1],[2,0]],[[7857,9749],[-3,-5],[-1,-4],[-8,-13],[-1,-2],[5,2],[4,4],[3,4],[3,2],[3,0],[4,1],[6,3],[7,2],[4,0],[3,-2],[2,-3],[3,-3],[8,-2],[2,-1],[0,-2],[0,-3],[5,-2],[7,1],[3,-1],[4,-1],[2,-3],[1,-2],[1,-4],[1,-4],[0,-6],[-14,-8],[-2,-1],[-6,1],[-7,-1],[-16,-5],[-20,0],[-5,-4],[-2,0],[-2,1],[-1,1],[-12,-1],[-14,0],[-14,0],[-4,-3],[-14,-6],[-13,-4],[-6,-1],[-10,1],[-3,2],[-3,2],[4,2],[3,6],[4,3],[10,6],[1,2],[1,6],[2,1],[1,2],[1,3],[0,3],[1,3],[4,4],[2,2],[3,0],[7,0],[3,0],[-2,1],[-1,5],[0,2],[1,3],[2,1],[2,1],[1,5],[-1,1],[3,2],[1,3],[3,1],[7,2],[0,3],[1,2],[2,1],[3,0],[2,0],[2,-3],[3,-3],[3,0],[4,0],[-3,3],[1,4],[1,2],[1,1],[4,0],[10,-2],[7,-4],[2,-2],[-1,-1],[-3,0],[-2,-1]],[[8889,9551],[3,-1],[4,1],[3,-1],[3,-7],[1,-1],[2,-1],[1,-1],[5,0],[2,1],[1,3],[0,3],[0,3],[0,4],[0,3],[1,2],[2,2],[7,4],[5,4],[7,-2],[8,-3],[12,-8],[6,-3],[7,-2],[7,0],[4,0],[7,2],[3,0],[44,-16],[1,-1],[2,-2],[-9,-2],[-7,-4],[-2,-3],[3,-3],[2,-3],[-14,-9],[-5,-3],[-5,-1],[-11,3],[-7,-1],[-6,2],[-7,6],[-3,3],[-2,4],[-1,7],[1,5],[4,2],[3,3],[0,2],[-1,3],[-11,0],[-7,-1],[-6,-2],[2,-12],[1,-4],[2,-2],[10,-13],[2,-1],[6,-3],[6,-5],[-10,-6],[-4,-2],[-4,-1],[-3,1],[-2,1],[-3,3],[-3,3],[-3,2],[-6,0],[-7,-2],[-6,-2],[-18,-2],[-5,-2],[-6,0],[-7,3],[-7,4],[-2,0],[-2,-1],[-2,-3],[-1,-4],[-2,-5],[-3,-3],[-3,-2],[-3,0],[-3,1],[-4,1],[-21,6],[-3,2],[-2,2],[-6,8],[-4,2],[-3,1],[-6,4],[-6,6],[-1,2],[-1,3],[1,3],[5,-1],[4,0],[-2,12],[1,11],[3,2],[9,-2],[-3,4],[-2,5],[1,3],[2,2],[4,1],[6,1],[2,1],[1,2],[3,2],[6,1],[11,4],[3,0],[3,-3],[2,-2],[3,-2],[9,-4],[6,-3],[8,-8]],[[9077,9525],[7,0],[11,4],[1,0],[26,-2],[2,-1],[1,-3],[-1,-2],[-1,-2],[4,-2],[8,0],[5,2],[16,-1],[13,-2],[5,-3],[3,-2],[3,-2],[3,2],[2,2],[2,0],[2,0],[-5,-13],[-2,-1],[-7,-3],[-14,-4],[-6,-1],[-16,0],[-21,1],[-5,2],[-4,1],[-6,5],[-3,1],[-10,2],[-4,1],[-6,3],[-6,3],[-15,5],[1,6],[2,5],[2,5],[3,5],[3,1],[6,-4],[-1,-5],[2,-3]],[[9967,9263],[-2,0],[-4,10],[0,3],[1,3],[4,5],[2,3],[10,5],[8,7],[5,1],[5,3],[3,1],[0,-31],[-3,-1],[-7,-5],[-14,-1],[-8,-3]],[[8965,8317],[6,-15],[0,-3],[-1,-3],[-1,-4],[0,-5],[1,-4],[-1,-1],[5,-17],[4,-11],[1,-5],[0,-5],[1,-10],[1,-15],[-1,-5],[0,-5],[-1,-3],[-2,-2],[-1,-5],[0,-15],[1,-8],[1,-6],[2,-6],[0,-6],[0,-3],[3,-4],[1,-3],[0,-4],[0,-5],[1,-2],[1,-1],[6,-43],[2,-13],[6,-22],[3,-14],[2,-6],[1,-7],[1,-7],[2,-7],[2,-8],[5,-7],[2,-3],[1,-3],[0,-11],[-1,3],[-2,7],[-2,5],[-3,5],[-4,5],[-4,8],[-3,2],[-2,2],[-4,2],[-2,0],[-10,-1],[-4,-2],[-4,-3],[-2,-6],[-1,-11],[-9,-38],[-3,-10],[0,-11],[0,-9],[1,-3],[2,-8],[2,-5],[2,-2],[2,-2],[1,-1],[1,-2],[1,-6],[3,-13],[2,-9],[1,-3],[3,1],[2,0],[2,-1],[1,-2],[1,-11],[1,-9],[0,-3],[-2,-7],[0,-4],[0,-3],[-1,-3],[-1,-2],[0,11],[-1,8],[-1,7],[-2,5],[-6,1],[-6,1],[-1,1],[-2,3],[-1,2],[-2,1],[-1,-1],[-3,-4],[-2,-5],[-2,-5],[-1,-6],[-3,-16],[-1,-5],[-2,-4],[-2,2],[-2,3],[0,4],[-1,5],[-2,16],[1,14],[4,20],[1,6],[-1,6],[-1,6],[0,11],[0,3],[1,6],[2,6],[2,6],[1,6],[-2,16],[-3,11],[-3,10],[-1,3],[0,3],[3,13],[1,6],[1,13],[2,7],[1,8],[0,37],[0,6],[-2,11],[-1,7],[1,8],[2,7],[1,6],[0,13],[-3,12],[-2,5],[-4,7],[-3,3],[-1,3],[1,1],[1,2],[-2,3],[-2,5],[0,20],[1,5],[2,5],[1,6],[2,14],[0,14],[-1,5],[0,12],[0,3],[4,4],[4,2],[2,-1],[3,-4],[2,0],[1,0],[3,2],[2,5],[-2,3],[1,4],[3,1],[1,4],[-2,0],[2,5],[0,4],[-1,4],[-5,11],[-4,7],[6,0],[2,2],[1,3],[1,3],[2,-1]],[[31,9307],[12,-3],[3,0],[4,-3],[2,-1],[2,-2],[2,-2],[5,-3],[6,-3],[2,-2],[0,-2],[0,-3],[-8,-6],[-7,-1],[-13,-2],[-18,-4],[-7,-1],[-2,0],[-7,3],[-7,1],[0,11],[0,12],[0,8],[4,1],[5,2],[4,0],[4,-1],[4,0],[4,2],[3,-1],[3,0]],[[5994,8938],[1,-2],[0,-4],[0,-2],[0,-2],[-2,-2],[-2,5],[-2,0],[-2,2],[-1,3],[2,1],[1,0],[3,2],[2,-1]],[[6186,9026],[-1,-1],[-6,3],[0,2],[0,1],[2,0],[3,-1],[1,-2],[1,-2]],[[6469,9294],[2,-4],[3,-3],[2,0],[1,-1],[0,-4],[-3,-5],[-1,-2],[2,-2],[0,-1],[-3,-1],[0,3],[-2,2],[-3,2],[-1,2],[-2,4],[-5,4],[-3,-1],[-4,2],[-1,1],[-1,2],[2,2],[6,1],[3,0],[3,-1],[0,2],[0,1],[1,-1],[4,-2]],[[9667,8327],[1,-3],[-11,10],[-6,6],[-1,3],[2,0],[2,-3],[4,-2],[4,-4],[5,-7]],[[9463,9263],[-1,-1],[-4,1],[-2,2],[0,4],[3,0],[2,-2],[2,-4]],[[9484,9152],[-1,0],[1,4],[0,2],[-3,3],[-5,2],[-1,1],[0,5],[1,8],[-2,4],[0,4],[6,4],[3,3],[2,3],[1,0],[2,-3],[0,-5],[-2,-4],[-4,-1],[-1,-3],[1,-4],[0,-6],[0,-5],[3,-5],[1,-3],[-1,-2],[-1,-2]],[[9246,9568],[-3,-2],[-6,4],[2,1],[5,1],[1,-1],[1,-3]],[[9142,9599],[-21,0],[2,1],[7,4],[19,2],[-4,-2],[-1,-4],[-2,-1]],[[8831,9303],[-7,-5],[-2,0],[-3,3],[-2,0],[-1,0],[-2,-1],[-2,0],[-5,2],[-1,2],[1,1],[1,0],[1,0],[4,2],[14,0],[1,0],[3,-2],[0,-2]],[[7991,9684],[-3,-3],[-3,-1],[-4,2],[-10,0],[-16,3],[5,1],[26,1],[1,0],[4,-3]],[[8124,9597],[4,-4],[1,-2],[-2,-1],[0,-1],[-1,-2],[-1,0],[-4,2],[-2,3],[-4,1],[-5,3],[-1,1],[2,1],[7,-1],[3,1],[3,-1]],[[7681,9577],[2,-1],[-1,-2],[-3,1],[-3,-2],[0,-2],[-2,-3],[-5,2],[-7,1],[-5,1],[-10,2],[0,2],[2,2],[6,-2],[5,2],[10,-1],[3,2],[8,-2]],[[7674,9620],[-1,-1],[-1,-1],[-4,1],[-6,-2],[-3,1],[-2,2],[-9,0],[-2,0],[4,2],[12,2],[19,7],[1,-3],[-1,-2],[-3,-3],[-4,-3]],[[7486,9630],[-6,-1],[-4,2],[-1,1],[2,3],[2,1],[10,1],[1,-2],[0,-1],[-4,-4]],[[7073,9381],[-2,1],[-4,1],[-7,4],[-2,3],[1,3],[1,2],[6,1],[6,-1],[3,0],[7,-3],[-7,-2],[-2,-3],[0,-3],[1,-1],[-1,-2]],[[7097,9415],[-5,-2],[1,3],[5,4],[10,2],[3,-1],[1,-1],[-4,-4],[-2,-1],[-9,0]],[[7320,9450],[-1,-1],[-2,0],[-1,-1],[-7,2],[-9,1],[2,3],[7,1],[10,-2],[3,-2],[-2,-1]],[[6870,9189],[-2,-5],[-5,0],[-1,1],[-1,1],[5,5],[4,0],[0,-2]],[[6848,9247],[0,-2],[-1,0],[-2,3],[-1,3],[0,7],[0,1],[1,1],[1,0],[-1,-4],[3,-9]],[[6944,9014],[-5,-1],[-5,5],[-5,9],[1,2],[3,-1],[5,0],[3,-2],[5,-1],[-1,-4],[0,-1],[2,-2],[-2,-3],[-1,-1]],[[6390,9796],[-3,-1],[-10,5],[-1,1],[9,4],[10,-1],[2,-2],[-7,-4],[0,-2]],[[6427,9788],[1,0],[0,-1],[-10,1],[-17,-1],[-10,4],[10,3],[6,0],[7,3],[9,-3],[0,-2],[0,-1],[2,-1],[2,-2]],[[6409,9852],[-4,0],[-2,0],[-3,2],[-1,1],[-1,1],[3,1],[1,1],[1,0],[2,1],[3,0],[5,-1],[2,-3],[-5,-2],[-1,-1]],[[6540,9807],[-7,-2],[-5,0],[-1,1],[3,3],[4,1],[3,0],[2,-1],[1,-2]],[[6511,9819],[-4,-3],[-13,3],[1,2],[2,0],[0,2],[-2,1],[1,3],[8,-2],[1,-1],[6,-1],[0,-3],[0,-1]],[[6657,9789],[-10,-2],[-3,1],[-1,1],[-2,1],[-5,1],[1,3],[1,1],[15,4],[7,-3],[4,-5],[-7,-2]],[[6628,9852],[4,-3],[1,-4],[3,-2],[0,-3],[-2,-3],[-6,-1],[-10,0],[-9,1],[-5,6],[-10,1],[-5,6],[5,2],[7,-1],[11,5],[1,0],[3,-1],[9,-2],[3,-1]],[[6332,7804],[0,-1],[-2,5],[0,3],[1,2],[1,-5],[0,-4]],[[6396,9169],[0,-6],[-2,-2],[-1,-1],[-1,4],[-1,1],[-5,-4],[-2,-4],[-6,-7],[-13,-5],[-7,-2],[-7,0],[-6,4],[-4,8],[0,2],[-1,3],[0,4],[1,5],[1,5],[2,4],[6,5],[6,4],[3,0],[8,1],[21,-12],[5,-3],[3,-4]],[[6760,9832],[-5,0],[-6,1],[-6,3],[-7,3],[2,2],[6,2],[9,4],[13,1],[7,0],[7,1],[2,2],[1,4],[1,3],[2,1],[7,2],[6,0],[7,-2],[4,-1],[3,-3],[2,-2],[0,-3],[0,-3],[2,-2],[-12,-6],[-13,-4],[-32,-3]],[[6609,9799],[-4,-1],[-11,2],[-2,1],[-2,2],[-1,8],[0,2],[-1,1],[-3,3],[-2,2],[2,1],[12,-1],[27,-1],[13,-2],[4,-2],[4,-3],[-23,-1],[-4,-1],[0,-3],[0,-3],[-3,0],[-6,-4]],[[6726,9840],[2,-3],[-1,-3],[-2,-3],[-1,-4],[-9,-1],[-2,-1],[-3,-3],[-8,-1],[-7,-5],[-9,1],[-12,3],[-11,-3],[-7,0],[-8,4],[-1,1],[-1,3],[1,2],[2,6],[3,3],[1,1],[2,2],[3,1],[11,1],[4,-1],[1,-2],[5,0],[10,1],[13,2],[8,2],[7,0],[7,-1],[2,-2]],[[6698,9846],[-9,-1],[-14,2],[-7,1],[0,1],[2,1],[12,4],[24,1],[4,-3],[-3,-2],[-9,-4]],[[6486,9802],[-18,0],[-7,0],[0,1],[-2,0],[-6,1],[-3,3],[1,1],[9,1],[3,1],[1,2],[4,3],[9,0],[4,0],[0,-2],[4,-3],[10,-3],[-2,-2],[-3,-1],[-4,-2]],[[6585,9812],[1,-2],[0,-7],[-1,-3],[0,-3],[-3,-1],[-22,0],[-10,1],[-3,1],[6,3],[2,2],[0,7],[1,1],[17,0],[2,2],[6,0],[4,-1]],[[6605,9881],[2,-3],[4,-1],[12,-1],[3,-3],[-5,-1],[-14,-2],[1,-3],[3,-3],[-3,-3],[-4,-2],[-9,-2],[-8,3],[-9,3],[-5,-2],[-4,-2],[-4,1],[-5,2],[-13,-2],[-4,2],[-3,5],[9,1],[10,-1],[7,5],[9,2],[7,5],[3,1],[8,0],[2,1],[8,1],[2,-1]],[[6519,9856],[21,-6],[20,1],[8,-2],[12,-5],[18,-5],[4,-2],[-3,-2],[-21,-5],[-14,-2],[-12,0],[-5,0],[-5,4],[-12,3],[-12,-1],[-1,2],[-3,1],[-4,0],[-9,2],[0,3],[5,2],[4,0],[1,4],[6,8],[2,0]],[[6767,9884],[-3,0],[-18,0],[-9,2],[-1,1],[-11,1],[4,2],[15,1],[25,-2],[2,-1],[0,-1],[-4,-3]],[[6619,9890],[-10,-1],[-1,1],[0,1],[1,1],[1,3],[4,2],[31,1],[5,-1],[-2,-3],[0,-1],[-29,-3]],[[7574,9774],[-7,-1],[-8,1],[-13,6],[-9,2],[-6,4],[-2,5],[4,2],[6,2],[9,0],[12,-1],[11,-3],[25,-3],[9,-2],[-6,-5],[-6,-2],[-6,-2],[-6,-2],[-7,-1]],[[7543,9857],[-10,-4],[-34,3],[-2,2],[0,1],[4,3],[29,-1],[10,-1],[3,-3]],[[8916,9446],[-14,-5],[-3,1],[-6,4],[-2,11],[2,3],[3,1],[3,0],[13,1],[2,-1],[3,-1],[1,-2],[0,-2],[-1,-7],[-1,-3]],[[8949,9440],[7,-2],[5,-3],[20,-14],[2,-3],[1,-3],[1,-12],[-1,-1],[-7,-1],[-10,2],[-7,0],[-7,0],[-6,2],[-15,1],[-11,5],[-12,3],[-3,1],[-7,-1],[-10,-5],[-3,0],[-4,0],[-3,4],[7,1],[6,1],[7,1],[5,5],[3,4],[6,8],[2,3],[3,2],[3,1],[3,0],[11,2],[7,0],[7,-1]],[[8775,9527],[-5,-1],[-8,0],[0,4],[2,2],[2,5],[-1,3],[0,5],[1,3],[3,4],[2,-2],[2,-4],[1,-2],[6,-4],[2,-1],[-6,-5],[0,-2],[1,-3],[-2,-2]],[[8782,9441],[-2,-2],[-2,3],[-9,8],[-2,3],[-5,3],[-2,2],[0,3],[7,-2],[11,-8],[6,-6],[-2,-4]],[[8831,8357],[2,-2],[4,0],[1,-1],[-3,-3],[-2,-5],[-1,-5],[-1,-1],[-2,-3],[-2,-3],[-2,-2],[-2,0],[-4,10],[-1,2],[-6,-4],[-1,0],[1,5],[3,7],[2,1],[3,8],[1,2],[9,-5],[1,-1]],[[9699,9192],[-8,-1],[-16,5],[-5,3],[-5,4],[-4,2],[-1,1],[1,2],[1,2],[5,4],[4,2],[5,1],[28,-8],[1,-2],[1,-1],[-1,-3],[-2,-1],[-1,-2],[-1,-6],[-1,-1],[-1,-1]],[[9544,8559],[-4,-5],[-1,1],[0,1],[0,2],[4,3],[4,9],[2,8],[-1,3],[0,2],[12,5],[9,7],[2,0],[1,-6],[1,-9],[-1,-4],[-10,-3],[-9,-6],[-9,-8]],[[9628,8342],[0,-8],[-3,4],[-2,4],[-2,0],[-2,2],[-2,4],[-4,5],[-1,3],[0,4],[-2,3],[-7,6],[2,0],[3,3],[8,-2],[2,0],[-1,-4],[0,-5],[4,-9],[2,-3],[3,-3],[2,-4]],[[9299,8024],[-2,-2],[-3,1],[0,5],[6,15],[2,-1],[-1,-3],[-2,-6],[1,-7],[-1,-2]],[[9344,8102],[-1,-2],[-2,1],[-3,3],[-1,2],[1,3],[5,4],[2,0],[1,-1],[0,-5],[-2,-5]],[[9330,8081],[-3,-6],[-6,-1],[-2,-2],[-2,-4],[-1,-2],[-3,1],[-2,2],[0,7],[-1,3],[1,2],[3,0],[3,4],[7,2],[2,5],[3,11],[3,4],[3,1],[1,-6],[-1,-6],[-1,-6],[-4,-9]],[[9279,7994],[-1,-3],[-1,1],[0,1],[2,3],[1,5],[2,0],[1,-1],[0,-2],[-4,-4]],[[9323,8111],[-3,-1],[-1,2],[-1,2],[0,2],[2,2],[2,-2],[1,-4],[0,-1]],[[9252,7935],[-1,-3],[-2,0],[0,1],[1,4],[1,1],[1,-3]],[[9221,7885],[-5,-6],[-2,0],[0,2],[-1,1],[5,1],[4,9],[4,5],[2,2],[1,0],[-8,-14]],[[9157,7813],[-4,-3],[-3,0],[6,14],[4,2],[5,9],[9,10],[1,1],[6,-1],[-9,-11],[-1,-5],[-4,-4],[-3,-2],[-1,-2],[-6,-8]],[[9127,7794],[-5,-4],[-5,-2],[-7,-8],[-2,-5],[-4,-2],[-3,1],[-1,-1],[-1,-4],[-1,-3],[-7,-9],[-3,-7],[-3,-1],[-5,-8],[1,7],[1,3],[4,5],[1,6],[2,5],[5,6],[4,6],[3,2],[3,6],[3,2],[0,4],[1,5],[1,-1],[3,-6],[2,0],[5,1],[8,12],[3,2],[2,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-3],[-1,-3],[-5,0]],[[9074,7703],[0,-1],[-2,1],[0,3],[0,1],[6,3],[1,-2],[1,-1],[-6,-4]],[[9060,7747],[5,-4],[5,0],[-1,-3],[-2,0],[-4,-6],[-4,0],[-1,-2],[-6,-8],[0,-3],[-4,-6],[-5,-6],[-1,-10],[-3,4],[0,4],[1,4],[5,7],[3,4],[0,4],[3,3],[1,3],[1,2],[5,13],[2,0]],[[8149,9469],[-1,-3],[-2,-2],[-1,-2],[-2,-2],[-6,-3],[-4,-5],[-1,0],[-16,3],[-3,0],[-5,4],[-8,3],[-3,4],[1,1],[2,1],[7,-1],[2,1],[1,4],[0,3],[1,1],[2,2],[24,-4],[9,-3],[3,-2]],[[7117,9772],[4,-2],[2,1],[25,-5],[5,-2],[2,-1],[-22,-1],[-5,0],[0,3],[-5,0],[-8,2],[-3,3],[0,1],[3,1],[2,0]],[[7222,9841],[-26,-3],[-2,2],[-1,1],[4,4],[3,2],[16,1],[13,-2],[4,-1],[-1,-2],[-1,-1],[-9,-1]],[[6962,9394],[-8,-3],[-2,0],[-5,1],[-2,-1],[-3,2],[0,3],[1,2],[1,3],[0,8],[4,5],[5,2],[17,2],[2,0],[3,-2],[3,-2],[3,-4],[3,-2],[4,-3],[1,-4],[0,-3],[-8,0],[-13,-3],[-6,-1]],[[7156,9348],[-14,-1],[-6,1],[-1,1],[0,3],[7,4],[3,3],[4,4],[5,4],[5,0],[15,-4],[2,-3],[0,-1],[-6,-4],[-4,-2],[-6,-4],[-4,-1]],[[7208,9372],[-2,0],[-16,2],[-5,3],[-1,3],[0,2],[14,12],[6,-3],[1,-3],[4,-4],[0,-9],[-1,-3]],[[7282,9528],[1,-2],[0,-2],[-1,-1],[-4,0],[-2,-5],[-2,1],[-1,3],[-4,-2],[-2,0],[-2,3],[-1,0],[-1,2],[6,5],[4,-3],[2,0],[0,3],[0,2],[3,1],[4,0],[0,-5]],[[6679,9212],[0,-3],[0,-5],[-1,-4],[-3,-1],[-3,-1],[-5,1],[-3,-1],[-3,0],[-3,1],[-2,1],[-2,1],[0,3],[-2,4],[-3,1],[-3,1],[-4,1],[-1,0],[-3,-2],[-1,1],[-8,9],[-1,2],[-1,2],[-1,2],[-2,6],[1,3],[3,2],[1,0],[4,5],[5,1],[2,0],[1,-1],[6,-4],[3,-3],[3,-4],[3,-3],[9,-5],[6,-5],[6,-3],[2,-2]],[[5582,8368],[-3,-6],[-7,-11],[2,-2],[2,0],[4,-3],[3,0],[5,2],[1,10],[0,9]],[[5589,8367],[2,0],[3,1],[1,-3],[3,-2],[4,-2],[5,-3],[6,-3],[1,0],[6,0],[6,0],[2,-5],[3,-2],[2,-4],[1,-2],[-4,-11],[0,-4],[-1,-4],[2,-6],[1,-2]],[[5632,8315],[-1,-1],[-16,1],[-15,1],[-13,1],[-14,1],[-12,0],[-8,1],[-8,1],[-1,1]],[[5544,8321],[4,4],[3,6],[2,6],[1,5],[0,5],[4,2],[8,0],[3,2],[5,7],[4,7],[2,3]],[[5580,8368],[2,0]],[[5972,7818],[0,-2],[7,-15],[3,-5],[2,-2],[3,0],[5,4],[3,1],[5,-2],[2,3],[2,2],[3,0],[4,-1],[4,-3],[-1,-5],[-2,-4],[-1,-4],[-1,-6],[-4,-2],[-5,0],[-5,-1],[-2,2],[-1,2],[-3,2],[-3,1],[-2,-2],[-3,-7],[-6,-4],[-2,-6],[-5,2],[-5,-1],[-7,-5],[-5,-11],[-6,-6],[-5,-3],[-4,1],[-3,2],[-5,7],[0,3],[1,1],[1,3],[2,13],[0,5],[-2,6],[-4,6],[-4,-1],[-2,1],[-7,9],[-4,0],[-5,-1],[-1,1],[-2,3],[9,11],[9,9],[4,1],[5,4],[6,6],[-1,5],[-1,4]],[[5825,7791],[-1,-4],[0,-3],[-1,-9],[-1,-4],[-2,-4],[-14,-5],[1,2],[0,4],[-1,3],[2,3],[-4,1],[-1,-1],[-1,-3],[1,-6],[-2,-4],[0,-2],[0,-4],[-1,-2],[0,-2],[2,0],[-1,-4],[-4,-7],[-2,-5],[0,-18],[-1,-11],[-1,-3]],[[5793,7703],[-4,0],[-1,0],[-5,2],[-4,3],[-3,5],[-2,4],[-4,-1],[-1,0],[-1,2],[-3,1],[-4,0],[-8,8],[-1,1],[-7,-1],[-10,-4],[-7,-4],[-8,-8],[-3,-6],[-4,-3],[-5,-3],[-10,1],[-9,3],[-11,3],[-6,-1],[-7,1],[-12,4],[-8,1],[-9,-2],[-1,1],[-1,2],[1,3],[1,2],[2,2],[1,2],[0,2],[-2,2],[-5,4],[-2,3]],[[5562,7840],[1,1],[6,2],[3,-2],[1,1],[2,1],[0,2],[0,1],[1,2],[2,0],[6,-1],[2,3],[1,1],[1,3],[0,2],[2,1],[0,2],[0,2],[1,5],[1,2],[1,1],[1,2],[3,3],[-1,3],[1,2],[2,5],[2,5],[0,2],[0,2],[2,3],[2,3],[2,9],[1,2],[1,2],[1,2],[1,6],[1,2],[2,2],[2,3],[1,4],[2,2],[1,0],[2,2],[2,0],[2,0],[1,0],[2,2],[5,7],[1,1]],[[5739,7963],[2,1],[3,-1],[3,-2],[2,-4],[1,-2],[2,-4],[2,-5],[2,-7],[0,-3],[1,-4],[2,-4],[3,-5],[0,-1],[2,-4],[2,-7],[3,-4],[2,-3],[1,-3],[1,-3],[3,-5],[3,-3],[2,-11],[2,-5],[1,-4],[-1,-7],[1,-4],[-1,-6],[-2,-12],[-1,-9],[0,-5],[0,-4],[1,-2],[1,-4],[0,-4],[-1,-1],[-1,-1],[-1,-1],[1,-1],[2,-4],[1,-3]],[[6411,6612],[0,3],[1,2],[-2,17],[-1,13],[0,2],[2,3],[1,7],[1,6],[3,15],[3,6],[4,4],[4,-8],[4,-6],[1,-7],[-1,-6],[-1,-9],[0,-4],[0,-4],[2,-6],[1,-8],[0,-5],[-1,-5],[-1,-5],[-3,-12],[-1,-2],[-4,-2]],[[4522,7077],[4,-3],[3,1],[5,-4],[2,0],[-2,-3],[-2,-4],[-5,1],[-4,4],[-2,2],[0,2],[1,4]],[[4794,7325],[-3,0],[-9,-10],[-3,0],[-5,4],[-10,2],[-3,1],[-4,-3],[-3,0],[-3,-3],[-1,1],[2,8],[3,15],[0,9],[0,8],[-1,8],[-1,5],[2,13],[0,7],[-2,8],[6,-1],[-2,3],[-2,2],[-2,0],[-1,0],[-5,-3],[-3,-1],[0,6],[-1,6],[2,2],[2,1],[2,3],[1,3],[0,6],[1,5],[4,5],[-2,-1],[-2,-3],[-4,-10],[-1,-6],[-3,-1],[-3,-1],[-2,0],[-2,2],[0,4],[0,3],[2,6],[0,9],[2,7],[0,3],[-1,3],[2,3],[2,2],[2,6],[4,16],[5,17],[0,2],[-1,2],[0,5],[3,20],[1,2],[1,6],[1,10],[0,6],[0,3],[0,4],[-2,8],[-2,16],[0,5],[1,3],[-2,0],[-1,3],[0,4],[3,7]],[[4304,7313],[0,-1],[-1,0],[-2,0],[-1,3],[1,1],[2,0],[1,-1],[0,-2]],[[4135,7454],[-2,-3],[-2,1],[0,1],[0,6],[2,1],[2,-2],[0,-4]],[[4247,7410],[0,-1],[-6,2],[-1,2],[-1,4],[1,1],[2,1],[4,-1],[2,-3],[0,-3],[-1,-2]],[[4228,7405],[-1,-1],[-8,4],[-2,2],[-4,5],[10,-6],[5,-4]],[[4204,7403],[-3,0],[-3,4],[4,2],[2,-1],[0,-2],[1,-2],[-1,-1]],[[4218,7399],[2,-3],[-3,0],[-2,-1],[-2,1],[-4,0],[-2,3],[0,3],[1,2],[3,0],[7,-5]],[[4287,7363],[2,0],[9,1],[2,-1],[0,-4],[-2,-2],[-5,-1],[-8,3],[-3,4],[0,2],[0,1],[1,1],[4,-4]],[[5523,8036],[-1,1],[0,4],[-6,9],[-1,3],[0,2],[0,2],[-1,1],[-5,2],[-1,-1],[-1,1],[-2,2],[-3,1],[0,1],[-1,2],[-1,0],[0,-1],[-1,-1],[-3,-2],[-1,1],[-1,1],[-2,3],[-1,3],[-2,0],[-1,2],[0,1],[3,2],[1,2],[0,4],[-1,0],[-1,-1],[-3,-1],[-2,-1],[-2,0],[-7,8],[-5,2],[-3,0],[1,-4],[2,-5],[0,-2],[-2,-2],[-2,-1],[-1,-1],[-2,-3],[-1,-1],[-1,1],[-2,1],[-3,7],[-3,6],[-1,1],[-1,0],[-2,1],[0,2],[1,2],[1,2],[2,1],[1,2],[1,2],[-1,0],[-1,3],[-2,1],[-6,-1],[-2,-1],[-1,1],[-1,2],[-1,1],[-2,2],[-3,1],[-2,1],[-5,2],[-2,1],[-1,0],[-1,2],[-1,3],[-1,4],[-3,2],[-4,1],[0,-5],[0,-2],[-3,-2],[-2,0]],[[5411,8113],[0,1],[3,8],[1,5],[2,9],[-2,7],[-1,3],[0,2],[-6,3],[0,2],[1,4],[-1,2],[-1,3],[-1,4],[-1,3],[2,4],[1,3],[0,5],[1,2],[0,1],[-1,1],[0,3],[0,3],[-1,2],[-2,2],[-1,2],[0,3],[0,4],[2,5],[-3,7],[-8,8],[-3,5],[0,4],[2,2],[2,3],[3,5],[1,5],[0,1],[0,4],[-3,16],[-1,3],[0,5],[0,2]],[[5396,8279],[6,-4],[3,-2],[-1,2],[0,2],[0,3],[0,4],[-6,2],[-4,1]],[[5394,8287],[0,2],[0,2]],[[5394,8291],[1,-1],[4,0],[9,5],[16,7],[17,7],[4,0],[4,2],[2,2],[1,2],[2,4],[5,7],[9,2],[4,4],[7,4],[16,5],[7,1],[6,0],[6,-4],[7,-4],[1,-3],[-4,1],[-5,5],[-1,0],[4,-13],[2,-5],[5,-4],[4,-1],[12,2],[4,3],[1,2]],[[5632,8315],[1,2],[2,0],[3,-2],[1,-1],[0,-1],[0,-1],[2,-1],[2,-1],[3,-2],[3,-2],[2,-4],[1,-3],[0,-5],[0,-2],[0,-1]],[[5652,8291],[3,-20],[5,-19],[2,-9],[1,-5],[1,-7],[0,-5],[0,-3],[-1,-4],[-1,-2],[-10,-6],[-2,-2],[-3,-5],[-3,-6],[-1,-1],[0,-2],[1,-1],[3,-3],[4,-2],[1,-2],[3,-2],[1,-2],[0,-2],[0,-4],[-1,-5],[1,-4],[-2,-3],[-1,-3],[0,-5],[2,-6]],[[8363,6256],[4,-3],[10,-11],[3,-2],[4,-2],[3,-1],[2,2],[1,3],[2,7],[2,0],[1,-2],[1,-3],[1,-5],[-1,-5],[-2,-4],[-1,-6],[-1,-17],[0,-6],[1,-5],[2,-8],[1,-2],[2,-3],[1,-2],[0,-4],[0,-4],[2,-1],[1,-2],[0,-4],[-1,-4],[-1,-9],[-6,-23],[0,-4],[-2,-10],[-5,-2],[-5,-4],[-3,-4],[-2,-4],[-1,-7],[1,-2],[0,-3],[0,-4],[-1,-2],[-2,-7],[-1,-5],[-1,-3],[-1,-3],[0,-3],[1,-3],[3,-12],[4,-12],[0,-2],[1,-1],[-2,-4],[0,-5],[0,-6],[3,-14],[1,-4],[1,-3],[1,-3],[2,-3],[4,-4],[2,-1],[2,0],[0,3],[2,1],[0,3],[-2,4],[0,2],[1,1],[1,1],[3,4],[3,4],[3,-1],[4,-1],[3,-2],[2,-4],[2,-6],[2,-7],[0,-3],[-1,-4],[0,-3],[2,-2],[3,0],[2,5],[0,6],[-1,2],[1,3],[1,2],[1,-2],[2,-4],[5,-4],[2,0],[1,0],[2,-3],[2,-2],[-2,-5],[-5,-1],[-2,-3],[2,-7],[2,-6],[2,-4],[2,-5],[0,-4],[-1,-5],[2,0],[2,-1],[4,-4],[1,0],[1,1],[-1,-14],[-2,-13],[-2,1],[-3,6],[1,6],[1,7],[-1,1],[-1,0],[-2,-2],[-2,0],[-3,0],[-6,7],[-3,1],[0,3],[0,7],[-2,8],[-1,3],[-1,2],[-7,9],[-1,1],[-2,7],[-5,10],[-2,1],[-1,0],[-1,-2],[1,-4],[0,-3],[0,-4],[0,-3],[3,-5],[0,-3],[2,-7],[0,-8],[-2,-3],[-3,4],[0,3],[0,3],[-3,7],[0,2],[-5,7],[-4,8],[-8,9],[-1,0],[-2,-1],[-1,-1],[-4,-4],[-1,-3],[0,-4],[-3,-4],[-4,-1],[-3,3],[-3,4],[-2,0],[-2,8],[-3,0],[-3,-5],[0,11],[0,11],[0,3],[2,3],[6,12],[1,3],[0,5],[-2,4],[-2,3],[-3,1],[-2,2],[-1,4],[-1,-7],[1,-10],[0,-6],[-1,-2],[-2,0],[-1,0],[-1,3],[-1,6],[-3,5],[-1,6],[-1,1],[-2,-1],[-1,3],[-1,8],[0,7],[-1,7],[-2,6],[0,6],[-2,23],[0,2],[0,2],[-2,3],[-1,3],[0,3],[0,11],[1,3],[1,1],[1,-2],[2,-3],[1,-1],[1,-2],[3,-7],[1,-1],[3,0],[2,1],[1,3],[0,3],[0,3],[-1,10],[-1,8],[0,7],[0,6],[3,11],[0,8],[0,11],[0,6],[0,3],[-1,6],[-1,6],[5,30],[1,6],[1,6],[0,8],[3,2],[3,3],[2,0],[1,-1],[4,2],[1,0]],[[8258,5670],[-3,-4],[1,5],[0,5],[3,10],[2,3],[3,8],[2,3],[4,8],[4,8],[1,1],[1,0],[2,1],[2,4],[7,15],[5,11],[5,14],[3,4],[0,1],[5,13],[2,2],[2,1],[1,2],[1,2],[2,6],[0,6],[0,4],[-1,5],[1,8],[1,3],[4,15],[1,3],[1,-2],[0,-2],[0,-7],[0,-3],[0,-3],[-1,-5],[3,-14],[2,-9],[0,-3],[-3,-6],[-1,-1],[-4,-2],[-1,-1],[-2,-5],[-2,-5],[0,-3],[-1,-3],[-7,-4],[-3,-2],[-1,-2],[-1,-3],[0,-6],[-5,-19],[-2,-6],[-2,-4],[-2,-3],[-4,-2],[-2,-4],[-2,-7],[-2,-6],[-3,-4],[-3,-4],[-3,-3],[-3,-2],[-1,-3],[0,-3],[-2,-2],[-1,-1],[-3,-3]],[[8402,5853],[3,-3],[3,2],[3,0],[3,-4],[-1,-3],[0,-2],[6,6],[1,-1],[0,-5],[0,-5],[-1,-4],[-1,-5],[-2,-5],[-2,-3],[-2,-2],[-2,-2],[0,-3],[0,-4],[-1,-3],[-2,-1],[-4,-6],[-9,-4],[-3,-3],[-2,-4],[-1,-3],[-1,-1],[-1,2],[0,1],[1,9],[0,3],[0,3],[0,7],[2,6],[0,7],[1,13],[1,18],[0,3],[-1,2],[-4,2],[-1,2],[1,4],[1,2],[2,0],[1,-2],[6,-5],[3,-4],[3,-5]],[[8419,5706],[-1,-1],[-2,1],[-2,2],[-2,13],[-2,3],[-3,2],[-2,2],[-1,2],[-5,12],[0,8],[1,4],[1,4],[2,1],[3,0],[2,0],[4,6],[0,2],[0,9],[0,7],[-1,6],[1,3],[1,2],[2,6],[0,4],[0,4],[0,3],[2,1],[5,5],[1,0],[7,-4],[1,-6],[1,-2],[-2,-7],[0,-5],[-3,-7],[-2,-7],[-1,-12],[-1,-4],[-2,-7],[-1,-4],[0,-9],[0,-3],[0,-3],[4,-14],[1,-3],[0,-2],[-1,-3],[-2,-6],[-1,-2],[-2,-1]],[[8460,5837],[1,-2],[3,1],[2,4],[3,-1],[2,-7],[1,-2],[1,-5],[-1,-10],[0,-10],[0,-2],[2,-2],[1,-2],[1,-3],[1,-3],[0,-7],[2,-6],[0,-2],[-1,-3],[-3,0],[0,-2],[0,-2],[-1,1],[-1,6],[-2,3],[1,-10],[0,-5],[0,-4],[-3,3],[-3,3],[-1,1],[1,7],[0,3],[-2,6],[2,14],[0,3],[-1,3],[-1,5],[-2,5],[-1,0],[-3,-3],[-2,1],[-1,13],[-1,13],[-1,3],[-1,3],[1,3],[1,-1],[2,-3],[2,-2],[1,-2],[1,-3]],[[8478,5905],[2,-4],[0,-4],[0,-3],[1,-2],[2,-1],[2,-2],[1,-3],[-1,-3],[1,-5],[-2,-6],[0,-10],[1,-4],[0,-3],[0,-3],[0,-3],[3,-10],[0,-3],[0,-3],[-1,-2],[2,0],[2,-4],[1,-5],[0,-2],[-2,4],[-1,1],[-6,-1],[-3,2],[-2,0],[-2,7],[-2,1],[-2,3],[-2,8],[-1,5],[2,4],[0,4],[0,3],[-1,0],[-2,1],[-2,4],[0,3],[-2,2],[-2,5],[-3,2],[-1,2],[-2,4],[-2,5],[-1,9],[-1,10],[7,-3],[8,1],[9,2],[2,-3]],[[8352,5960],[1,0],[5,1],[2,0],[1,-4],[1,-1],[2,-1],[2,2],[2,-3],[2,-6],[3,-5],[2,-3],[0,-2],[-1,-4],[-1,-5],[1,-6],[1,-11],[0,-3],[-2,-5],[-1,-5],[0,-2],[-1,-1],[0,-4],[-1,1],[-1,-1],[-1,-1],[-1,-3],[-2,1],[-1,1],[-1,2],[0,3],[-1,1],[-3,5],[-1,3],[0,4],[-1,4],[-1,4],[-1,2],[-1,3],[0,2],[0,8],[-3,9],[0,2],[-3,3],[-1,3],[-1,2],[-1,5],[0,1],[-2,0],[-1,0],[0,4],[2,2],[2,1],[5,-2],[1,-1]],[[8499,5721],[3,-4],[3,1],[-1,-9],[1,-2],[3,-8],[0,-6],[-2,-6],[-1,-2],[-2,-4],[0,-2],[1,-2],[3,-1],[2,-4],[1,-9],[2,-7],[0,-3],[-1,-13],[0,-5],[2,-4],[1,-2],[1,-3],[1,-8],[0,-12],[-1,-5],[-1,-4],[-3,-9],[-4,-8],[-2,1],[-1,-3],[2,-6],[-1,-15],[-1,-10],[-1,5],[-1,6],[-1,14],[-1,6],[-1,6],[-1,5],[-2,5],[-2,12],[-1,0],[-2,-4],[-1,-2],[0,-4],[-1,-3],[-3,-5],[-2,-6],[-1,-7],[-1,-6],[1,-5],[2,-2],[2,-4],[1,-2],[2,-14],[0,-14],[-2,-6],[-4,-12],[-3,-4],[-2,2],[-1,7],[0,3],[1,7],[0,6],[-1,2],[-1,0],[-1,-1],[-3,-8],[-1,-2],[-1,0],[-2,0],[-8,7],[-6,7],[-5,7],[-4,10],[-1,7],[0,8],[-2,11],[0,4],[0,4],[2,7],[2,3],[1,3],[1,2],[1,4],[-1,4],[0,2],[-4,8],[-2,5],[-6,5],[-1,2],[-2,2],[-1,1],[-2,0],[-1,-1],[-1,-3],[0,-3],[0,-3],[-2,-15],[-3,4],[-3,3],[-1,3],[0,3],[-1,2],[0,2],[-2,-5],[-1,-4],[-2,0],[-3,-1],[0,2],[-1,10],[-2,3],[-3,-1],[-3,-5],[-1,-2],[0,-5],[-4,-12],[-2,-10],[-2,-10],[-1,-3],[-1,-2],[-2,1],[-2,2],[-2,6],[1,7],[2,5],[1,5],[2,17],[0,6],[1,3],[3,7],[2,5],[2,1],[5,3],[3,2],[3,0],[3,2],[3,3],[0,4],[0,4],[0,3],[1,2],[1,2],[2,2],[4,2],[1,1],[1,3],[2,5],[2,-1],[1,-2],[4,-2],[3,-4],[1,-6],[1,-4],[0,-11],[0,-2],[-3,-5],[1,-1],[4,5],[2,2],[4,2],[1,2],[1,2],[1,7],[2,7],[1,3],[1,2],[1,1],[5,-5],[3,2],[1,7],[0,11],[1,3],[2,3],[2,-1],[3,-4],[2,-1],[1,3],[1,6],[1,0],[4,-2],[3,1],[1,7],[0,8],[-3,23],[1,5],[2,0],[3,-6],[7,-8],[2,-5],[1,-6]],[[8426,5728],[-1,-1],[0,3],[0,5],[2,18],[0,5],[3,10],[2,9],[4,10],[0,5],[3,10],[3,13],[0,5],[0,2],[1,3],[0,3],[2,5],[0,-3],[0,-6],[0,-4],[0,-1],[0,-6],[-1,-9],[1,-10],[-1,-11],[-2,-5],[-2,-3],[-2,-3],[-3,-5],[-1,-6],[-1,-6],[-3,-19],[-4,-8]],[[8386,6272],[-2,-4],[-1,1],[1,4],[0,2],[1,3],[1,1],[2,-3],[-2,-4]],[[8375,6299],[0,-5],[-2,0],[-2,3],[0,2],[0,1],[0,1],[4,-2]],[[8387,6357],[-1,-1],[0,6],[2,1],[1,0],[-2,-6]],[[8385,6381],[-2,-5],[-1,0],[0,3],[2,5],[1,-3]],[[8365,5534],[1,-4],[2,1],[3,-1],[1,-3],[0,-1],[-4,-4],[-2,4],[-3,-3],[-2,2],[-3,-2],[-1,4],[0,3],[4,5],[4,-1]],[[8251,5638],[-1,-5],[-2,6],[1,7],[0,1],[2,2],[0,-11]],[[8330,5788],[-3,-2],[-1,6],[2,5],[3,-2],[2,-2],[-1,-2],[-2,-3]],[[8335,5885],[2,-1],[1,1],[1,3],[1,-5],[2,-4],[-1,-3],[-2,-1],[-2,1],[-2,-1],[-2,0],[-2,4],[-1,6],[-1,1],[0,3],[0,2],[0,1],[1,1],[1,-2],[4,-5],[0,-1]],[[8334,5858],[-3,-2],[0,1],[0,3],[0,2],[-2,10],[1,2],[1,-1],[1,-2],[1,-1],[1,-3],[0,-2],[1,-2],[-1,-5]],[[8406,5787],[-1,-1],[-2,-2],[-1,4],[1,7],[2,5],[1,1],[1,1],[1,0],[0,-2],[1,-3],[-2,-9],[-1,-1]],[[8460,5748],[0,-3],[-2,1],[-1,-1],[-2,-5],[-1,-2],[-7,-1],[-5,1],[-2,3],[-1,5],[0,3],[1,4],[1,2],[4,5],[1,3],[2,5],[5,1],[0,-1],[1,-1],[1,0],[2,-3],[3,-3],[-1,-8],[1,-3],[0,-2]],[[8339,5487],[0,-4],[-1,-2],[-1,1],[-1,2],[-1,-2],[-2,-2],[-2,-4],[-2,-1],[-1,1],[0,3],[4,6],[3,2],[2,4],[1,0],[1,-3],[0,-1]],[[8391,5554],[-3,-1],[-1,0],[-2,6],[0,3],[-2,3],[0,3],[3,0],[4,4],[6,-6],[1,-2],[-2,-1],[-1,-6],[-3,-3]],[[8501,5746],[-1,0],[-1,4],[0,6],[2,7],[2,-6],[0,-3],[0,-2],[1,-4],[-1,-2],[-2,0]],[[8491,5755],[-1,-2],[-1,4],[-1,3],[-2,5],[-1,2],[1,4],[0,7],[1,3],[1,1],[1,3],[1,0],[0,-3],[-1,-8],[2,-10],[-1,-6],[1,-2],[0,-1]],[[8340,5976],[0,-4],[-5,6],[0,2],[0,1],[1,1],[2,-2],[2,-4]],[[8386,5964],[1,0],[1,0],[3,-5],[0,-2],[0,-3],[-1,-6],[-1,-2],[-1,-2],[-3,5],[-2,3],[0,5],[1,8],[2,-1]],[[8391,5895],[-3,-14],[-1,5],[1,3],[-2,3],[0,2],[0,3],[2,3],[0,9],[3,3],[1,1],[0,-3],[0,-4],[-1,-11]],[[8406,5893],[-1,-2],[-3,6],[-2,3],[0,1],[1,2],[4,0],[2,-4],[0,-2],[-1,-4]],[[8424,5924],[2,-9],[-3,6],[-3,4],[-3,7],[-2,3],[-1,1],[1,3],[1,0],[1,0],[5,-12],[2,-3]],[[8437,5901],[0,-5],[-1,2],[-3,10],[-1,3],[1,3],[3,-4],[1,-9]],[[8436,5892],[5,-7],[4,-12],[0,-9],[0,-3],[-2,4],[-4,5],[-2,1],[-1,1],[0,3],[-1,3],[-1,1],[-1,1],[-2,6],[-2,1],[-2,-1],[-3,-9],[-4,-6],[0,2],[2,8],[1,13],[0,4],[-1,5],[0,6],[3,-3],[4,-2],[2,-3],[1,-3],[4,-6]],[[8453,5969],[0,-4],[-1,2],[-2,-1],[-2,-3],[-3,4],[0,4],[2,7],[0,11],[1,3],[1,2],[1,1],[2,-8],[1,-1],[2,-3],[0,-7],[0,-4],[-2,-3]],[[8393,5993],[0,-2],[-6,8],[0,2],[0,1],[0,1],[6,-10]],[[8389,6048],[0,-2],[-2,-4],[2,-8],[-1,-6],[-2,0],[0,1],[0,2],[0,2],[0,3],[-1,3],[-1,4],[-1,3],[1,4],[3,0],[2,-2]],[[8452,5795],[0,-1],[1,6],[1,0],[0,-1],[0,-3],[-2,-1]],[[8479,5759],[0,-3],[-3,7],[-1,6],[1,-1],[2,-2],[1,-7]],[[8414,5611],[0,-2],[0,-1],[-3,-3],[-1,0],[0,5],[1,2],[1,-2],[1,2],[1,-1]],[[8493,5585],[0,-3],[-2,7],[-1,2],[1,7],[2,-3],[0,-10]],[[8460,5846],[-3,-1],[-1,3],[-2,8],[2,1],[2,0],[1,-3],[2,-5],[-1,-3]],[[8466,5710],[-1,-3],[-3,3],[-1,2],[1,3],[1,1],[1,0],[2,-3],[0,-3]],[[8367,6283],[0,-4],[-1,2],[-1,3],[1,2],[0,3],[1,-3],[0,-3]],[[8329,5848],[0,-3],[-1,-5],[0,-1],[-1,2],[-2,1],[0,3],[1,0],[2,2],[1,1]],[[8437,5834],[1,-8],[-2,0],[-1,6],[1,1],[1,1]],[[8397,5905],[-1,-1],[-1,0],[0,3],[1,2],[1,-4]],[[8498,5736],[0,-1],[-1,3],[1,7],[0,1],[1,-4],[-1,-6]],[[8467,5852],[0,-3],[-1,0],[-1,2],[-1,4],[0,4],[1,-2],[1,-4],[1,-1]],[[8259,5657],[-2,-1],[0,3],[0,4],[1,-1],[1,-1],[0,-4]],[[8435,5716],[0,-6],[-2,-2],[-2,2],[-1,3],[0,2],[1,-1],[2,4],[1,0],[1,-2]],[[3056,4940],[0,-4],[-1,-1],[-1,-1],[-2,3],[-2,-1],[-1,0],[-3,3],[0,3],[-2,3],[-3,-1],[-3,0],[-3,0],[-2,-1],[-2,-3],[-1,-4],[-2,-3],[-5,-2],[-2,0],[-2,-2],[-4,-1],[-2,-2],[-4,-1],[-5,-1],[-3,-2],[-1,-2],[-3,-4],[-4,-6],[-3,-2],[-3,-7],[-4,-6],[-3,-3],[-3,-2],[-2,-1],[-1,-2],[1,-3],[-1,-6],[-1,-11],[0,-5],[-1,-3],[-2,-9],[-3,-8],[-1,-5],[-1,-4],[1,-4],[1,-6],[1,-5],[0,-3],[0,-4],[-1,-3],[-2,-2],[-2,-1],[-5,-6],[-5,-9],[-2,-4],[-1,-4],[0,-6],[0,-3],[1,-2],[1,-6],[0,-2],[-1,-2],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-2],[0,-3],[0,-3],[0,-1],[-1,-1],[1,-2],[1,-2],[1,-2],[2,-5],[2,-1],[1,-1],[0,-3],[0,-3],[-2,-1],[0,-2],[2,-3],[1,-2],[1,-3],[1,-4],[0,-3],[1,-3],[1,-3],[0,-3],[1,-3],[2,-2],[1,-1],[1,-2],[0,-2],[0,-3],[2,-5],[2,-3],[3,-6],[1,-4],[3,-6],[0,-8],[-4,-8],[-3,-8],[6,0],[5,0],[6,-3],[4,-2],[2,-1],[2,-3],[1,-4],[0,-3],[0,-5],[3,-4],[0,-4],[0,-5],[1,0],[7,-1],[8,0],[7,1],[3,2],[3,6],[2,2],[2,3],[3,6],[2,2],[1,3],[3,4],[1,2],[0,1],[2,1],[-1,-3],[0,-3],[0,-4],[0,-5],[0,-4],[-1,-3],[0,-9],[0,-12],[-1,-10],[0,-13],[0,-15],[0,-9],[2,2],[1,1],[3,-4],[1,-2],[2,-1],[1,1],[2,0],[4,4],[3,3],[4,0],[4,-1],[3,0]],[[3067,4553],[3,-13],[3,-9],[3,-10],[2,-8],[4,-13],[3,-11],[3,-12],[4,-13],[-1,-4],[-1,-2],[0,-5],[-2,-2],[-1,-2],[-2,-4],[-1,-3],[0,-5],[0,-24],[-1,-7],[0,-5],[-1,-3],[-1,-2],[1,-6],[2,-11],[1,-2],[1,-5],[1,-4],[-1,-2],[-2,-2],[-1,-2],[0,-6],[-1,-3],[-2,-3],[-1,-3],[-2,-3],[0,-1],[-1,-4],[-1,-5],[-2,-2],[0,-6],[0,-4],[1,-4],[4,-10],[0,-2],[-2,-5],[-1,-4],[-4,-12],[0,-2],[1,-6],[5,-23],[1,-2],[1,-3],[3,1],[3,-3],[2,-3],[0,-1],[0,-1],[-2,-2],[-2,-3],[-1,-2],[0,-4],[0,-6],[0,-2],[-3,-2],[-2,-3],[-1,-5],[-4,-8],[-1,-3],[0,-2],[-2,-1],[-3,-6],[-1,-3],[1,-2],[1,-3],[2,-3],[0,-4],[0,-2],[0,-1]],[[3069,4175],[-2,-3],[-3,-5],[-3,-1],[-2,-2],[1,-5],[1,-6],[0,-5],[-1,-6],[-3,-7],[-3,-4],[-4,-3],[-3,0],[-2,0],[-1,-1]],[[3044,4127],[-2,4],[-9,13],[-4,7],[-3,3],[-8,11],[-1,4],[-1,11],[-1,4],[-2,4],[-7,5],[-3,3],[-2,5],[-4,3],[-5,8],[-2,6],[-3,3],[-9,6],[-5,5],[-8,8],[-4,5],[-9,6],[-3,2],[-9,14],[-6,5],[-5,8],[-16,16],[-2,5],[-2,9],[-4,4],[-3,12],[-6,6],[-6,9],[-2,8],[-3,10],[-1,5],[-3,6],[-1,10],[-2,5],[2,3],[1,1],[2,16],[-1,9],[-5,15],[-2,7],[-2,9],[-2,6],[-3,11],[-3,11],[-4,7],[-1,3],[-1,3],[-2,3],[-1,8],[-1,15],[-3,8],[-9,14],[0,5],[-1,10],[-2,11],[-10,33],[-2,10],[-3,16],[-2,9],[-2,16],[-4,12],[-2,11],[-3,13],[0,7],[-5,13],[-2,11],[-4,9],[-4,7],[-2,5],[-6,24],[-1,8],[-4,13],[-4,9],[-2,8],[-4,7],[-19,21],[-7,9],[-2,4],[-1,7],[0,3],[2,4],[3,-3],[2,1],[1,5],[0,7],[-2,9],[-6,18],[1,4],[1,4],[-3,9],[-2,7],[-2,5],[2,20],[1,5],[10,20],[2,9],[4,5],[5,8],[4,7]],[[2768,4989],[1,-1],[1,-1],[0,-3],[0,-1],[1,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-2],[2,-6],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[-1,0],[-3,2],[-1,-2],[-1,-4],[1,-2],[0,-3],[1,-2],[3,-1],[-3,-7],[-1,-3],[0,-2],[2,-2],[1,0],[2,2],[2,4],[1,2],[2,1],[2,-1],[3,-4],[3,-3],[1,-2],[3,0],[2,1],[1,-2],[2,-3],[0,-7],[2,-6],[1,-4],[2,-5],[2,-2],[2,0],[3,-2],[1,2],[1,3],[1,2],[2,1],[0,2],[-1,3],[1,3],[1,3],[3,4],[2,2],[0,3],[1,3],[0,2],[-1,2],[0,4],[1,4],[1,5],[1,7],[1,3],[1,2],[0,3],[1,3],[1,4],[0,4],[1,2],[0,5],[1,9],[0,2],[1,1],[1,-1],[1,-2],[0,-2],[1,-1],[1,0],[1,1],[0,2],[-1,2],[0,1],[0,2],[1,4],[2,4],[4,9],[2,4],[6,4],[4,3],[4,3],[5,4],[8,6],[6,4],[5,8],[4,6],[3,5],[4,6],[6,14],[4,9],[3,7],[2,5],[1,12],[2,14],[1,6],[0,3],[1,-1],[1,-2],[1,0],[1,0],[0,1],[-1,14],[1,3],[0,4],[0,2],[-2,3],[-2,5],[-2,5],[0,4],[-2,3],[-2,3],[0,2],[1,0],[3,-2],[2,0],[2,1],[1,2]],[[2908,5178],[2,3],[1,0],[2,0],[2,-4],[1,-2],[2,-2],[1,-1],[2,0],[1,0],[0,-2],[1,-3],[2,-3],[2,-2],[2,-3],[1,-2],[1,-3],[2,-4],[1,-6],[0,-4],[1,-3],[0,-2],[1,-5],[1,-2],[2,-2],[4,-1],[2,-4],[1,-2],[2,-4],[2,-1],[1,0],[2,-2],[2,-4],[1,-5],[1,-3],[1,-5],[-1,-6],[1,-3],[2,-2],[2,-3],[3,1],[1,-1],[0,-3],[1,-3],[1,-7],[0,-4],[-1,-4],[0,-3],[1,-4],[2,-2],[2,-2],[2,-3],[1,-1],[2,0],[3,1],[1,2],[1,0],[1,0],[3,-2],[3,-2],[2,1],[3,1],[2,1],[2,3],[2,0],[2,2],[1,3],[2,4],[2,1],[2,-2],[3,-2],[2,-3],[1,-1],[1,-3],[3,0],[3,2],[2,3],[3,2],[1,1],[2,-1],[6,-7],[1,-4],[2,0],[2,-3],[3,-2],[1,-2],[2,-1],[1,-3],[3,-2],[2,-1],[0,-3],[0,-1],[0,-2],[-2,-6],[-4,-13],[-3,-12],[-6,-18],[-3,-10],[1,0],[5,-5],[1,0],[2,1],[1,2],[1,0],[1,-2],[2,-2],[1,-6],[1,-3],[2,-3],[2,-4],[1,-4]],[[3384,4022],[1,-4],[0,-3],[1,-2],[1,-3],[1,-2],[0,-3],[0,-3],[1,-4],[0,-4],[1,-1],[1,-1],[1,-3],[-1,-2],[0,-2],[1,-2],[-1,-1],[1,-2],[0,-1],[1,-5],[0,-7],[-1,-5],[0,-3],[0,-2],[0,-3],[-1,-4],[-1,-4],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-2],[1,-4],[2,-1],[2,-1],[1,2],[1,1],[3,-2],[2,-3],[2,0],[2,-1],[2,-1],[3,1],[2,-1],[3,-1],[3,-2],[3,0],[2,1],[2,1],[2,0],[1,3],[1,3],[1,2],[2,1],[1,-1],[1,-5],[2,-3],[1,-2],[2,-1],[3,0],[2,0],[3,-1],[1,0],[2,-3],[1,-3],[0,-6],[1,-4],[2,-2],[1,-3],[-1,-4],[0,-4],[0,-4],[1,-4],[0,-4],[0,-4],[1,-4],[1,-5],[-1,-4],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[2,-4],[1,-6],[0,-4],[0,-5],[2,-2],[2,-1],[2,-1],[4,2],[2,1],[2,1],[3,4],[3,2],[1,1],[1,1],[3,-2],[2,-3],[2,-4],[4,-4],[-1,-1],[-1,-4],[0,-4],[1,-6],[-1,-13],[-3,-20],[-1,-11],[1,-3],[-1,-6],[-4,-12],[0,-8]],[[3483,3711],[-1,-25],[-1,-18],[-2,-12],[-2,-7],[-2,-1],[-1,-2],[-1,-4],[-2,-2],[-2,-2],[-1,-3],[0,-2],[-2,-2],[-4,-1],[-2,-2],[-1,-3],[-1,-3],[-2,-2],[-1,-3],[0,-5],[-1,-4],[-2,-3],[-2,0],[-2,3],[-3,2],[-3,1],[-2,-1],[-3,-2],[-2,-5],[-1,-5],[-2,-1],[-2,4],[-3,1],[-3,-2],[-2,1],[-2,2],[-3,1],[-4,-2],[-8,2],[-11,6],[-10,3],[-12,-2],[-1,6],[0,4],[2,3],[2,3],[0,3],[1,3],[3,2],[1,2],[-1,2],[1,1],[1,2],[1,2],[0,3],[0,2],[1,1],[0,2],[0,7],[0,5],[1,5],[0,2],[1,1],[0,1],[0,3],[1,2],[4,5],[2,3],[0,2],[0,4],[3,7],[0,3],[0,2],[1,1],[3,4],[1,4],[1,4],[-1,4],[-2,4],[-4,11],[-4,5],[-5,4],[-3,1],[-2,-1],[-2,1],[-1,4],[-3,3],[-6,3],[-12,13],[-6,6],[-1,4],[-5,7],[-8,10],[-6,5],[-4,0],[-7,3],[-9,6],[-6,6],[-1,5],[-4,6],[-5,6],[-3,3],[0,2],[-2,3],[-3,3],[-3,5],[-4,7],[-3,11],[-4,14],[-5,10],[-5,5],[-2,4],[0,2],[-1,1]],[[3259,3903],[1,3],[2,11],[2,17],[3,17],[3,19],[0,15],[0,14],[4,13],[3,8],[3,9],[2,14],[2,9],[7,2],[12,5],[5,3],[12,5],[13,5],[13,1],[12,0],[10,-12],[7,-9],[9,-10],[0,-2],[1,-8],[-1,-10]],[[9248,4910],[-2,-5],[-1,5],[-2,3],[-1,4],[-2,8],[0,4],[1,4],[0,4],[-1,9],[-2,8],[-7,19],[-2,4],[-2,5],[-2,1],[-3,1],[-1,1],[-3,3],[-2,4],[-6,10],[-4,3],[-1,4],[-10,12],[-2,3],[-4,0],[-3,2],[3,2],[0,4],[0,4],[4,-7],[5,-6],[2,-5],[2,0],[5,-4],[3,-3],[3,-4],[3,-6],[6,-4],[1,-2],[3,-8],[4,-6],[2,-4],[18,-30],[3,-8],[0,-6],[-1,-2],[-2,-5],[0,-6],[0,-5],[-2,-5]],[[9219,4936],[1,-1],[5,6],[2,-4],[3,-2],[3,-1],[-2,-9],[1,-4],[1,-4],[-1,-6],[-1,-5],[-3,-8],[-1,-1],[-1,-1],[-4,0],[-1,-4],[0,-5],[2,-5],[2,-7],[-2,-6],[-3,-4],[-2,-2],[-5,1],[-5,0],[-1,-2],[0,-4],[-1,-3],[-1,-2],[-2,-6],[-3,-4],[-4,-5],[-1,-1],[-4,0],[-3,-3],[-1,-2],[-2,-2],[-3,-3],[-3,-4],[-1,-1],[-7,0],[-9,-1],[-3,0],[-3,0],[-1,2],[-4,8],[-2,3],[-3,0],[-5,-3],[-8,12],[-3,3],[-2,2],[-4,1],[-3,3],[-1,5],[0,7],[2,5],[4,-2],[1,0],[2,1],[1,-1],[2,-1],[6,2],[3,-2],[4,-3],[3,-1],[3,1],[5,3],[1,0],[4,0],[4,4],[1,18],[1,6],[1,1],[1,0],[1,-3],[-1,-4],[-1,-3],[0,-7],[1,-7],[2,-5],[3,-1],[3,4],[3,0],[3,-3],[3,0],[2,3],[1,1],[2,0],[1,1],[2,6],[1,7],[2,5],[6,9],[1,1],[2,1],[3,-1],[3,4],[0,7],[0,7],[-3,17],[0,2],[0,3],[1,3],[3,0],[3,-1],[2,-3],[1,-2]],[[8915,4659],[0,12],[0,12],[0,11],[0,12],[0,12],[0,12],[0,11],[0,12],[0,12],[0,11],[0,10],[-1,4],[-2,6],[0,7],[2,9],[1,6],[0,5],[0,12],[0,12],[0,11],[0,12],[0,12],[0,12],[0,11],[0,12],[0,12],[0,11],[0,12],[0,12],[0,11],[0,12],[0,12],[0,12],[0,11],[0,7],[0,4]],[[8915,5033],[1,0],[3,0],[2,-1],[14,-12],[4,-5],[1,-1],[2,0],[1,-1],[6,-7],[10,-7],[10,-6],[3,-2],[3,0],[7,-3],[3,-2],[6,-8],[2,-3],[3,-4],[4,-5],[1,-1],[1,-1],[4,0],[3,1],[2,-1],[1,-1],[2,-1],[0,-4],[3,-4],[3,-2],[3,-4],[2,-5],[2,-5],[2,-5],[4,-2],[3,0],[12,-25],[1,-4],[0,-16],[-1,-13],[3,-4],[4,-2],[5,-3],[6,-4],[17,-17],[3,-2],[3,0],[4,0],[1,-1],[3,-3],[1,-2],[3,-6],[2,-6],[1,-2],[1,-1],[0,-3],[1,-11],[0,-6],[-1,-2],[-3,-1],[-10,-2],[-6,2],[-5,-7],[0,-3],[0,-2],[4,-14],[3,-12],[2,-5],[3,-4],[2,-5],[3,-5],[5,-10],[2,-3],[3,-3],[6,-7],[0,-3],[2,-10],[1,-7],[0,-3],[0,-3],[5,-6],[1,-2],[2,-14],[1,-7],[3,-2],[3,0],[9,4],[1,1],[1,-1],[2,-3],[0,-6],[-1,-7],[0,-6],[1,-5],[5,-4],[1,-1],[8,-2],[3,-1],[3,-2],[1,-1],[-1,-3],[-1,-1],[-2,-1],[-3,-2],[0,-4],[2,-3],[1,-5],[2,-2],[1,-1],[3,-1],[3,-2],[3,-3],[2,-1],[5,-1],[3,-3],[5,1],[-4,-4],[-2,-2],[-5,2],[-1,-2],[2,-5],[4,-3],[1,-2],[-1,-2],[-4,-5],[-1,-1],[-3,0],[-5,2],[-4,3],[-1,3],[-1,2],[-3,5],[-2,2],[-3,1],[-3,0],[-5,3],[-12,2],[-3,1],[-3,4],[-2,1],[-1,-1],[-5,-1],[-1,0],[-3,3],[-4,2],[-1,-1],[-1,-1],[-5,3],[-3,1],[-3,3],[-2,3],[-1,3],[-2,7],[-2,7],[-3,5],[-7,9],[-1,2],[-3,8],[0,6],[1,5],[-1,-2],[-2,0],[-4,4],[-2,4],[-3,12],[-2,6],[-4,11],[-1,6],[-2,6],[-1,2],[-1,2],[-1,3],[-1,3],[-7,4],[-1,2],[-1,1],[-4,0],[-3,1],[-5,4],[-3,1],[-3,1],[-3,1],[-1,2],[-1,2],[-1,6],[-2,0],[-3,1],[-2,2],[-3,1],[-1,-2],[-1,-5],[-1,0],[-1,1],[-1,0],[-1,-3],[-2,-2],[-2,0],[-5,3],[-2,2],[-2,3],[-1,4],[-2,3],[-1,2],[2,-5],[5,-23],[-1,0],[-1,0],[1,-4],[-2,-1],[-1,0],[-3,2],[-3,1],[-1,-1],[0,-2],[1,-4],[1,-6],[-4,-2],[-5,-1],[-5,-3],[-5,0],[-3,1],[-3,1],[-2,-1],[-3,-2],[-2,1],[-1,3],[-1,3],[-1,2],[-2,0],[-2,-1],[4,0],[1,-3],[0,-4],[3,-3],[3,2],[6,-1],[6,-6],[1,0],[1,-1],[4,-6],[2,-5],[2,-6],[0,-2],[0,-6],[-1,-3],[-3,-5],[-5,-3],[-6,-6],[-5,-7],[-4,1],[-2,4],[-1,1],[-3,2],[-2,1],[-7,-2],[-7,-1],[-3,0],[-3,1],[-3,3],[-3,-1],[-2,-3],[-3,0],[-4,6]],[[9111,4848],[-1,0],[-1,2],[-2,3],[-3,7],[0,6],[0,1],[2,1],[6,-7],[0,-3],[0,-6],[-1,-4]],[[9055,4912],[-2,-2],[-1,1],[-1,4],[1,4],[2,2],[1,1],[1,-2],[0,-3],[-1,-5]],[[9240,5003],[-1,-5],[-1,3],[-2,4],[1,2],[2,2],[1,-6]],[[9224,5014],[0,-3],[-1,0],[-3,6],[0,1],[1,2],[2,-4],[1,-2]],[[9159,5094],[0,-2],[-2,1],[-4,6],[0,4],[1,3],[2,-1],[2,-4],[1,-7]],[[9196,4607],[1,0],[2,4],[2,1],[1,-2],[-2,-13],[-2,2],[-6,3],[0,6],[-1,2],[-1,5],[-2,6],[-1,4],[1,-2],[2,-4],[5,-8],[0,-2],[1,-2]],[[9175,4637],[0,-1],[-2,1],[-4,8],[0,5],[3,4],[3,-4],[1,-5],[0,-2],[-1,-6]],[[9196,4681],[1,-4],[-2,4],[1,5],[0,3],[0,1],[-2,3],[1,4],[1,1],[1,1],[0,-6],[0,-3],[-1,-9]],[[9285,4529],[-1,-3],[-1,1],[-3,-1],[-1,0],[-1,3],[0,1],[2,-1],[0,3],[3,-1],[2,-2]],[[8988,4695],[-2,0],[-4,4],[-2,3],[6,-1],[1,-1],[1,-3],[0,-2]],[[9087,4871],[-1,0],[-3,5],[0,2],[0,3],[3,4],[2,-4],[1,-7],[-2,-3]],[[9084,5071],[10,-4],[0,2],[1,-1],[0,-3],[-2,0],[-1,0],[-1,-2],[-3,-5],[-2,1],[-2,-1],[-4,0],[-5,2],[-1,-2],[-2,1],[-1,-3],[-1,1],[-1,3],[0,1],[3,2],[-1,5],[2,2],[3,0],[2,2],[6,-1]],[[9178,5030],[-6,0],[-2,1],[-1,3],[-2,5],[-2,1],[0,1],[4,4],[3,1],[6,-4],[0,-3],[0,-2],[0,-5],[0,-2]],[[9180,4645],[4,-4],[2,1],[2,-1],[2,-5],[0,-4],[1,-4],[0,-1],[-2,-2],[0,2],[-1,1],[-3,0],[-3,1],[-4,0],[2,4],[0,2],[-2,5],[0,3],[0,2],[2,1],[0,-1]],[[9239,4668],[1,-1],[4,0],[1,-3],[1,-1],[2,-2],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,1],[-2,-2],[-3,3],[-1,1],[0,2],[-2,4],[-3,3],[1,2],[2,1]],[[9264,4523],[5,-3],[1,-4],[-1,-1],[-5,-1],[-1,2],[-3,2],[-1,4],[-2,-2],[1,3],[-2,3],[-1,4],[0,2],[3,-2],[6,-7]],[[8988,4687],[0,-3],[-4,3],[-4,6],[-2,2],[-1,4],[2,-3],[5,-3],[4,-6]],[[9107,5052],[-1,-3],[-2,1],[-1,0],[1,1],[1,3],[1,0],[1,-2]],[[9220,5021],[-1,0],[0,4],[1,3],[1,-2],[1,-4],[-2,-1]],[[9191,4575],[-1,-4],[-2,1],[0,1],[0,3],[2,0],[1,-1]],[[9267,4948],[0,-2],[-1,2],[1,3],[0,-3]],[[9331,4799],[0,-6],[-1,-1],[-1,2],[-2,-2],[-1,-2],[-1,-1],[-3,0],[-3,1],[-3,3],[-2,4],[-2,5],[-2,6],[1,6],[-1,6],[-4,5],[-1,1],[-2,6],[-2,3],[-2,5],[-1,2],[-1,7],[0,4],[0,11],[0,6],[1,0],[2,-3],[1,-1],[4,-1],[2,-5],[3,-9],[0,-3],[1,-2],[3,-4],[1,-2],[3,-10],[1,-2],[2,-1],[1,-2],[3,-4],[2,-5],[2,-5],[1,-5],[1,-7]],[[9295,4871],[-1,-1],[-1,8],[0,5],[-1,4],[0,2],[2,5],[0,1],[2,-2],[0,-5],[1,-5],[-1,-9],[-1,-3]],[[2850,5682],[-2,-5],[0,-4],[2,-4],[0,-4],[1,-5],[2,-5],[2,-8],[0,-4],[0,-2],[-2,-2],[-2,-4],[0,-5],[0,-2],[-5,-8],[-1,-2],[-1,2],[-1,4],[-2,3],[-1,1],[0,-1],[-1,-2],[1,-7],[0,-3],[-2,-3],[-2,-12]],[[2836,5600],[-1,2],[-7,16],[-5,21],[-2,9],[2,1],[1,-1],[1,2],[1,3],[-1,6],[3,5],[1,3],[1,-1],[2,-5],[2,-3],[4,-5],[2,-1],[-3,5],[-4,6],[-2,4],[-1,6],[-1,-2],[-1,-2],[-1,-2],[-1,2],[0,2],[-3,0],[0,2],[-1,1],[0,-4],[1,-2],[0,-3],[-1,0],[-1,3],[-1,2],[-1,11],[-3,5],[-2,1],[-1,1],[-1,3],[-3,2],[-2,5],[-4,4],[-5,1],[-5,0],[-2,-3],[-1,-2],[-1,-1],[-3,-3],[-1,-5],[-1,-3],[-1,-5],[1,-2],[-10,-14],[-2,-2],[-5,-2],[-1,-1],[-1,-3],[0,-4],[0,-4],[1,-3],[1,-2],[3,-8],[5,-11],[1,-3],[1,-6],[-1,-3],[-2,-1],[-4,0],[-2,-3],[-1,-3],[-2,-3],[-6,-3],[-5,0],[-2,3],[0,9],[-3,16],[-1,11],[-1,-2],[-2,-1],[0,-3],[-1,-8],[0,-2],[-2,0],[-3,3],[-3,3],[-5,16],[-1,4],[0,4],[-4,1],[-3,3],[-4,0],[-1,-1],[-2,2],[-1,4],[-3,-2],[-5,1],[-4,2],[-3,-1],[-2,-3],[0,-9],[0,-1]],[[2698,5649],[-1,3],[0,4],[-1,3],[-2,4],[-1,1],[1,2],[4,5],[0,2],[1,4],[-1,4],[-2,6],[1,4],[2,3],[2,2],[1,1],[-1,2],[-1,3],[-3,3],[-1,1],[0,11],[0,11],[0,1],[1,1],[1,2],[1,3],[1,1],[2,-2],[2,-3],[1,1],[1,1],[0,1],[0,1]],[[2706,5735],[2,-3],[4,-5],[0,-3],[0,-2],[1,-8],[1,-1],[2,2],[1,-2],[-1,-1],[-1,-2],[0,-6],[3,-3],[2,-3],[5,2],[2,-1],[1,1],[-1,5],[-2,4],[0,1],[1,-1],[1,-3],[3,-3],[5,-11],[5,-2],[4,0],[4,1],[6,5],[5,7],[3,4],[12,7],[4,8],[2,1],[2,1],[3,6],[2,4],[2,3],[6,-2],[4,-2],[3,0],[3,-1],[1,-4],[1,-1],[7,0],[5,-1],[12,-10],[7,-10],[3,-10],[9,-14]],[[2808,5660],[0,-2],[-2,5],[0,2],[0,5],[2,1],[1,0],[0,-1],[1,-5],[-1,-3],[-1,-2]],[[2733,5606],[-2,0],[-3,2],[-2,5],[0,2],[0,1],[1,5],[2,2],[2,-6],[-1,-2],[0,-4],[3,-2],[0,-3]],[[2715,5724],[0,-3],[-2,5],[1,1],[1,0],[0,-3]],[[2803,5659],[-1,-2],[0,2],[1,3],[0,-3]],[[8643,5358],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[8738,5609],[-2,-1],[-1,4],[1,5],[1,4],[1,1],[0,1],[1,5],[1,-3],[-1,-9],[-1,-4],[0,-3]],[[7132,7238],[1,-5],[2,-8],[1,-5],[2,-6],[0,-3],[2,-5]],[[7140,7206],[-1,-3],[-1,-4],[-3,-3],[-3,-2],[-1,-1],[0,-2],[-1,-4],[-3,-2],[-2,0],[-2,1],[-8,-5],[-3,0],[-3,-4],[-2,-3],[-5,-3],[-3,0],[-4,2],[-5,4],[-2,2],[-2,0],[-5,0],[-4,2],[-6,2],[-2,1],[-6,2],[-3,-2],[-4,-3],[-2,-1],[-2,-7],[-1,-3],[-1,-4],[-1,-2],[1,-3],[3,-2],[1,-3],[0,-3],[-1,-3],[-1,-2],[0,-1],[1,-2],[0,-2],[5,-1],[3,0],[1,0],[0,-3],[-1,-3],[-4,-3],[-2,-3],[-1,-4],[0,-3],[1,-2],[2,-2],[1,-3],[1,-2],[0,-3],[-1,-4],[-2,-5],[-1,-4],[0,-1],[0,-2],[1,-2],[2,-4],[3,-3],[2,-1],[0,-1],[1,-4],[0,-3],[-1,-3],[2,-3],[3,0],[3,-1],[1,1],[1,0],[0,-9],[0,-5],[1,-2],[3,-2],[5,1],[4,-3],[3,-3],[2,-3],[1,-2],[0,-4],[-2,-4],[-4,-2],[-1,-1],[-10,-8],[-2,-3],[-3,-5],[-1,-3],[0,-3],[2,-10],[0,-4],[-1,-12],[-1,-4],[1,-3],[2,-1],[0,-3],[0,-2],[-3,-4],[-4,-4],[-1,0],[-3,-7],[-6,-14],[-3,-5],[0,-3],[0,-2],[1,-4],[0,-3],[-1,-4],[-2,-4],[-5,-3],[-5,-4],[-2,-2],[-2,-9],[-2,-10],[-1,-3],[-2,-11],[-5,-16],[-2,-3],[-7,-8],[-8,-8],[-2,-3],[-1,-8],[-2,-8],[-1,-5],[-5,-9],[-2,-8],[0,-5],[-5,-2],[-4,-3],[-7,-1],[-3,-1],[-9,-7],[-2,0],[-2,1],[-1,2],[-1,4],[-1,6],[-1,3],[-3,2],[-2,0],[-2,-3],[-2,-2],[-2,-3],[-1,-2],[-3,-9],[-4,-13],[-5,-9],[-2,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-10],[-1,-8],[0,-2],[1,-2],[3,-2],[3,-5],[5,-2],[4,0],[2,-2],[1,-2],[0,-2],[0,-8],[-1,-7],[-1,-9],[0,-4],[1,-5],[4,-12],[2,-1],[3,0],[2,0],[2,1],[1,0],[1,-2],[0,-2],[0,-12],[1,-5],[3,-7],[2,-9],[2,-9],[2,-8],[1,-4],[-1,-2],[-1,-2],[0,-3],[0,-3],[0,-2],[1,-2],[1,-1],[0,-2],[-2,-2],[-1,0],[-2,-1],[-2,-5],[-1,-1],[-1,0],[-2,0],[-2,2],[-1,3],[0,3],[0,2],[-2,0],[-5,-3],[-6,-4],[0,-3],[-2,-3],[-2,-1],[-4,0],[-2,0],[-2,3],[-2,3],[-4,0],[-5,0],[-4,0],[-2,1],[-1,-1],[-3,1],[-1,-1],[-1,-1],[-1,3],[-1,0],[0,-1],[-1,-2],[0,-17],[-4,0],[-2,0],[-3,-1],[-3,-1],[-1,-2],[-2,-2]],[[6893,6558],[-1,-4],[-1,-2],[-1,4],[-1,1],[-1,-1],[-1,0],[-3,5],[-1,-5],[-4,-1],[-1,4],[0,3],[-2,-3],[-2,4],[0,4],[-1,1],[-1,2],[-1,1],[-2,5],[0,5],[-1,6],[-3,23],[-2,2],[-11,4],[0,4],[0,10],[0,7],[-4,9],[-1,6],[-2,5],[-3,1],[-3,0],[-2,-2],[-1,-4],[7,1],[1,-1],[2,-3],[-2,0],[-2,2],[-3,0],[-10,-3],[-5,-4],[-8,1],[-9,-3],[-8,-1],[-4,-7],[-1,2],[-2,1],[-11,6],[0,2],[-2,2],[-2,-3],[-2,-1],[-6,3],[-4,-2],[-2,-3],[0,-5],[-6,1],[-3,1],[-4,-1],[-10,2],[-3,-1],[-3,-3],[-2,-2],[-2,-1],[-2,3],[-1,2],[-1,-1],[-2,-3],[-5,-2],[-5,1],[-4,2],[0,1]],[[6710,6635],[1,5],[1,17],[0,7],[0,3],[0,1],[2,3],[1,1],[0,9],[1,10],[1,3],[1,1],[6,5],[1,3],[3,-1],[0,1],[1,3],[1,4],[2,3],[2,1],[5,2],[3,2],[1,0],[9,0],[2,1],[0,1],[0,10],[2,1],[0,1],[0,7],[0,4],[2,3],[0,2],[-2,3],[-1,2],[-1,0],[-7,-1],[-3,0],[-1,1],[-1,1],[1,2],[0,3],[1,6],[0,3],[-1,17],[-1,12],[1,11],[0,3],[-1,0],[-1,0],[-4,-1],[-3,8],[-3,2],[-6,4],[-3,1],[-4,3],[-3,7],[-4,7],[-1,5],[-2,7],[-5,15],[0,4],[0,3],[-5,9],[-3,7],[-6,12]],[[6689,6904],[11,-7],[8,-5],[14,-7],[10,-6],[3,-1],[30,5],[11,-4],[4,-2],[0,1],[2,3],[2,2],[4,3],[4,1],[5,0],[3,0],[3,-1],[5,0],[2,1],[8,5],[5,3],[9,4],[6,3],[1,2],[2,3],[0,3],[-1,4],[-1,4],[1,5],[1,7],[0,11],[0,6],[1,11],[2,6],[2,3],[2,2],[1,1],[1,2],[3,9],[3,4],[2,2],[3,0],[3,-4],[4,-1],[5,1],[4,2],[2,2],[2,2],[0,2],[-3,2],[-1,2],[-1,4],[2,1],[3,1],[8,7],[3,5],[1,3],[1,0],[3,-2],[4,-1],[2,2],[2,1],[2,-3],[1,-3],[2,-3],[2,-1],[3,2],[3,4],[3,6],[3,5],[-1,18],[0,11],[1,6],[2,3],[1,5],[0,5],[2,4],[1,11],[2,2],[4,2],[6,1],[4,5],[5,5],[1,5],[-2,5],[-3,9],[-2,6],[-5,10],[1,7],[3,2],[7,-4],[2,-1],[2,-1],[7,0],[5,2],[6,4],[1,4],[0,5],[0,4],[0,5],[-2,4],[-1,3],[0,3],[1,1],[1,3],[2,4],[3,6],[2,5],[1,3],[3,3],[2,5],[1,3],[1,2],[1,2],[-1,2],[0,2],[-1,2],[0,3],[0,2],[1,2],[0,3],[-1,5],[-1,3],[-1,7],[-2,7],[0,2],[-2,4],[-3,3],[-1,3],[1,4],[2,3],[4,7],[3,5],[2,3],[2,0],[2,0],[1,3],[3,3],[5,6],[2,4],[2,2],[2,0],[3,1],[3,3],[3,1],[4,0],[6,1],[3,1],[8,1],[9,0],[1,1],[4,-3],[3,-1],[1,0],[4,4],[7,5],[3,2]],[[7070,7316],[2,1],[2,0],[2,-1],[2,-2],[2,-2],[1,1],[3,1],[3,-1],[5,-3],[1,-2],[1,-8],[1,-1],[4,2],[2,-1],[3,-3],[2,-2],[1,-3],[2,-5],[0,-3],[1,-5],[0,-12],[-1,-2],[-1,-3],[0,-2],[1,-2],[2,-1],[1,-1],[1,-2],[2,-7],[0,-1],[2,0],[4,2],[3,2],[2,1],[0,-7],[2,-2],[3,-3],[1,-1]],[[6631,6348],[-2,-1],[-1,1],[0,7],[4,9],[3,11],[2,-10],[-3,-5],[-2,-9],[-1,-3]],[[6566,6623],[3,-16],[4,-14],[3,-8],[4,-10],[6,-10],[3,-3],[11,-7],[6,-3],[8,-2],[5,-6],[2,0],[3,2],[3,0],[5,-8],[2,-7],[2,-3],[2,-6],[1,-6],[5,-9],[3,-10],[3,-8],[3,-5],[5,-2],[3,-2],[0,-5],[0,-6],[-1,-5],[-3,-10],[-1,-6],[-3,-10],[-4,-16],[-2,-4],[-7,-8],[-5,-10],[-5,-18],[-5,-17],[-1,-6],[-4,-1],[-2,1],[-2,1],[1,5],[0,5],[-2,0],[-2,-1],[-4,-13],[-2,-6],[-1,-7],[-1,-10],[-2,-8],[0,-8],[0,-4],[1,-10],[0,-10],[1,-6],[0,-8],[-2,-2],[-2,-1],[-6,-1],[-7,-2],[-7,-5],[-3,-4],[-5,-10],[-3,-24],[-4,-10],[-4,-2],[-7,-1],[-11,-3],[-4,-2],[-6,-15],[0,-5],[1,-3],[0,-4],[0,-4],[-3,-9],[-3,-7],[-8,-4],[-3,2],[-3,2],[-5,0],[-9,-2],[-3,-5],[-5,-3],[-4,-6],[-9,-2],[-6,-4]],[[6557,6685],[2,8],[1,2],[1,-1],[2,1],[2,4],[0,3],[1,0],[1,-2],[0,-7],[-1,-5],[-1,-18],[-1,-3],[-1,-2],[0,-4]],[[5316,8584],[0,2],[-1,2],[-6,2],[-1,0],[-3,2],[-2,0],[-3,1],[-2,6],[-3,6],[0,2],[0,10],[-1,4],[0,5],[-2,-4],[1,-6],[-2,-3],[-3,-1],[1,-4],[1,0],[0,-4],[-1,-6],[-5,-12],[-1,-2],[-1,-1],[-2,1],[-4,-4],[-3,0],[-1,4],[-5,5],[-2,0],[2,-3],[2,-3],[-1,-3],[-1,-1],[-2,-1],[-7,-4],[2,-3],[-2,-3],[-2,-1],[-1,-1],[-1,-3],[-7,-6],[-11,-15],[-6,-5],[-4,-4],[-3,0],[-5,-4],[-11,-3],[-8,1],[-5,-1],[-3,3],[0,1],[0,1],[0,2],[-3,0],[0,-1],[-1,-3],[-1,-1],[-3,2],[-1,2],[1,3],[2,2],[0,1],[-1,2],[-1,0],[-3,-1],[-3,1],[-9,6],[-3,3],[-7,6],[-3,5],[-2,6],[0,6],[1,9],[1,2],[7,-3],[7,-5],[1,0],[2,4],[4,3],[-1,1],[-6,-4],[-2,2],[-4,5],[0,2],[2,2],[0,3],[-1,3],[1,3],[3,4],[4,4],[3,4],[3,3],[-1,0],[-3,-1],[-3,-3],[-4,-4],[-5,-4],[-4,-1],[-1,-1],[-3,-1],[-3,-5],[-3,-2],[-5,-1],[-1,4],[2,13],[1,7],[2,4],[3,1],[1,3],[2,0],[1,-1],[6,-2],[2,4],[4,1],[6,4],[0,1],[-4,-1],[-3,0],[-3,-1],[-2,1],[-1,3],[1,3],[6,7],[2,3],[1,2],[0,2],[1,4],[6,7],[5,3],[1,-3],[-1,-8],[0,-3],[4,12],[1,3],[2,2],[5,1],[1,2],[-5,0],[-13,-5],[-6,-4],[-1,-4],[-4,-4],[-2,-4],[0,-4],[-2,-3],[-3,-1],[-4,-6],[-2,-4],[-4,-4],[-2,-3],[-1,-1],[-1,-3],[-2,0],[-1,2],[0,3],[1,6],[2,4],[0,4],[-1,4],[1,3],[2,0],[3,-1],[3,0],[6,3],[-1,2],[-3,0],[-4,0],[-4,3],[-3,5],[-1,8],[1,3],[11,8],[2,3],[-1,1],[-4,-5],[-6,-2],[-3,3],[-2,4],[-1,9],[0,5],[0,5],[2,2],[3,-1],[2,0],[6,1],[14,3],[8,-2],[4,0],[5,3],[5,1],[3,-3],[2,-2],[0,-4],[2,-2],[1,0],[-1,3],[0,5],[14,5],[2,1],[-6,1],[-1,5],[2,6],[0,1],[-3,-3],[-1,-5],[0,-4],[0,-2],[-3,-1],[-7,0],[-4,1],[-4,1],[-1,1],[1,3],[-1,1],[-2,-3],[-1,-5],[-3,-1],[-9,2],[-12,-1],[-5,-3],[-4,1],[-6,4],[-2,4],[-1,7],[0,3],[5,2],[3,0],[2,1],[-2,1],[-3,3],[-2,4],[-3,1],[-2,4],[0,6],[0,4],[2,1],[4,-1],[9,1],[9,-4],[7,-2],[12,1],[7,3],[-1,1],[-8,-2],[-7,0],[-13,4],[-5,2],[-6,-1],[-3,1],[-2,4],[1,8],[3,2],[2,-2],[1,0],[2,3],[2,2],[1,4],[5,4],[2,0],[4,2],[2,-1],[1,-1],[1,-2],[4,0],[10,3],[1,1],[2,3],[-6,-1],[-6,-2],[-3,-1],[-1,3],[2,2],[2,2],[1,4],[2,1],[2,0],[5,1],[4,1],[6,-1],[9,-1],[6,-4],[2,0],[2,1],[1,2],[-4,1],[-1,2],[1,2],[7,2],[8,1],[-1,2],[-18,-3],[-4,2],[-4,0],[-2,-1],[-7,-2],[-1,1],[1,4],[4,7],[0,1],[2,2],[11,4],[5,4],[2,1],[2,-1],[4,1],[6,-1],[4,-6],[2,-1],[9,-7],[0,2],[-8,9],[-3,2],[-2,5],[1,4],[2,3],[9,2],[1,1],[1,3],[-2,2],[-3,0],[-3,1],[0,3],[1,2],[5,4],[2,1],[5,2],[8,-3],[1,-2],[-2,-4],[0,-2],[2,0],[4,6],[6,1],[2,2],[3,0],[4,-5],[1,-2],[1,-1],[2,-5],[1,0],[1,2],[3,2],[5,1],[7,-2],[3,1],[1,0],[-1,4],[-1,2],[1,3],[2,2],[5,3],[4,1],[3,2],[4,3],[0,2],[-1,2],[-3,0],[-1,1],[3,3],[5,3],[-1,2],[-3,1],[-3,-1],[-4,-3],[-4,-3],[1,-2],[2,-3],[-3,-4],[-16,-12],[-8,-3],[-4,1],[-1,3],[-1,2],[-2,5],[-3,0],[-2,-1],[-1,1],[2,5],[2,4],[4,3],[3,4],[2,6],[6,5],[9,14],[7,5],[3,4],[5,2],[3,4],[3,1],[6,3],[3,4],[-2,0],[-5,-2],[-3,-1],[0,4],[2,4],[4,4],[18,12],[2,-2],[2,-3],[6,0],[6,7],[5,7],[-2,-1],[-3,-3],[-6,-4],[-3,-1],[-1,1],[-1,3],[-2,0],[-2,0],[-1,2],[-1,5],[3,7],[1,4],[2,4],[8,10],[2,6],[3,3],[5,-1],[1,1],[-1,3],[-5,3],[0,2],[16,5],[8,0],[3,2],[4,2],[3,2],[-1,2],[-9,-3],[-5,-1],[-2,0],[-2,-1],[-6,0],[-2,11],[1,6],[3,0],[0,6],[3,4],[4,1],[2,1],[3,3],[4,-1],[5,1],[-1,1],[-6,2],[-1,4],[2,1],[2,2],[2,0],[4,6],[2,3],[3,-1],[4,3],[3,-1],[4,2],[5,1],[18,1],[0,2],[-4,1],[-13,0],[-6,0],[-3,0],[-1,1],[0,1],[2,2],[1,3],[5,7],[6,4],[4,-1],[5,-4],[3,-1],[2,-1],[2,-6],[2,0],[-1,5],[3,5],[-1,1],[-4,-1],[-4,1],[-3,4],[-1,3],[2,3],[2,1],[-1,2],[-8,-5],[-5,-1],[-2,1],[1,4],[0,4],[6,8],[3,1],[4,-1],[3,-2],[3,0],[3,2],[0,2],[-7,1],[-2,2],[1,1],[5,2],[4,4],[6,1],[4,3],[1,-1],[1,-1],[1,-10],[4,-8],[2,0],[-2,7],[1,2],[2,1],[1,2],[-2,0],[-2,3],[-2,8],[1,2],[5,4],[6,1],[7,-3],[2,0],[4,1],[7,2],[4,1],[2,0],[1,1],[-2,1],[-1,1],[-1,0],[-7,-1],[-17,0],[-2,2],[0,2],[2,4],[2,2],[6,3],[7,0],[8,7],[2,4],[2,7],[4,6],[11,3],[1,2],[-1,2],[0,6],[3,6],[2,2],[1,0],[2,-2],[3,-4],[4,-2],[6,-1],[2,1],[-5,3],[-3,3],[0,3],[1,2],[3,0],[3,0],[3,2],[0,2],[1,2],[0,2],[5,5],[13,3],[1,-1],[0,-10],[-2,-6],[0,-4],[3,4],[3,13],[3,6],[3,3],[2,1],[2,1],[3,2],[1,-2],[1,-3],[-2,-11],[0,-3],[-1,-5],[-7,-10],[1,-2],[1,1],[2,1],[9,10],[7,-1],[0,1],[-3,3],[-2,3],[-1,3],[0,9],[2,4],[6,-1],[4,1],[2,-2],[3,0],[3,7],[5,0],[4,-4],[5,-3],[5,-4],[1,1],[-2,10],[-3,3],[-5,2],[-6,5],[-2,2],[1,1],[5,2],[6,-2],[6,4],[2,-1],[5,1],[2,-2],[2,1],[1,3],[8,2],[4,-2],[3,-2],[1,-4],[2,-7],[3,-5],[2,-2],[3,0],[1,2],[-2,2],[-1,3],[1,6],[2,2],[8,9],[6,4],[4,1],[7,10],[2,2],[2,0],[-1,3],[-3,1],[-1,3],[5,4],[6,6],[3,1],[2,-2],[6,-3],[4,-3],[2,-2],[2,1],[1,2],[2,1],[4,0],[2,-2],[2,0],[1,-1],[1,-2],[-4,-3],[-5,-6],[-6,-6],[-1,-4],[-2,-10],[-4,-6],[-1,-4],[2,-2],[5,2],[6,5],[1,6],[14,17],[7,9],[8,7],[4,2],[2,-5],[-2,-7],[-3,-4],[3,-2],[-1,-5],[-1,-2],[0,-3],[0,-3],[2,1],[9,5],[2,6],[3,4],[1,4],[3,3],[7,0],[0,1],[-8,5],[-1,2],[3,3],[7,6],[4,-1],[2,-1],[9,-1],[7,-4],[0,-6],[-2,-3],[-1,-1],[-9,-5],[-2,-2],[3,-1],[6,2],[2,-2],[-2,-5],[0,-8],[-1,-5],[0,-4],[1,-2],[2,9],[1,2],[3,4],[2,6],[3,8],[4,5],[2,1],[8,0],[3,-2],[3,-3],[2,-2],[7,-2],[2,-2],[0,-1],[2,0],[5,3],[3,0],[4,-4],[-1,-4],[1,-1],[5,0],[5,-1],[9,-7],[1,-4],[0,-4],[-13,-4],[-6,-4],[-9,-2],[-32,3],[1,-3],[22,-7],[1,-2],[-1,-4],[0,-3],[1,-2],[1,-2],[3,-1],[5,1],[3,-2],[2,2],[1,6],[1,1],[3,-2],[2,-6],[1,0],[1,4],[3,0],[4,0],[4,-1]],[[5804,9159],[-2,3],[-2,3],[1,3],[5,7],[4,4],[2,2],[2,4],[-5,12],[-10,3],[-10,5],[-4,3],[-6,6],[-5,5],[-4,0],[-4,-1],[-7,-5],[-4,-2],[-2,-1],[-1,0],[-4,2],[-6,0],[-4,-1],[-2,0],[-6,-8],[-4,-4],[-2,-1],[-2,-2],[-1,-4],[-4,-13],[-2,-5],[0,-3],[0,-9],[0,-4],[-3,-5],[-2,-1],[-3,-1],[-3,-1],[-3,-2],[-2,-3],[-3,-8],[-4,-2],[-4,0],[-2,3],[-6,2],[-5,1],[-5,3],[-4,2],[-4,1],[-2,-3],[-2,-2],[-7,-2],[-4,-2],[-5,-1],[-2,2],[-7,2],[-9,1],[-2,0],[-1,3],[-2,5],[-6,8],[-3,2],[-4,7],[-6,7],[-1,0],[-3,0],[-6,0],[-3,-2],[-2,-2],[-1,-1],[2,-6],[0,-2],[-1,-1],[-5,2],[-6,0],[-2,-2]],[[5137,8702],[-2,-1],[-2,1],[0,6],[2,0],[1,1],[2,-3],[-1,-4]],[[5141,8657],[0,-6],[-3,0],[-1,3],[0,1],[0,4],[-1,4],[1,2],[1,1],[2,-4],[1,-5]],[[5832,9204],[-6,-2],[0,2],[1,2],[1,4],[2,0],[3,-2],[1,-2],[-2,-2]],[[5332,8964],[-2,-2],[-3,1],[-1,1],[1,3],[2,1],[3,0],[1,-1],[-1,-3]],[[5235,8851],[-3,0],[-2,1],[4,3],[7,2],[1,2],[1,0],[1,-2],[0,-3],[0,-1],[-9,-2]],[[5225,8832],[-3,0],[-3,1],[-2,2],[-1,1],[4,2],[4,2],[1,-3],[1,-3],[-1,-2]],[[5651,9263],[-1,-2],[-1,-2],[-2,-2],[-7,-7],[-4,-1],[-1,-1],[-1,-1],[-5,1],[-2,-2],[-1,-1],[-3,0],[-2,0],[-6,3],[-3,3],[-2,3],[5,-1],[2,1],[3,0],[2,2],[4,0],[8,2],[3,-1],[7,6],[2,-1],[3,2],[2,-1]],[[5710,9281],[8,-2],[2,0],[4,-4],[2,1],[-1,-3],[-3,-1],[-6,-1],[-1,0],[-5,0],[-3,3],[-4,1],[0,1],[3,3],[4,2]],[[5655,9247],[1,-2],[0,-3],[-2,-3],[-6,-4],[0,-1],[-2,-1],[-3,-1],[-2,1],[0,3],[0,1],[-3,-1],[-2,2],[0,2],[1,1],[2,3],[4,1],[2,0],[9,6],[0,-1],[1,-3]],[[5667,9248],[-6,-2],[-3,2],[-1,2],[0,5],[0,2],[3,2],[2,-1],[0,-1],[3,-1],[3,-3],[-1,-5]],[[5385,9116],[1,-1],[5,0],[1,0],[-1,-2],[-2,-2],[-4,-1],[-2,-3],[-1,0],[-3,0],[-2,-1],[-3,-3],[-2,2],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-1,6],[2,1],[1,3],[2,0],[1,0],[4,5],[4,1],[2,0],[3,0]],[[5360,9093],[-4,-3],[1,6],[2,5],[3,4],[2,-2],[-1,-2],[0,-3],[0,-1],[-3,-4]],[[5422,9155],[3,-6],[2,-3],[-1,-7],[-4,-3],[-5,-1],[-4,1],[-2,1],[-1,2],[-1,0],[-4,-2],[-2,0],[-3,2],[-1,2],[3,4],[2,3],[4,-1],[3,-1],[1,3],[0,3],[1,1],[4,-1],[0,6],[2,1],[1,-1],[1,-1],[1,-2]],[[5549,9228],[1,-1],[1,1],[2,-1],[2,-3],[2,-1],[0,-1],[-2,-2],[-3,0],[-3,0],[-1,2],[-1,3],[-3,3],[0,3],[2,0],[3,-3]],[[5577,9221],[-2,-1],[-2,-1],[-1,1],[-2,0],[-2,0],[-2,3],[0,2],[3,2],[4,2],[4,-1],[1,0],[-1,-7]],[[5534,9220],[3,-4],[2,1],[1,1],[1,0],[3,-1],[0,-3],[-4,-4],[-3,-5],[-4,-1],[-2,1],[-4,-3],[-2,-3],[-3,-4],[0,-2],[-1,-2],[-10,-1],[-4,-1],[-4,1],[-2,3],[1,1],[4,1],[0,2],[1,2],[1,0],[1,3],[2,1],[3,-1],[2,3],[1,0],[1,-2],[1,3],[-1,2],[1,1],[3,4],[2,3],[2,2],[3,0],[0,3],[0,2],[0,2],[2,5],[2,0],[1,-4],[0,-6]],[[5347,8980],[-2,-1],[0,3],[1,2],[2,1],[3,1],[3,0],[0,-1],[-1,-2],[-6,-3]],[[5344,8988],[-2,-1],[0,3],[2,2],[1,2],[1,2],[1,1],[3,-1],[0,-4],[-1,-3],[-5,-1]],[[5311,8920],[-1,-2],[-3,2],[-7,-1],[-2,1],[2,3],[6,3],[3,0],[3,-4],[-1,-2]],[[5486,9192],[3,-3],[1,1],[3,1],[3,-2],[1,-2],[3,0],[1,-3],[1,-3],[-2,-3],[-2,-1],[-1,-3],[1,-5],[-5,-1],[-6,-1],[-2,2],[-4,-3],[-5,-6],[-2,-1],[0,2],[-3,1],[-5,0],[1,2],[0,1],[4,1],[1,3],[-1,5],[1,3],[0,2],[2,2],[8,-1],[1,2],[-1,1],[-4,3],[1,1],[3,1],[2,1],[1,2],[0,1],[1,0]],[[5437,9133],[1,-1],[3,6],[5,2],[0,2],[1,1],[0,4],[1,2],[2,1],[2,1],[1,0],[3,-2],[1,-2],[2,-5],[-1,-5],[-5,-4],[-4,-1],[-4,-5],[-2,-3],[-2,-1],[-1,0],[-1,1],[-2,0],[-2,-3],[-7,-2],[-2,0],[-1,3],[-1,0],[-3,-4],[-2,-1],[-2,0],[-3,1],[-8,-6],[-8,-1],[-2,0],[-1,4],[6,5],[4,4],[14,2],[9,10],[2,11],[2,4],[-1,2],[-3,0],[0,4],[2,4],[4,5],[3,2],[4,6],[2,1],[2,0],[2,-1],[0,-3],[-3,-6],[-5,-6],[0,-3],[2,-3],[1,-5],[0,-5],[-4,-7],[-1,-3]],[[4751,9264],[-3,0],[-1,1],[4,3],[12,7],[5,6],[9,3],[1,-4],[-1,-4],[-8,-4],[-9,-2],[-9,-6]],[[5533,9469],[-3,-3],[-5,4],[-3,4],[1,2],[9,0],[2,-2],[1,-2],[-2,-3]],[[5746,9714],[-4,0],[-8,4],[-1,4],[1,1],[4,0],[6,-5],[6,-1],[-4,-3]],[[5903,9799],[-26,-3],[-3,2],[43,6],[2,1],[8,1],[7,-2],[-2,-1],[-29,-4]],[[5600,9711],[3,-2],[9,1],[4,-10],[3,-10],[4,-1],[8,1],[7,1],[4,-1],[6,-3],[3,-2],[-3,-2],[-5,-1],[-1,-6],[6,-2],[9,-5],[6,0],[10,2],[9,-4],[9,-5],[-21,-5],[-2,-2],[-3,-4],[-3,-3],[-3,-2],[-7,-4],[-3,-1],[-8,0],[-3,-1],[-2,-3],[-3,-2],[-7,-1],[-4,3],[2,1],[0,2],[-1,4],[6,4],[2,2],[-1,1],[-2,0],[-5,1],[-1,0],[-4,-3],[-6,-1],[-5,-1],[-23,-3],[-3,1],[-2,6],[9,4],[2,5],[2,3],[3,3],[5,6],[1,0],[-12,5],[-5,3],[-6,6],[-1,5],[-7,4],[1,6],[-6,-1],[-4,4],[4,2],[19,3],[11,2],[5,0]],[[5580,9806],[3,-1],[15,1],[3,-2],[1,-3],[2,-1],[4,-1],[8,-4],[3,0],[2,2],[2,6],[0,6],[-1,4],[1,2],[3,1],[3,-1],[4,2],[2,2],[4,0],[6,-2],[2,-1],[-2,-2],[0,-4],[-3,-8],[6,0],[9,2],[3,2],[5,3],[5,0],[3,0],[1,2],[0,1],[3,0],[4,-3],[2,-1],[4,1],[1,0],[3,-1],[16,-3],[5,-1],[3,-2],[2,0],[17,0],[12,-1],[4,-2],[4,-4],[1,-9],[-3,-2],[-24,-11],[-6,-3],[-3,-4],[-5,-7],[-2,-2],[-11,-3],[-3,0],[-8,1],[-3,0],[-10,-4],[-4,-2],[-3,-3],[-5,-1],[-6,1],[-23,1],[-4,2],[-2,4],[5,5],[-27,-2],[-29,1],[-2,1],[-1,1],[-10,2],[-7,1],[-7,3],[-6,3],[2,2],[2,1],[5,0],[5,-1],[9,1],[2,3],[3,1],[3,2],[-9,2],[-10,0],[-6,-2],[-7,-1],[-7,0],[-12,0],[-6,2],[-9,4],[-3,2],[-1,1],[0,3],[9,2],[4,1],[3,3],[-14,1],[-6,2],[-6,3],[5,2],[19,1],[5,-1],[5,-2],[6,-2],[5,3],[-5,1],[-4,5],[-1,2],[0,2],[3,0],[1,-1],[7,-4],[5,-1],[2,4],[0,1],[-1,2],[-3,3],[-2,3],[4,1],[3,0],[7,-3],[7,-1],[3,-2],[6,-4],[6,-3]],[[5466,9786],[1,0],[2,1],[1,1],[1,1],[7,-1],[10,-3],[3,-2],[4,-3],[3,-5],[-2,-4],[-4,-4],[-1,-2],[1,-3],[0,-3],[-2,-3],[6,3],[11,10],[2,0],[1,0],[6,-2],[4,-5],[1,-1],[1,-2],[1,-3],[-1,-3],[0,-1],[-3,-2],[-1,-1],[3,0],[3,-1],[3,-4],[3,-1],[11,1],[7,-1],[4,-6],[6,1],[0,3],[2,1],[8,0],[4,-2],[4,-3],[-7,-4],[6,-4],[10,-3],[6,-4],[2,-1],[1,-2],[-4,-2],[-5,-2],[-10,0],[-9,-1],[-17,-2],[-3,0],[-1,-1],[-1,-2],[-6,-5],[-7,-6],[-2,-3],[-2,-5],[-1,-3],[1,-3],[0,-3],[-5,-2],[-3,0],[-4,0],[-3,-1],[-1,-2],[1,-3],[-1,-8],[-1,-7],[-2,-6],[-2,-3],[-3,-1],[-8,-1],[-6,-5],[-5,-10],[-3,-4],[-5,-6],[1,-3],[2,-2],[-3,-4],[-5,-5],[0,-2],[2,-3],[0,-4],[-3,-3],[-7,-1],[-6,1],[-3,2],[-3,4],[-4,2],[-3,1],[-13,7],[-11,12],[-11,4],[-7,2],[-3,2],[-4,3],[-3,3],[-2,4],[-2,3],[0,3],[1,2],[1,1],[9,1],[3,0],[3,-2],[3,-1],[6,10],[36,5],[11,1],[12,0],[-2,2],[-2,4],[-1,0],[-9,-1],[-13,-2],[-7,0],[-7,1],[-6,-1],[-7,-3],[-7,-1],[-7,-1],[-14,0],[-4,2],[-4,3],[-2,2],[-1,2],[-1,6],[2,2],[1,1],[1,0],[4,0],[3,-1],[7,-3],[-2,4],[21,4],[10,4],[5,1],[5,0],[-2,2],[0,2],[4,1],[2,1],[8,1],[17,0],[7,1],[4,2],[-5,0],[-5,-1],[-2,1],[-5,2],[-3,3],[7,7],[3,3],[-7,-1],[-3,-1],[-8,-6],[-6,-2],[-7,-1],[-7,0],[-2,1],[-2,3],[-1,2],[0,2],[3,3],[1,3],[0,3],[-2,0],[-3,-2],[-2,-4],[-3,-2],[-4,0],[-1,2],[-2,2],[-1,1],[-2,0],[-3,-1],[-3,-2],[1,-2],[1,-3],[-2,-2],[-1,-3],[4,-2],[2,-3],[-4,-1],[-4,-2],[-3,-3],[-4,-2],[-5,0],[-7,-1],[-14,-1],[-7,4],[-1,2],[-1,1],[-5,2],[-6,5],[-5,7],[-3,0],[-5,2],[-3,2],[-2,3],[-1,3],[0,2],[3,1],[-7,3],[-7,4],[3,2],[2,0],[20,-4],[2,0],[2,2],[-1,1],[-3,1],[-5,0],[-1,0],[-2,3],[-1,3],[-1,2],[0,2],[3,3],[2,3],[-3,2],[-8,0],[-3,-1],[1,-4],[-2,-3],[-6,-3],[-3,2],[-3,5],[-4,5],[-1,2],[-1,4],[-2,3],[-2,3],[-1,2],[1,2],[2,3],[-2,3],[-2,2],[0,2],[2,1],[2,1],[1,0],[5,-2],[3,-3],[1,1],[2,3],[3,1],[10,1],[11,-4],[2,-2],[3,0],[-1,2],[-1,3],[2,1],[9,-2],[4,0],[10,3],[16,2],[6,-3],[0,-1],[0,-2],[0,-1],[-4,-2],[-20,-1],[-14,-7],[19,1],[3,-1],[1,-5],[2,-1],[4,-1],[3,-1],[4,-3],[3,-2],[2,0],[1,2],[-1,3],[0,3],[0,3],[0,3],[4,2],[6,6],[6,4],[6,-2],[7,-5],[5,-8],[5,-7],[6,-10],[3,-4],[3,-1],[12,-10],[1,0],[-2,8],[-6,13],[-5,10],[-1,4],[0,5],[0,2],[1,1],[3,6],[4,3],[-2,4],[2,3],[4,3],[4,0],[3,-2],[8,-7]],[[5312,9712],[0,-4],[5,0],[5,-4],[6,-2],[2,-2],[1,-2],[3,-4],[2,-4],[-4,-1],[-6,6],[-5,4],[-6,3],[-4,0],[-3,1],[-7,11],[-2,2],[-4,4],[-2,5],[0,3],[6,0],[5,-3],[4,-5],[1,-2],[-2,-2],[2,-3],[3,-1]],[[5520,9809],[-6,-3],[-10,2],[1,3],[3,1],[6,0],[6,-3]],[[5806,9729],[9,0],[8,1],[1,-1],[-10,-3],[-12,1],[-11,1],[-13,-4],[-4,2],[7,3],[7,1],[1,2],[2,0],[10,0],[5,-3]],[[8517,7360],[-1,0],[-1,1],[-6,5],[-4,-3],[-1,-4],[-2,-1],[-1,7],[-3,0],[-5,7],[-2,-2],[-1,-2],[-2,-6],[-4,-5],[-1,-1],[-2,1],[1,1],[-2,6],[-6,2],[-2,2],[-1,1],[6,6],[1,1],[-1,1],[-1,1],[-5,-1],[-2,2],[-4,-1],[-2,2],[5,6],[0,4],[0,2],[3,8],[2,5],[7,6],[3,1],[2,-1],[2,1],[-2,2],[-2,2],[-3,-1],[-4,4],[0,4],[7,24],[0,2],[-1,6],[-1,5],[-5,4],[-2,0],[-6,7],[-3,3],[-1,-1],[0,-5],[-1,-1],[-2,-1],[-1,5],[-1,5],[-4,4],[-2,2],[1,6]],[[8454,7488],[0,6],[3,4],[6,8],[2,4],[3,4],[2,0],[1,1],[1,1],[0,2],[1,1],[4,3],[3,3],[3,1],[3,5],[2,2],[1,0],[1,1],[0,2],[2,2],[1,0],[3,1],[3,1],[2,4],[1,3],[1,3],[3,3],[2,5],[3,6],[1,2],[1,0],[0,2],[1,6],[1,6],[1,2],[3,3],[0,2],[1,0],[1,0],[2,1],[1,2],[2,0],[1,-2],[2,-3],[0,-3],[1,-2],[1,-3],[1,-1],[2,-1],[5,-2],[2,0],[2,-1],[3,-1],[6,1],[3,-1],[1,-2],[2,-1],[1,0],[1,2],[2,5],[1,3],[0,2],[-1,3],[-2,3],[-2,4],[-1,4],[-1,1],[0,2],[-1,3],[1,2],[3,2],[4,0],[4,0],[5,0],[4,1],[2,0],[2,0],[1,2],[4,4],[1,2],[2,3],[0,3],[1,2],[0,3],[2,3],[2,1],[1,0],[2,-1],[1,-2],[1,1],[1,2],[1,1],[2,0],[0,1],[1,8],[1,6],[0,4],[2,6],[0,5],[1,1],[2,0],[1,-1],[1,-1],[2,1],[1,-1],[0,-2],[3,-2],[0,-1],[0,-7],[1,-4],[2,-3],[3,-3],[1,0],[1,-2]],[[8629,7620],[-1,-1],[-2,1],[-3,0],[-4,-5],[-2,-2],[-2,-4],[-3,-3],[-2,-4],[-2,-5],[-1,-5],[-4,-6],[-1,-6],[-1,-6],[3,-6],[0,-5],[-2,-11],[1,-11],[-1,-4],[-10,-7],[-3,-4],[-3,-10],[-5,-4],[-3,-4],[-4,-2],[-2,-7],[-3,-4],[-3,-2],[-3,-3],[-5,0],[-4,-3],[-3,-5],[-8,-7],[-1,-5],[0,-7],[0,-6],[-1,-5],[-1,1],[-1,-1],[-1,-5],[0,-5],[3,-2],[2,-2],[3,-1],[3,-2],[5,-11],[4,-4],[1,-2],[3,-3],[2,-3],[1,-4]],[[8469,7461],[-2,-2],[0,3],[1,3],[2,0],[-1,-4]],[[5202,5438],[-2,-1],[-2,0],[2,8],[1,-2],[2,-1],[-1,-4]],[[5377,5973],[5,-12],[4,-14],[4,-10]],[[5390,5937],[3,-27],[0,-5],[0,-2],[0,-2],[1,-4],[2,-1],[4,-1],[3,-3],[1,-4],[1,-1],[1,-3],[0,-3],[0,-7],[-1,-9],[-1,-6],[1,-8],[-1,-3],[0,-2],[-2,-3],[-2,-3],[-6,-7],[-2,-1],[-2,-1],[-2,-1],[-3,-5],[-5,-15],[-5,-15],[-1,-13],[-2,-12],[-4,-8],[0,-5],[-1,-2],[0,-6],[0,-10],[-1,-4],[-1,-2],[-4,-3],[-2,-3],[-2,-7],[0,-8],[-1,-9],[-1,-7],[0,-4],[-2,-4],[-2,-5],[-2,-2],[-5,-2],[-3,-10],[-2,-8],[0,-3],[-2,-17],[-4,-12],[0,-4],[0,-4],[-4,-11],[-2,-3],[-1,-4],[1,-4],[2,-4],[0,-1],[-2,-4],[-4,-6],[-2,-3],[0,-2],[-1,-9],[0,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-2],[-3,0],[-1,1],[-1,3],[-1,11],[-1,2],[-1,2],[-3,6],[-3,6],[-4,5],[-1,-1],[0,-1],[-1,-6],[-1,-2],[-2,-1],[-4,0],[-2,1],[-1,1],[0,3],[-1,2],[-3,-5],[-4,-6],[-2,-1],[-1,-2],[-1,-6],[-2,-7],[-3,-4],[-2,-3],[-1,-2],[-2,-3],[-4,-8],[-5,-10],[-2,-5],[-1,-8],[-1,-9],[-1,-10],[-2,-15],[-2,-9],[-3,-6],[-1,-6],[-1,-4]],[[5237,5458],[-1,-2],[-2,1],[-1,4],[-2,1],[-2,5],[-1,-1],[3,-14],[-1,-6],[-8,0],[-6,-2],[-4,0],[-2,2],[-1,6],[-1,-1],[0,-3],[-1,-2],[-5,0],[-2,3],[-2,5],[-2,1],[0,-1],[2,-4],[0,-6],[-4,-7],[-2,0],[-2,3],[-1,4],[0,7],[-1,5],[-1,0],[1,-4],[0,-4],[0,-7],[2,-5],[-3,-2],[-1,0],[-2,0],[-1,2],[0,4],[-1,2],[0,-8],[-2,-1],[-1,0],[-5,-1],[-1,0],[0,1],[1,3],[0,3],[-2,-3],[0,-5],[-1,-1],[-3,1],[-3,3],[-1,3],[-3,3],[-6,11],[-1,5],[-2,7],[-1,6],[-2,10],[1,1],[1,-1],[1,2],[-3,1],[0,1],[-1,4],[1,4],[2,2],[1,1],[1,2],[1,3],[-5,-4],[-4,5],[-1,3],[0,2],[2,0],[3,0],[2,2],[-1,1],[-2,0],[-1,1],[0,4],[0,-1],[-1,-3],[-3,-2],[-2,2],[0,5],[0,2],[-1,2],[-5,13],[-7,11],[-5,7],[-9,4],[-18,0],[-1,1],[1,2],[2,1],[6,6],[-1,1],[-6,-4],[-2,0],[-3,-8],[-15,-1],[-2,0]],[[5075,5551],[0,3],[0,10],[1,4],[1,2],[-1,4],[-1,5],[0,7],[1,2],[0,3],[0,4],[0,15],[0,1],[1,2],[0,1],[-1,4],[-1,4],[0,7],[0,6],[-1,2],[1,10],[0,13],[0,6],[0,4],[0,10],[0,10],[2,15],[3,1],[4,1],[2,6],[1,8],[0,7],[0,3],[2,4],[3,6],[0,6],[1,2],[1,1],[2,1],[2,3],[2,6],[1,9],[-2,6],[0,2],[1,3],[1,3],[1,1],[2,0],[1,1],[1,10],[0,2],[-2,7],[0,5],[-1,7],[0,6],[-1,2],[-1,2],[0,2],[-5,12],[0,6],[2,8],[1,3]],[[5099,5857],[2,3],[0,1],[0,2],[-1,2],[0,3],[0,3],[1,2],[-1,6],[0,8],[1,11],[0,8],[3,5],[5,9],[3,9],[1,7],[2,23],[1,1],[1,1],[5,9],[4,3],[3,2],[4,1],[3,0],[5,-1],[4,1],[3,5],[2,1],[2,1],[10,-6],[9,-6],[2,0],[1,0],[3,-4],[3,-6],[3,-5],[1,-2],[4,-15],[2,-4],[2,-2],[2,-1],[2,1],[1,1],[2,4],[3,1],[2,0],[12,13],[1,0],[3,-1],[4,-2],[10,-13],[9,-9],[5,-3],[7,-2],[12,0],[8,18],[4,4],[3,4],[2,1],[6,3],[14,2],[12,-1],[3,-1],[5,-2],[9,-6],[3,-6],[6,-1],[4,1],[1,6],[4,7],[3,3],[3,4],[5,5],[4,3],[4,5],[2,2],[5,0]],[[5099,5857],[-1,6],[-3,3],[-2,2],[-2,3],[-1,4],[-3,7],[-8,14],[-2,1],[-2,-2],[-1,-2],[-1,-1],[-1,0],[-4,-2],[-3,-2],[0,-2],[2,-11],[-1,-6]],[[5066,5869],[-1,3],[-5,11],[-2,8],[-1,2],[0,3],[0,1],[1,1],[3,1],[0,1],[0,2],[0,4],[-2,6],[-1,3],[-1,1],[-1,0],[-2,0],[-3,-5],[-2,-1],[-3,1],[-3,1],[-2,2],[-5,9],[-6,10],[-3,1],[0,1],[0,7],[0,9],[0,3],[2,-2],[3,0],[1,1],[-2,3],[-3,4],[-1,4],[-1,2],[-2,2],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-3,8],[-3,8],[-1,6],[-1,3],[1,6],[-1,3],[-3,6],[-2,6],[1,9],[0,7],[0,5],[1,3]],[[5006,6043],[0,3],[1,1],[5,0],[7,-2],[7,2],[5,8],[5,8],[7,1],[8,1],[6,1],[10,0],[7,1],[9,0],[0,4],[1,1],[7,-2],[6,-2],[0,8],[6,9],[3,2],[0,1],[1,3],[1,5],[0,3],[1,3],[1,5],[1,9],[3,10],[2,13],[0,12],[0,10],[1,2],[0,17],[0,17],[0,14],[0,18],[0,15],[0,17],[0,15],[0,10]],[[5117,6286],[6,3],[6,2],[9,4],[10,4],[11,4],[3,3],[8,14],[3,7],[8,13],[5,10],[8,13],[7,13],[6,10],[10,12],[14,17],[15,18],[14,17],[14,18],[15,18],[14,17],[15,18],[14,17]],[[5332,6538],[14,-6],[14,-7],[14,-6],[3,-4],[8,-12],[9,-16],[1,0],[9,9],[12,12]],[[5416,6508],[3,-33],[2,-29],[0,-18],[0,-4],[1,-4],[2,-3],[9,-26],[-2,-5],[1,-8],[3,-4],[7,-15],[1,-3],[-1,-3],[-5,-18],[0,-5],[-1,-23],[-1,-17],[-1,-23],[-1,-27],[-1,-23],[-2,-31],[-1,-28],[-7,-16],[-13,-28],[-10,-23],[-6,-15],[-10,-30],[-5,-19],[-3,-11],[-2,-4],[2,-14],[2,-25]],[[2690,6047],[-1,-2],[-1,-1],[-2,-7],[0,-1],[0,5],[-1,1],[-2,-2],[0,-2],[1,-4],[1,0],[1,-1],[3,-23],[-1,-4],[-2,-7],[-1,-6],[-2,-3],[-3,-15],[-2,-24],[2,-22],[-1,-20],[1,-4],[0,-6],[-2,-1],[-1,3],[0,4],[1,3],[0,5],[0,3],[-1,-6],[-2,-2],[-1,-1],[-1,-3],[1,-6],[2,-4],[0,-2],[0,-4],[-1,-12],[0,1],[-1,1],[-1,0],[0,-4],[0,-3],[-1,-2],[-1,-2],[1,-1],[1,-1],[2,0],[1,-6],[0,-5],[-3,-4],[0,-4],[-2,-4],[-1,-4],[0,-3],[1,-10],[2,-7],[1,-4],[2,-1]],[[2676,5813],[0,-5],[-2,-3],[-2,-2],[-3,-1],[-5,2],[-2,1],[-1,1],[0,2],[-2,4],[-2,4],[-2,0],[-2,1],[-4,3],[-2,0],[-3,-2],[-3,-4],[-7,6],[-6,4],[-4,3],[-2,1],[-1,0],[-1,-2],[-1,-3],[0,-1],[0,-1],[-1,0]],[[2618,5821],[0,1],[-2,7],[-4,7],[-14,24],[-5,14],[-3,10],[-3,5],[-7,11],[-2,4],[-8,15],[-5,8],[-1,4],[3,4],[1,0],[1,-3],[2,-4],[1,0],[2,2],[0,1]],[[2574,5931],[7,1],[2,1],[1,3],[1,3],[0,4],[0,2],[2,3],[2,1],[2,0],[0,2],[0,5],[-1,13],[-1,4],[1,3],[0,1],[4,0],[6,-1],[2,1],[2,7],[3,6],[1,2],[2,1],[1,-5],[6,-7],[1,1],[0,1],[0,3],[2,3],[3,3],[2,4],[3,7],[3,4],[2,1],[1,2],[-1,2],[0,4],[1,4],[1,3],[2,1],[1,1],[-1,2],[1,3],[1,4],[4,3],[1,-1],[2,-5],[2,-3],[3,-1],[3,0],[1,3],[2,1],[1,-1],[1,0],[0,3],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,2],[1,0],[2,0],[3,1],[3,3],[2,2],[2,0],[1,1],[1,4],[4,2],[7,-1]],[[9808,2806],[3,0],[3,4],[3,4],[3,2],[5,7],[1,1],[4,1],[1,2],[1,0],[-1,-4],[-2,-1],[0,-2],[1,-2],[-2,-3],[1,-4],[-2,-4],[2,1],[2,3],[-1,2],[1,4],[2,1],[-1,3],[0,2],[3,-1],[1,0],[1,1],[1,0],[1,-2],[2,0],[-1,-3],[-2,-3],[0,-2],[-3,-3],[-2,-2],[3,0],[4,4],[3,4],[0,-5],[-2,-4],[-2,-3],[-2,-1],[-2,-2],[-1,-3],[0,-3],[1,-2],[2,-3],[-2,-6],[2,0],[1,-1],[2,-3],[-1,-5],[-1,-2],[-4,-9],[-2,-4],[-3,-3],[0,-5],[-1,-3],[-7,-12],[-1,-2],[-6,-19],[-3,-8],[-2,-2],[-2,-2],[-6,-4],[-2,-4],[-2,-4],[-3,-1],[0,-1],[2,-1],[1,-2],[-1,-3],[-2,-2],[-2,0],[-1,-2],[5,1],[1,-1],[1,-3],[0,-2],[1,-4],[4,-2],[4,-1],[0,-1],[1,-6],[-1,-3],[-1,-1],[-1,-1],[-3,0],[-2,1],[-2,3],[-6,-1],[-1,-1],[-1,1],[3,4],[-2,1],[-1,1],[-1,-1],[-1,-2],[0,-3],[-1,-1],[-2,-1],[-2,3],[-2,3],[-3,4],[0,-3],[3,-5],[1,-4],[-3,-2],[-3,-3],[-2,-1],[-3,-2],[-2,-3],[-2,-1],[-4,0],[-2,-1],[0,-5],[-2,-2],[-3,-1],[1,-1],[1,-1],[-3,-13],[0,-5],[0,-9],[-2,-8],[-4,0],[1,-2],[3,-2],[-1,-3],[-3,-7],[-2,-4],[-1,-9],[-2,-8],[-3,-10],[0,-1],[1,-3],[1,-2],[0,-3],[0,-1],[-2,-1],[-1,-1],[-7,-2],[-2,-3],[-2,-5],[-3,-5],[-7,-10],[-4,-8],[-1,-3],[-1,-2],[-10,-3],[-7,-1],[-3,1],[-4,2],[-2,1],[-4,-2],[-1,-1],[-3,1],[-3,-1],[0,1],[-1,3],[0,3],[0,3],[-2,1],[-1,2],[-1,1],[-3,1],[-5,-1],[-2,0],[-3,8],[-1,2],[-4,3],[-1,-1],[-3,-4],[-1,-1],[-7,0],[-8,1],[-3,2],[0,4],[6,10],[-2,-2],[-4,-4],[-2,1],[2,4],[1,2],[-1,3],[-3,-4],[-3,-1],[-1,4],[1,4],[0,1],[9,2],[4,2],[1,2],[-5,1],[-1,3],[1,2],[5,4],[-4,-1],[-3,1],[0,4],[1,3],[4,0],[-2,3],[0,3],[1,0],[4,-4],[3,-2],[-1,3],[0,3],[1,0],[2,1],[0,1],[-3,1],[-2,2],[0,3],[0,3],[2,4],[2,-3],[2,1],[-1,2],[-1,3],[0,2],[6,8],[2,-8],[0,3],[0,2],[0,2],[0,2],[0,2],[3,2],[3,6],[3,2],[2,-2],[1,-2],[0,2],[-1,2],[0,6],[4,8],[5,8],[5,8],[2,3],[6,3],[3,-1],[1,0],[5,6],[2,1],[2,-2],[1,-1],[-1,6],[1,2],[4,5],[6,4],[4,2],[3,3],[2,0],[-1,2],[1,3],[1,-1],[1,1],[-2,2],[5,4],[2,5],[1,1],[2,1],[1,4],[2,1],[1,-1],[1,-1],[0,2],[-2,2],[2,2],[2,2],[2,-1],[2,-2],[-2,3],[0,2],[2,2],[2,0],[2,-4],[-1,3],[1,3],[3,5],[3,7],[1,-2],[1,-3],[-1,-4],[1,1],[0,3],[0,7],[4,11],[1,1],[1,1],[2,0],[-1,2],[-1,2],[1,5],[1,7],[1,6],[2,6],[2,10],[1,3],[4,0],[1,2],[3,4],[3,6],[2,6],[2,14],[2,14],[3,11],[6,8],[5,6],[2,1],[3,1],[3,-2],[-6,-1],[0,-4],[-1,-4],[1,-3],[1,-3],[3,-2],[3,-2],[2,-6],[0,-7],[0,-6],[2,-6]],[[9830,2830],[-4,-3],[0,2],[1,5],[2,3],[1,0],[1,2],[0,-4],[-1,-5]],[[9631,2554],[0,-3],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,3],[3,1],[1,-1],[1,-1]],[[9637,2582],[2,-7],[-3,1],[-1,2],[2,3],[0,1]],[[9670,2485],[0,-3],[-3,1],[0,-2],[2,-2],[1,-2],[2,1],[1,-3],[-1,-2],[-1,-2],[-5,-1],[-3,-4],[-3,1],[-3,-4],[-4,-2],[-1,1],[1,3],[2,3],[0,4],[1,2],[3,2],[0,3],[1,3],[-1,6],[1,6],[4,0],[6,-9]],[[9875,3094],[0,-3],[-2,1],[-1,3],[-2,2],[0,1],[-1,4],[2,3],[0,1],[1,-2],[2,-4],[1,-6]],[[9812,3172],[0,-3],[2,2],[1,3],[2,3],[0,-5],[1,-1],[6,-3],[1,-3],[1,-1],[1,1],[1,1],[2,-1],[5,-5],[1,-2],[-1,-3],[1,-2],[0,-2],[2,-1],[2,3],[1,1],[2,-5],[0,-2],[1,-3],[1,-2],[2,-8],[0,-2],[-1,-3],[2,-6],[-1,-1],[-4,1],[0,-1],[3,-5],[2,-7],[1,-4],[6,-14],[-1,-4],[0,-3],[-1,-3],[2,-7],[-1,-2],[-1,-7],[-1,-2],[0,-2],[3,-1],[1,-1],[1,-2],[1,2],[1,1],[2,-3],[6,-4],[1,-1],[1,-3],[1,-6],[1,-3],[2,-1],[2,1],[1,2],[-1,7],[-1,10],[0,4],[0,3],[0,4],[-1,3],[-1,2],[-1,2],[0,3],[2,2],[1,-3],[1,-3],[4,-10],[3,1],[0,-4],[2,-4],[0,-5],[2,-14],[2,-14],[3,-5],[0,-3],[-2,1],[0,-1],[0,-1],[2,-3],[2,-1],[2,0],[1,-1],[9,-8],[4,-4],[11,-5],[3,-1],[2,1],[3,2],[3,3],[3,5],[2,6],[2,3],[3,2],[1,2],[2,2],[7,-1],[2,-3],[4,-2],[1,-2],[0,-4],[-2,-6],[-2,-6],[-1,-14],[-1,-14],[-1,-6],[-3,-4],[-2,-4],[-3,-2],[-1,-7],[-1,-10],[0,-2],[1,-2],[0,-3],[-1,-5],[-1,0],[-1,5],[-1,2],[-4,2],[-4,0],[-3,0],[-3,-2],[-5,-4],[-1,-2],[-1,-3],[-3,-6],[0,-7],[0,-4],[1,-2],[4,-4],[-4,-14],[-4,-14],[-2,-4],[-2,-4],[-2,-9],[-4,-7],[-2,-6],[-2,-5],[-2,-7],[-4,-8],[-1,-6],[-3,-5],[-4,-6],[-4,-5],[-6,-8],[-2,-2],[-2,-2],[-3,2],[0,2],[-1,5],[0,2],[-3,2],[-4,-3],[-1,1],[0,1],[0,7],[0,2],[-1,1],[-1,0],[0,-2],[1,-1],[-3,-2],[-2,-1],[-1,1],[0,2],[1,2],[0,2],[5,9],[5,12],[4,13],[1,7],[1,12],[-1,5],[-2,5],[-4,10],[-5,5],[-4,1],[-3,2],[-3,4],[-3,5],[-6,5],[-5,3],[-4,5],[-1,3],[0,3],[0,3],[0,3],[1,3],[1,1],[6,7],[7,3],[1,0],[1,1],[2,2],[3,5],[1,3],[1,10],[0,10],[2,12],[3,7],[1,5],[-1,7],[1,3],[1,1],[1,1],[-2,7],[-3,11],[0,3],[0,3],[1,3],[-2,1],[-1,3],[-2,10],[0,2],[2,-1],[2,-8],[0,4],[2,2],[1,2],[2,0],[-4,8],[-1,0],[-2,-2],[-2,-1],[-2,1],[-1,2],[-1,3],[-1,7],[-1,2],[-5,14],[1,0],[5,-6],[0,2],[1,3],[0,3],[-1,3],[-2,2],[0,3],[1,2],[0,2],[-2,4],[-1,1],[-1,-2],[1,-3],[-1,0],[-6,7],[-2,6],[-1,7],[0,-3],[0,-4],[2,-7],[4,-8],[1,-3],[-1,-2],[-1,-1],[-1,2],[-2,7],[-1,3],[-15,37],[2,4],[3,4],[1,2],[0,2],[-1,1],[-1,-1],[-2,-2],[-1,-2],[-1,-5],[-1,-1],[-2,3],[0,2],[0,3],[-1,1],[-1,1],[-2,5],[-1,2],[2,5],[0,6],[-2,6],[-3,6],[-4,10],[-5,10],[5,2],[5,0],[-2,-6],[1,-4],[1,-3],[3,-9],[1,-3],[1,-2],[1,-2]],[[9698,2160],[2,-3],[-3,-1],[-1,1],[-1,1],[-1,2],[2,0],[1,1],[1,-1]],[[9616,2260],[1,-5],[-2,0],[-3,1],[-1,3],[-2,-2],[-2,0],[1,3],[4,5],[1,6],[0,2],[3,0],[1,0],[1,-1],[-1,-1],[-1,-2],[0,-3],[0,-2],[-1,-1],[1,-2],[0,-1]],[[106,2664],[-1,-1],[-2,0],[-3,-6],[1,5],[-1,1],[-3,0],[0,-1],[1,-1],[1,-1],[-2,-2],[2,-6],[1,0],[2,-4],[0,-1],[-3,-2],[-2,-2],[-2,0],[-1,0],[0,4],[0,2],[1,3],[2,3],[-1,3],[-3,2],[-4,-1],[-1,1],[2,3],[3,0],[2,3],[11,-2]],[[106,2631],[-1,-1],[0,4],[0,2],[2,1],[1,-3],[-2,-3]],[[209,4690],[0,-1],[0,1],[-1,1],[0,1],[1,-1],[0,-1]],[[245,4645],[-1,1],[1,0],[0,-1]],[[283,4085],[-3,-4],[-1,4],[1,5],[2,1],[1,-4],[0,-2]],[[563,3960],[-1,0],[-1,0],[-1,1],[0,2],[1,0],[1,0],[1,-1],[0,-2]],[[5166,8107],[-3,0],[-2,0],[-2,0],[-1,1],[-1,2],[-1,2],[0,2],[3,3],[0,1],[0,1],[0,2],[2,5],[0,3],[-1,1],[-1,1],[-4,2],[-2,2],[0,2],[-1,1],[-2,-1],[-3,-1],[-3,1],[-3,4],[-1,4],[0,2],[-1,1],[-1,-1],[-1,-2],[-3,0],[-1,0],[0,1],[0,1],[-1,2],[0,1],[-4,-4],[-1,0],[-2,1],[0,2],[-2,-1],[-2,-2],[1,-4],[-1,0],[-2,0],[-2,2]],[[5117,8144],[-3,0],[-3,3],[-5,-2],[-4,2],[-3,0],[-2,2],[-2,3],[2,3],[1,0],[5,1],[4,-2],[8,-6],[1,0],[2,0],[-1,2],[-2,1],[-2,2],[-2,3],[5,0],[-1,2],[-1,2],[-5,8],[1,2],[1,5],[2,4],[1,1],[2,2],[5,8],[3,7],[2,7],[3,22],[1,3],[2,4],[2,-1],[1,-1],[5,3],[8,8],[3,7],[2,3],[10,6],[5,2],[8,0],[6,2],[7,0],[2,-4],[2,-3],[3,-1],[3,-1]],[[5199,8253],[0,-6],[0,-11],[0,-1],[-2,-5],[-2,-8],[0,-6],[-1,-1],[-7,0],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-2],[1,-1],[1,-2],[2,-2],[3,0],[1,0],[1,-1],[1,-2],[0,-3],[-1,-4],[-1,-3],[-3,-4],[-2,-2],[-1,0],[-1,-1],[0,-2],[0,-1],[2,-3],[0,-1],[0,-2],[-1,-1],[-6,-3],[-3,0],[-2,-2],[-2,1],[-3,2],[-2,-1],[-3,-2],[-1,-1],[0,-3],[3,-6],[1,-1],[0,-2],[1,-3],[2,-4],[0,-2],[0,-2],[-1,-3],[-3,-8],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-5,-5],[-1,-1],[-2,0],[0,-1],[0,-1],[1,-2],[2,0],[1,-2],[1,-2],[-1,-9]],[[5117,8144],[-1,-3],[-1,-2],[-3,-3],[-4,-3],[-2,1],[-1,1],[-1,1],[-2,1],[-3,1],[-2,-2],[-1,-1],[-1,0],[-1,1],[-1,2],[0,5]],[[5093,8143],[2,1],[4,0],[4,-1],[4,-1],[4,2],[3,-2],[3,2]],[[5175,8266],[-3,-2],[-1,0],[0,1],[3,1],[1,0]],[[5164,8263],[-5,-1],[-2,1],[1,1],[5,0],[1,-1]],[[5141,8254],[-5,-4],[0,1],[3,3],[2,0]],[[5147,8259],[-2,-1],[-1,1],[6,2],[4,1],[1,0],[-8,-3]],[[5135,8241],[-3,-5],[-1,2],[-1,1],[1,3],[4,5],[0,-6]],[[5109,8164],[3,-3],[0,-1],[1,-1],[-4,-2],[-3,4],[-3,-1],[-1,2],[0,1],[3,1],[4,0]],[[5187,8270],[-3,0],[1,1],[2,2],[1,0],[-1,-3]],[[3105,5883],[-1,-6],[-1,3],[0,5],[-1,2],[-1,1],[-1,2],[1,2],[4,-4],[0,-5]],[[3251,6192],[0,-2],[-1,0],[0,2],[0,2],[0,-1],[1,-1]],[[3243,6199],[0,1],[0,1],[0,-1],[0,-1]],[[3058,5901],[0,-2],[-1,1],[-2,4],[-2,2],[1,3],[0,1],[2,-2],[2,-5],[0,-2]],[[3090,5878],[-2,0],[-5,5],[-4,9],[0,5],[1,-1],[1,-1],[2,-7],[5,-4],[2,-6]],[[7447,6789],[1,-1],[0,-3],[0,-3],[-1,-6],[-1,-4],[-2,-9],[-1,-16],[1,-3],[3,-9],[1,-7],[0,-5],[-1,-8],[-2,-9],[-1,-2],[0,-1],[-4,4],[-3,-1],[-3,-2],[-4,1],[-3,1],[-3,-4],[-3,2],[-3,2],[-1,7],[-1,0],[-7,-6],[-1,-1],[-5,4],[-3,3],[-2,1],[-3,2],[-3,1],[-4,2],[-4,-3],[-2,0],[-1,2],[-1,4],[0,4],[-2,3],[-2,1],[-3,-3],[-4,-3],[-2,1],[-1,1],[-1,0],[0,4],[-1,1],[-1,0],[-2,1],[-2,3],[-7,6],[-1,3],[0,7],[-1,2],[0,3],[-4,3],[-7,5],[-4,3],[-2,-1],[-3,-2],[-2,-3],[-2,1],[-6,3],[-3,1],[-2,-1],[0,-2],[-2,-3],[-2,2],[-4,3],[-4,1],[-6,3],[0,4],[-1,5],[-1,1],[-5,-1],[-5,5],[-5,6],[-2,2],[-1,1],[-1,-1],[-2,-2],[-1,0],[-3,3],[-3,3],[-4,5],[-5,7],[-2,3],[-1,3],[-1,3],[-4,4],[-4,4],[-4,4],[-2,3],[-2,3],[-2,1],[-1,-2],[0,-2],[-2,1],[-2,3],[-3,3],[-2,3],[-3,3],[0,3],[1,7],[1,6],[1,1],[2,4],[1,7],[0,7],[1,8],[3,9],[4,10],[2,3],[2,2],[3,8],[1,1],[2,2],[1,0],[2,-1]],[[7250,6921],[1,-4],[1,-3],[2,0],[2,3],[5,14],[6,3],[6,-1],[5,-2],[2,-5],[1,-5],[0,-3],[2,-3],[8,-7],[4,-6],[6,-8],[4,-4],[4,-1],[2,-3],[4,-7],[3,-7],[3,-7],[2,0],[4,2],[4,3],[2,-1],[2,-2],[1,-4],[1,-7],[2,-7],[2,-2],[3,-4],[2,-3],[5,-5],[0,-3],[1,-1],[2,-1],[1,-1],[1,-1],[6,4],[2,-1],[1,0],[0,-2],[-1,-5],[-1,-6],[1,-3],[2,-2],[6,-1],[7,1],[2,-4],[3,-5],[2,-8],[1,-4],[1,-1],[2,2],[0,3],[0,5],[2,2],[1,-1],[1,-4],[3,-4],[3,-2],[2,1],[1,1],[1,7],[1,1],[2,0],[1,-1],[1,-3],[3,-1],[2,-2],[2,-3],[4,-5],[4,-1],[5,0],[2,0],[2,0],[2,0],[5,4],[2,0],[2,0],[3,-1]],[[9637,5154],[-1,-2],[-1,2],[1,1],[0,1],[1,-1],[0,-1]],[[5701,4159],[-1,0],[-9,-2],[-3,-2],[-7,-11],[-2,1],[-1,3],[-2,0],[-3,-2],[-3,-3],[-4,-5],[-3,-4],[-1,-3],[-4,-8],[-2,-2],[-1,0],[-1,0],[0,4],[-3,9],[-4,11],[-2,2],[-1,0],[-3,-1],[-10,-3],[-8,-3],[-12,-4],[-14,-4],[-8,-3],[-7,0],[0,-12],[0,-23],[0,-24],[0,-23],[0,-24],[0,-23],[0,-24],[0,-23],[0,-24],[0,-10],[0,-2],[-4,0],[-9,0],[-8,0],[-7,0],[0,-14],[0,-17],[0,-16],[0,-17],[0,-16],[0,-17],[0,-16],[0,-17],[0,-16],[0,-13],[0,-1]],[[5456,3535],[-3,5],[-9,18],[-3,4],[-5,11],[-10,33],[-2,7],[-2,16],[-2,12],[0,7],[1,4],[-1,5],[-1,5],[-4,6],[-1,21],[-2,13],[0,11],[-1,10],[0,7],[1,12],[-2,14],[-4,14],[-4,20],[0,9],[0,23],[-1,10],[1,11],[-2,12],[0,6],[1,5],[0,-2],[1,0],[1,6],[0,6],[-2,15],[-4,15],[-9,24],[-3,9],[-1,8],[-11,32],[-5,23],[-3,19],[-3,9],[-16,64],[-4,10],[-7,12],[-1,4],[-3,11],[-4,16],[-2,14],[0,17],[1,12]],[[5326,4190],[4,2],[3,3],[3,0],[3,-2],[3,-1],[1,1],[5,-1],[3,3],[4,3],[2,3],[3,3],[3,2],[3,0],[2,-1],[4,-1],[2,-2],[2,-6],[4,-5],[3,-3],[3,-4],[1,-2],[1,-1],[1,0],[6,1],[5,0],[6,0],[10,0],[11,0],[10,0],[11,0],[11,0],[10,0],[11,0],[11,0],[4,0],[7,0],[8,0],[1,-1],[1,-1],[1,-1],[3,-7],[3,-8],[3,-4],[4,-2],[3,0],[3,0],[6,-1],[7,-2],[8,-1],[7,1],[6,-1],[3,-4],[3,-3],[4,-1],[4,1],[6,3],[5,-1],[2,-2],[1,0],[9,3],[6,2],[11,4],[8,4],[12,4],[9,4]],[[5922,4377],[1,-2],[4,-14],[3,-9],[4,-7],[1,2],[2,1],[6,1],[2,0],[2,3],[3,1],[3,1],[1,-1],[4,-10],[0,-8],[1,-11],[0,-5],[0,-7],[0,-9],[-3,-11],[-1,-5],[-1,-8],[-2,-4],[-1,-3],[0,-3],[1,-3],[2,-5],[1,-3],[0,-3],[0,-4],[0,-3],[1,-2],[3,-2],[2,-7],[4,-7],[5,-12],[2,-3],[2,-1],[1,-4],[-1,-4],[-1,-2],[0,-4],[1,-2],[1,-1],[2,0],[2,1],[1,1],[-1,17],[-1,9],[-1,4],[-1,1],[1,3],[1,8],[2,7],[1,3],[1,2],[6,2],[3,2],[2,2],[1,6],[0,16],[1,15],[-1,9],[1,13],[1,8],[0,2],[-1,11],[-4,12],[-6,15],[-3,8],[-4,9],[-6,15],[-3,5],[-2,2],[-5,2],[-1,3],[-1,4],[-1,9],[0,6],[-1,10],[-1,15],[0,5],[-2,11],[-1,10],[0,3],[0,3],[3,8],[1,5],[1,3],[2,8],[0,4],[1,2],[5,1],[3,0]],[[6123,4581],[2,-6],[2,-5],[-1,-3],[-2,-3],[3,-4],[-2,-6],[0,-4],[0,-1],[1,-3],[-2,-6],[-2,-5],[0,-4],[1,-7],[0,-12],[1,-10],[1,-6],[0,-4],[-1,-6],[1,-11],[0,-5],[-1,-6],[2,-2],[1,-6],[-1,-7],[0,-4],[-3,-4],[0,-2],[0,-3],[3,0],[0,-4],[0,-4],[0,-6],[0,-4],[1,-5],[-1,-5],[0,-4],[0,-5],[1,-13],[0,-16],[0,-2],[2,-2],[1,-1],[0,-4],[-2,-6],[0,-4],[0,-5],[3,7],[1,0],[1,-3],[0,-3],[0,-2],[0,-4],[1,-5],[0,-4],[-2,-3],[-2,-5],[0,-5],[0,-3],[-2,-1],[0,-2],[1,-4],[0,-4],[-3,-12],[-7,-17],[-3,-6],[-2,-7],[0,-2],[-1,-3],[-3,-9],[-3,-1],[-2,-3],[1,-8],[-2,-2],[-4,-6],[-11,-12],[-1,-3],[-3,-8],[-3,-2],[-2,-2],[-4,-1],[-1,1],[-1,0],[-1,-2],[-7,-5],[-7,-4],[-2,-2],[-1,-3],[-6,-4],[-9,-10],[-7,-10],[-5,-10],[-2,-1],[-2,-4],[0,-5],[-1,-2],[-4,-11],[-6,-12],[-1,-3],[-2,-7],[0,-4],[-3,-2],[-1,5],[-1,-9],[-2,0],[-1,2],[-4,-5],[-4,-4],[-5,-10],[-8,-19],[-12,-18],[-1,-1],[-1,0],[-4,7],[-2,0],[2,-4],[1,-3],[0,-6],[0,-9],[-2,-18],[0,-4],[2,-6],[3,-6],[3,-8],[4,-22],[0,-12],[4,-14],[0,-7],[2,-16],[0,-12],[-1,-8],[2,-4],[1,3],[0,5],[0,8],[1,4],[1,-1],[1,-3],[0,-4],[1,-3],[0,-4],[-2,-16],[1,-7],[2,-11],[-3,-13],[-3,-30],[0,-5],[1,-2],[1,-1],[1,4],[1,0],[1,-2],[-2,-14],[-1,-6],[-5,-15],[-3,-7],[-5,-6],[-10,-10],[-22,-14],[-8,-7],[-5,-4],[-11,-13],[-5,-9],[-2,-10],[-1,-5],[-2,-6],[1,-5],[2,-4],[2,-2],[1,-3],[1,-1],[1,8],[1,2],[1,0],[-1,-9],[-1,-34],[0,-1]],[[5962,4492],[-1,1],[-1,1],[-1,0],[0,-2],[1,-3],[1,0],[1,3]],[[5964,4486],[1,2],[0,1],[0,2],[-1,1],[-1,0],[-1,-2],[0,-3],[1,-1],[1,0]],[[4938,7206],[1,-5],[1,-3],[6,-8],[4,-5],[0,-1],[-1,-4],[-1,-3],[1,-3],[2,-3],[0,-2],[0,-2],[-1,-4],[2,-11],[0,-10],[0,-8],[0,-4],[0,-4],[2,-9],[-1,-14],[1,-8],[2,-6],[2,-12],[1,-5],[3,-5],[1,-1],[3,-4],[3,-3],[1,-5],[-3,-4],[-2,-4],[-1,-3],[1,-7],[0,-3],[-1,-1],[-6,0],[-4,1],[-5,0],[-7,1],[-4,0],[-7,0],[-2,0],[-5,-2],[-4,-1],[-1,0],[-1,-2],[-1,-4],[0,-5],[-1,-3],[-12,-7],[-5,-1],[-2,1],[-2,-1],[-2,-2],[0,-2],[0,-3],[0,-3],[1,-4],[0,-5],[0,-3],[-1,-3],[0,-3],[1,-2],[1,0],[1,-2],[1,-1],[2,-3],[0,-4],[-1,-2],[-1,-1],[-5,-1],[-3,-1],[-5,-6],[-5,-6],[-5,-4],[-3,-1],[-4,-3],[-5,-5],[-3,-8],[-3,-10],[-4,-6],[-4,-6],[-4,-2],[-5,-3],[-6,-2],[-5,-1],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[0,-2],[0,-3],[-1,-4],[-1,-3],[-1,-2],[-1,0],[-3,1],[-3,1],[-7,1],[-1,0],[0,-1],[-2,-2],[-4,-4],[-2,-4],[-1,-2],[-4,-1],[-2,-2],[-7,-10],[-2,-2],[-7,-9],[-2,-3],[-2,-3],[-4,-6],[-3,-3],[-1,-2],[0,-4],[0,-8],[0,-9],[0,-12],[0,-12],[0,-14]],[[4758,6777],[-3,0],[0,-3],[1,-4],[0,-5],[-1,-2],[0,-3],[0,-3],[1,-4],[0,-3],[0,-2],[-1,-2],[-2,-1],[-4,-1],[-2,0],[-3,1],[-2,0],[-2,0],[-2,-1],[-2,-2],[-2,-4],[-3,-4],[-2,-3],[-2,-1],[-2,0],[-3,3],[-1,1],[-1,0],[-2,-2],[-2,-1],[-1,0],[-3,2],[-4,4],[-2,1],[-2,1],[-3,1],[-2,0],[-3,0],[-3,-3],[-3,-1],[-3,-2],[-4,-2],[1,-5],[1,-3],[0,-3],[0,-3],[-2,-3],[-2,-4],[-1,-3],[-1,-4],[-1,-2],[-2,-4],[-1,-4],[0,-3],[-1,-4],[-1,-1],[-3,-1],[-3,-1],[-2,-1],[0,-2],[-1,-4],[0,-3],[-1,-2],[0,-6],[-2,-5],[0,-7],[-1,-6],[-1,-9],[-1,-9],[-2,-8],[-1,-5],[-1,-3],[-2,-3],[-1,-3],[-2,-3],[-3,-3],[-3,-3],[-2,-3],[-1,-1],[-1,-2],[-2,-4],[-2,-6],[-1,-4],[-2,-8],[-1,-4],[-1,-2],[-2,-2],[-3,-2],[-3,-2],[-2,-3],[-3,-2],[-2,-2],[-1,-4],[-1,-4],[-2,-5],[-1,-7],[0,-4],[-2,-14],[-1,-8],[0,-5],[-1,-6],[-1,-10],[0,-8],[0,-5],[0,-3],[-2,-4],[-1,-3],[-2,-4],[-2,-2],[0,-3],[-2,-3],[-1,-4],[-2,-3],[0,-2],[1,-4],[-1,-4],[-1,-5],[-2,-6],[-3,-3],[-3,0],[-5,0],[-4,0],[-5,0],[-4,1],[-4,2],[-5,0],[-3,0],[-4,-1],[-11,0],[-4,-1],[-6,-2],[-2,0]],[[4527,6418],[2,27],[4,15],[3,7],[5,3],[4,15],[2,14],[2,6],[1,5],[-1,4],[3,8],[3,11],[2,7],[3,12],[1,2],[0,3],[-2,-2],[-1,-5],[-2,-3],[0,4],[2,6],[3,6],[6,7],[11,24],[4,4],[4,10],[1,8],[0,20],[2,11],[2,8],[3,15],[2,7],[2,14],[1,5],[3,2],[4,7],[6,5],[7,8],[3,6],[3,8],[2,15],[4,17],[2,12],[1,1],[3,6],[3,9],[4,3],[9,2],[14,7],[12,10],[3,5],[4,8],[6,11],[11,13],[5,7],[8,18],[5,15],[5,10],[3,8],[2,9],[1,14],[-1,6],[-3,8],[-2,3],[-1,4],[1,8],[0,12],[1,21],[4,16],[9,22],[2,9],[1,14],[0,5],[11,20],[7,15],[2,4],[6,7],[20,15],[12,11],[7,8],[4,10],[11,37],[11,52],[1,6],[5,2],[3,0],[3,2],[4,4],[3,-1],[-2,-3],[0,-6],[3,-8],[4,-8],[7,-11],[6,-4],[8,-3],[10,5],[5,0],[3,2],[3,-3],[5,-1],[5,2],[4,4],[3,5],[0,-2],[0,-3],[1,-2],[2,-6],[1,-3],[3,1],[2,-2],[6,1],[6,-1]],[[4758,6777],[0,-10],[0,-12]],[[4758,6755],[0,-9],[0,-12],[0,-11],[0,-13],[0,-13],[0,-9],[0,-7],[-5,0],[-5,0],[-6,0],[-5,0],[-5,0],[-5,0],[-5,0],[-6,0],[-5,0],[-5,0],[-5,0],[-5,0],[-5,0],[-6,0],[-5,0],[-5,0],[-5,0],[-4,0],[0,-7],[0,-8],[0,-7],[0,-8],[0,-8],[0,-8],[0,-8],[0,-8],[0,-8],[0,-7],[0,-8],[0,-8],[0,-8],[0,-8],[0,-8],[0,-7],[0,-8],[0,-7],[0,-7],[-2,-1],[-4,-4],[-4,-3],[-5,-2],[-2,-1],[-3,-4],[-5,-6],[-3,-5],[-3,-7],[-1,-4],[0,-4],[0,-3],[1,-8],[1,-3],[0,-7],[0,-7],[0,-8],[1,-7],[0,-8],[0,-9],[1,-8],[0,-6],[0,-7],[-4,0],[-7,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,-1],[-7,0],[-6,0],[-7,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-7,0],[-6,0],[-4,0],[-1,-10],[-1,-8],[0,-6],[0,-6]],[[4526,6382],[-1,3],[2,30],[0,3]],[[5565,7651],[-4,-2],[-1,-3],[-1,1],[-2,0],[-1,-2],[1,-3],[0,-3],[0,-4],[0,-1]],[[5557,7634],[-1,1],[-3,-3],[-2,-1],[-2,-1],[-1,2],[0,1],[0,5],[-1,1],[0,1],[-2,-1],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-6],[-1,-4],[1,-3],[1,-3],[0,-3],[0,-1],[0,-5],[0,-3]],[[5537,7595],[-5,5],[-1,6],[-7,11],[-7,8],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,0]],[[5514,7628],[-1,3],[-1,2],[0,2]],[[5512,7635],[1,1],[1,3],[1,1],[0,2],[-3,6],[0,4],[0,7],[0,1],[1,1],[4,1],[0,6],[0,1],[1,3],[0,2],[2,3],[3,3],[1,1],[1,-1],[2,-3],[1,0],[0,4],[-2,5],[0,3],[0,2],[1,1],[1,-1],[1,-1],[1,1],[2,0],[1,0]],[[8240,8054],[-2,-8],[-5,-16],[-5,-14],[-2,-8],[-2,-6],[-2,-5],[0,-3],[-2,-6],[-4,-6],[0,-7],[0,-7],[-1,-5],[-4,-4],[-3,-3],[1,-11],[2,-4],[2,-4],[3,-4],[3,-3],[2,2],[2,4],[5,4],[2,0],[2,0],[4,-1],[4,2],[3,0],[3,-1],[2,-1],[3,-2],[4,-3],[2,-5],[2,-1],[1,2],[2,4],[3,3],[3,6],[3,5],[2,1],[3,-1],[2,2],[3,0],[3,-2],[7,0],[2,-3],[3,-7],[2,-3],[3,-2],[2,-2],[2,-1],[2,-1],[0,-3],[1,-3],[1,-2],[2,-2],[2,-1],[0,-2],[1,-1],[1,-2],[4,-7],[2,-2],[3,-4],[2,-4],[0,-4],[1,-2],[2,-4],[1,-3],[-1,-4],[1,-3],[-1,-4],[-4,-3],[-1,-1],[-2,0],[-4,1],[-4,0],[-5,1],[-3,3],[-2,3],[-4,1],[-1,-1],[-2,-3],[-2,1],[-2,-1],[-5,1],[-2,1],[-5,-3],[-2,0],[-5,-3],[-2,-5],[-2,-1],[-2,0],[-2,2],[-2,2],[-3,0],[-1,-1],[0,-2],[-1,-6],[0,-2],[-1,-2],[-1,0],[-3,0],[-5,0],[-4,2],[-2,-1],[-2,-3],[-2,-1],[-2,-1],[-1,-5],[-2,-3],[-3,-3],[-2,-8],[-2,-4],[1,-3],[0,-2],[-1,-4],[-3,-3],[-2,0],[-2,-3],[-4,-5],[-3,-5],[-4,-1],[-3,-1],[-6,-1],[-2,-1],[-7,0],[-5,2],[-2,0],[-3,-2],[-1,-1],[0,-3],[-1,-3],[-2,-4],[-3,-5],[-4,-3],[-2,-5],[-1,-2],[-3,-1],[-2,-1],[-3,-4],[-3,-4],[-2,-1],[-2,1],[-1,0],[-5,2],[-2,0],[-5,1],[-9,4],[-3,2],[-3,5],[-2,3],[-4,0],[-5,0],[-2,1],[-4,-1],[-4,-5],[-2,-4],[-1,-4],[-2,-9],[-1,-6],[-1,-3],[-2,-6],[0,-3],[0,-2],[2,-3],[1,-5],[2,-5],[3,-4],[4,-6],[1,-3],[1,-4],[1,-3],[-1,-2],[-1,-2],[-3,-1],[-1,-3],[-3,-3],[-2,-4],[-1,0],[-2,-1],[-7,-5],[-3,-1],[-2,-2],[-3,-5],[-2,-3],[-2,-5],[-2,-2],[-2,-5],[-3,-6],[-1,-2],[-1,-2],[-1,-3],[-3,-1],[-3,-2],[-4,-3],[-5,-3],[-5,-3],[-2,-3],[-5,-3],[-3,-1],[-5,0],[-8,-1],[-5,0],[-4,1],[-6,0],[-4,1],[-3,-1],[-7,-2],[-2,0],[-12,-3],[-6,-2],[-5,0],[-4,-1],[-2,-2],[-3,-2],[-2,-1],[-6,-4],[-12,-8],[-8,-7],[-2,-1],[-5,-5],[-4,-2],[-2,-4],[-2,-3],[-2,-1],[-3,2],[-2,0],[-8,1],[0,13],[-5,-2],[-9,-3],[-8,-2],[-7,6],[-6,4],[-5,4],[-7,3],[-6,2],[-12,4],[-5,3],[-3,5],[-4,10],[-2,2],[-2,1],[-2,1],[-6,0],[-6,1],[-9,2],[-7,1],[-12,4],[-2,0],[-7,-3],[-8,-3],[-14,2],[-7,2],[-13,2],[-14,3],[-15,3],[-10,-1],[-6,-1],[-6,-2],[-1,2],[-1,6],[-1,4],[-3,5],[-3,5],[-5,6],[-1,4],[0,7],[-5,16],[-2,11],[-1,2],[-1,3],[-2,2],[-3,1],[-1,2],[0,4],[1,5],[0,4],[0,1],[-8,-1],[-6,3],[-4,2],[-6,7],[-4,3],[-4,7],[-7,2],[-2,3],[-3,6],[-3,4],[-4,3],[-6,2],[-11,2],[-3,1],[-6,-2],[-4,0],[-7,2],[-4,2],[-5,0],[-3,0],[-5,0],[-2,1],[-2,2],[-3,0],[-3,1],[-2,3],[-3,1],[-2,0],[-1,-1],[-1,0],[-1,4],[-3,6],[0,3],[-1,3],[-1,3],[0,4],[1,8],[2,7],[2,2],[1,2],[2,3],[1,3],[0,4],[-1,5],[-1,5],[0,3],[1,4],[2,8],[0,2],[-1,2],[0,3],[0,5],[-2,8],[-2,4],[-2,2],[-2,1],[-2,6],[-2,6],[-2,4],[-1,3],[0,4],[-1,6],[-1,3],[-1,2],[-1,4],[0,1],[-3,1],[-3,3],[-1,3],[0,3],[-1,1],[-2,1],[-1,-2],[-2,-2],[-2,1],[-1,1],[-1,2],[-2,1],[-2,6],[-2,1],[-4,0],[-4,-3],[-2,1],[-2,1],[-2,2],[-2,3],[-2,0],[-4,4],[-3,3],[-1,6],[-1,4],[-3,1],[-3,4],[-4,2],[-3,1],[-2,1],[0,2],[0,1],[1,2],[1,2],[0,2],[-1,2],[-2,2],[-3,1],[-1,3],[-1,2],[0,2],[1,2],[2,1],[0,2],[-1,2],[0,3],[0,2],[0,2]],[[5206,7704],[-2,-1]],[[5204,7703],[0,1],[1,1],[1,-1]],[[2301,6679],[0,-12],[-2,-10],[-5,-20],[-3,-12],[-4,-36],[-2,-24],[0,-11],[0,-2],[0,-1],[-1,-25],[1,-21],[-1,-3],[-1,-6],[-2,-9],[1,-4],[0,-3],[2,-13],[0,-10],[5,-17],[3,-6],[3,-5],[2,-3],[-1,-7],[-1,-4],[-1,-6],[-1,5],[1,6],[1,4],[0,2],[-2,3],[-4,8],[-5,15],[4,-24],[1,-4],[1,-1],[1,-2],[0,-3],[0,-2],[4,-17],[5,-17],[0,-5],[2,-6],[11,-24],[7,-19],[3,-17],[1,-6],[1,-7],[5,-8],[1,-6],[3,-3],[2,-9],[3,-5],[-1,0],[-3,3],[0,-2],[3,-4],[5,-4],[2,0],[-2,2],[-2,3],[1,0],[3,-3],[11,-1],[4,-8],[6,-3],[4,-9],[3,-10],[3,-1],[2,0],[5,2],[9,6],[3,3],[6,4],[9,1],[3,-1],[7,3],[3,3],[1,3],[0,2],[7,3],[1,0],[6,1],[3,1],[4,1],[3,-5],[0,-2],[-2,-2],[1,-2],[3,-3],[5,-2],[2,1],[3,5],[4,5],[0,5],[-1,3],[-1,0],[0,2],[1,4],[-1,1],[-2,-3],[-1,0],[0,1],[1,2],[8,8],[2,4],[3,3],[6,11],[1,22],[2,4],[4,7],[0,2],[0,4],[0,12],[0,9],[0,10],[1,9],[1,2],[2,15],[5,6],[8,8],[2,1],[26,8],[4,2],[4,5],[3,2],[6,0],[2,1],[1,0],[0,1],[1,1],[3,-1],[7,-3],[2,-1],[6,-3],[6,-2],[1,1],[1,1],[1,2],[-1,2],[-1,0],[-1,-1],[-1,0],[-3,1],[1,1],[2,0],[2,1],[3,2],[2,-2],[4,-7],[2,-2],[0,-11],[1,-2],[0,-3],[-1,-8],[-1,-7],[-2,-6],[-4,-9],[-4,-7],[-6,-16],[-1,-7],[0,-6],[1,-6],[0,-2],[-1,-2],[-1,0],[-2,-3],[-3,-8],[0,-3],[1,-2],[2,1],[2,0],[1,1],[1,0],[0,-5],[-1,-3],[-1,-1],[-2,-1],[-1,-2],[-1,-2],[0,-5],[1,0],[2,4],[1,-1],[0,-1],[-2,-14],[-2,-14],[-2,-9],[-1,-12],[-1,-5],[-2,-5],[-3,10],[-2,2],[0,3],[1,11],[-1,7],[-1,0],[-1,-4],[-2,-3],[0,-4],[-2,-8],[-1,-2]],[[2547,6248],[-2,0],[-3,0],[-1,-2],[-2,-9],[-4,-12],[-2,-6],[-2,-3],[-1,0],[-1,1],[-3,4],[-2,-2],[-1,-4],[0,-5]],[[2523,6210],[-6,0],[-10,0],[-12,0],[-13,0],[-10,0],[0,-11],[0,-10],[0,-11],[-5,0],[-6,0],[0,-1],[2,-3],[3,-5],[3,-7],[4,-7],[4,-4],[3,-5],[1,-4],[1,-4],[0,-3],[2,-3],[3,-1],[1,-3],[0,-2],[-1,-6],[0,-5],[0,-5],[-2,-1],[-5,0],[-7,0],[-8,0],[-5,0],[-8,0],[-3,-8],[-4,-13],[-3,-12],[-3,-10],[0,-2],[0,-3],[3,-9],[-1,-3],[-1,-1],[0,-2],[0,-4],[-1,-5],[0,-3],[1,-4],[-1,-4],[-1,-3],[0,-1]],[[2438,6022],[-1,1],[-8,16],[-7,17],[-3,5],[-3,5],[-4,8],[-11,17],[-5,8],[-5,9],[-5,6],[-4,3],[-2,2],[-2,3],[-1,0],[0,-4],[1,-1],[2,-2],[2,0],[1,-1],[5,-5],[1,-3],[-13,10],[-6,1],[0,2],[2,5],[0,1],[-1,1],[-3,-4],[-1,0],[0,2],[0,2],[-2,4],[-1,-1],[-1,-2],[-3,-4],[0,-2],[5,-1],[2,-1],[-1,-2],[-4,0],[-5,-1],[-9,-12],[-9,-5],[-12,-11],[-5,-1],[-3,-2],[-8,5],[-11,10],[-16,3],[-10,14],[-11,6],[-7,13],[-4,1],[-2,2],[-10,5],[-9,3],[-10,11],[-6,4],[-5,5],[-12,8],[-4,4],[-4,7],[-6,7],[-3,5],[-3,2],[-5,11],[-2,5],[-2,2],[-2,1],[-7,-1],[-9,5],[-4,1],[-9,7],[-12,8],[-3,9],[-4,9],[-6,11],[-3,5],[-7,6],[-3,4],[-6,4],[-9,9],[-3,8],[-2,7],[-5,8],[-5,15],[-2,6],[-1,9],[-1,5],[-1,4],[0,3],[3,3],[5,1],[3,4],[0,3],[0,2],[-2,5],[-3,1],[-2,0],[0,2],[1,2],[2,5],[3,6],[2,5],[0,8],[0,7],[0,7],[-6,7],[-1,3],[-2,9],[-3,9],[0,20],[-4,17],[-4,9],[-2,3],[-6,13],[-5,8],[-4,14],[-5,10],[-6,15],[-4,8],[-19,26],[1,0],[6,-6],[1,0],[0,4],[-1,3],[-1,1],[-1,-1],[-2,1],[-1,1],[-3,1],[-4,5],[-1,4],[-1,5],[-5,11],[-2,6],[1,0],[1,-2],[2,-1],[2,0],[1,1],[-1,2],[-1,1],[-8,6],[-2,4],[-7,7],[-1,2],[-1,7],[-2,0],[-1,-2],[-4,-2],[-1,3],[0,2],[3,2],[2,6],[0,2],[-1,-2],[-2,-3],[-2,-2],[-3,-1],[-2,1],[-1,1],[-3,6],[-1,17],[2,6],[3,6],[1,4],[2,-3],[1,0],[-1,3],[-2,3],[-1,3],[0,2],[-1,5],[-5,10],[-6,-1],[-2,1],[-2,4],[-2,6],[-1,6],[0,3],[0,3],[-9,4],[-3,4],[-3,6],[-1,4],[-1,3],[-1,5],[-1,7],[1,8],[2,4],[-7,3],[-2,0],[-2,-2],[-2,2],[-4,3],[-4,8],[-6,16],[-5,5],[-2,5],[-3,5],[-2,6],[0,3],[-1,1],[-3,4],[-3,7],[-1,6],[-1,9],[-2,3],[-2,1],[0,4],[0,3],[-1,4],[-4,11],[-2,8],[-2,3],[-1,4],[0,8],[-2,10],[-4,12],[-3,8],[-1,8],[1,9],[-1,5],[0,1],[0,2],[1,-1],[1,1],[0,6],[-1,1],[-3,2],[-2,1],[-6,2],[-4,3],[-1,7],[-2,3],[-1,2],[-5,5],[-1,-3],[-1,-3],[-2,-1],[-2,0],[-3,2],[-8,11],[-2,1],[-2,1],[-1,2],[-6,5],[1,-3],[2,-3],[1,-8],[-1,-7],[-1,-22],[1,-4],[2,-7],[2,-11],[0,-8],[2,-7],[-1,-16],[1,-4],[2,-8],[4,-7],[1,-4],[5,-6],[3,-7],[7,-10],[2,-4],[6,-15],[0,-5],[1,-5],[3,1],[2,-4],[0,-2],[0,-2],[2,1],[1,-1],[3,-17],[2,-2],[2,-1],[3,-2],[0,-4],[0,-4],[2,-5],[-1,-6],[2,-6],[0,-5],[0,-4],[5,-10],[7,-8],[1,-10],[2,-9],[3,-3],[3,-3],[-1,-4],[0,-3],[4,-7],[1,-10],[3,-6],[1,1],[-2,6],[-1,4],[0,6],[0,1],[7,-10],[0,-7],[2,-4],[1,-6],[1,-3],[0,-5],[2,-8],[0,-12],[1,-8],[4,-12],[4,-3],[0,-6],[3,-16],[4,-9],[2,-7],[0,-4],[-1,-7],[0,-5],[2,-14],[3,-8],[4,-1],[0,-1],[0,-2],[1,-2],[1,2],[1,3],[-1,4],[0,3],[1,2],[1,0],[7,-10],[1,-4],[2,-4],[2,-5],[1,-5],[2,-3],[1,-8],[5,-4],[2,-7],[0,-4],[-1,-11],[-1,-3],[-3,-5],[-3,-5],[-3,-4],[-3,-2],[-2,0],[-2,7],[-3,19],[-2,4],[-1,6],[-2,5],[-7,8],[-4,8],[-4,5],[-4,8],[-10,13],[-5,7],[-2,6],[-2,0],[-2,-1],[0,2],[0,4],[-1,2],[-6,10],[-2,5],[0,6],[2,16],[0,10],[0,5],[-1,0],[0,3],[-1,8],[-1,8],[-6,18],[-4,3],[-4,3],[-10,15],[-2,8],[-1,4],[0,9],[-2,-5],[-2,-4],[-4,0],[-5,-4],[-3,4],[-1,5],[-2,5],[-3,1],[-2,0],[-3,7],[-2,2],[-4,1],[-3,4],[-1,3],[-1,6],[-1,3],[-5,6],[-4,7],[-3,4],[-2,4],[0,2],[6,0],[7,-3],[4,1],[2,2],[2,2],[0,-2],[0,-3],[2,-4],[2,-2],[2,0],[-2,3],[-1,6],[1,2],[0,3],[-3,-1],[0,2],[2,4],[3,12],[1,12],[-3,10],[-4,8],[-10,21],[-6,10],[-2,4],[-1,2],[-5,3],[-4,6],[-7,8],[-3,5],[-2,10],[-2,1],[0,8],[0,12],[-1,3],[-4,4],[-1,8],[0,8],[-1,6],[-7,10],[0,4],[0,5],[-1,4],[-3,9],[-4,8],[-2,4],[0,8],[-1,2],[1,0],[1,1],[0,5],[-6,9],[-2,11],[-3,7],[-1,2],[-2,11]],[[2585,6353],[-2,-2],[0,7],[1,6],[1,4],[3,0],[2,1],[0,-1],[-2,-5],[-3,-10]],[[2041,6429],[0,-5],[-3,2],[0,3],[0,5],[1,0],[1,-2],[1,-1],[0,-2]],[[1919,6263],[-2,-1],[-2,4],[0,2],[2,2],[1,-3],[1,-4]],[[1928,6624],[1,-6],[-1,0],[-2,4],[-1,4],[0,2],[0,1],[3,-3],[0,-2]],[[1857,6857],[-1,-1],[-2,4],[-7,12],[-2,6],[-1,3],[1,6],[2,-1],[2,-4],[1,-4],[1,-4],[4,-2],[1,-10],[1,-5]],[[1801,6801],[-1,-2],[-4,4],[2,6],[0,7],[1,2],[1,-3],[1,-9],[0,-5]],[[1883,6854],[-2,-13],[-2,0],[-5,4],[0,3],[2,16],[1,2],[4,2],[0,-2],[1,-5],[1,-7]],[[1715,6851],[-1,-2],[-3,12],[0,3],[1,1],[1,0],[0,-3],[2,-3],[0,-2],[0,-6]],[[2591,6407],[1,-3],[-1,1],[-1,2],[0,2],[1,0],[0,-2]],[[2453,6260],[-3,-2],[-1,1],[7,6],[1,0],[0,-1],[-3,-2],[-1,-2]],[[1950,6575],[-1,0],[-1,3],[-1,7],[0,1],[3,-9],[0,-1],[0,-1]],[[1814,7010],[-1,0],[-2,2],[0,3],[1,0],[1,-2],[1,-2],[0,-1]],[[1914,6683],[0,-3],[-1,1],[-2,-8],[-1,-1],[1,12],[2,1],[1,1],[0,-3]],[[1897,6589],[0,-3],[-9,11],[2,1],[3,-1],[4,-8]],[[1887,6598],[0,-1],[-3,7],[0,4],[-1,2],[-3,2],[3,9],[1,19],[1,-3],[-2,-20],[0,-2],[1,-3],[1,-4],[0,-4],[2,-4],[0,-2]],[[6601,4004],[-4,-2],[-4,1],[-1,3],[-1,1],[2,1],[0,4],[0,7],[1,2],[2,3],[1,5],[2,3],[2,0],[2,-6],[2,-6],[-1,-7],[-1,-2],[-1,-4],[-1,-3]],[[4545,6319],[-2,-6],[-1,2],[0,4],[1,5],[1,3],[2,1],[-1,-9]],[[4540,6096],[0,26],[2,10],[0,8],[3,19],[4,15],[4,20],[1,20],[0,19],[-1,18],[-2,11],[-2,16],[-2,9],[-5,8],[-1,4],[1,2],[3,1],[2,6],[-4,-3],[4,19],[2,12],[-1,8],[1,5],[-3,11],[-3,13],[-1,2],[-2,2],[0,-4],[-1,-2],[-1,1],[-3,10],[-4,16],[-2,2],[-1,-2],[-1,-2],[-1,-14]],[[4758,6755],[6,-6],[5,-6],[5,-7],[5,-6],[5,-6],[6,-7],[5,-6],[5,-7],[5,-6],[6,-6],[5,-7],[5,-6],[5,-6],[5,-7],[6,-6],[5,-7],[4,-5],[7,-8],[6,-8],[7,-8]],[[4866,6624],[-10,-1],[-13,0],[-9,0],[-9,0],[-9,0],[1,-13],[1,-14],[1,-14],[0,-15],[1,-14],[1,-14],[1,-15],[1,-14],[0,-14],[1,-15],[1,-14],[1,-14],[1,-15],[0,-14],[1,-14],[1,-15],[1,-14],[1,-14],[0,-14],[1,-15],[1,-14],[1,-14],[0,-15],[1,-14],[1,-14],[1,-15],[1,-14],[0,-14],[1,-15],[1,-14],[1,-14],[1,-15],[0,-14],[1,-14],[3,-7],[5,-9],[-2,-13],[-1,-16],[-2,-17],[-5,0],[-6,0],[-6,0],[-5,0],[-6,0],[-6,0],[-5,0],[-6,0],[-6,0],[-5,0],[-6,0],[-6,0],[-5,0],[-6,0],[-6,0],[-5,0],[-6,0],[-5,0],[-4,1],[-1,1],[0,9],[-1,-1],[-1,-2],[-1,-3],[0,-4],[0,-3],[-4,-1],[-4,-2],[-6,-2],[-5,1],[-2,1],[-2,1],[-4,1],[-2,0],[-3,0],[-3,-1],[-1,-1],[-2,-7],[-2,-8],[-2,0],[-1,5],[-5,7],[-5,11],[-3,5],[-1,0],[-3,-3],[-2,-4],[-2,-5],[-1,-4],[-1,-6],[0,-7],[-1,-8],[-2,-6],[-2,-4],[-2,-3],[-1,-1],[-5,4]],[[5404,7249],[-1,-2],[-3,0],[-2,3],[0,6],[3,-1],[2,-4],[1,-2]],[[5397,7259],[-2,-1],[-1,2],[-1,1],[3,1],[1,-1],[0,-2]],[[4866,6624],[8,-12],[8,-10],[9,-12],[9,-13],[9,-12],[9,-12],[9,-13],[9,-12],[9,-12],[9,-13],[10,-12],[9,-12],[9,-13],[9,-12],[9,-12],[9,-13],[9,-12],[9,-12],[4,-6],[1,-2],[0,-5],[0,-5],[0,-4],[1,-3],[2,-3],[9,-9],[1,-2],[0,-4],[1,-4],[2,-3],[2,-2],[3,-2],[8,-1],[2,-2],[3,-9],[2,-1],[6,-3],[3,-1],[2,-1],[4,-2],[3,-4],[2,-3],[0,-1],[0,-3],[0,-10],[1,-5],[1,-3],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-4],[-1,-3],[0,-3],[2,-2],[2,-3],[2,-2],[1,0],[1,0],[1,1],[7,3],[6,2],[9,3]],[[5006,6043],[-6,4],[-7,4],[-5,-3],[-1,1],[0,2],[-2,1],[-4,0],[-3,-1],[-4,-7],[-3,-5],[-1,-2],[-4,-3],[-8,-8],[-5,-5],[-1,-2],[-2,-1],[-3,0],[-2,-2],[-3,-15],[-1,-1],[-10,6],[-2,-1],[-1,-2],[-6,-9],[-2,-7],[-2,-9],[0,-3],[0,-3],[0,-2],[-2,-1],[-1,0],[-4,2],[-2,-1],[0,-4],[0,-10],[-1,-7],[-3,-2],[-2,-3],[-1,-1],[-2,1],[-8,10],[-2,2],[-3,-1],[-3,-5],[-1,-3],[-2,-3],[-2,-5],[1,-3],[1,-5],[1,-5],[0,-5],[-7,-7],[1,-3],[1,-3],[0,-5],[-1,-9],[-1,-3],[-2,-3],[-1,-4],[-1,-2],[-2,-3],[-3,-2],[-5,-2],[-3,-2],[-2,-1],[-2,-3],[-1,-4],[-1,-4],[1,-4],[0,-4],[1,-2],[0,-4],[0,-8],[-2,-10],[-1,-4],[-2,-3],[-2,-2],[1,-7],[0,-9],[-1,-7],[0,-5],[0,-4],[-1,-4]],[[4846,5784],[-1,1],[-4,0],[-4,-3],[-1,-2],[-1,-3],[-1,-1],[-1,-2],[-1,-3],[-2,0],[-3,2],[-1,2],[0,1],[1,2],[0,3],[1,2],[-1,4],[-1,5],[0,2],[0,7],[-3,-1],[-1,-1],[-1,-1],[0,-1],[1,-4],[-1,-1],[-2,0],[-2,2],[-2,4],[-1,-2],[0,-3],[0,-4],[0,-7],[0,-2],[-2,0],[-2,0],[-2,0],[-2,-1],[0,-2],[-1,-3],[1,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,4],[-2,1],[-5,2],[-1,4],[-2,3],[-1,3],[-1,0],[-1,-1],[-2,0],[-3,-5],[-2,-6],[-1,-3],[-3,-1]],[[4778,5769],[0,4],[0,3],[-1,2],[-6,7],[-1,3],[-1,7],[-1,8],[0,4],[1,4],[0,3],[-1,3],[-2,2],[-2,1],[-2,-3],[-2,0],[-1,0],[0,1],[0,1],[3,9],[1,3],[1,3],[1,1],[1,2],[0,1],[0,2],[-2,1],[-2,4],[-2,0],[-1,2],[-1,6],[-1,1],[-1,1],[-2,1],[1,8],[0,7],[-3,10],[-1,7],[-1,7],[-2,3],[-2,3],[-2,2],[-3,0],[-2,0],[0,-1],[0,-2],[1,-4],[0,-2],[0,-3],[0,-1],[-2,0],[-2,-2],[-3,-3],[-2,-2],[-1,-6],[-1,0],[-2,0],[-6,5],[-4,3],[-3,2],[-2,-1],[-1,-1],[-2,-2],[-4,-9],[0,-2],[-1,-1],[-1,-2],[-1,0],[-1,1],[0,1],[-2,6],[-2,7],[-1,3],[-2,0],[-2,-2],[-2,-5],[-2,-4],[-1,-1],[-2,1],[-3,5],[-2,4],[0,1],[1,3],[1,4],[0,4],[1,1]],[[7039,5370],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[7041,5424],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[7835,5543],[5,-2],[2,-2],[5,-18],[7,-12],[4,-5],[2,-2],[3,-7],[3,-8],[6,-24],[1,-10],[0,-16],[-1,-24],[-2,-12],[1,-6],[2,-8],[-1,-9],[1,-6],[0,-19],[1,-6],[1,-3],[8,-12],[0,-4],[4,-14],[7,-31],[2,-14],[0,-4],[-1,-1],[-2,-2],[-2,3],[0,2],[0,3],[-1,2],[-1,3],[-1,2],[0,-4],[0,-5],[-2,-1],[-3,2],[-3,-2],[-4,-6],[-2,-1],[-2,6],[-1,4],[-1,3],[-13,14],[-4,4],[-5,10],[-11,12],[-8,12],[-3,7],[-7,6],[-3,8],[-1,1],[-2,3],[2,7],[-1,8],[-1,6],[-5,13],[-3,9],[-4,8],[-2,5],[-2,6],[1,2],[1,2],[-1,4],[-3,7],[-1,9],[0,16],[-4,22],[-3,32],[0,11],[0,11],[-3,12],[-3,8],[-1,7]],[[8265,5424],[-1,0],[-2,1],[-5,6],[-5,3],[-7,0],[-4,1],[-2,-1],[-1,0],[-1,1],[-1,1],[-3,-4],[-1,1],[-2,2],[-2,0],[-3,0],[-3,-4],[-3,3],[-1,0],[-1,-1],[-2,-4],[-3,-4],[-1,-6],[-1,-6],[-1,-2],[0,-12],[0,-6],[0,-7],[0,-4],[-1,-5],[0,-1],[-1,-7],[0,-2],[0,-3],[-1,-5],[-2,-2],[-2,-1],[-2,2],[-1,-3],[-2,-4],[-1,-4],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[2,-2],[0,-3],[-1,-2],[-2,-2],[-3,-6],[-4,-4],[-1,-2],[-1,-2],[0,-3],[1,-6],[1,-2],[0,-2],[-1,-3],[0,-2],[-1,-2],[-2,-1],[0,-1],[-1,-8],[-1,-4],[-1,-6],[-1,-3],[-1,-1],[-3,3],[-4,-1],[-4,-2],[-3,1],[-3,-2],[-2,-3],[-2,-4],[-2,-3],[-2,-1],[-3,4],[-1,0],[-3,1],[-6,5],[-2,1],[-2,0],[0,2],[0,2],[0,3],[-2,1],[-12,0],[-4,-3],[-3,-2],[-2,-2],[0,-6],[-1,-6],[-2,-5],[-4,-2],[-3,-6],[-1,-1],[-2,1],[-3,1],[-1,-2],[-2,0],[-6,3],[-5,0],[-3,-1],[-1,-1],[-9,-8],[-3,-1],[-1,2],[-2,3],[-2,3],[-6,11],[-2,3],[-1,3],[-2,3],[-2,3],[-1,3],[-3,5],[-2,5],[0,9],[-2,2],[-1,2],[0,3],[2,8]],[[8044,5301],[2,-8],[1,-2],[4,-6],[3,-2],[4,-1],[4,-1],[1,1],[1,1],[2,-1],[8,-9],[2,-2],[4,1],[1,-1],[4,-7],[2,0],[2,0],[-3,3],[-2,2],[-1,5],[1,4],[2,3],[1,3],[0,9],[1,5],[1,5],[1,4],[-2,3],[0,6],[0,5],[1,3],[2,-2],[1,-2],[2,0],[1,1],[0,2],[0,5],[0,8],[2,6],[3,4],[3,2],[11,4],[17,9],[5,3],[2,2],[1,2],[3,8],[5,13],[3,10],[8,15],[6,14],[1,3],[1,7],[0,4],[-1,4],[1,1],[1,1],[1,0]],[[8168,5448],[0,-1],[3,-2],[1,-3],[1,-4],[1,-3],[0,-3],[1,-3],[2,0],[1,-3],[2,-5],[2,-4],[1,-1],[1,0],[2,4],[1,4],[1,6],[1,5],[0,2],[0,2],[-1,2],[-1,5],[0,7],[0,3],[1,2],[2,2],[2,4],[2,2]],[[8194,5466],[0,-5],[0,-7],[1,-6],[2,-11],[1,-2],[2,-1],[2,0],[0,1],[1,1],[-2,4],[0,11],[-1,6],[-2,7],[0,2]],[[8198,5466],[6,2],[2,2],[2,5],[1,2],[1,6],[-3,3],[-2,5],[0,5],[4,8],[1,3],[1,-4],[2,0],[1,-1],[2,1],[2,4],[1,7],[4,9],[1,7],[1,7],[10,22],[1,4],[6,23],[1,0],[2,-2],[0,-7],[0,-3],[-1,-5],[-1,-5],[1,0],[3,3],[3,8],[1,7],[2,3],[3,-1],[0,-2],[0,-5],[0,-2],[1,-7],[3,-3],[3,-3],[3,-3],[1,-2],[1,-3],[0,-4],[0,-5],[-2,-4],[1,-7],[0,-5],[-1,-3],[-3,-3],[9,3],[2,2],[3,4],[2,-4],[1,-7],[-1,-1],[-4,-3],[0,-1],[1,-4],[2,1],[3,2],[3,4],[1,0],[2,-1],[3,-2],[1,-2],[2,-3],[0,-5],[4,-2],[7,-8],[1,0],[1,0],[4,1],[1,-1],[1,-3],[0,-3],[0,-4],[0,-3],[-1,-2],[-3,-3],[-6,-5],[-6,-3],[-4,0],[-4,3],[-2,-1],[-2,-1],[-2,-9],[4,-9],[7,-10],[0,-2],[0,-3],[-1,-2],[-1,-1],[-4,-1],[-4,-2],[-3,-1],[-3,-2],[-3,0],[-4,5],[-1,0],[-2,-2],[-1,-6],[-1,-2]],[[7894,5341],[-1,0],[-1,0],[0,2],[1,5],[0,1],[1,-5],[0,-3]],[[7785,5489],[-1,-2],[-2,1],[1,10],[1,1],[2,-2],[0,-2],[-1,-6]],[[7773,5556],[2,-6],[-1,-3],[-1,-1],[-1,1],[-1,-2],[-1,0],[-1,4],[-2,2],[0,2],[2,1],[1,-1],[2,2],[1,1]],[[8253,5597],[-2,-3],[0,3],[0,5],[2,4],[4,1],[0,-3],[0,-4],[-1,-2],[-3,-1]],[[7814,5356],[-2,-1],[0,1],[0,2],[1,2],[1,-1],[0,-3]],[[8093,5323],[-1,-1],[-1,2],[0,18],[1,1],[1,-3],[0,-8],[0,-7],[0,-2]],[[8274,5425],[-4,-1],[-3,0]],[[8267,5424],[1,2],[0,3],[1,0],[1,0],[4,-4]],[[6375,4468],[2,-6],[1,-6],[5,-14],[2,-5],[2,-6],[0,-12],[3,-17],[3,-27],[1,-27],[1,-13],[2,-12],[4,-12],[1,-13],[-3,-14],[-3,-14],[0,-2],[-2,-4],[-1,1],[-2,3],[-2,6],[-3,13],[-1,6],[-1,2],[-3,-1],[-2,-4],[0,-3],[0,-7],[1,-7],[0,-7],[0,-8],[1,-3],[1,-2],[2,-6],[0,-13],[-1,-7],[-2,-5],[0,-3],[1,-4],[-1,-2],[-3,-2],[-1,-2],[-2,-6],[-2,-12],[0,-6],[1,-19],[0,-13],[-3,-25],[-2,-12],[-3,-15],[-4,-18],[-4,-24],[-3,-24],[-3,-15],[-2,-15],[-4,-25],[-4,-26],[-4,-28],[-7,-32],[-1,-4],[-1,-16],[-2,-14],[-2,-14],[-3,-23],[-1,-8],[-1,-6],[-3,-15],[-2,-5],[-1,-6],[0,-7],[-1,-7],[-3,-13],[-4,-11],[-3,-4],[-6,-6],[-3,-1],[-6,0],[-6,-3],[-7,-7],[-6,-7],[-3,-4],[-3,-2],[-8,0],[-2,2],[-9,12],[-3,2],[-6,1],[-2,1],[-2,2],[-2,6],[-5,5],[-1,2],[-1,4],[-1,4],[-1,4],[-1,9],[-2,5],[-4,11],[-1,3],[0,11],[0,8],[0,13],[0,7],[2,6],[-1,6],[-1,6],[-1,7],[-1,6],[-5,12],[-1,5],[-1,6],[-2,18],[0,6],[0,13],[1,7],[1,4],[0,4],[1,3],[1,2],[1,3],[2,17],[2,3],[3,3],[3,4],[2,6],[1,12],[4,12],[2,6],[3,10],[3,13],[1,7],[1,6],[1,15],[0,7],[0,7],[-2,7],[-4,13],[0,3],[0,9],[0,7],[-1,7],[-2,7],[-2,12],[-1,21],[0,7],[-1,7],[-1,6],[1,11],[12,40],[1,4],[-1,13],[0,7],[1,2],[1,2],[2,0],[10,2],[1,1],[3,4],[3,6],[2,2],[1,-1],[1,-2],[1,-2],[4,3],[1,0],[2,0],[1,2],[0,4],[1,3],[1,1],[5,1],[3,1],[5,2],[4,-9],[1,-1],[1,0],[1,1],[-2,5],[-1,3],[0,3],[2,6],[2,5],[6,8],[6,9],[1,0],[2,-1],[1,-11],[0,-1],[1,0],[1,1],[1,4],[0,3],[-1,4],[0,3],[-1,2],[3,6],[3,6],[1,7],[1,3],[2,4],[1,-1],[0,-3],[1,-3],[-1,-3],[-1,-3],[0,-4],[1,-1],[1,1],[2,8],[3,7],[1,3],[1,3],[3,-1],[3,-1],[-5,7],[-1,10],[5,18],[1,3],[0,1],[1,2],[-3,6],[-1,3],[1,4],[1,4],[1,3],[2,1],[1,-2],[3,-5],[2,0],[2,4],[2,6],[3,4],[3,2],[5,10],[3,19],[0,5],[0,7],[-2,6],[-1,8],[0,2],[3,-1],[1,1],[2,7],[5,14],[2,0],[1,-3],[1,-3],[1,-3],[3,-6],[1,-5]],[[6342,4414],[0,-2],[-3,1],[-1,7],[2,0],[0,3],[1,1],[1,-7],[0,-3]],[[6386,4210],[-3,-10],[1,8],[4,13],[1,1],[-3,-12]],[[5620,7621],[4,-9],[3,-3],[3,-3],[3,-2],[1,-1],[2,-10],[1,-3],[1,-1],[0,-1],[0,-1],[-1,-7],[-1,-14],[0,-1]],[[5636,7565],[-2,0],[-2,-1],[0,-1],[-1,-7],[-4,-3],[-3,-1],[-2,0],[-5,2],[-1,0],[-2,-1],[-4,0],[-1,-1],[-5,-10],[-4,-3],[-1,-1],[-3,2],[-2,0],[-2,-2],[-5,-1],[-1,0],[-4,0]],[[5582,7537],[0,1],[-1,2],[-2,1],[-3,-1],[-1,1],[-2,8],[-1,1],[-1,3],[-2,8],[0,4],[0,3],[-2,7],[1,2],[1,1],[0,3],[0,5],[1,9],[1,1]],[[5571,7596],[0,-1],[3,0],[1,1],[1,1],[0,7],[1,3],[7,6],[3,0],[1,-3],[2,-1],[1,0],[0,1],[1,4],[2,2],[4,1]],[[5169,8071],[0,-2],[0,-3],[1,-4],[2,-3],[1,-3],[2,-2],[3,-1],[2,-1],[0,-2],[0,-3],[-2,-2],[-1,-2],[0,-2],[-1,-5],[0,-4]],[[5176,8032],[-2,2],[-1,1],[-2,0],[-2,-1],[-1,-2],[-2,0],[-1,0],[-1,2],[-1,0],[-2,1],[-1,2]],[[5160,8037],[1,1],[1,1],[0,2],[1,2],[-2,5],[-1,2],[-1,3],[0,1],[0,1],[0,2],[0,2],[1,2],[1,3],[1,4],[3,5],[3,0],[1,0],[0,-2]],[[5580,8368],[3,7],[1,4],[1,6],[1,2],[0,-3],[0,-4],[-2,-8],[-2,-4]],[[5589,8367],[-1,5],[1,6],[-1,9],[-4,12],[0,12],[0,2]],[[5584,8413],[8,7],[9,7],[2,1],[9,4],[1,1],[8,-1],[6,-1],[5,0],[3,1],[2,-1],[3,-3],[2,0],[2,2],[11,-1],[3,0],[3,-1],[5,-2],[3,-1],[7,1],[3,0],[2,0],[5,5],[2,1],[1,1],[2,-1],[1,-4],[4,-7],[4,-1],[10,-3],[2,-2],[6,-6],[4,-3],[2,-3],[3,-5],[2,-3],[4,-3],[4,-2],[1,0]],[[5738,8390],[0,-2],[-1,-5],[-1,-5],[-1,-5],[-1,-2],[1,-1],[6,-1],[2,0],[0,-2],[-1,-1],[-2,-1],[0,-2],[-2,-4],[-8,1],[-1,-1],[-1,-2],[0,-2],[-1,-3],[-3,-2],[-3,-1],[-3,-2],[-2,-5],[-2,-7],[0,-4],[0,-3],[0,-1],[-1,-2],[-2,-4],[-1,-5],[-1,-3],[0,-1],[2,0],[2,-1],[2,-2],[0,-2],[0,-3],[0,-1],[-2,-1],[-3,0],[-2,1],[0,1],[1,3],[-1,2],[-1,2],[-3,-2],[-2,0],[-3,-3],[-2,-3],[-2,-1],[-5,0],[-1,-1],[-1,-7],[-1,-1],[-4,0],[-4,-3],[-4,-2],[-2,1],[-2,2],[-2,0],[-3,-1],[-1,1],[-2,-1],[-4,-1],[-5,0],[-2,2]],[[5264,7907],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-2],[0,-1]],[[5319,7095],[4,-4],[5,-1],[13,-14],[4,-1],[9,-2],[10,6],[4,1],[7,-6],[4,-1],[5,0],[9,-5],[2,-2],[5,-7],[3,-3],[18,-7],[3,-4],[2,-9],[0,-11],[2,-8],[2,-10],[3,-7],[3,-6],[3,-4],[8,-5],[9,-3],[10,0],[15,-8],[14,-9],[3,-4],[7,-4],[13,-21],[7,-8],[6,-1],[4,1],[9,8],[3,4],[8,18],[3,9],[1,7],[0,7],[-1,6],[-2,6],[-2,8],[-1,15],[1,11],[2,6],[2,7],[7,12],[7,8],[13,12],[7,0],[3,1],[5,8],[3,0],[3,-2],[10,1],[4,-2],[5,-5],[6,-3],[5,-3],[5,-4],[1,-10],[-1,-3],[0,-4],[5,-7],[14,-3],[3,-2],[4,-5],[3,-2],[9,0],[6,1],[6,-2],[2,-2],[2,-4],[2,-10],[1,-3]],[[5698,7007],[-1,-2],[-2,-3],[0,-3],[-3,-5],[-2,-5],[0,-8],[0,-8],[2,-8],[1,-9],[0,-5],[-1,-7],[-2,-6],[-4,-12],[0,-3],[0,-4],[2,-14],[1,-4],[1,-14],[2,-11],[1,-9],[0,-2],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-12],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-13],[0,-12],[0,-13],[0,-13],[0,-13]],[[5666,6307],[-14,13],[-13,14],[-13,14],[-14,13],[-13,14],[-13,14],[-14,13],[-13,14],[-13,13],[-14,14],[-13,14],[-13,13],[-13,14],[-14,14],[-13,13],[-13,14],[-10,9],[-9,-9],[-8,-7],[-10,-10]],[[5332,6538],[-3,11],[-3,11],[-4,14],[-2,9],[-1,1],[-11,7],[-12,7],[-7,-4],[-1,0],[-2,3],[-2,3],[-1,5],[-2,7],[-3,15],[0,12],[-1,4],[-6,17],[-5,15],[-4,10],[-1,5],[1,5],[1,6],[5,6],[5,6],[1,5],[0,12],[-1,4],[-1,8],[-2,10],[0,6],[2,13],[3,13],[-2,15],[-1,30],[1,23],[-1,9],[0,3],[-2,11],[-2,12],[-1,4],[-2,9],[-5,11],[-2,7],[3,4],[3,3]],[[4714,5673],[1,0],[3,2],[1,-1],[1,-3],[0,-2],[7,5],[1,2],[0,-1],[1,-4],[1,0],[0,1],[1,0],[1,-2],[1,-2],[1,-2],[1,-1],[0,-5],[0,-5],[1,-1],[0,-3],[1,-3],[0,-2],[0,-3],[0,-4],[0,-2],[2,-4],[0,-5],[0,-4],[0,-4],[-1,-4],[-1,-4],[0,-1],[0,-1],[2,0],[1,1],[2,-2],[2,-3],[1,-3],[1,-2],[0,-2],[2,1],[2,2],[1,1],[0,-1],[2,0],[1,4],[0,4],[2,4],[1,2],[0,2],[0,4],[1,3],[1,2],[1,0],[1,-1],[1,-3],[1,-2],[1,-2]],[[4764,5619],[0,-1],[1,-1],[1,-6],[3,-20],[0,-5],[-1,-4],[0,-3],[0,-3],[-2,-6],[-5,-11],[0,-1],[1,-2],[2,0],[1,0],[1,-3],[2,-3],[1,-2],[3,-2],[2,0],[1,1],[3,-1],[2,-3],[1,-5],[1,-4],[1,-2],[0,-4],[2,-3],[2,-1],[4,-4],[1,0]],[[4792,5520],[0,1],[0,-1]],[[4792,5520],[1,-11],[1,-5],[0,-3],[-1,-2],[0,-9],[-1,-5],[-1,-5],[0,-2],[-2,-2],[0,-4],[0,-5],[0,-5],[0,-15],[0,-11],[1,-2]],[[4790,5434],[-3,1],[-10,8],[-7,5],[-24,27],[-7,11],[-8,16],[-17,32],[-4,5],[-5,3],[-3,2],[-2,3],[-2,9],[-4,5],[-8,8],[-6,13]],[[5996,7109],[-1,-1],[-2,-2],[-1,-2],[-3,-4],[-1,-2],[0,2],[-2,-1],[-1,-8],[-2,-2],[-3,0],[-2,1],[-3,-1]],[[5975,7089],[1,5],[1,5],[2,8],[2,7],[5,21],[3,9],[1,12],[4,11],[3,4],[2,3],[0,4]],[[5584,8413],[-1,11],[1,22],[1,11],[5,6],[3,5],[1,6],[0,6],[2,5],[7,15],[6,1],[8,4],[9,4],[2,-5],[1,-3],[10,-12],[3,-3],[4,-14],[10,-7],[8,2],[4,4],[6,6],[3,4],[0,5],[-1,18],[-2,8],[1,5]],[[5675,8517],[1,0],[3,2],[9,5],[1,0],[2,1],[6,3],[2,-2],[1,-2],[1,0],[0,1],[0,1],[1,1],[1,0],[7,-6],[2,-1],[2,0],[2,-3],[5,-2],[1,-1],[0,-2],[6,-7],[2,-3],[4,-4],[2,-1],[8,4],[3,1],[1,0],[2,-2],[5,-2],[3,-1],[1,0]],[[5781,8418],[-1,0],[-2,-1],[-4,-3],[-5,-8],[-2,-2],[-1,-6],[-1,0],[-3,0],[-1,0],[-3,0],[-7,2],[-3,-1],[-4,-6],[-1,-1],[-4,-1],[-1,-1]],[[7986,6031],[-2,-3],[-1,-5],[-1,-1],[-2,2],[-1,-1],[-2,-4],[-3,-5],[-1,0],[-1,1],[-1,-2],[-1,-4],[-1,0],[-3,-1],[-1,1],[-1,4],[-2,3],[-2,2],[-1,1],[-1,3],[0,1],[-2,-3],[-2,-4],[-3,1],[-1,1],[-1,-5],[-1,-1],[-4,-1],[-1,-1],[1,-5],[2,-8],[1,-4],[-1,-7],[-5,0],[-2,3],[-2,4],[-1,2],[-5,4],[-4,-3],[-1,0],[-2,3],[-1,3],[-1,3],[-1,4],[0,1]],[[7780,6354],[1,3],[1,13],[2,8],[2,4],[2,1],[3,0],[2,0],[1,2],[0,1],[-2,1],[0,2],[0,4],[1,3],[1,1],[1,4],[2,7],[1,3],[2,0],[3,3],[4,6],[2,6]],[[7809,6426],[1,-3],[0,-6],[0,-2],[1,-2],[0,-4],[0,-3],[1,-1],[1,-1],[4,3],[3,0],[1,-2],[1,-1],[1,-1],[1,-1],[1,0],[2,3],[0,1],[0,1],[-1,2],[-1,3],[0,4],[0,8],[1,4],[-1,10],[0,3],[-1,3],[-2,6],[-1,4],[-1,4],[0,2],[0,3],[-1,3],[2,1],[1,3],[1,4],[0,4],[1,1],[1,0],[1,0],[2,-6],[3,3],[2,0],[2,-1],[1,-2]],[[6970,7617],[-1,3],[0,3],[1,4],[2,2],[0,5],[2,3],[2,4],[3,4],[4,3],[3,-1],[2,1],[4,2],[1,0],[1,0],[10,-3],[3,0],[7,-5],[4,-1],[2,-1],[1,-2],[2,-3],[9,-2],[3,-1],[1,-2],[3,-3],[2,-1],[-2,11],[1,6],[3,18],[1,2],[3,3],[5,2],[1,4],[4,-1],[2,1],[1,0],[1,2],[4,-3],[7,-7],[6,-5],[6,-4],[9,-4],[7,-1],[2,1],[3,6],[1,0],[3,-1],[7,0],[9,0],[3,0],[9,3],[1,0],[2,0],[5,-4],[3,0],[3,0],[1,0],[3,0],[5,-1],[7,-2],[7,1],[2,0],[5,0],[3,-2],[4,-3],[3,0],[1,-1],[3,0],[2,1],[1,-1],[1,-6],[3,-3],[2,-4],[2,-3],[1,-2],[3,0],[6,-1],[3,-1],[4,-7],[4,-6]],[[7227,7614],[1,-4],[0,-4],[0,-1],[-9,-1],[-2,-1],[-2,-6],[-7,-4],[-4,-3],[-2,0],[-4,-3],[-11,-9],[-6,-6],[-3,-3],[-2,-2],[0,-3],[0,-2],[-7,-12],[-4,-2],[-4,1],[-3,-2],[-4,-2],[-8,1],[-3,0],[-5,2],[-2,-1],[-3,-3],[-3,-9],[-1,-2],[-1,-3],[0,-4],[-2,-5],[-1,-4],[-1,-3],[-3,-4],[-2,-2],[-1,5],[-2,-2],[-1,-2],[-3,1],[-1,-1],[-4,-4],[-6,0],[0,2],[-1,10],[-1,6],[-1,1],[-1,0],[-8,-9],[-3,-1],[-3,0],[-4,2],[-1,0],[-1,-2],[0,-2],[1,-4],[0,-1],[-2,0],[-2,-1],[-2,-3],[-6,-7],[-4,-3],[-5,-1],[-2,-1],[0,-1],[-2,-3],[-1,-6],[-1,-3],[-1,-2],[0,-2],[2,-3],[0,-6],[0,-2],[-1,-2],[-1,-3],[-3,-1],[-2,-1]],[[6340,6890],[-1,-1],[-1,0],[-1,3],[-2,8],[1,3],[0,1],[0,1],[1,1],[0,3],[1,2],[1,-3],[3,-9],[0,-3],[0,-2],[-2,-4]],[[6292,6860],[4,9],[3,5],[3,11],[2,8],[2,9],[2,6],[0,2],[1,2],[2,2],[3,2],[5,1],[4,0],[1,0],[2,-1],[6,-5]],[[6332,6911],[0,-2],[1,-7],[2,-7],[1,-5],[1,-3],[-2,1],[-1,1],[-2,1],[-4,-8],[-3,-4],[0,-1],[3,-2],[3,0],[2,1],[1,-1],[1,-5],[0,-4],[3,-13],[2,-5],[2,-7],[1,-5],[1,-3],[1,-5]],[[5571,7596],[0,2],[0,6],[-1,9],[-2,3],[-2,3],[-1,2],[-3,1],[-2,5],[-2,6],[-1,1]],[[9804,5364],[-2,-2],[-1,0],[3,3],[0,-1]],[[9800,5360],[-2,-3],[0,1],[0,1],[2,2],[1,0],[0,-1],[-1,0]],[[9805,5290],[0,-1],[-1,3],[-1,3],[0,1],[0,-1],[1,-1],[0,-1],[1,-3]],[[9805,5283],[-1,-1],[1,1],[0,1],[0,4],[1,0],[0,-2],[0,-2],[-1,-1]],[[9805,5242],[2,-2],[0,-2],[-1,-1],[-2,-5],[2,4],[0,3],[-1,2],[-1,2],[1,0],[0,-1]],[[9846,5138],[0,-2],[-1,1],[1,2],[-1,8],[-1,1],[-1,2],[2,-2],[1,-1],[0,-5],[0,-4]],[[9854,5114],[0,-3],[-1,0],[0,2],[0,3],[-1,2],[1,0],[1,-3],[0,-1]],[[9806,5261],[-1,0],[0,1],[4,1],[0,1],[0,-1],[0,-1],[-1,0],[-2,-1]],[[9709,5133],[-1,1],[0,1],[1,-1],[0,-1]],[[216,4924],[1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,-1]],[[248,5003],[-1,0],[0,1],[1,0],[0,-1]],[[243,4927],[0,-1],[0,1],[0,1],[1,-1],[-1,0]],[[152,4915],[1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,-1]],[[696,4948],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,1],[0,-1],[0,-1],[0,-2]],[[784,4525],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,-2],[0,-1]],[[670,4860],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,-1]],[[629,5291],[5,-7],[-2,0],[-5,3],[-4,6],[1,2],[1,-3],[2,-2],[1,5],[1,1],[-4,5],[2,-1],[3,-3],[-1,-6]],[[574,5410],[2,-5],[0,-3],[-2,1],[-1,1],[2,0],[0,1],[-1,1],[-1,1],[0,-2],[-1,2],[0,1],[1,1],[1,1]],[[231,5024],[1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-1,1],[0,1],[1,-1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[1,-1]],[[6138,5059],[-1,0],[1,3],[3,4],[1,0],[0,-1],[0,-1],[0,-1],[-4,-4]],[[5979,5500],[0,-2],[0,-2],[1,-2],[1,-1],[1,1],[1,2],[2,0],[7,-4],[2,-4],[0,-4],[0,-3],[-1,-3],[0,-9],[0,-8],[2,-6],[2,-5],[2,-7],[1,-2],[2,-1],[5,0],[8,-1],[7,0],[1,0],[2,-1],[6,-9],[7,-8],[5,-8],[5,-7],[5,-6],[4,-6],[4,-2],[6,-1],[5,0],[4,-2],[6,-2],[4,-2],[3,-1],[7,-1],[2,1],[3,6],[4,10],[1,6],[5,5],[8,8],[6,5],[7,6],[3,-5],[4,-8],[2,-3],[1,-2],[2,-1],[3,0],[2,0],[3,1],[7,1],[4,0]],[[6153,5086],[-4,-10],[-3,-4],[-5,-2],[-1,0],[-2,1],[-1,-2],[0,-4],[-1,1],[-1,1],[1,-6],[0,-4],[-1,-4],[-2,-4],[0,-3],[-5,-8],[-6,-1],[-4,-5],[-1,-3],[-2,-8],[1,-11],[-2,-9],[0,-4],[-4,-6],[-1,-5],[-1,-6],[-1,-2],[-2,-12],[-1,-8],[-1,-2],[0,-2],[-1,-5],[-1,-2],[-1,-2],[-4,-19],[-3,-9],[-2,1],[-2,-3],[0,-1]],[[6393,7767],[-1,-1],[-1,0],[-3,6],[1,6],[1,2],[1,0],[0,-1],[-1,-3],[-1,-3],[2,-4],[2,-2]],[[6397,7774],[-1,-1],[-1,4],[1,3],[2,1],[-1,-5],[0,-2]],[[6463,7799],[-1,0],[-2,1],[-1,3],[2,3],[1,0],[1,-4],[0,-3]],[[6458,7590],[-1,6],[0,10],[0,3],[1,8],[2,5],[1,6],[1,7],[-2,12],[-1,2],[-1,1],[-2,0],[-3,0],[-2,-1],[-2,4],[-3,1],[-2,-2],[-1,0],[-2,1],[-2,2],[0,3],[-1,3],[-3,6],[-2,3],[-3,0],[-4,0],[-2,1],[0,3],[1,7],[0,4],[-1,3],[0,3],[-1,3],[-3,4],[-2,6],[-4,12],[-3,13],[-1,2],[-3,2],[-6,2],[-4,2],[-1,2],[-1,3],[0,3],[1,3],[1,4],[3,2],[6,1],[6,-1],[5,-5],[2,-2],[2,0],[4,2],[1,0],[5,0],[-1,2],[-2,2],[-2,0],[-1,1],[-3,5],[-4,6],[-1,2],[-1,4],[1,4],[3,3],[3,5],[1,6],[1,3],[3,4],[3,-1],[5,4],[9,-1],[11,1],[3,0],[6,-3],[4,-2],[5,-1],[3,2],[-3,4],[-7,5],[-2,5],[3,12],[5,10],[2,13],[0,13],[-2,4],[1,4],[1,3],[1,4],[-1,4],[-1,7],[-1,2],[-4,3],[-6,0],[-6,2],[-2,-1],[-1,-3],[-1,-1],[-4,-3],[-1,-1],[-2,1],[-2,3],[-2,0],[-5,2],[-3,5],[-1,1],[-9,4],[-3,0],[-7,-4],[-5,-5],[-2,-1],[-3,-3],[-1,0],[-2,0],[-1,0],[-3,-5],[-6,-6],[-3,-3],[-3,-2],[-3,-2],[-4,0],[-1,-1],[-4,-1],[-3,-1],[0,-2],[1,-4],[-3,1],[-2,-2],[1,-3]],[[7425,8011],[-3,1],[-5,0],[-3,0],[-1,-1],[-2,-2],[-2,-2],[-1,-4],[1,-5],[-1,-9],[-1,-4],[-4,-6],[-1,-1],[-4,-1],[-2,-2],[-6,-2],[-7,-1],[-2,-1],[-1,-5],[-2,-3],[0,-3],[-2,-8],[-1,-8],[1,-10],[1,-11],[0,-4],[1,-5],[1,-4],[0,-4],[-3,-4],[-1,-5],[-1,-2],[-4,-1],[-3,-1],[-4,-4],[-2,-3],[-5,-4],[-2,-1],[-1,2],[0,4],[-2,2],[-2,0],[-2,1],[-5,1],[-3,0],[-3,-1],[-3,-1],[-5,2],[-3,1],[-3,1],[-5,4],[-7,5],[-3,1],[-1,-1],[-1,-3],[0,-6],[-1,-4],[-5,-20],[-3,-13],[-4,-14],[-1,-8],[-2,-12],[-2,-8],[-1,-4],[0,-2],[0,-2],[4,-3],[3,-2],[1,-1],[0,-3],[0,-4],[0,-5],[-1,-3],[-1,-2],[-2,0],[-2,2],[-2,3],[-2,0],[-4,-1],[-3,-2],[-1,0],[-3,1],[-2,3],[-1,5],[-2,2],[-2,-2],[-7,-4],[-9,-5],[-5,-2],[-2,1],[-4,-1],[-3,-1],[-3,-2],[-5,-2],[-5,-2],[-3,-3],[-2,-4],[0,-1],[2,-2],[1,-2],[4,0],[4,1],[3,-3],[2,-1],[1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-4],[0,-7],[0,-6],[1,-6],[-1,-3],[0,-4],[1,-3],[1,-6],[2,-3],[3,-12],[2,-7],[1,-8],[-1,-4],[0,-3],[2,-2],[1,-4],[0,-2],[0,-3],[-1,-1],[-3,2],[-3,-3],[-4,-2],[0,-1],[0,-2],[0,-1],[2,-2],[3,-2],[-1,-2],[-3,-1],[-5,-3],[-1,-4],[-1,-4],[0,-2],[0,-6],[1,-7],[2,-7],[0,-3],[-1,-1],[-1,-1]],[[6076,7106],[2,-13],[2,-12],[2,-13],[2,-13],[-2,-1],[2,-9],[3,1],[3,1],[1,-6],[-4,-7]],[[5970,6875],[1,7],[0,4]],[[5971,6886],[1,13],[1,7],[1,4],[2,10],[-1,3],[1,11],[0,2],[0,6],[2,9],[2,7],[1,3],[1,7],[2,9],[-1,5],[0,1],[0,5],[1,9]],[[5984,6997],[1,5],[0,6],[2,5],[-1,13],[0,7],[2,8],[-1,9]],[[5987,7050],[0,13],[1,1],[0,1],[1,1],[3,3],[1,0]],[[8704,7269],[-1,-2],[-3,1],[-1,3],[0,3],[3,3],[2,-5],[0,-3]],[[8842,7362],[-3,0],[0,1],[1,1],[0,3],[1,4],[0,1],[-2,0],[0,5],[2,5],[4,7],[1,2],[1,-4],[-2,-7],[0,-3],[3,-1],[-2,-9],[-4,-5]],[[8747,7159],[-3,-5],[-2,0],[-2,2],[0,3],[2,4],[3,6],[1,3],[2,2],[1,-1],[-3,-8],[1,-6]],[[8628,6927],[-4,-1],[-1,1],[-2,7],[3,5],[4,-5],[1,-1],[-1,-6]],[[8637,6935],[-3,-1],[0,3],[2,8],[1,5],[1,7],[1,2],[1,0],[0,-2],[0,-8],[-2,-7],[-1,-7]],[[8613,7040],[-3,-2],[0,2],[-1,1],[2,3],[0,1],[-1,2],[1,7],[0,3],[4,1],[1,-3],[0,-8],[-3,-7]],[[8590,7149],[-2,-2],[0,3],[0,11],[4,-2],[0,-4],[-2,-6]],[[8593,7163],[0,-3],[-2,2],[-1,1],[2,9],[-1,4],[1,1],[3,5],[1,-1],[0,-1],[0,-2],[0,-5],[-3,-7],[0,-3]],[[8573,7072],[1,-1],[2,0],[1,1],[1,-1],[1,-4],[1,-2],[-2,-1],[-1,0],[-1,-3],[-2,1],[-1,1],[0,2],[0,7]],[[8621,7051],[-3,0],[-1,1],[0,2],[3,3],[3,0],[-1,-4],[-1,-2]],[[8918,7795],[-1,-4],[-2,6],[0,6],[1,-1],[1,0],[1,-3],[0,-4]],[[8924,7783],[-2,-1],[-2,3],[0,3],[1,2],[2,-1],[1,-3],[1,-2],[-1,-1]],[[8874,7608],[-1,-1],[-1,1],[0,4],[0,2],[2,2],[2,0],[-2,-8]],[[8731,7170],[0,-1],[-1,0],[-2,-2],[0,2],[-1,2],[-1,1],[4,1],[2,-1],[-1,-2]],[[8873,7184],[0,-3],[-2,1],[-1,2],[1,3],[1,0],[1,-3]],[[8585,7075],[-1,0],[-1,5],[-1,2],[1,1],[3,9],[0,-4],[1,-3],[1,-1],[-1,-3],[-1,-1],[-1,-5]],[[8596,7097],[-2,-2],[-1,0],[1,3],[0,1],[1,5],[2,1],[1,0],[-1,-4],[-1,-4]],[[8605,7128],[-2,-3],[-2,2],[1,5],[0,2],[2,-2],[1,-4]],[[8682,7149],[-1,-3],[-2,1],[1,2],[0,3],[1,0],[0,-3],[1,0]],[[8673,7139],[2,-2],[3,1],[0,-1],[-1,-2],[-1,-2],[-3,2],[-1,0],[-1,3],[1,1],[1,0]],[[8602,7007],[0,-1],[0,5],[2,4],[1,-3],[-3,-5]],[[8949,6717],[-1,0],[-1,6],[1,-1],[1,-3],[0,-2]],[[8994,7725],[4,0],[1,0],[3,-1],[10,-9],[4,-1],[3,0],[2,1],[2,2],[7,11],[6,9],[1,0],[0,-3],[0,-3],[-3,-8],[-4,-12],[0,-6],[1,-6],[2,-5],[1,-7],[2,-9],[3,-1],[1,0],[3,2],[3,4],[2,0],[2,0],[-3,-3],[-3,-3],[-2,-5],[-1,-1],[-3,0],[-1,0],[-4,-3],[-3,-2],[-2,-4],[-3,-1],[-3,-1],[-5,-3],[-4,0],[-6,3],[-2,-1],[-7,-5],[-6,-8],[-5,-9],[-4,-10],[-1,-5],[-1,-6],[-1,-4],[0,-4],[-1,-3],[-1,-2],[-4,1],[-5,6],[-11,8],[-12,12],[-7,6],[-12,-2],[-12,-11],[-1,1],[-4,8],[-2,3],[-3,1],[-2,0],[-2,-1],[-2,-4],[-1,-3],[-1,-3],[0,-3],[0,-2],[3,-6],[3,-3],[1,-1],[3,0],[1,0],[5,-8],[6,-8],[1,-2],[-2,-3],[-2,-1],[-3,0],[-2,1],[-5,3],[-2,-2],[-2,-6],[-2,-6],[-1,-3],[-3,-3],[-4,-2],[-2,0],[-1,3],[-1,2],[0,4],[1,6],[1,7],[1,6],[-1,9],[-1,2],[-4,5],[-2,5],[0,6],[0,4],[1,7],[1,4],[2,2],[1,0],[3,3],[3,4],[3,4],[3,5],[2,5],[-3,7],[0,4],[0,4],[3,2],[2,-2],[6,-5],[1,-1],[3,0],[6,-1],[3,0],[1,1],[2,5],[1,6],[0,7],[0,8],[1,6],[4,9],[2,6],[0,14],[2,7],[1,6],[1,13],[-2,13],[-2,7],[-2,6],[0,5],[2,6],[0,1],[0,2],[3,1],[2,1],[1,3],[2,1],[1,-1],[1,-3],[4,-7],[7,-11],[8,-18],[5,-8],[5,-8],[6,-8],[7,-7],[4,-3],[2,-5],[2,-1]],[[8643,7119],[4,-1],[1,-1],[2,1],[2,2],[2,2],[2,-1],[1,-2],[1,-3],[0,-3],[-3,-6],[-2,-7],[5,-1],[5,0],[-1,-4],[0,-4],[1,-1],[1,-3],[0,-2],[-1,-2],[3,-3],[0,-2],[-1,-2],[-7,-15],[-2,-7],[-1,-8],[-1,-6],[-1,-6],[-1,-7],[-1,-7],[0,-6],[0,-6],[-4,-15],[-2,0],[-3,2],[-2,0],[-1,-4],[2,-7],[-6,-8],[-6,-6],[0,3],[1,2],[1,1],[0,2],[1,7],[0,6],[-2,9],[0,3],[1,1],[1,0],[0,1],[0,3],[0,2],[-2,1],[-2,0],[-1,-3],[-1,-6],[-1,-6],[0,-3],[1,-3],[2,-5],[0,-3],[-1,-2],[-8,5],[-2,0],[-1,1],[-2,7],[3,1],[1,1],[1,2],[0,7],[-1,5],[-2,2],[-1,3],[1,4],[0,6],[0,8],[0,2],[3,1],[2,5],[2,5],[3,8],[2,10],[-2,0],[-2,2],[2,4],[-1,6],[-3,7],[-1,8],[-3,3],[-1,2],[-2,-2],[-1,-2],[1,-6],[0,-4],[0,-5],[1,0],[2,1],[1,-1],[1,-2],[0,-4],[0,-3],[-1,-1],[-2,0],[-1,2],[-2,2],[-2,1],[-3,-2],[-3,-6],[-2,-3],[1,4],[0,5],[-1,3],[-2,5],[-1,3],[0,4],[0,4],[3,-4],[1,-6],[2,-2],[3,0],[-2,8],[-1,2],[-2,3],[-4,6],[-2,3],[0,6],[2,2],[1,-1],[4,-2],[0,3],[0,2],[-1,2],[3,2],[4,3],[1,1],[1,2],[1,1],[3,0],[2,2],[2,6],[1,3],[1,3],[5,4],[1,1],[4,-1],[3,-2],[1,-6],[2,-6],[3,-4]],[[8731,7157],[4,-2],[4,0],[0,-10],[1,-4],[1,-3],[-1,-5],[2,-1],[-5,-5],[-5,-7],[-2,-5],[-2,-5],[-1,-5],[-1,-6],[-1,2],[-5,9],[-3,3],[-4,1],[-2,0],[-9,-9],[-2,-6],[-2,-10],[-2,-3],[-1,-1],[-1,-1],[-1,-9],[-3,-5],[-2,0],[-3,2],[-1,-1],[1,8],[-2,1],[-3,0],[-1,5],[-1,3],[1,4],[0,3],[1,2],[0,2],[0,2],[-2,1],[-1,2],[0,5],[-1,1],[-2,-1],[-6,-5],[-1,0],[2,3],[5,5],[2,2],[5,7],[3,3],[1,6],[1,4],[1,3],[1,5],[1,1],[3,5],[1,-1],[2,-5],[2,-4],[2,0],[3,2],[1,1],[4,0],[3,2],[1,3],[0,4],[-1,6],[2,0],[1,0],[4,4],[3,2],[3,1],[4,-2],[4,-4]],[[8922,7567],[1,-1],[5,3],[-1,-9],[0,-9],[0,-15],[1,-7],[1,-6],[2,-5],[3,-3],[4,-10],[2,-13],[2,-7],[1,-6],[0,-3],[0,-3],[0,-4],[0,-4],[0,-10],[-2,-12],[0,-6],[-2,-2],[-1,-3],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-4],[-1,-3],[-1,-2],[-1,-4],[-1,-7],[0,-8],[-1,-5],[-3,-2],[-3,1],[-4,-3],[-1,-1],[-3,-10],[-1,-5],[0,-6],[1,-8],[1,-7],[1,-13],[-1,-20],[-1,-7],[-2,-4],[-2,-2],[-1,-3],[-2,-7],[-3,-13],[0,-3],[0,-3],[-1,-5],[0,-4],[0,-5],[1,-5],[4,-13],[2,-3],[1,-4],[-6,-3],[-1,-2],[-4,-7],[-2,-7],[1,-7],[-1,-3],[-1,-2],[-1,-1],[-5,-4],[-2,-3],[-3,-5],[-1,-3],[-2,1],[-2,2],[2,3],[-1,4],[1,9],[-1,4],[2,3],[1,4],[3,4],[1,3],[1,2],[-2,3],[-1,2],[-3,0],[-2,0],[-1,-3],[0,-4],[0,-1],[0,-2],[-4,-5],[1,-5],[1,-2],[1,-2],[0,-2],[-2,-4],[-1,0],[-2,6],[-3,3],[-3,0],[-3,-1],[-2,-4],[-1,-3],[-1,-4],[1,-8],[-1,-7],[-2,-5],[-1,-3],[-3,-4],[-1,0],[-1,2],[-1,2],[1,11],[0,5],[3,3],[-3,4],[-3,2],[-4,-2],[-1,-3],[0,-3],[-3,-4],[-2,-4],[-3,-7],[-1,-8],[-6,3],[-3,1],[-4,-1],[-5,1],[-6,-1],[-8,-3],[1,2],[6,5],[0,1],[-1,3],[-1,0],[-4,-1],[-1,0],[-1,3],[-1,1],[-1,-1],[0,-5],[-1,-1],[-1,1],[0,5],[0,6],[0,4],[1,3],[-1,1],[-2,0],[-1,-2],[-2,-2],[-3,-11],[-1,-7],[2,-5],[6,-7],[1,-2],[0,-3],[0,-3],[-2,-2],[-7,-2],[-6,-5],[-2,-4],[-5,-19],[-4,-12],[-7,-4],[-6,3],[-2,5],[-1,5],[-3,5],[-2,5],[-1,7],[0,10],[-1,6],[1,1],[4,4],[1,2],[2,5],[1,3],[0,4],[-2,2],[-4,0],[-5,-2],[-3,2],[-4,5],[-1,1],[-4,1],[-4,-1],[-3,-2],[-3,-1],[-1,-1],[-4,-6],[-3,-3],[-2,-2],[-6,-1],[-2,-1],[-3,-2],[-1,0],[-3,-3],[-4,-2],[-1,-2],[-4,1],[-7,-4],[-3,-1],[-3,3],[-3,3],[-4,-1],[-2,-6],[-1,-11],[-1,-5],[0,-6],[-2,1],[-9,11],[-8,-2],[-2,-1],[-2,-2],[-3,-1],[-2,2],[-2,2],[-2,0],[-2,-2],[-1,16],[0,2],[2,3],[1,3],[4,1],[3,-1],[3,1],[2,3],[2,5],[3,4],[3,3],[4,3],[3,5],[3,5],[2,4],[3,3],[4,8],[6,8],[2,7],[2,2],[4,3],[7,3],[3,0],[3,-6],[2,1],[1,1],[4,1],[3,-1],[3,0],[4,1],[6,2],[4,2],[3,3],[12,2],[8,5],[1,-1],[1,-1],[1,-3],[-1,-4],[1,-3],[1,-1],[8,0],[2,-1],[3,2],[3,4],[3,4],[3,5],[-2,6],[-1,7],[2,7],[2,6],[3,4],[3,4],[5,12],[4,10],[2,12],[-1,14],[3,11],[4,2],[6,5],[4,1],[0,-2],[0,-3],[-5,-9],[-3,-3],[-2,-2],[-1,-1],[-1,-3],[3,-6],[0,-3],[0,-4],[0,-3],[3,-4],[4,-1],[1,0],[1,1],[4,9],[1,1],[11,7],[5,5],[4,1],[2,3],[7,10],[2,4],[2,5],[2,6],[1,7],[2,4],[10,9],[3,5],[1,3],[2,7],[0,8],[2,5],[1,6],[3,6],[2,5],[1,5],[3,13],[1,7],[0,3],[1,2],[1,3],[1,3],[0,3],[1,9],[0,7],[-2,6],[-2,2],[-1,0],[-2,0],[-2,2],[0,2],[2,1],[1,1],[1,2],[2,7],[1,7],[0,3],[-1,6],[-1,6],[0,4],[1,4],[2,4],[1,1],[2,0],[2,1],[1,2],[1,2],[1,6],[1,4],[-1,9],[1,2],[1,2],[1,-2],[2,0],[2,1],[1,-1],[1,-3],[1,-15],[1,-2],[1,-1],[1,0],[1,2],[1,3],[2,1],[5,-3],[2,2],[1,4],[1,6],[0,6],[-2,2],[-1,0],[-1,-2],[-1,-1],[-8,-3],[0,7],[2,10],[1,3],[1,1],[3,-1],[2,-1],[3,-5]],[[8452,6596],[-2,-9],[-1,-2],[-2,1],[-1,5],[1,2],[1,-1],[1,1],[3,7],[1,-1],[-1,-3]],[[8441,6582],[-2,-1],[-2,1],[-2,1],[0,1],[2,2],[0,3],[0,1],[5,-3],[0,-2],[-1,-3]],[[8484,6609],[-3,-2],[-2,1],[0,8],[1,-1],[1,-2],[2,-2],[1,-2]],[[8562,6719],[-3,-3],[-1,-3],[-2,-1],[-3,-4],[-2,-1],[0,-4],[1,-3],[-2,0],[-1,-4],[0,-3],[0,-2],[0,-1],[-2,-3],[-2,0],[0,3],[0,3],[2,6],[0,7],[2,1],[1,1],[3,5],[0,3],[-1,2],[0,2],[0,1],[3,-1],[1,-1],[0,-1],[1,2],[1,2],[3,5],[1,5],[2,-4],[-1,-5],[-1,-4]],[[8582,6780],[-1,-1],[-1,2],[-1,6],[1,4],[1,0],[1,-5],[1,-3],[-1,-3]],[[8595,6809],[-2,-5],[-3,4],[-3,3],[2,1],[0,1],[0,2],[2,2],[4,2],[2,0],[1,2],[1,2],[0,1],[3,2],[0,-2],[0,-3],[-2,-1],[-2,-3],[-1,-3],[-2,-2],[0,-1],[0,-2]],[[8591,6803],[1,-2],[-3,1],[-1,6],[2,-1],[0,-2],[1,-2]],[[8884,7088],[-1,-1],[-1,2],[0,2],[0,1],[1,0],[1,-2],[0,-2]],[[2854,6247],[3,-2],[3,-1],[2,0],[1,-1],[4,-5],[2,-3],[10,-6],[3,-10],[1,-3],[-3,-2],[-3,-1],[-3,0],[-3,2],[-1,1],[-3,1],[1,2],[-1,0],[-2,0],[-1,-4],[-2,-3],[-2,0],[-1,3],[-1,-1],[-2,-2],[-1,-8],[-2,4],[-2,3],[-3,1],[-6,0],[-3,2],[-2,6],[-1,2],[-2,1],[-2,8],[-1,1],[-6,1],[-1,4],[0,4],[2,4],[1,1],[3,0],[4,2],[1,1],[2,2],[11,-4],[3,0],[3,0]],[[5290,7883],[1,0],[2,-1],[3,0],[2,-3],[2,-1],[3,0],[2,0],[1,1],[1,4],[2,4],[3,3],[5,0],[3,1],[2,0],[2,-1],[3,0],[5,3],[6,3],[0,-1],[0,-1],[-1,-1],[-1,-3],[1,-3],[3,-6],[2,-4],[2,-3],[2,-2],[3,-1],[3,0],[3,-2],[10,-3],[5,-1],[4,0],[6,-2]],[[5381,7810],[1,2],[-4,8],[-2,0],[-3,-3],[-7,3],[-1,-1],[-1,-3],[-3,-4],[-3,-1],[-4,-4],[-4,-3],[-3,-2],[-2,1],[3,4],[-2,0],[-3,-3],[-3,-3],[0,-4],[-1,-7],[2,-2],[3,-10],[3,-4],[0,-4],[-1,-3],[-3,-3],[-1,2],[-1,0],[-1,-6],[1,-17],[3,-12],[2,-5],[6,-8],[6,-4],[11,-14],[6,-4],[1,-3],[4,-10],[3,-12],[3,-19],[3,-9],[4,-11],[10,-15],[9,-11],[9,-7],[6,-1],[16,1],[3,0],[2,-2],[1,-5],[-1,-3],[-3,-3],[-3,-5],[-1,-6],[3,-5],[15,-11],[16,-10],[4,-5],[6,-8],[13,-11],[2,-5],[9,-11],[3,-9],[1,-6],[-2,-7],[-1,-5],[-1,-5],[-3,2],[-4,5],[-6,20],[-11,2],[-2,1],[-4,4],[0,2],[-1,3],[-1,1],[-4,0],[-3,-3],[-4,-7],[-4,-11],[-3,-16],[-1,-7],[3,-6],[6,-4],[5,-5],[3,-6],[0,-14],[2,-8],[-3,-5],[-4,2],[-5,-3],[-4,-5],[-2,-5],[1,-13],[-1,-5],[-7,-9],[-4,-9],[-1,-4],[-2,-5],[-9,0],[-2,6],[0,8],[2,5],[3,2],[2,10],[0,8],[1,3],[1,3],[3,1],[3,1],[1,11],[-3,5],[-1,6],[-1,13],[-5,15],[-3,14],[-2,7],[-3,4],[-5,0],[-3,1],[-9,9],[-1,2],[0,3],[2,3],[-1,6],[-1,5],[-2,4],[-2,2],[-5,-1],[-1,-1],[-3,0],[-2,-2],[-1,0],[3,8],[-1,1],[-3,4],[-5,0],[-1,0],[-1,-2],[0,2],[0,3],[-6,15],[-3,6],[-2,1],[-3,-1],[-5,2],[-4,1],[-1,-1],[-3,-2],[-1,2],[-1,2],[-5,6],[-6,3],[-11,20],[-4,8],[-8,8],[-4,11],[-4,5],[-6,3],[-1,0],[-2,-1],[-1,-1],[-1,2],[1,2],[1,0],[0,5],[-7,11],[-3,4],[-1,3],[-1,3],[-1,2],[-2,1],[-1,0],[-2,1],[0,5],[0,5],[0,3],[-2,10],[-4,8],[-2,20],[-2,5],[-3,4],[-9,5],[-12,13],[-3,0],[-7,5],[-5,0],[-6,-4],[-7,-12],[-6,-13],[-2,-2],[-8,-4],[-6,-2]],[[5208,7705],[0,3],[-1,2],[1,3],[2,3],[2,4],[1,3],[-1,2],[0,3],[-1,0],[-7,-3],[-1,1],[-5,4],[-5,4],[-2,3],[-1,4],[1,2],[0,2],[-1,3],[0,3],[2,4],[1,2],[1,1],[1,1],[-1,7],[-1,1],[-1,1],[-1,0],[-3,1],[-1,2],[-1,3],[-1,3],[-1,3],[0,3],[1,1],[3,0],[2,0],[3,4],[2,1],[1,1],[1,6],[1,2],[0,1],[-1,1],[-3,5],[-1,4],[-2,5],[-2,3],[-1,1],[0,3],[0,2],[4,3],[3,3]],[[5288,7652],[1,-2],[0,-1],[0,-2],[0,-3],[-2,3],[-4,-2],[-2,1],[-1,2],[1,2],[3,0],[1,1],[2,-1],[1,2]],[[5387,7528],[-2,0],[0,1],[-1,0],[1,3],[2,-2],[0,-1],[0,-1]],[[5334,7301],[-1,-1],[-2,2],[0,3],[0,1],[2,-1],[1,-3],[0,-1]],[[5432,7385],[-2,-6],[-1,-3],[-6,-16],[-1,-4],[-1,-4],[0,-3],[-1,-3],[-1,-5],[0,-4],[0,-3],[1,-1],[2,-2],[1,-2],[-2,-2],[2,-4],[1,-2],[0,-3],[0,-2],[-3,-5],[-1,-2],[-1,-3],[0,-3],[0,-3],[0,-3],[-3,0],[-3,2],[-3,-1],[-5,3],[-1,1],[-2,1],[-3,10],[-3,5],[-4,3],[-3,0],[-3,0],[-3,2],[-6,7],[-6,5],[-3,4],[-1,2],[-2,2],[-3,1],[-4,4],[-1,0],[-3,0],[-2,0],[-1,1],[-4,5],[-2,6],[0,2],[1,7],[2,7],[2,1],[1,2],[1,2],[1,2],[3,-7],[2,-1],[1,0],[3,2],[0,3],[3,3],[4,1],[1,-1],[1,-3],[2,-1],[1,-1],[6,-5],[1,-1],[1,-1],[5,3],[3,1],[6,-1],[4,1],[2,0],[4,2],[3,4],[1,1],[2,0],[4,0],[3,-1],[2,1],[1,3],[2,1],[2,-1],[4,4],[2,1],[2,-2],[-2,-3]],[[5267,7539],[1,-4],[4,-15],[0,-3],[-1,-4],[-1,-2],[-3,-8],[1,-6],[1,-4],[0,-4],[0,-6],[-2,-32],[-1,-6],[-1,-5],[-2,-2],[-3,2],[-3,3],[-2,-1],[-1,-1],[-2,1],[-1,2],[-1,-11],[-1,-5],[-3,-3],[-2,0],[-2,1],[-2,0],[-2,2],[-1,4],[-2,4],[-2,6],[0,5],[0,11],[0,2],[1,3],[1,4],[-1,5],[1,1],[1,-1],[1,0],[0,2],[0,4],[-2,4],[-2,1],[0,3],[0,4],[1,2],[1,3],[0,10],[-2,3],[-1,5],[0,4],[-2,3],[-2,3],[-1,2],[0,7],[0,6],[1,2],[1,0],[1,-3],[2,-1],[3,0],[3,1],[3,2],[4,3],[4,10],[3,2],[2,2],[1,3],[1,1],[1,-3],[2,0],[3,-3],[1,-3],[1,-3],[1,-1],[2,-1],[-1,-1],[-1,-4],[0,-1],[2,-1]],[[5235,7434],[-2,-6],[-1,4],[0,4],[0,1],[2,-2],[1,-1]],[[5230,7548],[-1,-3],[-2,0],[1,2],[1,4],[2,1],[0,-1],[0,-2],[-1,-1]],[[5987,7050],[-2,0],[-2,3],[-1,2],[0,1],[-2,0],[-3,2],[-4,-5],[-1,-7],[0,-3],[-2,-7],[1,-4],[0,-6],[0,-4],[0,-3],[-1,-1],[1,-1],[0,-1],[2,2],[2,-2],[2,-2],[0,-1],[-1,-1],[-3,-4],[-3,-4],[0,-4],[-2,-8],[0,-1],[1,-1],[5,0],[5,4],[4,3],[1,0]],[[5971,6886],[-2,-4]],[[5969,6882],[-1,5],[-2,14],[-2,10],[-2,12],[-3,14],[-1,4],[-1,5],[-2,13],[-2,10],[-2,12]],[[5951,6981],[3,5],[0,4],[4,10],[0,1],[-1,2]],[[5957,7003],[6,18],[3,17],[3,24],[3,13],[2,8],[1,6]],[[5951,6981],[-1,5],[-1,2]],[[5949,6988],[6,9],[2,6]],[[4723,8289],[0,-2],[-2,3],[-1,2],[-6,1],[3,2],[1,-1],[4,0],[1,-1],[0,-4]],[[4827,8299],[1,-2],[0,-2],[-2,-1],[-2,1],[-1,-2],[0,-2],[1,-4],[1,-2],[1,-6],[1,-6],[2,-3],[0,-5],[0,-2],[0,-4],[0,-1],[0,-4],[2,-8],[1,-4],[0,-10],[-1,-3],[-2,-4],[-1,-4],[-1,-4],[0,-7],[-4,-8],[-1,-2],[-2,-1],[4,-6],[-3,-2],[-4,-1],[-4,1],[-2,0],[-2,-2],[-1,-1],[-1,1],[-1,4],[-1,-5],[-2,-1],[-4,0],[-6,-1],[-3,-1],[-1,-3],[0,-2],[-1,-1],[-1,-1],[-5,-2],[-1,-1],[-2,-4],[-3,-2],[-3,-1],[-2,3],[-1,1],[-1,1],[-3,0],[1,-1],[1,-2],[0,-3],[0,-3],[-2,-2],[-2,0],[-3,-3],[-4,-1],[-2,-3],[-14,-5],[-2,1],[-2,1],[-2,-1],[-6,-2],[-3,0],[4,7],[4,4],[1,1],[-2,0],[-8,-2],[-4,-2],[-3,-1],[2,3],[4,4],[2,2],[1,1],[2,3],[4,3],[-14,-6],[-3,0],[-1,2],[-3,-1],[-1,4],[4,6],[3,3],[3,1],[2,3],[1,2],[-1,1],[-8,-1],[-4,1],[0,2],[1,2],[4,4],[2,0],[2,0],[2,-1],[1,-1],[5,0],[-2,3],[0,5],[-2,1],[2,2],[2,2],[4,4],[1,1],[7,1],[8,3],[8,3],[-4,2],[-2,2],[-3,-5],[-2,-2],[-6,-1],[-2,1],[-3,2],[-1,-1],[-1,-1],[-4,-3],[-4,0],[5,4],[6,8],[2,2],[2,5],[-1,1],[-1,1],[4,9],[2,2],[3,0],[2,1],[1,0],[1,1],[1,2],[-2,2],[-3,1],[-10,-1],[-1,0],[-1,1],[-1,1],[0,3],[-1,1],[-2,0],[-2,-1],[-1,0],[-2,1],[2,3],[-2,1],[-3,-1],[-3,1],[0,2],[1,2],[-1,2],[0,2],[1,1],[2,0],[3,2],[5,0],[-4,2],[-2,1],[0,3],[0,1],[5,4],[4,1],[0,2],[0,2],[-4,1],[-5,-2],[1,5],[1,3],[0,3],[0,3],[-2,-2],[-1,4],[-1,3],[-3,-2],[0,4],[1,2],[2,1],[2,0],[3,0],[3,1],[4,1],[7,-1],[4,-5],[2,1],[2,3],[0,1],[8,-2],[4,-2],[1,1],[0,4],[-2,2],[2,3],[2,3],[2,1],[3,1],[2,1],[1,5],[2,3],[-9,-2],[-9,4],[1,3],[2,2],[3,1],[1,2],[1,1],[3,3],[-1,5],[0,3],[2,2],[1,3],[1,2],[3,1],[4,2],[1,0],[5,0],[1,-1],[0,4],[3,0],[1,0],[0,-3],[1,-1],[1,-3],[-1,-2],[-2,-2],[2,-2],[-2,-3],[2,1],[3,3],[0,3],[-1,3],[-1,3],[1,3],[1,2],[5,1],[-2,3],[1,1],[2,-1],[3,-3],[2,-2],[3,-2],[-2,-3],[-4,-2],[-1,-3]],[[6243,7323],[1,-4],[2,-16],[1,-2],[2,-1],[1,-2],[0,-3],[0,-3],[0,-4],[1,-3],[1,-3],[0,-1],[2,0],[1,-1],[1,-2],[3,-18],[0,-2],[2,-1],[2,1],[2,-2],[2,-3],[2,-5],[2,-1],[5,1],[6,-1],[3,-3],[-1,-1],[-2,-2],[-4,-2],[-1,-4],[-1,-5],[0,-3],[1,-3],[3,-6],[0,-2],[1,-3],[0,-2],[0,-4],[-3,-3],[-3,-3],[-7,-13],[0,-3],[0,-8],[-1,-2],[-2,0],[-2,1],[0,-3],[-1,-4],[0,-3],[2,-7],[0,-4],[0,-4],[-2,-6],[-2,-5],[1,0],[2,-2],[5,-14],[2,-5],[2,2],[1,-1],[1,0],[0,-2],[0,-2],[0,-3],[3,-1],[1,-4],[3,-10],[0,-3],[-2,-5],[0,-4],[1,-3],[0,-1],[5,0],[3,-2],[5,-5],[6,-8],[5,-7],[4,-6],[5,0],[1,-1],[1,-2],[2,-4],[2,-11],[2,-4],[4,-9],[3,-8],[-2,-11],[-2,-12],[0,-15],[0,-8],[4,0],[5,0],[0,-10],[0,-9],[0,-11],[2,-1],[2,-2],[1,-4],[1,-2],[1,0],[2,-2],[1,-3],[1,-2],[-1,-2],[1,-3],[1,-4],[1,-2],[2,-2]],[[6348,6910],[-3,-2],[-2,1],[-6,5],[-2,0],[-3,-2],[0,-1]],[[6560,6734],[-2,-6],[-4,-6],[-2,2],[-1,-1],[-3,-2],[-2,0],[-4,-4],[-3,-2],[-2,0],[-1,0],[-1,3],[0,1],[2,0],[5,3],[6,6],[1,3],[-1,4],[0,1],[4,-2],[5,4],[4,1],[2,-3],[-3,-2]],[[6701,7235],[1,-3],[0,-3],[-1,-2],[-1,-3],[-1,-3],[0,-3],[-1,-2],[-1,-1],[0,-3],[0,-3],[1,-4],[-1,-2],[0,-3],[-1,-5],[0,-4],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-1],[-2,-3],[-1,-2],[-1,0],[-1,-2],[0,-2],[1,0],[1,-4],[3,-5],[-7,-1],[-2,-5],[-3,-7],[2,-15],[-2,-7],[1,-5],[2,-3],[2,-1],[4,0],[3,-1],[0,-2],[-1,-3],[-3,-6],[-1,-2],[-4,-11],[0,-4],[0,-4],[2,-11],[2,-11],[3,-21],[0,-4],[-1,-11],[0,-6],[0,-8],[0,-5],[1,-9],[1,-1],[7,-2],[6,-1],[9,-3],[3,-5],[1,-12],[0,-10],[0,-4],[-7,-14],[-6,-13],[-6,-14],[-8,-15]],[[6710,6635],[-1,0],[-2,-2],[-2,-3],[-4,2],[-4,2],[-13,6],[-1,3],[-1,5],[-2,1],[-3,-7],[-10,4],[-4,-1],[-2,2],[-6,0],[-4,4],[-6,-3],[-5,0],[-7,8],[-8,2],[-6,-1],[-3,1],[-5,3],[-2,3],[-4,-3],[-2,5],[-11,3],[-2,8],[-2,6],[0,8],[-2,12],[-1,18],[-1,6],[-2,7],[-2,5],[-3,5],[-2,2],[-10,4],[-2,0],[-5,-3],[-5,-6],[-8,-3],[-1,-3],[-2,-6],[-3,-3],[-4,1],[-4,-4],[-7,-10],[-4,-3],[-3,1],[-3,4],[-8,6],[-5,3],[-7,-2],[-3,1],[-5,7],[-2,6],[-3,3],[-10,8],[-8,11],[-1,4],[-1,5],[-4,7],[-8,6],[-4,6],[-6,2],[-4,0],[-3,1],[-2,2],[-6,13],[0,5],[-4,13],[-1,4],[-1,12],[-1,4],[-5,5],[0,3],[1,4],[0,4],[-3,3],[-3,2],[-1,3],[1,8],[-1,4],[-3,8],[-4,7],[-4,11],[-2,3],[-1,8],[-2,8],[-2,1],[-12,-11],[-4,6],[-10,10],[-1,2],[0,2],[1,2],[1,0],[3,-2],[1,3],[0,3],[-3,2],[-3,0],[1,-3],[-4,-3],[-1,-4],[1,-5],[0,-7],[-1,-4],[-1,-1],[-5,-1],[-2,-3],[-1,0]],[[6244,7468],[1,-2],[4,-11],[2,-4],[2,-3],[0,-3],[2,-2],[1,-2],[3,-3],[1,-2],[3,-6],[2,-1],[10,-4],[5,-2]],[[6280,7423],[2,0],[4,2],[5,0]],[[6291,7425],[2,0],[6,10],[2,4],[4,2],[2,4],[3,5],[4,5],[4,4],[3,2],[5,6],[4,3],[3,0],[4,-8],[4,-6],[1,-3],[-2,-2],[-4,-3],[0,-2],[0,-2],[0,-2],[0,-2],[4,-4],[1,-2],[0,-3],[-1,-1],[-1,-1],[-2,-1],[-3,-2],[-1,-1],[-1,-2],[1,-1],[0,-2],[5,-6],[1,-2],[1,-2],[1,-2],[2,-1],[1,-1],[5,-10],[1,0],[6,2],[1,0]],[[6357,7398],[0,-3],[1,-14],[0,-8],[1,-7],[2,-6],[2,-7],[2,-3],[6,-5],[3,-1],[7,-1],[7,-2],[4,-3],[1,-1],[1,-3],[4,-10],[5,-8],[11,-12],[5,-4],[18,-7],[12,0],[33,14],[11,4],[4,0],[-2,-3],[-5,-2],[3,-2],[4,0],[2,0],[1,2],[0,3],[0,3],[-2,13],[-1,10]],[[7707,5268],[6,-16],[3,-2],[3,-8],[1,-2],[-1,-5],[-1,-15],[-2,-4],[-3,2],[0,3],[-3,11],[-4,6],[-1,0],[-1,7],[-2,7],[-6,14],[4,0],[3,3],[0,3],[1,0],[3,-4]],[[7754,5081],[-3,0],[-5,7],[-2,3],[0,4],[-5,16],[-1,4],[2,13],[6,3],[1,-2],[1,-6],[3,-11],[1,-5],[1,-3],[0,-2],[0,-1],[2,-7],[2,-4],[0,-6],[-3,-3]],[[8239,4688],[-3,-12],[1,-2],[1,-2],[-6,-3],[-3,2],[-1,-1],[-6,3],[-4,2],[-1,3],[1,2],[1,-1],[3,0],[2,1],[0,8],[-1,10],[5,8],[2,3],[3,2],[6,-4],[1,-2],[1,-1],[1,-3],[-3,-13]],[[8206,4714],[3,-3],[4,-9],[0,-2],[-1,-3],[-3,-4],[-6,-5],[-1,-3],[-2,-6],[0,-2],[0,-1],[-1,-1],[-1,-1],[-2,1],[2,4],[0,4],[-1,4],[-2,3],[-3,4],[-3,4],[-3,2],[-3,1],[-1,2],[-2,5],[-1,3],[0,2],[0,3],[1,0],[3,0],[6,-4],[3,0],[2,1],[4,6],[1,0],[4,-3],[3,-2]],[[7945,5088],[1,-4],[1,-4],[1,-4],[1,-18],[5,-16],[12,-6],[-2,-3],[-1,-2],[0,-3],[-2,-11],[0,-2],[1,-4],[0,-4],[-1,0],[-2,1],[-2,1],[-1,2],[-1,2],[-2,1],[-2,3],[-4,2],[-3,2],[-2,5],[-1,6],[1,8],[-1,3],[-1,2],[-2,6],[0,7],[-3,3],[-2,2],[-2,1],[-6,-3],[-1,1],[-1,2],[-3,2],[0,4],[1,3],[4,4],[1,2],[1,4],[-1,3],[0,2],[1,3],[2,2],[3,3],[2,-5],[0,-4],[1,-3],[2,4],[-1,7],[3,2],[2,0],[2,-2],[1,-3],[1,-4]],[[8421,4922],[0,-13],[0,-3],[-1,5],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,-5],[0,-4],[-1,-3],[0,-10],[0,-3],[2,1],[0,1],[3,-4],[1,-3],[0,-3],[-2,-4],[-2,-1],[-2,1],[0,-1],[-1,-1],[-1,-3],[0,-2],[-1,-7],[-1,-2],[-3,2],[-1,-2],[-1,1],[-2,6],[0,4],[2,3],[0,3],[1,3],[1,4],[1,3],[0,2],[1,7],[0,3],[1,3],[1,7],[0,12],[2,10],[3,3],[1,0],[0,-3],[3,-6]],[[8406,4880],[-1,-4],[-1,-3],[-2,0],[-1,1],[-2,2],[-1,-2],[-1,0],[-1,3],[1,11],[2,4],[0,4],[-2,9],[1,4],[5,4],[3,4],[2,1],[1,-3],[0,-15],[-4,-12],[1,-8]],[[8008,5396],[-4,-2],[-2,3],[2,4],[1,0],[1,1],[0,1],[-4,3],[-2,2],[-1,5],[0,4],[6,9],[1,1],[0,-4],[4,-10],[0,-6],[0,-2],[-2,-9]],[[8005,5011],[0,-6],[-1,-2],[-2,-3],[-1,-2],[-2,0],[-1,3],[0,3],[-3,2],[0,-1],[-1,-3],[-4,-3],[-2,0],[1,5],[-1,4],[0,4],[0,2],[-1,2],[1,3],[0,4],[1,3],[1,10],[5,2],[1,-2],[5,-2],[4,-6],[2,-7],[-2,-10]],[[8760,5146],[6,-2],[2,0],[2,-2],[2,1],[2,-1],[5,-9],[2,-6],[4,-5],[2,-1],[-2,-5],[-4,-2],[-1,0],[-3,2],[-2,0],[-3,3],[0,6],[-2,11],[-3,-3],[-3,5],[-1,1],[0,-1],[-2,2],[-1,3],[0,3]],[[8762,5092],[11,-3],[3,1],[6,-2],[6,-3],[9,-1],[3,-1],[2,-3],[-5,-2],[-3,-2],[-4,-1],[-4,1],[-3,-1],[-1,2],[-4,2],[-5,4],[-10,5],[-1,3],[0,1]],[[8633,5184],[5,-3],[1,0],[7,-6],[1,-3],[-1,-2],[1,-3],[-2,-4],[-1,-1],[-1,2],[-2,1],[-3,-2],[-1,1],[-2,4],[-2,3],[-4,8],[-1,0],[0,-3],[1,-3],[2,-6],[2,-1],[1,1],[1,-3],[0,-4],[-4,-2],[-1,3],[-1,6],[-2,-2],[-1,-2],[-2,5],[-4,1],[-3,3],[1,3],[0,3],[2,2],[2,-2],[2,2],[1,0],[1,1],[4,1],[3,2]],[[8567,5302],[-4,-1],[-1,3],[-1,12],[3,10],[4,6],[2,1],[1,0],[3,-7],[-2,-14],[-2,-7],[-3,-3]],[[8559,5088],[-2,-2],[-1,-1],[-4,2],[-4,-1],[-5,-2],[-3,2],[-2,3],[0,3],[2,8],[3,6],[2,1],[3,-2],[4,-4],[4,-5],[3,-5],[0,-3]],[[8501,5043],[-1,-1],[-1,3],[-2,8],[-1,3],[-1,8],[1,3],[1,3],[1,0],[1,-2],[-1,-9],[3,-11],[0,-5]],[[8500,5081],[8,-2],[-1,-2],[-9,-4],[-3,1],[-10,-2],[-2,0],[0,3],[-1,3],[2,2],[2,0],[5,-1],[9,2]],[[8471,5086],[2,-2],[1,0],[1,2],[2,-1],[0,-4],[2,1],[1,-2],[0,-4],[-5,-1],[-3,-3],[-5,3],[-6,-5],[-3,-2],[-3,0],[-2,9],[1,10],[1,1],[2,1],[5,1],[9,-4]],[[8647,4723],[0,-1],[-4,1],[-2,0],[0,5],[-1,3],[2,5],[0,5],[1,1],[1,3],[1,9],[1,1],[2,1],[1,5],[1,1],[1,4],[2,2],[0,3],[1,2],[2,1],[1,-1],[1,-4],[-2,-4],[1,-10],[-2,-10],[-1,-4],[-2,-2],[-1,-3],[-3,-5],[0,-5],[0,-2],[-1,-1]],[[8521,4742],[1,-3],[0,-1],[-4,-1],[-3,-3],[-1,-3],[-2,-5],[-4,2],[-4,0],[-2,2],[-2,0],[-2,-2],[-4,-4],[0,6],[1,4],[3,8],[4,-2],[3,0],[4,2],[3,4],[4,2],[3,-6],[2,0]],[[8460,4715],[0,-4],[2,2],[2,1],[5,-1],[4,0],[2,-2],[0,-7],[-1,-1],[-18,-6],[-2,2],[-1,2],[2,5],[0,2],[1,4],[2,3],[2,0]],[[8638,5108],[-1,-2],[-3,2],[-2,3],[-1,5],[-1,4],[0,3],[-1,4],[0,2],[6,4],[1,-2],[3,0],[1,-3],[-1,-13],[-1,-7]],[[7680,5485],[3,-1],[6,4],[4,-1],[3,-2],[3,-1],[7,1],[2,0],[1,-1],[1,-2],[3,-8],[6,-9],[2,-6],[0,-7],[1,-1],[6,-13],[1,-5],[-1,-8],[2,-5],[6,-6],[4,-4],[1,-2],[0,-3],[2,-5],[3,-2],[7,-8],[11,-15],[6,-8],[4,-11],[2,-5],[2,-6],[3,-9],[5,-10],[1,-3],[1,-5],[2,-4],[2,-4],[2,-3],[2,-1],[4,-8],[2,-2],[-1,6],[-1,5],[0,3],[0,3],[1,2],[2,1],[3,-2],[5,-9],[2,-5],[2,-8],[1,-7],[2,-4],[3,-1],[3,-1],[3,-2],[6,-10],[2,-5],[2,-6],[1,-6],[1,-8],[0,-1],[4,-9],[3,-3],[2,-2],[8,-2],[3,-3],[2,-5],[1,-5],[-1,-4],[-7,-7],[-6,-5],[6,2],[3,2],[3,3],[3,4],[5,5],[2,1],[2,0],[2,-2],[2,-5],[3,-6],[2,-6],[1,-7],[-2,-4],[-3,-3],[-5,-7],[0,-3],[1,-2],[-1,-5],[2,-3],[0,-3],[-2,-4],[1,-2],[2,-11],[1,-2],[4,-5],[6,-6],[4,-2],[4,-2],[1,0],[3,1],[1,-2],[1,-10],[1,-7],[0,-13],[2,-6],[-1,-7],[2,-6],[3,-4],[3,-3],[2,-3],[0,-4],[-1,-4],[-1,-3],[-3,-6],[-1,-2],[0,-7],[0,-3],[1,0],[2,2],[3,8],[2,2],[1,1],[2,1],[7,0],[3,-1],[3,-3],[2,-4],[9,-23],[4,-12],[0,-3],[0,-4],[0,-2],[-4,-9],[-1,-2],[-1,-9],[1,-7],[1,-3],[1,-3],[0,-3],[-3,-14],[0,-2],[1,-23],[1,-6],[-1,-7],[1,-13],[-2,-38],[-1,-2],[-1,-6],[-2,0],[-2,1],[-1,2],[-1,3],[-1,2],[-4,7],[-2,-1],[-5,-9],[-1,-1],[-1,1],[-3,3],[-8,9],[-1,-3],[0,-4],[2,-10],[0,-5],[-1,0],[-1,0],[-4,6],[-3,6],[-3,9],[-3,4],[-2,5],[-7,17],[-1,3],[-10,12],[-2,3],[-3,5],[-3,5],[-6,7],[-11,19],[-4,10],[-5,17],[-2,4],[-9,13],[-4,8],[-2,4],[-5,16],[-1,5],[-2,5],[-2,3],[-3,5],[-5,14],[-1,5],[-1,6],[0,12],[-10,37],[-3,11],[-2,16],[-1,2],[-6,14],[-2,4],[-2,5],[-2,5],[-4,16],[-1,4],[-2,4],[-7,6],[-3,3],[-2,5],[-2,6],[-1,13],[-4,20],[-3,27],[-3,12],[-3,9],[-1,2],[-13,17],[-2,3],[-3,1],[-3,1],[-3,5],[-1,7],[-1,11],[0,6],[-1,4],[-5,7],[-3,6],[-1,6],[-2,5],[-6,18],[-2,4],[-3,3],[-8,4],[-2,3],[-3,9],[-3,5],[-6,11],[-12,23],[-2,6],[-2,6],[-1,6],[-5,18],[0,4],[1,3],[0,4],[-1,3],[0,2],[2,2],[3,2],[3,0],[4,-1],[3,-2],[2,-4],[6,-9],[3,-3],[3,-2],[7,-2]],[[8410,4688],[-4,-2],[-3,-2],[-2,-3],[-1,0],[-3,-1],[-4,1],[-2,-1],[-7,-7],[-3,0],[-3,-2],[0,3],[-1,2],[-3,0],[-2,0],[-3,-6],[-3,1],[-2,0],[-1,-1],[-2,-1],[-1,1],[-6,4],[-6,3],[-7,-1],[-5,2],[-3,-2],[-3,-2],[-1,2],[-1,3],[-1,4],[0,4],[0,3],[1,3],[1,3],[0,3],[1,-2],[1,1],[4,3],[4,5],[3,2],[2,1],[2,-1],[2,0],[1,1],[3,-4],[1,-1],[4,0],[4,-2],[3,-3],[4,-4],[3,-4],[2,-1],[1,-1],[1,1],[2,3],[2,1],[2,0],[3,1],[2,0],[1,2],[2,-1],[1,-2],[5,-7],[2,0],[3,1],[1,2],[0,3],[1,3],[1,2],[2,2],[4,3],[3,2],[2,5],[-5,2],[1,4],[2,2],[2,-1],[1,-3],[1,-10],[-1,-1],[-1,-2],[-1,-2],[-2,-4],[1,-4],[-1,-2],[-1,-1]],[[8333,4644],[1,-3],[5,-5],[0,-2],[1,-3],[1,-3],[2,0],[2,0],[1,-1],[2,-3],[2,-5],[2,-6],[2,-3],[2,-4],[-1,-4],[-3,-6],[-2,-1],[-2,-1],[-3,-3],[-2,2],[-3,1],[-3,2],[-3,5],[-2,5],[-1,4],[-4,3],[-6,8],[-3,1],[-2,-1],[-1,0],[-8,4],[-1,2],[-1,3],[-1,2],[0,3],[1,3],[1,2],[4,3],[3,1],[3,0],[6,1],[5,-2],[1,2],[3,3],[1,-1],[1,-3]],[[8284,4705],[1,-3],[1,1],[3,3],[2,1],[1,0],[2,0],[2,-3],[0,-4],[1,-1],[1,5],[1,1],[1,1],[3,0],[1,-2],[2,-7],[0,-6],[0,-3],[2,-1],[0,-2],[0,-3],[-1,-1],[-2,-1],[-1,0],[-1,2],[-1,1],[-2,-1],[-2,-1],[0,-3],[2,-1],[0,-1],[0,-1],[-1,0],[-2,2],[-1,-1],[-6,-2],[-1,0],[-1,2],[0,6],[-1,2],[-4,-8],[-1,-1],[-1,-1],[-2,0],[-6,-5],[-2,1],[-2,0],[-6,-5],[-3,-1],[-2,-1],[-1,1],[-2,-1],[-1,-2],[-3,-1],[-3,1],[-2,2],[-3,2],[0,3],[0,3],[1,5],[-1,9],[1,4],[1,3],[1,2],[2,0],[3,3],[3,5],[1,-1],[4,-3],[2,0],[4,0],[1,-1],[1,-5],[1,-1],[1,-2],[3,-7],[2,0],[2,-1],[4,5],[3,-1],[0,4],[-1,4],[-2,3],[-1,0],[-2,0],[-1,1],[-4,6],[-2,4],[0,4],[0,3],[3,3],[2,1],[5,-2],[1,-2],[2,-6],[1,-3]],[[8468,5241],[-5,-10],[-2,-4],[-1,-5],[-2,-6],[-3,-5],[-1,-2],[-3,-2],[-1,-1],[-4,-1],[-9,-4],[-3,0],[-4,0],[-6,1],[-1,1],[-2,5],[-3,4],[-2,0],[-3,0],[-17,0],[-6,-1],[-6,-2],[-4,1],[-3,2],[-2,1],[-3,-1],[-11,-3],[-3,1],[-6,3],[-3,1],[-4,-1],[-3,-3],[-1,-3],[-3,-8],[-2,-6],[-1,-7],[-1,-7],[-1,-7],[0,-6],[0,-7],[1,-7],[1,-6],[4,-12],[1,-2],[4,-4],[3,-4],[2,-13],[2,-6],[2,0],[2,0],[3,-1],[3,-1],[3,4],[2,7],[2,5],[4,11],[3,5],[1,1],[2,-1],[1,-2],[2,-3],[3,-1],[3,1],[4,3],[1,2],[1,3],[3,2],[7,0],[3,-1],[7,1],[0,2],[-2,2],[0,2],[1,1],[4,2],[5,2],[3,-1],[2,-4],[1,-3],[1,-4],[-1,-11],[-1,-2],[-2,-1],[-2,1],[-2,6],[-3,2],[-4,-2],[-1,-2],[-2,-2],[-2,-6],[-2,-6],[-4,-10],[-5,-8],[-2,-4],[-3,-2],[-8,-6],[-2,-4],[-2,-5],[-2,-2],[-2,-1],[-1,1],[-4,3],[-1,-2],[0,-4],[2,-2],[2,-4],[2,-6],[2,-1],[2,-2],[2,-2],[2,-5],[3,-13],[1,-6],[2,-6],[6,-9],[0,-2],[0,-3],[1,-3],[2,-5],[0,-4],[-2,-4],[0,-6],[-2,-8],[0,-3],[0,-3],[1,-2],[1,-2],[2,-1],[1,-2],[3,-6],[1,-2],[1,-2],[0,-4],[1,-2],[1,-3],[2,-1],[1,1],[0,1],[2,0],[0,-3],[1,-3],[0,-4],[0,-7],[-1,-2],[-1,0],[-3,3],[0,-2],[0,-2],[-1,-1],[-2,0],[-4,0],[-7,-4],[-3,-3],[-1,-4],[-1,-3],[1,-7],[-1,-3],[-3,0],[-5,1],[-3,2],[-1,2],[-2,4],[-1,6],[1,17],[1,2],[0,2],[1,3],[0,4],[-2,5],[-3,1],[-3,4],[-11,21],[-1,2],[0,3],[1,4],[3,11],[1,2],[0,9],[0,8],[0,7],[-2,5],[-3,1],[-3,1],[-3,-2],[-3,-4],[-6,-7],[-2,-5],[0,-6],[1,-6],[2,-5],[0,-6],[2,-21],[0,-2],[-2,-6],[0,-14],[0,-19],[1,-11],[0,-6],[-3,-14],[-1,-8],[0,-3],[3,-14],[1,-5],[0,-6],[-3,3],[-1,-1],[-2,0],[-3,-1],[-4,0],[-1,-2],[-3,-3],[-1,-2],[-1,0],[-5,5],[-2,5],[-3,5],[0,7],[1,6],[1,7],[2,12],[0,8],[1,6],[1,6],[1,6],[0,22],[0,2],[-4,14],[0,2],[0,4],[0,3],[0,3],[0,2],[-2,3],[-1,1],[-4,-1],[-6,-4],[-2,3],[-2,5],[-1,7],[0,7],[0,7],[1,6],[-1,5],[-1,5],[0,2],[0,2],[2,2],[1,1],[2,2],[3,7],[1,6],[1,7],[1,7],[1,6],[3,6],[0,6],[-1,9],[1,5],[-1,5],[0,5],[2,9],[4,20],[4,10],[1,3],[3,-5],[1,-6],[0,5],[0,5],[-2,12],[-1,23],[0,2],[2,0],[1,2],[1,3],[-2,9],[0,3],[3,11],[2,5],[1,2],[1,8],[1,2],[2,2],[2,5],[1,7],[1,0],[2,-5],[1,-2],[3,-2],[2,2],[1,3],[1,2],[1,3],[1,2],[2,7],[2,6],[1,2],[1,1],[2,1],[2,0],[3,-3],[2,-1],[2,0],[1,-1],[1,-1],[1,-4],[2,-3],[1,-1],[1,-1],[7,1],[7,-3],[9,-1],[3,-2],[3,-2],[4,-5],[1,0],[2,0],[2,4],[1,1],[2,0],[6,-1],[15,-5],[3,1],[9,10],[4,9],[3,3],[2,4],[0,5],[1,1],[3,2],[1,1],[3,7],[2,5],[1,2],[3,-1],[2,-3],[2,-8],[0,-1],[-3,-4],[0,-2],[-3,-11],[-2,-6],[-2,-5]],[[7982,4838],[3,-7],[2,-3],[3,-2],[3,0],[3,-1],[3,-3],[4,-1],[2,1],[1,1],[1,0],[1,-1],[3,-6],[3,-5],[0,-3],[2,-12],[2,-3],[3,-1],[3,0],[3,-1],[8,-3],[3,1],[3,3],[2,-2],[7,-4],[3,-1],[4,1],[3,1],[2,-1],[2,-2],[1,0],[2,0],[2,3],[2,5],[1,6],[1,7],[1,3],[1,3],[2,2],[1,1],[4,-1],[1,-2],[4,-11],[1,-1],[4,-1],[1,0],[3,3],[2,0],[2,-3],[2,-3],[1,-1],[7,-2],[3,-5],[1,-1],[5,1],[3,-1],[3,-1],[2,-7],[1,-8],[0,-2],[3,-3],[1,-2],[0,-7],[0,-7],[6,-6],[7,-4],[7,0],[7,1],[3,2],[5,2],[1,0],[8,-8],[1,-1],[1,-6],[0,-6],[-1,-15],[-1,-4],[1,-4],[1,-9],[1,-3],[3,-4],[0,-3],[0,-2],[-3,1],[-3,2],[-1,4],[-1,2],[-4,-1],[-6,3],[-7,5],[-12,11],[-3,0],[-3,-1],[-4,-3],[-3,-2],[-3,-1],[-2,1],[-7,3],[-7,1],[-16,1],[-5,3],[-8,1],[-6,2],[-6,3],[-16,15],[-5,4],[-16,7],[-3,1],[-5,-1],[-4,2],[-3,0],[-5,-2],[-1,-2],[-2,-3],[-3,0],[-4,1],[-8,3],[-3,2],[-3,3],[-3,4],[-1,1],[-8,4],[-6,2],[-12,2],[-2,1],[-3,1],[-1,4],[0,4],[1,3],[1,4],[1,4],[-9,7],[-7,4],[-3,0],[-3,0],[-3,0],[-4,0],[-1,1],[-2,1],[-2,-1],[-1,0],[0,3],[0,3],[2,3],[1,1],[1,-5],[0,-1],[2,-1],[3,7],[1,3],[1,8],[1,-1],[2,1],[1,1],[2,19],[2,6],[2,5],[2,1],[2,-3],[5,-1],[3,-2],[3,0],[3,-1],[5,-3],[1,0],[2,1],[2,4],[1,6],[3,-3],[5,-2],[1,-1]],[[8265,5424],[-2,-2],[-1,-3],[3,-5],[0,-4],[2,-3],[2,-5],[0,-1],[1,-2],[1,-3],[-2,-2],[-2,-1],[-2,3],[-2,3],[0,-4],[-1,-2],[-5,0],[-3,0],[-3,-1],[1,0],[2,-1],[5,-10],[1,-3],[-2,-7],[1,-3],[2,-2],[2,-3],[2,-1],[1,-2],[0,-3],[1,-3],[-2,-1],[2,-1],[2,-2],[-1,-2],[-1,-1],[1,-2],[2,-1],[1,-2],[1,-4],[2,-8],[4,-9],[1,-4],[0,-3],[-1,-3],[-2,-3],[-2,-4],[0,-2],[-3,-1],[1,-2],[1,-2],[2,-6],[4,-9],[2,-4],[9,-13],[5,-5],[6,-13],[3,-3],[0,-4],[-2,-5],[-4,-3],[-6,-1],[-6,2],[-4,1],[-2,3],[-3,7],[-3,3],[2,-4],[0,-4],[0,-4],[-1,-3],[-2,-3],[-2,-2],[-1,-1],[-5,-23],[-1,-6],[-2,-25],[0,-7],[2,-13],[1,-7],[0,-3],[0,-3],[-1,-1],[-5,-4],[-3,-4],[-3,-4],[-2,-6],[-2,-5],[-2,-2],[-2,1],[-1,2],[-1,3],[-1,5],[0,-3],[0,-3],[0,-4],[1,-3],[-1,-4],[-1,-2],[-3,-3],[-1,-3],[0,-5],[-1,-2],[-1,-2],[-4,-5],[-1,-2],[-1,-2],[2,0],[2,0],[0,-5],[1,-3],[-1,-7],[-3,-5],[2,-2],[1,-1],[3,-1],[1,-6],[0,-6],[-1,-6],[-2,-1],[-1,1],[-2,0],[-1,-2],[0,-3],[2,1],[0,-7],[-1,-7],[0,-4],[-2,-4],[-1,-1],[-2,3],[0,-3],[0,-2],[3,-6],[-2,-2],[-1,-2],[0,-2],[-3,-7],[-1,-5],[-1,-5],[-1,-4],[-19,-18],[-16,-15],[-1,1],[-1,2],[0,23],[-2,13],[-1,6],[-2,-6],[-1,1],[-2,1],[-1,2],[0,3],[1,7],[-1,-4],[-2,-3],[-1,1],[-2,1],[0,3],[-1,0],[-3,-7],[-5,-3],[-2,0],[-2,2],[0,5],[0,5],[-1,3],[-1,1],[-1,-1],[-4,-2],[-1,0],[0,-1],[-9,18],[-2,-15],[-6,-8],[-4,-4],[-4,2],[-5,3],[-4,-4],[-5,-9],[-1,-1],[-2,0],[-1,1],[1,7],[0,6],[-1,15],[0,3],[-1,4],[-2,2],[-1,-2],[-1,-3],[-4,1],[-3,2],[-3,-1],[-6,-6],[-3,-1],[-2,1],[-1,3],[0,3],[2,2],[-3,-1],[-2,-3],[-1,-2],[-1,1],[-2,6],[-6,-2],[-1,-1],[-1,-2],[-1,1],[-1,2],[0,14],[-3,26],[-1,14],[0,3],[-3,5],[0,6],[1,6],[1,7],[-1,7],[-1,7],[-1,6],[-2,4],[-2,6],[-3,3],[-6,5],[-4,-1],[-1,2],[-1,2],[1,5],[1,3],[1,0],[0,2],[-3,4],[-3,4],[0,3],[-1,3],[0,8],[1,4],[1,3],[0,7],[2,3],[0,1],[-1,1],[-1,3],[-1,2],[-2,5],[-4,6],[0,10],[-1,16],[1,6],[1,13],[2,4],[1,1],[2,2],[-1,0],[-1,0],[-2,-1],[2,12],[0,3],[3,6],[3,6],[1,7],[1,6],[7,6]],[[8547,5233],[2,-2],[2,1],[1,2],[1,4],[1,6],[2,4],[2,1],[1,1],[0,5],[0,5],[2,4],[5,7],[4,3],[4,0],[0,-2],[0,-4],[1,-5],[-1,-15],[-1,-3],[-4,-5],[-5,-4],[-1,-2],[-1,-4],[0,-4],[4,-5],[6,-6],[1,-2],[1,-4],[0,-4],[1,-3],[2,-1],[2,-2],[1,-3],[-10,7],[-3,3],[-3,1],[-3,1],[-3,2],[-4,1],[-1,-2],[-1,-4],[0,-4],[0,-5],[0,-4],[0,-5],[2,-18],[3,-13],[5,-14],[2,-5],[3,-5],[-5,2],[-1,4],[-5,5],[-1,3],[-3,13],[-1,3],[-3,4],[-2,4],[0,4],[0,5],[0,7],[0,6],[1,8],[-2,3],[-1,3],[-2,6],[0,7],[0,4],[1,4],[1,3],[0,3],[-3,4],[-2,12],[0,7],[3,12],[0,6],[0,4],[1,4],[1,8],[3,7],[5,10],[2,2],[2,1],[0,-2],[0,-2],[-4,-10],[0,-2],[0,-5],[1,-2],[2,-5],[0,-7],[0,-7],[0,-7],[-1,-3],[-2,-7],[-7,-9],[0,-2],[0,-2],[1,-3],[1,-2]],[[8603,5019],[7,-7],[3,-1],[6,1],[2,0],[5,-9],[2,-5],[0,-5],[1,-5],[1,-1],[2,0],[2,-7],[0,-2],[-1,-16],[-7,6],[-6,7],[-2,3],[-7,6],[-1,2],[-1,2],[-3,4],[-6,1],[-2,0],[-1,-1],[0,-2],[0,-4],[-2,-1],[-3,2],[-4,1],[-3,3],[-3,1],[-1,1],[0,2],[0,2],[-1,1],[-1,-1],[-2,-1],[-1,-2],[-2,-6],[-2,-2],[-3,-1],[-1,1],[-2,1],[-4,10],[-1,2],[-1,2],[-2,1],[-1,-2],[-1,-3],[0,-3],[0,-3],[-2,-6],[-2,-3],[1,6],[0,3],[-1,4],[-1,3],[7,17],[2,4],[11,1],[6,-1],[3,1],[2,1],[2,-1],[1,-3],[1,-2],[1,0],[3,2],[3,4],[1,2],[2,0],[2,0],[1,-1],[4,-3]],[[8523,5006],[5,-5],[1,-2],[0,-4],[1,-2],[1,-1],[2,-4],[1,-4],[-1,-9],[-2,-1],[-2,-2],[-4,-5],[-2,-1],[-2,0],[-1,-2],[-2,0],[-4,3],[-3,3],[-6,6],[-1,2],[-1,3],[-2,6],[-1,4],[0,10],[1,3],[1,1],[3,-3],[3,3],[7,2],[7,0],[1,-1]],[[8473,4636],[-2,-3],[-1,-6],[-3,-5],[-4,-9],[-3,-5],[-2,-5],[-3,-4],[-2,-1],[-5,-1],[-5,-6],[-3,-3],[-3,0],[-3,2],[-1,2],[0,3],[1,3],[1,2],[1,3],[-4,4],[0,3],[1,7],[1,8],[2,5],[4,9],[3,5],[2,2]],[[8456,4654],[4,2],[2,3],[1,3],[5,5],[1,2]],[[8742,4855],[0,-2],[0,-4],[0,-4],[-1,-4],[1,-6],[0,-3],[0,-4],[0,-1],[-1,-6],[-1,-2],[-1,-2],[-5,2],[-3,4],[-2,4],[0,1],[-3,5],[0,2],[0,2],[2,1],[2,0],[0,2],[1,8],[-3,5],[-1,2],[1,2],[3,-2],[3,9],[1,2],[0,5],[2,0],[1,0],[1,-4],[1,-2],[-1,-3],[2,-1],[1,-6]],[[8736,4813],[0,-4],[-1,-5],[-2,-5],[-2,-8],[-1,-2],[-3,-3],[-3,4],[-1,4],[1,17],[2,-1],[0,1],[1,1],[-2,2],[-1,9],[1,4],[1,1],[2,-3],[2,-5],[3,-4],[3,-3]],[[8847,4707],[-6,-7],[-9,1],[-3,0],[-5,-2],[-1,2],[1,7],[4,19],[5,17],[2,4],[3,4],[3,3],[7,4],[6,-1],[1,-1],[2,-6],[2,-4],[1,-6],[-3,-11],[-3,-10],[-5,-8],[-2,-5]],[[8915,4659],[-1,2],[-4,6],[-4,7],[-2,7],[-2,6],[-11,19],[-3,6],[0,1],[0,2],[1,3],[2,9],[-2,-5],[-3,-5],[-4,0],[-4,-1],[-3,-3],[-4,-1],[-2,1],[-1,4],[-1,3],[0,4],[-1,-6],[-3,-3],[-5,-7],[-1,1],[-1,3],[0,3],[1,3],[1,3],[0,7],[2,4],[1,9],[1,3],[1,3],[-1,3],[-2,1],[-2,2],[-1,6],[-1,2],[-2,2],[-1,3],[2,2],[1,1],[2,0],[3,-1],[1,0],[3,2],[-2,-1],[-1,0],[-6,4],[-4,4],[-3,7],[0,2],[2,1],[5,2],[-1,4],[-2,3],[-1,6],[-2,4],[-3,6],[-2,6],[-2,13],[-2,10],[0,4],[2,2],[-3,1],[-2,1],[1,5],[3,3],[-3,-1],[-2,-1],[-1,0],[-1,0],[-1,2],[0,3],[1,4],[-1,5],[-2,2],[-2,3],[-1,2],[-1,0],[-1,2],[-1,3],[-13,14],[-1,4],[-1,-2],[-1,-1],[-1,3],[-2,1],[-2,0],[-1,1],[-2,1],[-1,0],[-7,4],[-6,7],[-5,3],[-3,4],[-4,3],[-7,3],[-7,2],[-3,0],[-2,-1],[-2,0],[-13,15],[-2,7],[0,4],[1,3],[5,1],[-4,1],[-1,-1],[-3,-2],[-1,0],[-3,1],[-2,3],[-3,-2],[-2,3],[-1,3],[-1,2],[-1,0],[-2,-1],[-1,0],[-2,2],[0,4],[-2,2],[-1,2],[-2,4],[-2,5],[1,10],[0,4],[2,5],[2,6],[-2,0],[-2,-2],[-1,-3],[0,-3],[0,-10],[-2,-3],[-2,0],[1,-6],[-1,-5],[-3,-7],[0,-3],[0,-4],[0,-3],[-5,-9],[-1,-1],[-3,0],[-3,-1],[-2,2],[-1,3],[-1,3],[-1,7],[-1,7],[3,9],[-1,8],[-2,7],[-6,9],[-6,9],[-2,2],[-4,1],[-2,1],[-1,3],[-1,4],[3,2],[4,4],[3,0],[7,-2],[2,-3],[2,-1],[5,8],[4,10],[2,2],[2,0],[2,-1],[4,-3],[3,-2],[2,0],[2,-3],[1,-1],[0,4],[1,6],[3,1],[1,1],[1,1],[0,5],[-3,1],[1,4],[2,2],[0,2],[0,3],[-6,-5],[-6,-2],[-4,0],[-3,0],[-7,-3],[-3,0],[-7,1],[-3,2],[-3,-1],[-3,0],[-2,3],[-3,5],[-1,4],[-2,2],[0,3],[-2,13],[0,9],[-3,0],[-3,1],[-12,9],[-1,-3],[-2,-1],[-2,0],[-1,0],[-2,2],[0,2],[1,6],[2,2],[1,2],[1,3],[2,9],[0,3],[0,3],[0,3],[1,1],[5,3],[9,4],[3,3],[2,4],[2,3],[1,3],[1,2],[8,5],[3,1],[3,-1],[7,-3],[6,-6],[5,-7],[6,-5],[7,-1],[3,1],[4,-1],[1,-2],[2,-4],[0,-3],[-1,-6],[2,-6],[2,-6],[1,-6],[1,-3],[-1,-6],[-1,-3],[-2,-6],[-1,-5],[1,-7],[0,-8],[0,-6],[1,-7],[1,-6],[4,-18],[3,-12],[1,6],[0,8],[1,3],[1,1],[2,-1],[0,-3],[0,-7],[2,-13],[2,-1],[2,2],[0,-4],[0,-7],[1,-6],[1,-2],[3,-5],[2,-1],[4,-1],[3,-1],[4,2],[2,5],[2,4],[6,11],[2,6],[2,8],[0,1],[7,9],[0,3],[1,6],[2,6],[1,3],[6,3],[6,1],[7,6],[2,4],[1,3],[-2,5],[0,3],[2,2],[5,7],[7,7],[5,4],[3,0],[3,-4],[3,-3],[14,-10],[3,-4],[2,-4],[3,-3],[3,-1],[3,-3],[3,-3],[7,-7],[8,-7],[2,-1],[8,0],[2,-1],[1,-2],[1,-1],[9,-1],[2,-2],[1,-2],[1,-5],[6,-1]],[[8857,4701],[-1,-1],[-7,2],[-1,2],[0,1],[2,3],[1,4],[3,1],[1,0],[2,-9],[0,-3]],[[7824,5304],[2,-5],[0,-3],[-1,-4],[0,-5],[-3,-4],[-3,1],[-1,1],[-2,8],[0,7],[1,3],[3,-1],[3,4],[1,-2]],[[7844,5241],[-1,-2],[-1,3],[-2,4],[0,4],[-1,7],[0,4],[1,3],[3,-3],[1,-5],[1,-1],[0,-5],[-1,-5],[0,-4]],[[7846,5268],[0,-8],[-2,2],[-1,3],[-3,2],[-3,1],[-2,2],[-2,4],[0,1],[0,1],[1,1],[12,-6],[0,-3]],[[7861,5227],[0,-2],[-1,1],[-6,3],[-2,0],[-4,3],[-2,1],[-1,2],[1,4],[0,2],[1,6],[1,2],[2,-4],[3,-4],[1,-2],[5,-4],[1,-2],[1,-6]],[[7865,5234],[-1,-2],[-1,1],[-2,2],[-2,3],[-2,3],[-3,2],[-1,1],[-1,0],[1,7],[1,0],[6,-6],[2,-3],[3,-8]],[[7868,5215],[-3,0],[-1,0],[1,6],[1,3],[1,0],[2,-5],[-1,-4]],[[7873,5222],[-1,-1],[-2,8],[0,4],[1,1],[1,-3],[1,-2],[1,-4],[-1,-3]],[[7889,5252],[2,-3],[1,2],[0,-2],[0,-2],[-2,-6],[-3,1],[-1,2],[0,2],[1,0],[0,3],[1,0],[1,3]],[[7904,5254],[1,-4],[1,-3],[1,-3],[-1,-5],[-1,-6],[-1,-1],[-2,1],[-1,2],[0,1],[0,2],[-1,1],[1,2],[-1,3],[-4,-2],[-1,0],[0,4],[0,1],[3,5],[2,1],[2,-1],[2,2]],[[7910,5174],[1,-1],[1,3],[1,-4],[1,-2],[2,-2],[-1,-1],[-1,-1],[-1,-1],[-5,7],[-4,-2],[-3,2],[0,1],[1,4],[1,8],[3,-2],[0,-3],[0,-1],[2,-1],[2,-4]],[[7901,5165],[3,-6],[0,-2],[-1,-3],[-1,-5],[0,-1],[-2,2],[-2,-4],[-1,7],[-2,4],[1,5],[1,0],[1,0],[0,-1],[3,4]],[[7881,5164],[-4,-2],[-4,1],[1,4],[2,4],[1,0],[3,-3],[2,-3],[-1,-1]],[[8047,5116],[-6,-6],[-1,0],[-1,2],[0,12],[1,3],[4,0],[2,-1],[2,-2],[0,-4],[0,-2],[-1,-2]],[[8162,4775],[-1,-1],[-5,0],[-3,-5],[-2,-1],[-7,0],[-1,1],[-1,0],[0,-1],[-3,0],[-7,5],[-2,3],[2,5],[2,5],[6,2],[25,0],[3,-5],[0,-2],[-5,-3],[-1,-3]],[[8748,5120],[-1,-2],[-2,2],[-1,4],[0,3],[2,3],[1,-3],[1,-3],[1,0],[-1,-4]],[[8534,5155],[-2,-1],[-2,0],[0,6],[0,8],[2,1],[3,-2],[-1,-2],[1,-4],[-1,-6]],[[8543,5165],[3,-8],[-2,-8],[1,-5],[4,0],[1,-2],[1,-2],[0,-3],[-1,-2],[-2,-2],[-3,3],[0,3],[-1,1],[-3,-2],[-1,-1],[-1,4],[1,6],[-3,2],[-2,6],[0,2],[1,4],[0,3],[1,1],[3,-5],[1,4],[1,2],[1,-1]],[[8692,4844],[-3,-5],[2,12],[1,5],[2,4],[3,18],[0,-1],[1,-1],[-1,-13],[-4,-10],[-1,-9]],[[8688,4847],[-1,-6],[-2,2],[-1,3],[1,7],[-2,8],[2,0],[1,-3],[2,-8],[0,-3]],[[8562,4972],[0,-2],[-2,-1],[-1,0],[0,2],[0,1],[-1,-1],[-2,-1],[-2,-3],[-1,1],[0,3],[0,1],[2,4],[3,1],[4,4],[2,0],[-1,-2],[0,-2],[-1,-2],[0,-3]],[[8522,5416],[-1,-1],[-2,0],[0,3],[2,6],[1,5],[-2,1],[-1,4],[0,4],[1,8],[2,-1],[1,-3],[1,-6],[1,-5],[-2,-6],[-1,-9]],[[8490,5382],[-1,-2],[-3,3],[0,5],[-1,3],[-1,2],[0,3],[0,3],[2,-4],[2,-6],[1,-5],[1,-2]],[[8634,4705],[-2,-2],[1,4],[6,11],[1,-2],[3,-1],[-4,-4],[-4,-2],[-1,-4]],[[8606,4726],[-2,-6],[-2,1],[-3,7],[0,5],[0,1],[2,1],[4,-2],[1,-4],[0,-3]],[[8550,4717],[5,-2],[2,0],[1,-2],[-3,-5],[-5,4],[-1,4],[1,1]],[[8620,5086],[0,-3],[2,-3],[-1,-5],[0,-1],[0,-2],[1,-2],[-1,-1],[-1,1],[-2,-2],[-1,-2],[-3,-1],[-1,2],[-6,2],[-4,6],[0,1],[7,6],[3,2],[3,0],[3,2],[1,0]],[[7843,4868],[-3,0],[-4,7],[0,2],[1,2],[1,0],[5,-4],[1,-3],[-1,-4]],[[7789,5000],[1,-8],[-3,6],[0,4],[-1,2],[-2,4],[-1,4],[-1,9],[1,2],[1,0],[6,-12],[0,-2],[0,-5],[-1,-1],[0,-3]],[[7783,5026],[-2,-5],[-4,0],[0,3],[0,7],[-1,2],[0,1],[1,4],[0,1],[6,-10],[0,-3]],[[7773,5049],[0,-2],[-5,5],[-2,2],[-2,5],[1,3],[0,4],[0,1],[2,1],[1,-3],[2,-7],[2,-6],[1,-3]],[[7734,5153],[-1,-2],[-3,2],[1,4],[0,5],[2,4],[0,5],[-3,13],[2,0],[1,-1],[2,-9],[2,-5],[-1,-7],[-2,-9]],[[7679,5320],[-2,-1],[-2,1],[-1,4],[-7,9],[-3,0],[-1,3],[-2,1],[-3,6],[0,4],[2,1],[1,4],[2,-2],[3,-6],[3,-2],[1,-1],[1,-4],[6,-8],[1,-3],[1,-3],[0,-3]],[[8389,4871],[-2,-2],[-3,7],[-1,5],[0,3],[1,3],[1,0],[-1,3],[2,2],[1,-1],[1,-3],[1,-1],[1,-4],[-1,-12]],[[8422,5116],[0,-3],[-1,-3],[1,-6],[3,8],[3,1],[1,-2],[1,-1],[1,-3],[-1,-7],[-2,-3],[-2,0],[-1,4],[-2,0],[-1,-8],[0,-1],[-1,-1],[-2,2],[0,1],[2,4],[-1,11],[-1,-2],[-4,-10],[-2,-5],[-1,3],[-1,6],[0,9],[2,6],[2,-1],[5,2],[2,-1]],[[8384,5160],[1,-2],[0,-3],[-1,1],[-3,0],[-1,-1],[-1,-1],[-1,-1],[1,3],[2,4],[1,0],[2,0]],[[8347,4821],[-1,-10],[-1,4],[0,9],[0,4],[0,5],[0,12],[1,6],[1,-7],[1,-4],[-1,-19]],[[8204,4782],[-2,-1],[-2,2],[0,3],[0,3],[3,1],[2,0],[2,-2],[1,-2],[1,-2],[-4,0],[-1,-2]],[[8230,4961],[-6,-11],[-1,3],[1,11],[-2,7],[0,5],[1,9],[2,6],[3,5],[1,1],[0,-9],[0,-3],[1,-3],[-1,-2],[1,-10],[0,-3],[-1,-3],[1,-3]],[[8414,4555],[-2,0],[-1,1],[0,5],[1,3],[6,4],[2,3],[3,7],[2,2],[1,1],[0,-1],[0,-5],[1,-3],[0,-2],[-3,-2],[-2,-7],[-6,-4],[-2,-2]],[[8452,4704],[-2,-4],[-1,-6],[-1,-2],[-3,-1],[-1,6],[-2,0],[1,6],[1,2],[2,0],[0,-3],[1,0],[3,9],[1,0],[1,0],[0,-1],[0,-6]],[[8442,4707],[-4,-1],[-3,-7],[-2,0],[-1,-4],[0,-1],[0,-1],[0,-1],[-1,-2],[-2,2],[-1,-2],[-1,-1],[-2,3],[-2,0],[-1,0],[3,6],[3,5],[1,1],[-1,1],[-1,1],[0,1],[2,1],[2,0],[1,-2],[1,0],[4,6],[2,-1],[2,-2],[1,-2]],[[8425,4703],[-1,-3],[-7,0],[0,4],[2,3],[1,1],[2,1],[3,-1],[0,-5]],[[8741,4807],[-1,-1],[-1,5],[1,1],[2,-3],[-1,-2]],[[7872,5244],[0,-3],[-2,1],[-1,3],[1,3],[1,1],[1,-3],[0,-2]],[[7883,5230],[0,-2],[-2,4],[0,2],[0,1],[2,-2],[0,-3]],[[7895,5232],[-2,-2],[-2,5],[0,2],[0,1],[1,0],[1,-3],[1,-1],[1,-2]],[[7907,5187],[0,-1],[-1,1],[-1,1],[0,1],[-3,8],[1,0],[3,-7],[1,-3]],[[7952,5366],[0,-4],[-2,2],[-1,4],[1,2],[1,-1],[1,-3]],[[7937,5349],[-1,-1],[-1,2],[1,3],[-1,2],[0,2],[0,3],[1,-1],[1,-2],[1,-1],[1,0],[0,-1],[-1,-4],[-1,-2]],[[8024,5351],[-2,-3],[-1,2],[2,6],[1,1],[0,-6]],[[8026,5091],[-4,-3],[0,5],[2,2],[2,-1],[0,-3]],[[7985,5017],[-2,-2],[0,2],[0,1],[0,2],[2,1],[0,-1],[0,-3]],[[7968,5011],[0,-1],[-2,0],[-1,2],[-1,1],[0,2],[2,2],[3,-2],[-1,-4]],[[8177,4773],[0,-2],[-2,0],[-1,4],[1,1],[1,0],[1,0],[0,-3]],[[8130,4849],[0,-2],[-3,0],[0,3],[1,4],[1,0],[2,-2],[-1,-3]],[[7923,4801],[-2,-1],[-1,1],[-1,2],[2,4],[1,1],[1,0],[1,-2],[-1,-5]],[[7703,5303],[0,-1],[-3,6],[-3,3],[1,1],[3,-1],[1,0],[1,-3],[0,-5]],[[7648,5519],[0,-2],[-2,1],[-2,5],[1,1],[1,-1],[2,-1],[0,-2],[0,-1]],[[8432,5086],[-1,-1],[-2,2],[0,8],[2,2],[0,-3],[1,-2],[1,-2],[-1,-4]],[[8423,4947],[-3,-7],[-2,0],[-2,5],[-1,5],[0,2],[2,2],[5,0],[1,-3],[0,-4]],[[8439,5071],[1,-2],[-2,0],[-1,4],[1,3],[1,-5]],[[8420,5079],[-2,-5],[0,3],[0,2],[1,2],[1,1],[0,-3]],[[8318,4680],[-1,0],[-2,1],[1,5],[-1,3],[1,3],[1,5],[0,1],[1,-1],[0,-1],[1,-1],[1,0],[0,-2],[0,-2],[0,-2],[-2,-2],[-1,-3],[1,-4]],[[8307,4709],[-1,0],[-1,2],[1,3],[1,1],[1,-2],[0,-1],[0,-2],[-1,-1]],[[8211,4679],[-1,-2],[-2,3],[-1,2],[2,2],[2,-2],[0,-3]],[[8274,5425],[1,-6],[0,-2],[-5,-3],[-3,7],[0,3]],[[8267,5373],[0,-2],[-2,4],[-1,4],[0,2],[3,1],[1,-2],[-1,-7]],[[8445,4840],[0,-3],[-1,3],[-1,2],[0,3],[1,-1],[1,-4]],[[8433,4880],[0,-6],[-1,1],[-1,2],[0,2],[0,1],[0,1],[2,-1]],[[8354,4774],[-3,-1],[-1,1],[0,6],[3,-3],[1,0],[0,-3]],[[8265,4702],[-1,0],[-1,1],[0,2],[0,4],[0,3],[1,2],[4,0],[0,-2],[-3,-10]],[[8233,4984],[-1,-10],[-2,6],[2,7],[1,1],[0,-4]],[[8537,5229],[-1,-2],[-1,1],[0,3],[0,1],[1,1],[1,0],[0,-4]],[[8732,5061],[-1,0],[0,2],[0,3],[1,1],[1,-1],[-1,-5]],[[8709,4939],[2,-3],[-3,3],[-5,5],[-1,3],[4,-5],[3,-3]],[[8635,5139],[0,-3],[-2,-2],[-12,-3],[1,2],[1,2],[1,1],[1,0],[1,0],[1,0],[1,1],[2,-1],[3,1],[0,3],[2,-1]],[[8628,5153],[-2,0],[-3,3],[2,2],[1,0],[1,2],[1,-1],[1,-2],[-1,-4]],[[8598,5173],[-1,0],[-1,3],[-3,4],[-2,6],[7,-10],[0,-3]],[[8540,5183],[-1,-1],[0,2],[-1,1],[1,6],[0,1],[0,-4],[1,-5]],[[8539,5221],[-1,-1],[-1,0],[0,3],[1,4],[1,0],[0,-1],[0,-3],[0,-2]],[[8535,5139],[0,-1],[-3,1],[-1,1],[2,8],[1,0],[1,-8],[0,-1]],[[8575,4980],[0,-3],[0,-1],[-2,1],[-1,0],[-1,4],[0,1],[2,-1],[1,0],[1,-1]],[[8570,4977],[-4,-3],[1,6],[0,1],[3,-1],[0,-3]],[[8519,5407],[0,-2],[-1,5],[-1,7],[1,-3],[2,-5],[-1,-2]],[[8523,5401],[-1,-1],[-1,2],[0,1],[0,2],[0,1],[2,-3],[0,-1],[0,-1]],[[8483,5337],[-1,-2],[-1,7],[1,3],[1,-1],[1,-1],[-1,-3],[0,-3]],[[8665,4769],[0,-3],[-1,2],[-1,3],[-2,0],[-1,1],[-1,2],[5,1],[1,-6]],[[8573,4770],[-1,-1],[-2,3],[-1,1],[2,3],[1,1],[1,-2],[0,-1],[0,-1],[0,-3]],[[8539,4745],[-2,-2],[0,5],[0,3],[3,-1],[0,-3],[0,-1],[-1,-1]],[[8427,4590],[-2,-2],[0,5],[2,5],[2,2],[1,-2],[0,-1],[-3,-2],[0,-5]],[[8385,4574],[-2,-1],[-3,2],[0,1],[2,3],[2,4],[3,0],[1,-1],[0,-5],[-3,-3]],[[8744,4813],[-1,0],[0,3],[1,2],[1,2],[1,0],[-2,-7]],[[8740,4795],[0,-1],[-1,2],[0,1],[1,3],[1,2],[1,0],[0,-2],[-2,-5]],[[8554,5015],[-1,-5],[-2,0],[-1,1],[3,3],[1,1]],[[8544,4993],[0,-3],[-2,2],[-2,2],[2,2],[2,-3]],[[8415,4692],[-1,-4],[-1,1],[0,3],[1,2],[2,3],[2,1],[2,-1],[0,-1],[-3,-1],[-2,-3]],[[7140,7206],[3,4],[3,3],[4,4],[4,5],[4,3],[2,3]],[[7160,7228],[1,0],[1,-2],[1,0],[1,1],[2,1],[1,-1],[0,-1],[-1,-9],[0,-3],[2,-6],[2,-11],[3,-11],[1,-6],[1,-3],[5,-3],[5,-2],[2,-4],[3,-3],[2,-3],[1,-2],[0,-3],[0,-2],[-1,-2],[-5,-6],[-1,-2],[0,-2],[1,-7],[1,-5],[0,-9],[0,-9],[2,-4],[1,-2],[1,-2],[2,-4],[2,-2],[1,-1],[0,-4],[0,-3],[0,-3],[0,-2],[1,-1],[1,-4],[1,-4],[-1,-3],[1,-3],[0,-4],[0,-8],[0,-3],[-2,0],[-1,-2],[-1,-5],[-2,-1],[-3,0],[-2,3],[-2,3],[0,2],[-1,3],[-1,2],[-2,-1],[-2,0],[-4,-1],[0,-1],[0,-1],[1,-3],[0,-4],[1,-6],[0,-3],[1,-2],[5,-11],[1,-2],[0,-1],[0,-5],[-1,-4],[0,-4],[2,-4],[1,-3],[-1,-4],[-1,-4],[1,-3],[0,-6],[0,-1],[1,-1],[1,1],[2,1],[1,1],[1,-1],[1,5],[1,1],[2,-1],[3,-10],[3,-8],[1,-1],[1,-1],[2,-4],[2,-3],[3,1],[4,1],[2,-3],[1,-2],[5,-6],[2,0],[1,-2],[0,-4],[0,-4],[0,-3],[2,0],[4,-3],[4,-3],[1,0],[2,-2],[2,-3],[4,-5],[3,-3],[1,-4]],[[7447,6789],[-1,2],[1,2],[1,1],[3,1],[5,2],[1,2],[1,1],[2,2],[1,0],[4,-3],[1,-2],[1,-6],[0,-2],[0,-6],[-2,-14],[0,-5],[2,-4],[1,-3]],[[7468,6757],[0,-1],[-3,-4],[-1,-3],[1,-2],[1,-2],[1,-2],[1,-6],[1,-2],[4,-4],[3,-3],[5,2],[1,-1],[3,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[3,-1],[2,0],[5,1],[5,2],[2,5],[1,1],[3,2],[3,-3],[3,-3],[1,-1],[4,0],[3,0],[8,2],[4,-1],[4,4],[1,0],[1,-3],[5,0],[2,1],[2,1],[2,1],[1,0],[2,0],[1,1],[1,2],[0,4],[-1,3],[-1,3],[0,1],[0,2],[1,4],[1,5],[-1,4],[-1,5],[-2,0],[-2,-1],[-3,0],[-3,3],[-1,4],[-1,3],[1,4],[0,3],[1,2]],[[7545,6783],[2,0],[3,-1],[2,-1],[2,0],[4,4],[1,1],[2,1],[1,0],[2,-1],[2,0],[2,2],[2,2],[3,4],[1,2],[0,2],[-1,1],[0,1],[0,2],[1,3],[5,5],[5,5],[2,5],[1,5],[1,6],[2,2],[3,1],[8,2],[3,3],[4,4],[2,3],[1,3],[0,3],[2,1],[3,5],[2,4],[5,5],[5,5],[1,-1],[2,-2],[1,-3],[0,-2],[5,-2],[1,1],[4,-3],[4,-3],[2,-1],[1,0],[1,1],[1,3],[1,2],[0,1],[0,3],[6,6],[5,5],[4,3],[1,-1],[1,-3],[2,-6],[1,-2],[3,1],[1,-1],[-1,-2],[-2,-3],[-2,-2],[-2,-2],[1,-7],[0,-2],[0,-1],[6,7],[2,1],[1,-2],[0,-3],[2,-8],[1,-3],[-5,-10],[-2,-4],[0,-2],[0,-1],[-1,-3],[0,-1],[1,-1],[1,-1],[1,0],[1,2],[5,3],[1,-1],[3,-4],[2,-1],[4,-1],[3,2],[2,-2],[4,-6],[1,-1]],[[7703,6809],[-1,-4],[0,-3],[1,-4],[0,-2],[0,-3],[-1,-2],[-2,-1],[-2,-3],[-3,-4],[-2,-4],[-2,-3],[-1,-3],[0,-4],[1,-5],[6,-16],[0,-2],[-2,-1],[-3,2],[-2,2],[-2,7],[-2,2],[-2,0],[-10,-3],[-3,-1],[-3,-3],[-3,-5],[-2,-4],[-2,-2],[-2,-4],[-8,-11],[-4,-5],[-3,-2],[-2,-2],[-1,-4],[-1,-3],[0,-8],[0,-9],[1,-5],[1,-2],[0,-1],[-1,-3],[-2,-3],[0,-2],[-1,-8],[-1,-4],[-3,-6],[-2,-4],[-3,-4],[-1,-3],[-2,-5],[0,-4],[0,-2],[0,-1],[1,-2],[2,-1],[1,-3],[0,-2],[-1,-7],[-2,-10],[-3,-7],[-3,-7],[0,-3],[-3,-8],[-2,-12],[-1,-8],[-1,-6],[-2,0],[-1,2],[-5,2],[-2,2],[-2,2],[-2,-1],[-2,-1],[-2,0],[-1,0],[-3,5],[-1,-3],[2,-14],[1,-5],[0,-9],[-1,-11],[0,-12],[-1,-3],[-1,-3],[-1,-1],[-2,2],[-1,-1],[0,-2],[0,-5],[-1,-6],[-1,-5],[0,-5],[0,-5],[2,-10],[0,-4],[0,-4],[-1,-1],[-1,0],[-1,-1],[-1,-3],[-1,-8],[-2,-1],[-1,2],[-3,5],[-1,2],[-1,0],[0,-2],[-1,-3],[-1,-2],[-1,-2]],[[7571,6450],[-1,4],[0,21],[-1,6],[-1,9],[0,3],[-1,5],[-1,5],[-1,1],[-1,9],[0,10],[0,4],[-1,10],[-1,11],[-2,-1],[-1,3],[-1,0],[-2,-2],[-2,0],[-1,0],[0,-5],[0,-5],[0,-2],[-4,-7],[-1,-4],[0,-4],[1,-6],[-1,-3],[-2,-3],[-2,-2],[-2,1],[-1,2],[-1,7],[-1,3],[-1,1],[-1,-1],[0,-4],[0,-3],[0,-1],[-1,1],[0,2],[-2,15],[-2,12],[-1,5],[1,6],[1,9],[3,5],[1,3],[0,2],[1,0],[4,-1],[1,1],[1,3],[2,2],[1,1],[1,0],[3,-2],[0,1],[1,4],[1,4],[0,2],[2,1],[2,0],[1,2],[0,5],[2,11],[1,5],[0,6],[1,1],[3,-3],[2,0],[1,1],[0,2],[0,3],[-3,4],[-5,5],[-4,4],[-8,-1],[-8,-1],[-2,0],[-3,2],[-7,0],[-8,-1],[-4,0],[-1,0],[-4,0],[-5,1],[-3,2],[-4,3],[-3,2],[-1,0],[-1,0],[0,2],[0,2],[0,11],[0,16],[0,6],[-3,13],[-1,3],[-1,0],[-1,-2],[-1,-3],[1,-3],[-1,-4],[-3,-2],[-2,2],[-2,2],[-3,3],[-3,6],[0,6],[-1,4],[-1,2],[-1,1],[-1,-1],[-1,-2],[1,-2],[1,-3],[0,-2],[-1,-1],[-1,1],[-2,0],[-2,1],[-1,1],[-1,0],[0,4],[-2,4],[-3,5],[-3,3],[-1,0],[-1,-4],[0,-1],[1,0],[2,-2],[0,-3],[0,-1],[-2,-4],[-1,-3],[-3,-4],[-2,-6],[-1,-4],[-1,-3],[0,-4],[1,-3],[1,-2],[3,-1],[3,-5],[2,-7],[2,-2],[2,-3],[5,0],[1,-2],[0,-5],[1,-2],[3,-2],[0,-2],[0,-2],[-2,-2],[-2,-1],[-2,-1],[-1,1],[-3,1],[-4,0],[-2,-13],[-2,-5],[-1,0],[-2,2],[-1,0],[-3,-12],[0,-3],[-1,-2],[2,-4],[2,-4],[2,-1],[2,1],[1,-2],[2,-3],[3,-3],[4,-1],[2,-3],[0,-3],[0,-2],[0,-7],[-1,-4],[-2,-10],[-2,-9],[1,-4],[1,-1],[0,-2],[2,-3],[1,-3],[-1,-9],[1,-2],[2,-1],[3,-1],[0,-2],[-2,-8],[1,-6],[1,-5],[0,-9],[0,-1],[0,-3],[2,-7],[2,-13],[0,-5],[0,-6]],[[7473,6456],[-1,-9],[-2,0],[2,-6],[1,-4],[0,-6],[-2,-1],[-2,1],[-1,5],[-1,-5],[-3,-4],[0,2],[-1,3],[0,4],[1,15],[0,2],[-1,1],[-1,1],[0,3],[-3,-17],[1,-7],[0,-3],[-4,-2],[-4,6],[0,2],[-1,-3],[0,-5],[-4,1],[-2,3],[1,6],[3,14],[0,6],[-3,5],[-2,2],[-2,7],[1,-7],[1,-3],[2,-2],[2,-3],[-1,-4],[-2,-3],[-3,-10],[-3,-6],[-4,-4],[-14,-6],[-2,-3],[-4,-8],[-3,-7],[0,-8],[1,-8],[1,-12],[1,-3],[-1,-5],[-3,-4],[-2,-7],[1,-4],[-1,-2],[-7,-8],[-1,-5],[-2,-5],[-3,3],[-1,0],[2,-4],[0,-2],[-1,-2],[-2,-1],[-10,-6],[-8,-6],[-2,0],[1,2],[1,2],[0,6],[-2,1],[-1,1],[-6,-8],[-2,-8],[0,-2],[2,1],[4,4],[2,-1],[0,-2],[-6,-7],[-13,-22],[-1,-4],[-1,-5],[-2,-4],[-5,-12],[-7,-16],[-3,-7],[-12,-12],[-2,-4],[-5,-13],[-6,-10],[-6,-8],[-10,-11],[-7,-10],[-2,-7],[0,-3],[1,-3],[1,-3],[0,-3],[-1,-4],[0,-2],[-2,-6],[-3,-5],[-11,-9],[-1,1],[-9,1],[-3,-1],[-1,-4],[-3,-18],[-3,-4],[-1,-5],[0,-3],[-2,1],[-1,1],[-2,-1],[-1,6],[-2,1],[-2,0],[-7,-6],[-2,-4],[-6,-23],[-1,-14],[1,-16],[2,-13],[0,-5],[0,-8],[-1,-3],[0,-5],[0,-8],[3,-12],[0,-5],[0,-5],[2,-11],[-1,2],[-1,4],[-2,7],[-3,-7],[2,-4],[5,-5],[1,-5],[-3,-38],[-3,-14],[-2,-9],[-2,-3],[-3,-15],[-3,-17],[0,-6],[1,-8],[-1,-4],[-2,-4],[3,2],[1,-4],[0,-4],[0,-25],[0,-26],[-2,-1],[-3,0],[-2,1],[-2,1],[-3,-2],[-3,-2],[-1,-5],[0,-8],[-7,-20],[-2,-7],[-1,-7],[1,-3],[2,-4],[3,-1],[4,-1],[3,-2],[1,-4],[-5,4],[-7,1],[-15,-10],[-4,-6],[-3,-6],[-1,-13],[-1,-9],[-1,-7],[-8,-11],[-6,-4],[-1,-3],[-6,4],[-7,10],[-3,5],[-9,25],[-2,4],[-2,10],[0,4],[-1,2],[-1,1],[0,2],[-3,12],[0,13],[-2,15],[1,-1],[2,-5],[1,-7],[0,-10],[1,-1],[1,1],[-3,22],[-3,6],[-1,4],[0,4],[0,2],[-2,8],[-1,4],[-5,22],[-2,16],[-3,17],[-2,6],[-4,14],[-3,6],[-3,9],[-2,3],[-1,2],[-7,29],[-2,17],[-2,7],[-1,6],[-2,25],[0,4],[-1,5],[-1,11],[-3,11],[-1,7],[0,3],[-2,11],[-1,5],[-1,4],[-1,5],[-2,3],[-4,11],[-1,3],[-3,7],[-1,13],[-3,6],[4,0],[-2,5],[-1,3],[-1,2],[1,5],[-3,0],[-1,3],[-2,9],[-4,10],[0,6],[-4,18],[-2,42],[-3,19],[0,6],[-3,16],[-1,11],[-1,10],[-1,6],[0,12],[-1,4],[-1,2],[1,5],[2,9],[1,5],[-1,8],[-2,-8],[-2,-2],[0,6],[0,8],[-1,2],[1,2],[5,-1],[-6,5],[0,3],[-1,2],[2,4],[-3,3],[0,11],[-1,2],[0,2],[1,14],[5,28],[0,7],[0,8],[-1,8],[-1,7],[0,2],[-2,1],[-1,3],[-2,11],[1,3],[2,2],[-2,0],[-2,0],[3,5],[3,4],[6,5],[2,3],[-4,-3],[-3,-1],[-9,0],[2,11],[1,3],[2,2],[-3,0],[-2,1],[1,10],[2,2],[2,1],[3,1],[-3,2],[-3,1],[-4,-2],[-3,2],[-5,-1],[2,-1],[2,-3],[-1,-6],[-1,-3],[-2,-3],[-2,-4],[-1,-3],[-1,-2],[2,-2],[2,-1],[1,-3],[1,-4],[0,-7],[-5,-18],[-1,-4],[-13,-10],[-4,-6],[-11,-8],[-4,-1],[-4,1],[-7,6],[-10,15],[-2,5],[-8,18],[-6,10],[-4,10],[-6,8],[-5,12],[-1,6],[1,5],[1,3],[3,-1],[1,-5],[2,-2],[1,-1],[7,7],[3,0],[2,4],[3,-1],[5,6],[2,0],[3,1],[4,14],[3,9],[2,2],[0,2],[-1,3],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[-2,2],[-2,0],[-2,-1],[-7,-6],[-3,-4],[-3,-1],[-11,5],[-12,12],[-5,7],[-3,11],[-3,11],[1,4],[5,7],[4,6],[-4,-3],[-4,-3],[-2,-3],[-2,-5],[-3,-1],[-1,8],[-1,7]],[[7607,5577],[-1,-4],[-4,14],[-1,1],[0,7],[1,3],[3,3],[1,-2],[2,-14],[-1,-8]],[[7603,5608],[-3,-6],[-1,3],[1,3],[1,1],[1,2],[1,-3]],[[7586,5659],[1,-2],[-1,0],[-2,3],[1,3],[0,2],[1,-6]],[[7595,5638],[-2,-1],[-1,3],[-1,3],[1,2],[1,1],[2,-4],[0,-3],[0,-1]],[[7597,5648],[-1,-2],[0,2],[0,1],[-1,2],[0,3],[1,4],[1,-1],[0,-3],[0,-6]],[[7577,5710],[-2,0],[0,2],[0,2],[0,1],[1,1],[1,0],[0,-4],[0,-2]],[[7569,5792],[-1,-2],[-3,1],[0,6],[0,6],[0,2],[2,5],[2,1],[1,-5],[1,-6],[-2,-8]],[[7574,5839],[-1,-1],[-2,2],[1,2],[1,5],[1,-3],[0,-3],[0,-2]],[[7575,5848],[-1,-1],[-1,1],[-2,11],[-1,6],[0,3],[1,3],[1,1],[0,4],[1,5],[1,5],[0,1],[2,0],[1,1],[-1,4],[-1,2],[0,2],[0,10],[0,4],[1,4],[-1,6],[1,2],[1,4],[1,7],[-1,2],[2,11],[0,7],[1,8],[3,3],[1,0],[0,-6],[1,-2],[-2,-4],[2,-5],[-1,-2],[0,-4],[-1,-3],[-2,-2],[-1,-5],[-1,-2],[3,-5],[0,-18],[-1,-5],[-2,-1],[0,-12],[0,-3],[-2,-5],[0,-3],[-1,-2],[0,-3],[1,-2],[0,-2],[-1,-7],[0,-7],[-1,-6]],[[7583,5877],[1,-8],[-2,4],[-1,2],[1,2],[1,0]],[[7575,5925],[-1,-4],[0,8],[0,1],[1,0],[0,-5]],[[7021,5829],[0,1],[0,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-1]],[[7029,5660],[0,-1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,-1],[0,-1],[0,-1]],[[4568,8998],[3,0],[5,2],[2,2],[6,4],[3,1],[5,0],[2,0],[-3,-2],[-2,-1],[-4,-2],[-3,-6],[-2,-3],[0,-2],[3,-2],[3,-2],[3,2],[1,-1],[1,-2],[1,-1],[0,-2],[0,-4],[-2,-3],[-3,-3],[1,-1],[2,-1],[9,2],[1,0],[0,-1],[0,-2],[1,-1],[1,-2],[0,-1],[-4,-5],[4,3],[4,1],[6,-2],[3,-2],[2,-3],[2,1],[1,0],[1,-1],[0,-2],[-1,-3],[0,-2],[-1,-1],[-2,-1],[-1,-1],[1,-2],[1,-2],[2,0],[1,0],[0,-1],[-1,-2],[-1,-1],[-2,-1],[5,-3],[1,-1],[0,-2],[0,-1],[-1,-2],[-2,-1],[-3,-1],[-2,-1],[0,-2],[0,-2],[0,-3],[-3,-5],[-3,-2],[-2,-2],[-5,1],[-2,1],[0,-4],[-2,-2],[0,-2],[1,-1],[0,-3],[-2,-2],[-2,-3],[-2,-2],[-4,-2],[-4,-3],[-3,-2],[-6,0],[-7,-2],[-9,-5],[-7,-3],[-4,-5],[-7,-7],[-5,-3],[-2,0],[-6,-1],[-4,-2],[-15,-4],[-5,-1],[-1,-2],[-2,-3],[0,-1],[1,-1],[0,-1],[-2,-3],[-4,-2],[-1,0],[-3,2],[-1,0],[0,-1],[1,-2],[-2,-1],[-10,-3],[-16,2],[-7,2],[-8,3],[-5,1],[-7,1],[-5,4],[-3,3],[0,1],[0,2],[1,1],[1,0],[2,0],[0,1],[-1,2],[-2,-1],[-3,-3],[-2,0],[-2,2],[0,1],[-4,1],[-4,2],[-4,3],[0,1],[2,1],[-1,1],[-1,0],[-3,-1],[-4,-3],[-1,-1],[-26,-1],[-6,0],[-2,-1],[-1,3],[-1,5],[0,3],[0,2],[1,2],[1,0],[2,-2],[1,-2],[1,-1],[9,2],[4,2],[1,2],[2,3],[2,1],[1,2],[2,5],[1,2],[2,1],[1,1],[4,1],[-2,1],[-3,0],[-8,-5],[-3,0],[0,1],[1,1],[3,3],[-2,0],[-1,1],[0,2],[2,4],[7,5],[2,0],[1,1],[-1,1],[-2,0],[-6,-5],[-5,-1],[-2,0],[-3,2],[0,1],[-2,2],[1,1],[2,4],[0,1],[-2,0],[-5,4],[-7,0],[-17,2],[-4,-1],[-5,-3],[-4,-1],[-2,0],[-1,2],[-2,2],[-1,3],[1,2],[2,1],[2,0],[4,0],[6,2],[4,0],[1,0],[2,2],[1,1],[2,-1],[1,-1],[5,2],[2,1],[1,1],[1,0],[2,-1],[3,0],[3,1],[5,0],[11,1],[2,1],[1,2],[1,4],[0,1],[-8,-4],[-1,0],[-9,2],[-3,2],[1,2],[5,3],[4,3],[7,4],[2,1],[0,1],[-5,3],[-8,-1],[-2,4],[-7,1],[-5,-1],[-3,2],[-6,-3],[-13,-3],[-5,-3],[-3,-1],[-4,2],[-5,3],[-7,1],[0,1],[3,4],[3,1],[3,0],[4,-3],[4,-1],[-4,4],[0,2],[-1,2],[-1,2],[-1,2],[0,1],[2,1],[3,-1],[9,-5],[4,1],[2,2],[3,1],[-1,1],[-7,0],[-4,1],[-2,1],[-1,3],[0,1],[2,1],[6,-1],[-4,5],[-3,2],[0,1],[0,2],[1,1],[7,-2],[2,0],[-2,1],[-3,3],[0,1],[1,0],[1,2],[0,1],[2,1],[2,0],[2,-1],[7,-5],[1,-1],[0,-2],[0,-2],[0,-1],[3,1],[2,-1],[1,0],[2,4],[2,-1],[1,-2],[1,-1],[0,-2],[-1,-4],[2,2],[3,0],[1,1],[0,4],[-1,4],[-10,5],[-2,1],[-2,3],[1,1],[2,1],[2,0],[7,0],[1,1],[-1,1],[-3,1],[-1,0],[-1,2],[-3,-1],[-5,0],[-4,1],[0,1],[2,1],[3,3],[2,1],[4,-1],[5,1],[4,-1],[3,-3],[4,-4],[5,-3],[1,-1],[3,-2],[6,-7],[6,-3],[0,-1],[-1,-1],[-2,-2],[3,-1],[3,-3],[0,-1],[-2,-8],[-1,-1],[-1,-1],[-6,1],[1,-2],[4,-3],[1,-1],[0,-2],[1,1],[1,-1],[0,-2],[-1,-2],[-1,-2],[1,-1],[1,1],[2,-1],[2,-2],[2,-7],[1,-2],[0,2],[1,5],[1,2],[1,0],[0,1],[1,2],[1,5],[4,4],[1,2],[2,0],[1,-1],[3,-4],[1,-1],[1,1],[2,3],[1,5],[0,6],[0,7],[0,5],[2,3],[2,1],[3,-1],[2,-2],[4,-7],[4,-3],[3,-4],[1,-1],[3,-1],[1,0],[0,1],[1,2],[-1,9],[1,3],[1,3],[5,1],[3,1],[3,3],[2,1],[2,0],[2,-1],[2,-2],[3,-4],[4,-6],[5,-4],[2,-8],[1,-1],[1,0],[0,1],[1,1],[0,4],[-2,4],[-4,11],[0,2],[0,1],[4,1],[7,-1],[3,-2],[5,-7],[1,-1],[1,-1],[0,1],[2,1],[2,2],[2,3],[5,7],[1,0],[2,0],[2,-2],[1,-1],[3,-1],[2,0],[4,2],[4,2],[1,3],[0,1],[-3,10],[1,2],[7,2],[6,1],[2,-1],[3,-5],[3,-2],[1,-2],[0,-4],[2,-2],[3,-2]],[[5525,7829],[-1,0],[-1,-1],[-4,0],[-1,0],[-3,-5],[-1,-1],[-2,-2],[-3,-1],[-1,1],[-1,0],[-9,0],[-4,1],[-3,2],[-2,3],[0,2],[-3,2],[-3,1],[-3,2],[-2,5],[-2,3],[-3,3],[-3,4],[-2,5],[-3,4],[-5,4],[-2,1]],[[5446,7883],[5,6],[2,2],[3,0],[1,1],[0,2],[0,2],[1,2],[-1,1],[-1,0],[-1,5],[1,1],[1,2],[-1,5],[0,2],[2,0],[2,1],[1,2],[1,1],[1,4],[-1,4],[-6,3],[0,1],[1,1],[1,2],[1,1],[1,0],[2,-1],[3,-3],[1,0],[1,1],[1,0],[3,0],[3,1],[-1,3],[0,2],[0,2],[0,2],[1,2],[0,3],[2,3]],[[2574,5931],[0,6],[-2,3],[-2,5],[-1,3],[1,2],[-1,3],[-3,2],[-3,-2],[-1,1],[-2,2]],[[2560,5956],[3,3],[0,1],[-1,2],[-1,1],[1,3],[0,4],[1,9],[0,2],[-2,3],[-3,0],[-2,-1],[-2,2],[-1,3],[-2,1],[-3,-2],[-4,-4],[-1,-1],[-1,0],[-1,3],[0,3],[0,1],[-2,1],[-2,1],[-1,1],[-1,2],[-3,3],[-1,3],[-3,5],[-1,2],[-1,2],[-2,2],[-1,0],[-5,3],[-1,0]],[[2517,6014],[1,3],[2,4],[3,4],[0,4],[-1,7],[-1,4],[1,2],[1,8],[1,2],[4,4],[1,1],[3,5],[4,7],[4,6],[5,8],[3,5],[1,2]],[[2549,6090],[3,-2],[2,4],[1,1],[3,4],[1,1],[5,2],[2,0],[2,-4],[2,-3],[3,2],[2,1],[11,-4],[4,2],[7,0],[4,-1],[5,6],[3,1],[4,3],[-1,2],[-1,2],[6,-1],[8,-6],[9,1],[3,3],[2,1],[9,-6],[3,-5],[2,0],[1,1],[1,1],[-2,1],[-1,1],[7,-3],[14,-22],[0,-2],[-6,7],[-3,-1],[-1,-1],[0,-3],[1,-2],[1,0],[1,1],[2,-2],[2,-2],[2,-4],[1,-4],[1,0],[2,3],[2,0],[1,-3],[1,1],[-1,4],[-4,4],[1,0],[8,-7],[2,-10],[2,-2],[2,-3]],[[2599,6127],[-4,-4],[-2,0],[2,3],[4,3],[2,2],[3,-1],[-5,-3]],[[2614,6132],[-2,-3],[0,1],[1,3],[1,2],[1,0],[0,-2],[-1,-1]],[[3006,6320],[0,-2],[2,-12],[0,-4],[-1,-5],[0,-2],[2,-6],[1,-1],[-1,-2],[-2,-5],[-2,-4],[1,-3],[1,-4],[0,-3],[0,-4],[-2,-5],[-2,-2],[-3,0],[0,-1],[1,-5],[2,-5],[3,-5],[1,-4],[-1,-4],[0,-9]],[[3006,6223],[-2,4],[-3,4],[-1,2],[-2,1],[-12,-1],[-2,0],[-1,-2],[-1,0],[-3,-1],[-4,-1],[-8,3],[-3,2],[-3,1],[-3,0],[-4,-1],[-3,-2],[-2,-4],[0,-4],[-2,-1],[-3,6],[-2,4],[-3,3],[-6,5],[-2,2],[0,3],[2,11],[3,1],[2,1],[3,-2],[4,-2],[3,-1],[5,-1],[2,-2],[19,-4],[4,-1],[1,0],[1,2],[1,2],[2,2],[5,1],[1,1],[1,2],[0,3],[-3,4],[-5,9],[-5,10],[2,4],[-1,6],[1,6],[1,6],[-4,4],[-6,5],[-7,2],[-2,1],[-1,4],[1,5],[2,2],[3,2],[3,1],[6,2],[7,-2],[6,-5],[6,-4],[7,-1],[3,-2],[2,2]],[[2977,6265],[0,-4],[-7,5],[-6,6],[0,4],[3,0],[3,-2],[4,-4],[3,-5]],[[2981,6338],[1,-1],[0,-2],[-3,1],[-3,2],[-1,-1],[0,1],[-2,1],[2,2],[1,0],[2,0],[3,-3]],[[3333,5676],[1,-1],[4,-9],[2,-2],[0,2],[2,-1],[6,-6],[7,-10],[11,-20],[3,-7],[2,-4],[3,-8],[1,-4],[0,-17],[-3,-11],[0,-8],[0,-12],[-2,-6],[2,3],[1,11],[2,6],[2,6],[3,2],[4,-3],[3,0],[2,-2],[5,-11],[5,-9],[2,-7],[6,-3],[3,-5],[1,-5],[1,-12],[-1,-19],[0,-1]],[[3431,5296],[-1,-1],[-2,-1],[-1,1],[-2,-1],[-2,-1],[-2,-1],[-4,2],[-1,0],[-1,1],[-1,4],[-1,1],[-2,-2],[-2,-1],[-1,0],[-2,-1],[-1,-2],[-3,-8],[-1,-3],[-1,-1],[-3,0],[-3,0],[-2,-2],[-2,-1],[-1,0],[0,-5],[-1,-2],[0,-1],[-2,0],[-1,0],[-1,2],[-2,1],[-1,0],[-1,1],[-1,0],[-1,-2],[0,-1],[0,-3],[-3,-1],[-1,-1],[1,-6],[0,-2],[-1,-1],[-2,-1],[-2,1],[-2,-2],[-1,-3],[-1,0],[-1,0],[-2,3],[-1,3],[-4,2],[-4,2],[-2,5],[-1,3],[-1,1],[-3,6],[-1,4],[-2,1],[-2,1],[0,3],[0,3],[-1,1],[-1,1],[0,1],[0,4],[0,9],[0,9],[-3,3],[-1,2],[-2,13],[-1,6],[0,4],[1,13],[1,6],[2,11],[1,4],[0,3],[0,3],[-1,7],[3,5],[2,2],[0,3],[2,4],[1,3],[0,3],[0,2],[-1,1],[0,3],[-2,7],[-1,2],[-1,2],[1,4],[0,4],[0,1],[-1,2],[-2,4],[-2,0],[-2,1],[-2,0],[-2,1],[-1,1],[0,2],[1,2],[1,4],[1,4],[0,4],[1,5],[0,5],[0,6],[-2,3],[-1,3],[-1,3],[-1,0],[-2,1],[-2,-4],[-2,1],[-2,-1],[-3,0],[-2,2],[-3,-2]],[[4618,5914],[0,-5],[2,-6],[-1,-5],[0,-5],[-1,-2],[-1,-1],[-2,0],[-1,-1],[-2,-2],[0,-2],[1,-2],[1,-3],[2,-2],[2,-2],[0,-3],[0,-8],[0,-5],[-6,-4],[-5,-1],[-4,0],[-1,-1],[-4,-5],[-4,-2],[-2,0],[-1,-2],[-2,-4],[-5,-19],[-1,-5],[-1,-3]],[[4582,5814],[-2,4],[1,8],[-1,-1],[-2,-6],[-1,0],[0,7],[-1,1],[-2,-1],[-2,4],[0,3],[0,4],[1,2],[0,1],[-1,1],[-2,-1],[0,1],[1,5],[5,4],[2,1],[3,1],[-2,3],[-3,2],[-2,-1],[-1,-3],[-2,0],[-2,6],[0,3],[1,4],[1,2],[6,0],[2,2],[1,0],[1,2],[0,1],[-1,0],[-2,-2],[-7,1],[-2,-2],[-4,-5],[-5,-4],[-3,2],[1,7],[-1,1],[-1,2],[-5,-3],[-4,4],[-1,4],[0,5],[2,4],[0,2],[-2,0],[-3,-2],[-8,8]],[[4552,5821],[-2,-1],[-1,3],[0,1],[1,1],[1,2],[1,1],[1,1],[1,-5],[-1,-2],[-1,-1]],[[4558,5822],[0,-1],[-2,0],[0,1],[0,1],[1,5],[1,-1],[0,-1],[0,-4]],[[4563,5830],[0,-3],[-1,1],[-1,1],[1,4],[1,2],[1,-1],[1,0],[-1,-2],[0,-1],[-1,-1]],[[4568,5848],[-1,-1],[-1,1],[2,5],[1,1],[0,-4],[-1,-1],[0,-1]],[[4558,5844],[-1,-2],[-2,1],[-1,2],[1,3],[1,4],[1,-1],[1,-7]],[[4555,5868],[-1,-7],[-2,1],[-1,4],[0,2],[3,0],[1,0]],[[4630,5705],[0,2],[1,5],[-1,3],[-3,5],[0,3],[-1,3],[-3,7],[-4,0],[1,6],[0,8],[-1,4],[0,5],[0,-1],[-2,-3],[-1,1],[-4,5],[-2,5],[0,3],[-1,2],[-1,-1],[-2,0],[-7,7],[-5,17],[0,4],[0,7],[0,2],[-2,-5],[-1,3],[-1,7],[-1,4],[-2,2],[-1,1],[-1,-2],[-1,-8],[-1,0],[-2,2],[1,6]],[[4778,5769],[-1,-2],[-2,-3],[-1,-3],[-1,-3],[0,-5],[0,-12],[0,-10],[2,-4],[1,-2],[2,0],[2,1],[0,-6],[0,-7],[2,-2],[1,-2],[0,-2],[-3,-4],[-1,-2],[0,-6],[0,-5],[4,-4],[2,-4],[1,-5],[0,-9],[0,-2],[-1,0],[-2,3],[-1,3],[-1,0],[-2,0],[-3,1],[-3,0],[-2,-1],[0,-1],[0,-3],[-1,-9],[1,-2],[2,-2],[2,-1],[1,0],[1,-1],[0,-4],[-1,-3],[-1,-2],[-1,-7],[0,-3],[0,-3],[-2,-10],[-1,-2],[-3,2],[-3,1],[-1,-3]],[[2523,6210],[0,-14],[-1,-16],[0,-12],[0,-16],[0,-16],[-1,-22],[0,-15],[3,1],[5,-1],[1,0]],[[2530,6099],[2,-1],[1,-1],[3,-3],[3,-2],[1,5],[-1,3],[0,1],[0,2],[10,-13]],[[2517,6014],[0,1],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,-3],[0,-4],[0,-2],[0,-1],[-3,-2],[-1,-3],[-1,-3],[-2,-2],[-1,0],[-1,0],[-2,-3],[-3,-5],[-1,-4],[0,-3],[0,-3]],[[2497,5975],[-11,9],[-3,2],[-15,0],[-7,4],[-7,7],[-5,6],[-11,19]],[[3285,5876],[-1,-1],[0,3],[0,3],[1,5],[2,3],[1,-1],[0,-10],[-3,-2]],[[5773,7289],[0,-1],[-2,3],[0,1],[2,2],[1,-1],[0,-2],[-1,-2]],[[5572,7395],[0,-7],[2,-1],[3,-6],[0,-3],[-1,-1],[-4,2],[-1,-1],[-1,1],[-1,3],[0,1],[-1,2],[0,1],[-2,-3],[-1,0],[0,2],[1,7],[1,1],[1,-2],[1,1],[1,3],[0,4],[1,1],[1,-5]],[[5580,7361],[3,-5],[-3,1],[-2,-4],[-3,5],[-2,4],[-1,2],[2,4],[2,-4],[2,-1],[2,-2]],[[5574,7408],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,5],[1,5],[2,4],[1,1],[1,-2],[0,-10],[-1,-1]],[[5576,7392],[-1,-1],[-2,5],[-1,4],[1,0],[1,0],[0,-1],[0,-2],[1,-2],[1,-1],[0,-2]],[[5557,7455],[1,-3],[-4,2],[-2,3],[-2,7],[-5,8],[0,2],[2,2],[4,1],[1,-1],[1,-1],[0,-2],[-2,-3],[0,-1],[1,-3],[0,-1],[1,-6],[1,-2],[2,-1],[1,-1]],[[5650,7428],[1,-7],[2,-2],[3,-2],[1,0],[6,-5],[6,-1],[1,-1],[0,-4],[2,-2],[0,-2],[-1,-3],[1,-7],[2,-7],[2,-3],[3,-1],[3,0],[0,-1],[0,-6],[-1,-3],[-1,0],[-1,0],[-1,2],[-2,1],[-1,2],[-3,3],[-1,2],[0,3],[-1,3],[-1,4],[-1,1],[-1,2],[0,1],[-4,1],[-4,0],[-3,2],[-1,6],[-1,2],[-2,2],[-1,2],[-3,5],[-3,4],[-3,2],[-3,2],[-2,-2],[-2,0],[0,2],[3,2],[4,5],[3,2],[2,0],[3,-4]],[[5660,7437],[-1,-2],[-2,1],[-2,6],[5,-5]],[[5663,7439],[-1,0],[1,4],[2,3],[-1,-4],[-1,-3]],[[5685,7419],[-3,-1],[-1,0],[1,2],[-3,4],[0,4],[1,1],[2,-2],[0,-4],[3,-4]],[[5688,7523],[-4,-2],[-4,4],[0,2],[2,5],[1,1],[3,0],[2,-3],[0,-2],[-1,-2],[1,-3]],[[5654,7368],[-1,-1],[-2,0],[-1,0],[0,2],[1,0],[0,2],[1,1],[1,0],[0,-1],[1,-3]],[[5640,7268],[-1,-2],[-2,1],[-1,3],[0,6],[0,3],[1,0],[1,-3],[3,-4],[-1,-4]],[[5754,7227],[-1,-4],[-1,3],[1,3],[-2,5],[3,8],[0,3],[2,2],[-1,-6],[-1,-5],[1,-4],[1,-5],[-2,0]],[[5750,7313],[-3,-1],[1,4],[-2,4],[2,-2],[2,-3],[1,0],[-1,-1],[0,-1]],[[5748,7299],[-1,0],[1,3],[3,4],[4,3],[2,0],[2,-2],[-4,-3],[-1,-2],[-4,0],[-2,-3]],[[5709,7313],[-2,-2],[-2,3],[-1,5],[4,7],[2,0],[0,-2],[0,-7],[-1,-4]],[[5702,7319],[-3,-5],[-1,1],[-1,2],[1,4],[2,2],[2,0],[-1,-3],[1,-1]],[[5707,7280],[-1,-3],[-2,1],[1,1],[0,2],[0,2],[0,1],[0,1],[2,-3],[0,-2]],[[5704,7296],[0,-1],[-2,4],[-1,2],[1,2],[3,-4],[-1,-3]],[[5745,7362],[3,-2],[1,0],[2,-1],[0,-3],[-2,-1],[-4,-3],[-1,1],[-2,3],[-3,0],[-1,1],[1,3],[3,2],[3,0]],[[5722,7345],[-1,0],[1,3],[2,4],[4,0],[3,2],[-1,-3],[-3,-3],[-5,-3]],[[5718,7303],[-3,-1],[0,1],[1,1],[1,1],[1,1],[2,2],[2,3],[1,-2],[-2,-1],[-3,-5]],[[5734,7291],[-2,-1],[-1,-3],[-2,2],[0,3],[2,-1],[1,1],[0,2],[1,-1],[1,-2]],[[5676,7348],[-2,-3],[0,5],[1,4],[2,0],[0,-2],[-1,-4]],[[5678,7335],[-1,-2],[0,4],[-1,2],[1,2],[1,1],[1,-1],[0,-3],[-1,-3]],[[5681,7301],[0,-3],[0,-1],[-6,-2],[1,4],[0,1],[2,-2],[1,1],[0,1],[2,1]],[[5692,7343],[0,-6],[-1,0],[0,1],[0,3],[0,3],[1,-1]],[[5694,7359],[-1,-4],[-2,4],[-3,3],[-1,3],[-1,2],[0,3],[1,2],[1,0],[2,-4],[3,-1],[-1,-3],[1,-3],[1,-2]],[[5701,7349],[-1,-3],[-2,0],[-3,4],[-1,2],[0,2],[1,0],[1,-2],[4,-1],[1,-2]],[[5686,7310],[-1,3],[0,2],[0,1],[1,0],[1,-4],[-1,-2]],[[5724,7385],[-2,-3],[-3,5],[-1,1],[2,2],[1,3],[0,3],[-3,6],[-1,4],[5,1],[3,-3],[1,0],[0,-3],[0,-1],[0,-10],[-1,-1],[0,-3],[-1,-1]],[[5733,7449],[0,-3],[3,-6],[2,-4],[0,-3],[0,-1],[-2,2],[-1,0],[1,-2],[1,-2],[-2,-1],[-3,0],[-6,3],[-1,3],[3,5],[1,2],[-2,-1],[-3,-5],[-5,2],[-1,2],[-1,2],[2,5],[3,0],[2,1],[2,1],[0,3],[5,0],[2,-3]],[[5713,7512],[-3,-1],[-4,5],[4,1],[1,-1],[1,-2],[1,-2]],[[5706,7487],[-1,-2],[-1,-4],[0,-4],[-2,0],[-1,1],[0,1],[0,3],[-1,0],[0,-3],[-1,-1],[-2,0],[-1,1],[0,4],[-1,3],[0,2],[5,0],[2,-3],[2,2],[0,2],[2,1],[0,-3]],[[5705,7339],[-3,0],[1,4],[1,1],[3,-2],[0,-1],[-2,-2]],[[5681,7322],[-1,-1],[-2,2],[0,3],[2,1],[1,-1],[0,-1],[0,-3]],[[5773,7253],[-2,-1],[-1,0],[-1,3],[1,6],[-1,4],[0,2],[2,3],[1,3],[3,4],[7,5],[2,0],[0,-3],[-3,-10],[-2,-4],[1,-4],[-4,-1],[-3,-7]],[[5662,7231],[2,-1],[2,0],[1,1],[2,3],[2,0],[1,-3],[-2,-2],[-1,-1],[1,0],[1,-2],[2,1],[0,-3],[1,-2],[1,-1],[1,-1],[2,1],[3,1],[3,1],[2,1],[8,-1],[3,-3],[5,-1],[5,-2],[3,2],[4,1],[1,-1],[-1,-9],[1,-2],[1,-1],[1,0],[2,3],[3,2],[4,0],[4,6],[1,0],[-1,-3],[-1,-6],[0,-4],[-1,-3],[-2,-1],[-3,0],[-6,0],[-6,-1],[-11,-3],[-12,-1],[-1,1],[0,4],[0,2],[-1,2],[-4,1],[-3,3],[-13,4],[-3,1],[-5,-1],[-2,0],[-1,2],[-1,2],[0,7],[0,7],[1,1],[1,-2],[1,-1],[1,2],[0,4],[1,2],[1,-1],[0,-4],[2,-1]],[[5723,7530],[-1,2],[-4,4],[-10,3],[-5,3],[-2,-1],[-4,4],[-3,-2],[-6,-6],[-3,1],[-3,4],[-3,0],[-2,-2],[-4,-7],[-5,-4],[-3,2],[-5,0],[-1,-4],[1,-3],[3,-5],[-2,-4],[1,-3],[2,-1],[3,0],[5,-4],[2,-5],[2,-6],[-3,4],[-2,4],[-3,1],[-4,3],[-3,1],[-2,-2],[-1,-3],[3,-4],[3,-3],[1,-3],[1,-5],[0,-2],[-1,-1],[-3,3],[-5,12],[-7,2],[-1,-2],[1,-7],[1,-2],[6,-7],[0,-1],[-1,-1],[-7,4],[-2,6],[0,7],[-6,5],[-6,6],[-1,5],[1,2],[1,4],[-3,-1],[-2,-2],[-3,-3],[0,-4],[0,-3],[-1,-5],[-1,-9],[1,-5],[7,-14],[2,-10],[2,-3],[3,-5],[4,-7],[1,-4],[1,-7],[-3,-4],[-1,0],[-1,2],[1,4],[0,3],[-5,4],[-2,-1],[-2,-3],[1,-5],[2,-3],[0,-5],[3,0],[-4,-5],[-3,-3],[-4,0],[-2,0],[-1,-1],[2,-1],[2,-1],[2,-2],[7,-4],[3,-4],[3,0],[4,-8],[5,-2],[3,-8],[5,-2],[3,-3],[1,-2],[1,-5],[0,-11],[1,-8],[0,-2],[0,-4],[-1,-2],[-2,0],[-2,6],[-4,6],[-5,7],[-1,1],[-1,1],[-2,-3],[-6,-2],[-3,-2],[-1,-1],[-1,-1],[2,-2],[1,-3],[0,-5],[2,-5],[2,-2],[2,0],[1,-1],[1,-2],[1,-2],[1,-2],[0,-2],[-7,-3],[-1,-2],[-1,-1],[-2,2],[0,4],[-2,3],[-2,2],[-3,1],[-2,3],[-1,-3],[1,-8],[2,-6],[4,-16],[2,-10],[0,-4],[-1,-8],[2,-5],[2,-6],[-2,0],[-1,2],[-2,3],[-4,9],[-2,6],[-2,0],[-3,-1],[-3,-12],[0,-7],[-2,2],[-1,2],[0,8],[0,3],[-4,10],[-2,1],[-1,4],[-1,4],[-2,-1],[-2,-2],[0,-5],[0,-5],[-1,-4],[-5,7],[-4,13],[0,6],[3,7],[0,4],[-3,9],[-5,6],[-2,1],[-1,7],[-3,3],[-1,1],[-1,2],[1,2],[4,6],[3,10],[1,0],[3,-2],[3,1],[3,5],[2,3],[3,0],[8,-8],[9,-4],[4,-4],[3,-4],[1,0],[2,-1],[0,3],[-1,2],[2,2],[5,0],[1,1],[0,2],[-1,3],[-1,1],[-2,0],[-1,1],[-2,-1],[-2,2],[-2,2],[-1,1],[-4,3],[-5,6],[-1,-3],[-2,-2],[-2,0],[-7,3],[-5,-2],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-2,5],[-1,4],[-1,1],[0,-4],[-1,-3],[-3,-2],[-2,3],[-2,7],[-1,8],[-4,7],[-2,2],[-1,4],[1,3],[3,1],[5,-3],[1,0],[1,2],[0,3],[-1,3],[-1,0],[-1,0],[-3,0],[-4,-1],[-2,1],[-1,2],[-3,5],[-3,6],[-5,4],[-3,13],[-2,5],[-3,4]],[[5555,7471],[1,0],[1,-1],[2,-2],[2,0],[1,1],[1,2],[0,2],[0,2],[1,1],[1,0],[1,0],[0,3],[-1,2],[-1,4],[0,2],[2,2],[0,2],[2,1],[2,0],[2,0],[1,2],[0,2],[1,6],[1,3],[1,2],[0,3],[1,3],[2,2],[2,1],[2,4],[1,4],[0,2],[-2,3],[0,3],[0,5]],[[5636,7565],[3,-1],[4,0],[2,4],[4,0],[1,0],[3,0],[3,0],[3,1],[4,3],[2,-1],[1,1],[1,0],[1,4],[4,0],[2,0],[3,-1],[3,2],[2,-5],[1,-1],[1,-1],[4,-4],[0,1],[2,1],[4,-2],[4,-2],[3,-5],[3,2],[5,2],[2,0],[3,0],[2,1],[4,-1],[3,3],[2,2],[1,2],[0,5],[-1,5],[-1,2],[-1,2],[1,2],[1,1],[2,1],[4,-1]],[[5032,5535],[-2,-3],[-1,-3],[-2,-5],[-1,-6],[-6,-2],[-2,0],[-11,-1],[-11,-10],[-6,-4],[-4,-7],[-5,-4],[-4,-5],[-7,-3],[-12,-8],[-4,-3],[-4,-6],[-6,-7],[-3,0],[-4,7],[-4,3],[-9,5],[-7,1],[-3,3],[-1,0]],[[4913,5477],[1,2]],[[4914,5479],[2,0]],[[4916,5479],[2,0],[1,1],[2,1],[1,1],[0,5],[0,4],[1,1],[0,5],[-1,9],[-1,1],[-4,2],[0,2],[-1,2],[-1,5],[0,7],[-2,9],[-2,15],[-1,6],[0,5],[-1,7],[1,2],[0,4],[0,3],[1,8],[4,9],[1,3],[1,3],[0,3],[0,11],[2,13],[1,5],[1,3],[1,5],[0,2],[3,5],[2,1],[0,2],[0,3],[0,1],[1,1],[1,0],[1,3],[-2,16],[-1,16],[0,2],[0,2],[-1,7],[-1,4],[-2,1],[0,3],[2,7],[0,3],[-1,2],[0,2],[1,5],[0,3]],[[4925,5730],[-1,3],[-1,7],[-1,5],[1,3],[0,7],[-1,10],[0,6],[1,2],[-1,3],[-1,2],[0,3],[1,2],[0,2],[-1,1],[-1,3],[-1,5],[0,8],[2,14],[0,1],[2,0],[7,0],[8,0],[9,0],[8,0],[0,1],[2,1],[8,-2],[6,1],[2,-1],[1,-1],[4,1],[2,0],[1,-4],[1,0],[1,2],[1,1],[2,2],[1,3],[1,2],[1,-1],[1,0],[1,2],[0,3],[7,-3]],[[5211,7925],[-1,1],[-1,4],[0,5],[1,8],[1,6],[-1,3],[1,6],[3,7],[1,7],[1,8],[1,5],[3,4],[5,10],[1,1],[-1,5],[-1,0],[-2,2],[-6,2],[-5,1],[-2,1],[-3,4],[-1,0],[-2,-1],[-4,-1],[-2,0],[-1,0],[-1,0],[-1,3],[-1,1],[-2,1],[-1,0],[-1,-2],[-1,-1],[-1,0],[-4,8],[-1,2],[0,1],[-1,3],[-2,3],[-2,1],[-1,-1]],[[5169,8071],[1,1],[1,5],[5,5],[0,5],[0,3],[-2,2],[-2,0],[-1,2],[0,1],[2,3],[-3,2],[-1,3],[-3,3],[0,1]],[[5199,8253],[-1,2],[-3,3],[1,6],[1,5],[3,5],[2,2],[9,1],[11,-1],[4,-8],[-1,-5],[2,-2],[2,1],[0,4],[1,4],[1,1],[3,-3],[1,-2],[0,-7],[2,10],[-1,6],[0,7],[2,3],[1,2],[8,-2],[8,1],[3,-3],[8,-12],[2,-2],[3,-1],[-4,3],[-9,15],[-3,2],[-4,0],[-2,2],[-2,2],[0,2],[0,15],[-2,2],[-2,1],[-1,-1],[-2,0],[-1,3],[1,3],[5,2],[3,2],[0,4],[-2,3],[-2,6],[-3,6],[-1,6]],[[5240,8346],[6,0],[1,0],[8,-3],[2,-2],[2,0],[4,2],[4,0],[1,-1],[2,0]],[[5270,8342],[0,-1],[4,-2],[2,-2],[2,-4],[0,-5],[-2,-4],[-2,-3],[7,1],[1,-2],[1,-2],[4,1],[11,-7],[6,4],[1,0],[2,-6],[-2,-5],[-5,-7],[1,-3],[2,-1],[5,1],[8,-4],[2,1],[6,9],[3,1],[9,2],[1,3],[4,3],[2,4],[6,7],[5,-1],[4,-2],[3,0],[4,-8],[8,-8],[8,1],[2,-8],[2,-9],[2,-3],[2,-2],[6,-2],[1,0]],[[5411,8113],[-1,-1],[0,-1],[-2,0],[-1,1],[-2,1],[1,3],[-1,1],[-1,2],[0,2],[-2,1],[-3,1],[-2,0],[-1,0],[-1,-2],[1,-1],[1,-1],[2,-3],[0,-1],[-5,-2],[-3,-2],[-3,-1],[-2,-2],[-6,-3],[-4,-1],[-1,0],[-1,-5],[-1,-1],[-1,1],[-1,1],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,-4],[-5,-1],[-1,-2],[0,-2],[-1,-1],[-2,1],[-3,1],[-2,-2],[-2,0],[-2,-1],[-3,-2],[-2,-5],[-2,-3],[0,-2],[-2,4],[-1,2],[-1,2],[-1,0],[-1,-1],[0,-2],[1,-3],[2,-2],[0,-2],[1,-3],[1,-3],[3,-2],[3,-3],[1,-3],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,-3],[0,-2],[1,-2],[2,-2],[1,-4],[2,-6],[2,-3],[2,-3],[1,-2],[3,0],[3,-4],[3,-6],[3,-2],[2,-1],[1,-2],[1,-3],[1,-2],[1,-1],[3,0],[4,-5],[2,-3],[1,-3]],[[5383,7993],[0,-1],[0,-4],[0,-4],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-5,3],[0,-1],[-1,0],[-1,-10],[-1,-2],[-1,-1],[-3,-2],[-3,-1],[-1,-1],[-5,-4],[-3,-2],[-1,-3],[0,-2],[2,-5],[3,-6],[0,-5],[-1,-3],[0,-2],[1,0],[1,0],[2,-1],[0,-2],[0,-5],[-1,-4],[0,-2],[-1,0],[-3,2],[-2,2],[0,1],[-1,2],[1,1],[-1,2],[-2,1],[-3,0],[-2,-1],[-1,0],[-1,1],[-2,2],[-3,0],[-1,1],[-1,0],[0,-4],[0,-1],[-13,-2],[-4,-2],[-3,-3],[-2,-1],[-1,-2],[-2,-2],[-2,0],[-1,0],[-1,-1],[-3,0],[-2,0],[0,1],[-2,3],[-1,2],[0,1],[-3,0],[-2,1],[-5,0],[-2,1],[0,-1],[-1,-7],[0,-3],[-2,-3],[-2,-2],[-2,0],[0,2],[1,3],[-1,0],[-2,1],[-1,1],[0,2],[0,1],[-1,1],[-2,2],[-3,3],[-3,1],[-1,-1],[-1,-2],[-3,1],[-1,-1]],[[5380,8316],[1,-4],[-1,-2],[-3,4],[-3,0],[-2,-6],[-1,0],[-5,5],[-1,2],[0,2],[1,6],[-1,2],[2,3],[0,3],[3,3],[2,0],[1,-2],[1,-2],[4,-3],[1,-1],[0,-1],[-2,-3],[0,-1],[0,-2],[3,-3]],[[5394,8287],[-1,0],[-3,-1],[-4,1],[0,4],[0,3],[-1,2],[-1,2],[-1,1],[1,2],[5,-5],[5,-5]],[[5313,8318],[-4,0],[-2,2],[-2,1],[1,3],[1,1],[5,-2],[1,-4],[0,-1]],[[5230,8339],[0,-1],[0,8],[3,9],[1,0],[-1,-2],[0,-2],[-1,-3],[0,-2],[7,-1],[-1,-1],[-7,-1],[-1,-4]],[[5238,8335],[-1,-1],[-3,0],[-1,1],[0,2],[2,1],[1,0],[2,-1],[0,-2]],[[6152,7575],[6,11],[1,6],[0,4],[0,5],[-2,10],[-3,15],[-2,15],[-2,4],[-8,6],[-2,6],[-6,7],[-9,3],[-2,2],[-7,10],[-6,6]],[[6289,7597],[-1,-2],[-1,-4],[-1,-2],[-2,0],[-1,-1],[-1,-2],[0,-3],[0,-2],[1,0],[1,-1],[2,-5],[2,-3],[3,-3],[3,-4],[2,-3],[0,-3],[-1,-4],[-3,-5],[-2,-1],[-1,1],[-1,1],[-3,3],[-3,3],[-2,-1],[-2,-1],[-3,1],[-4,2],[-1,2],[-1,2],[0,3],[-8,5],[-4,1],[-2,-1],[-6,-8]],[[6249,7562],[0,-1],[-5,-1],[1,-2],[-8,-1],[-2,-1],[-7,2],[-2,-1],[-2,-1],[-5,-2],[-3,-1],[-4,-1],[-5,0],[-1,0]],[[4534,5936],[0,5],[-2,11],[2,5],[3,3],[1,-2],[0,-5],[2,-3],[4,-2],[4,1],[2,0],[0,2],[1,4],[4,1],[6,1],[5,2],[4,0],[1,1],[-4,1],[-8,-2],[-8,-1],[-6,-6],[-2,1],[-3,6],[-1,7]],[[5369,5308],[0,-4],[-3,-10],[-1,-7],[0,-8],[1,-7],[1,-4],[0,-5],[0,-4],[-1,-2],[1,-1],[1,-1],[3,2],[4,3],[6,3],[3,3],[6,-2],[3,-1],[2,-3],[2,-12],[1,-1],[1,-5],[1,-6],[1,-3],[-1,-2],[-1,-4],[-1,-4],[-1,-3],[-1,-2],[-1,-2],[-4,-1],[-1,-2],[-1,-5],[-2,-4],[-1,-4],[-1,-5],[0,-7],[0,-9],[-1,-7],[2,-2],[4,-2],[1,-1],[1,-4],[2,-4],[4,-2],[2,-3],[2,-3],[0,-3],[-1,-10],[-1,-10],[0,-8],[0,-7],[1,-11],[0,-6],[-1,-4],[0,-3],[0,-4],[-1,-10],[-1,-2],[-2,-2],[-1,-2],[0,-5],[-1,-6],[-1,-2],[0,-3],[1,-2],[0,-3],[-2,-3],[-1,-3],[-3,-2],[-3,2],[0,2],[0,3],[0,3],[-1,2],[-2,7],[-1,2],[-1,-3],[-2,-5],[-5,-7],[-3,-1],[-5,2],[-5,4],[-2,7],[-1,7],[-2,8],[-2,3],[-3,2],[-1,1],[-3,-5],[-1,-1],[0,-4],[0,-3],[1,-2],[0,-2],[0,-3],[-1,-5],[0,-4],[-10,-5],[-2,2],[-2,2],[-1,-1],[-5,-2],[-1,2],[-2,1],[-1,-1],[0,-2],[1,-12],[0,-4],[-2,-6],[0,-4],[3,-1],[1,-1],[1,-3],[1,-3],[0,-2],[-1,-3],[-1,-3],[1,-3],[2,-3],[3,-3],[1,-2],[0,-2],[-1,-4],[-1,-4],[-1,-3],[0,-2],[2,-3],[-1,-2],[0,-2],[-2,0],[-2,0],[-1,1],[-4,9],[-1,0],[-6,-7],[-1,-3],[-2,-4],[-1,-9]],[[5309,4958],[-3,5],[-2,10],[-3,6],[-6,9],[-1,7],[-7,15],[-10,15],[-6,14],[-1,3],[1,-1],[6,-6],[1,0],[1,2],[-3,3],[-3,3],[-2,2],[-3,0],[-1,2],[-1,5],[-1,3],[-1,4],[-3,8],[-1,3],[-2,4],[1,1],[4,-4],[0,1],[0,3],[-4,3],[-2,1],[-1,2],[1,3],[-3,12],[-3,8],[-1,4],[8,-18],[1,-1],[2,1],[3,2],[-1,2],[-1,3],[-1,-1],[-2,-1],[-1,2],[-1,1],[2,9],[-1,0],[0,-2],[-1,0],[-2,-1],[-4,5],[-3,13],[-1,3],[-1,4],[-1,2],[-4,19],[2,-2],[2,-5],[3,1],[1,3],[2,0],[1,1],[1,3],[5,13],[1,16],[0,10],[-1,10],[1,4],[1,-3],[0,-3],[1,-3],[1,-2],[3,-1],[5,-3],[2,-3],[0,5],[5,4],[-1,1],[-5,-1],[-6,6],[-2,4],[-2,7],[-3,4],[1,3],[4,3],[1,0],[1,-4],[1,-2],[1,1],[0,3],[0,9],[-2,12],[1,2]],[[5266,5243],[1,1],[1,2],[1,0],[2,0],[0,-3],[1,-2],[1,0],[2,-2],[1,1],[1,1],[1,1],[4,0],[4,0],[8,0],[7,-1],[8,0],[5,0],[0,7],[0,11],[0,13],[0,12],[0,11],[0,14]],[[5314,5309],[0,3],[1,2],[0,2],[6,0],[10,-1],[5,1],[1,-1],[6,1],[5,-1],[2,-1],[1,0],[6,-1],[7,1],[3,0],[1,-2],[1,-4]],[[5263,7649],[-1,-8],[1,-3],[1,-1],[0,-2],[1,-23],[0,-2],[-4,-9],[0,-2],[-1,-12],[0,-3],[-1,-3],[-2,-9],[-2,-4],[-5,5],[-3,2],[-2,3],[-1,1],[1,2],[1,3],[0,2],[-3,2],[-1,1],[0,3],[1,3],[-1,4],[-2,-1],[-1,1],[0,2],[1,2],[1,2],[0,3],[-1,2],[-2,2],[-1,4],[2,2],[1,1],[-1,4],[-1,0],[-1,1],[1,1],[1,2],[3,8],[2,3],[5,2],[2,1],[1,3],[1,1],[2,0],[2,-1],[0,-1],[1,1],[1,3],[-1,3],[1,7],[1,5],[1,0],[1,-3],[0,-2],[1,-5],[0,-3]],[[5208,7705],[-2,-1]],[[5204,7703],[-3,-2],[-2,-3],[-9,-12],[-4,-4],[-1,-2],[-1,-4],[-2,-4],[-2,-2],[-5,-1],[-6,-4],[-2,1],[-6,0],[-4,5],[-7,3],[-3,6],[-3,1],[-2,0],[-2,1],[0,2],[0,2],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[1,-2],[-3,0],[-2,1],[-6,3],[-1,1],[-4,1],[-2,2],[-1,3],[-1,1],[-1,1],[-4,-2],[-1,-3],[-2,-3],[-15,-15],[-3,-7],[-3,-9],[0,-5],[1,-14],[3,-8],[1,-1]],[[5047,7632],[0,1],[1,2],[0,1],[-1,2],[-4,2],[-2,0],[-1,-1],[-1,-2]],[[4950,7684],[4,2],[4,7],[4,26],[3,31],[2,6],[3,2],[-3,4],[-1,-2],[0,-2],[-1,-1],[1,28],[2,10],[1,11],[4,-4],[4,-4],[1,-4],[2,-13],[2,-3],[2,-2],[-1,3],[-1,2],[-3,17],[-1,5],[-3,4],[-8,8],[-1,2],[0,3],[3,0],[2,-2],[0,2],[-1,2],[-1,7],[-1,16],[0,3],[0,3],[-3,1],[-2,0],[-2,1],[-11,10],[-4,10],[-4,7],[-1,3],[0,3],[2,7],[-1,4],[-2,1],[-2,2],[2,4],[1,2],[2,1],[3,-1],[3,-2],[2,-1],[-6,6],[-11,-2],[-2,1],[-2,1],[-1,4],[2,2],[1,3],[-1,2],[-2,1],[-4,0],[-2,0],[-1,1],[2,4],[-2,1],[-2,-1],[-3,0],[-3,1],[-2,4],[-2,0],[-1,-1],[-2,2],[-2,0],[-1,0],[-2,2],[-11,5],[-5,1],[-4,-2],[-2,0],[-2,3],[-1,6],[-7,4],[1,2],[3,1],[4,2],[1,2],[-3,3],[-2,1],[-1,1],[-1,2],[2,1],[1,0],[2,-1],[5,1],[-2,3],[-2,0],[-1,1],[-3,0],[-2,-1],[-4,0],[0,3],[-1,2],[1,6],[6,4],[13,5],[5,0],[4,0],[5,4],[2,2],[7,2],[6,-3],[6,-11],[3,-4],[7,7],[10,0],[2,-4],[1,3],[2,4],[1,-2],[1,-2],[11,0],[1,1],[-3,3],[-2,6],[0,23],[-3,6],[-4,10],[-1,6],[-1,2],[1,4],[4,-1],[3,0],[7,2],[3,-2],[-1,-4],[1,-6],[1,-3],[2,-4],[5,1],[5,-2],[7,0],[10,-4],[4,2],[4,4],[8,3],[1,1],[-5,0],[-4,2],[0,3],[0,3],[2,6],[12,9],[8,3],[9,5],[5,5],[3,7],[1,1],[1,1],[-1,3],[0,25],[1,5],[2,4],[3,3],[4,3],[14,4],[3,2]],[[5070,8127],[0,-3],[1,-3],[1,-2],[-1,-3],[1,-2],[2,-4],[2,-3],[2,-2],[1,0],[2,1],[2,2],[3,1],[1,-2],[1,-1],[1,-4],[1,-4],[0,-4],[2,-1],[4,-1],[3,-1],[1,-1],[1,-8],[1,-1],[1,1],[1,2],[1,0],[2,-1],[2,0],[3,-1],[3,-4],[0,-2],[0,-2],[-1,-2],[1,-1],[1,-2],[0,-2],[-1,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[6,0],[5,0],[3,3],[0,2],[1,3],[2,3],[1,1],[2,-1],[-2,-11],[1,-2],[0,-4],[1,-3],[1,0],[3,-1],[1,-1],[2,-2],[2,-2],[2,-1],[1,-1],[1,-2],[2,-4],[2,-2],[1,0],[2,1],[3,0],[2,0]],[[4967,7828],[-1,-5],[-2,4],[-3,4],[0,4],[0,1],[3,-3],[3,-5]],[[6254,4436],[-1,0],[-1,1],[-1,4],[1,4],[0,2],[-1,5],[1,3],[1,-3],[1,0],[2,-3],[-1,-4],[0,-1],[-1,-4],[0,-4]],[[6549,3955],[-4,-2],[-2,1],[-6,4],[-1,4],[-2,9],[0,3],[2,6],[4,2],[4,-1],[2,-1],[2,-7],[2,-7],[0,-8],[-1,-3]],[[3310,6019],[0,-4],[-1,0],[-1,2],[-5,0],[0,3],[0,1],[2,4],[-3,1],[-1,2],[-2,9],[0,2],[1,1],[2,1],[2,-3],[3,-4],[0,-1],[0,-3],[1,-3],[1,-1],[1,-7]],[[3296,6119],[-3,-1],[-2,1],[-1,4],[1,3],[0,4],[0,3],[1,2],[2,-3],[0,-3],[1,-3],[5,-6],[-4,-1]],[[3289,6106],[-2,-3],[-2,1],[-1,5],[-1,14],[1,2],[0,1],[3,-2],[2,-2],[1,-1],[-1,-3],[1,-10],[-1,-2]],[[3299,6099],[-2,0],[-1,4],[2,2],[0,1],[1,-3],[1,-2],[-1,-2]],[[3495,5492],[2,4],[3,15],[2,5],[2,1],[11,-13],[5,-1],[10,-7],[4,-8],[9,-15],[4,-5],[0,-3],[-1,-6],[3,5],[5,-8],[1,-5],[1,-7],[0,-5],[-1,-3],[0,-2],[1,3],[1,2],[0,5],[2,7],[1,0],[1,-4],[3,-16],[0,-4],[1,-5],[0,-2],[0,-2]],[[3565,5418],[-1,-2],[-2,-2],[-1,-4],[-1,-3],[-1,-3],[-2,-3],[0,-2],[-2,-2],[0,-3],[-3,-11],[-1,-5],[-2,-6],[-1,-2],[-2,-3],[-1,-4],[0,-3],[-1,-5],[0,-4],[-1,-2],[-3,-13],[0,-4],[-1,-3],[-2,-5],[-1,-4],[-3,-3],[-2,-3],[-1,-3],[-2,-1],[-1,-1],[-2,2],[-3,0],[-1,0],[-1,1],[-1,4],[-1,3],[-1,-1],[-2,-3],[-2,-1],[-1,0],[-4,2],[-1,1],[0,1],[-1,1],[-1,0],[-1,-2],[-1,-2],[-2,-3],[-4,-4],[-1,-2],[-1,1],[-2,1],[-1,0],[-4,3],[-3,2],[-1,3],[-1,1],[0,1]],[[3440,7877],[-1,0],[-2,1],[1,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1]],[[3437,7882],[-3,-3],[-1,2],[1,1],[1,4],[0,1],[-2,8],[1,1],[0,1],[2,-2],[0,-2],[-1,-5],[1,-3],[1,-2],[0,-1]],[[107,4416],[-1,-1],[0,3],[0,3],[1,1],[1,-2],[-1,-4]],[[54,4359],[-1,0],[-2,0],[-1,4],[1,1],[1,-1],[1,-2],[1,-1],[0,-1]],[[3249,6225],[-3,0]],[[3246,6225],[0,1],[2,1],[1,0],[0,-2]],[[3254,6213],[0,1],[-1,1],[0,1],[2,-1],[0,-1],[-1,-1]],[[793,4224],[-1,0],[-1,1],[0,2],[0,2],[2,-2],[0,-1],[0,-2]],[[838,4173],[0,-1],[-2,1],[0,1],[0,2],[0,2],[3,-1],[-1,-4]],[[794,4212],[-1,0],[-1,0],[0,6],[1,2],[1,-2],[1,-6],[-1,0]],[[852,4165],[4,-3],[1,-4],[-1,-3],[-2,1],[-1,1],[-1,5],[-4,-1],[-3,1],[-2,7],[0,3],[1,2],[3,2],[3,-1],[2,-4],[0,-6]],[[1138,4625],[4,-3],[2,1],[-2,-3],[-4,-2],[-1,-1],[-2,1],[-1,3],[4,4]],[[1137,4612],[-2,-5],[0,5],[1,1],[1,-1]],[[1148,4578],[-1,-1],[0,6],[2,-1],[0,-1],[0,-2],[-1,-1]],[[1109,4671],[-3,-2],[-1,0],[-1,5],[0,3],[1,1],[4,-1],[1,-2],[0,-2],[-1,-2]],[[1109,4641],[-1,-1],[-1,3],[0,2],[2,2],[1,-1],[-1,-5]],[[1089,4155],[0,-1],[-1,0],[-1,1],[0,2],[1,2],[1,2],[1,2],[2,2],[1,1],[0,-1],[-4,-4],[-1,-3],[0,-2],[1,-1]],[[1123,4669],[-1,-1],[-1,3],[1,2],[1,0],[1,0],[1,-2],[0,-1],[-2,-1]],[[1092,4125],[0,-2],[0,1],[-2,2],[-1,2],[3,-3]],[[1088,4136],[0,-1],[-1,1],[-1,3],[-2,3],[0,2],[1,-2],[1,-2],[2,-4]],[[1214,4116],[-1,-2],[0,2],[-2,1],[-1,2],[-1,0],[0,1],[1,0],[2,-2],[1,-1],[1,-1]],[[1195,4127],[0,-1],[-3,6],[2,-1],[1,-4]],[[1152,3982],[0,-1],[0,2],[-1,3],[0,1],[1,-2],[0,-3]],[[1041,4257],[0,-1],[0,5],[1,0],[-1,-4]],[[1012,4226],[1,1],[2,0],[2,-3],[-2,2],[-3,0]],[[1012,4226],[-1,-1],[-3,4],[1,0],[2,-2],[1,-1]],[[971,4271],[0,-3],[-1,2],[-2,4],[0,2],[3,-5]],[[959,4243],[0,-1],[-1,0],[-1,3],[0,3],[-1,3],[-1,2],[0,2],[0,3],[1,-5],[1,-4],[1,-3],[1,-3]],[[9560,4018],[3,-4],[4,2],[4,-6],[11,-17],[3,-4],[3,-1],[1,-3],[2,-4],[2,-3],[1,-3],[0,-3],[1,-2],[4,-6],[2,-5],[3,-3],[1,-3],[2,-1],[2,-3],[3,-3],[7,-8],[5,-9],[2,-5],[3,-5],[4,-3],[3,-5],[2,-9],[-1,-4],[-2,-2],[-2,0],[-1,-1],[-6,6],[-1,1],[-2,0],[-1,1],[0,2],[-4,3],[-3,3],[-1,3],[0,3],[-1,2],[-5,3],[-3,3],[-2,4],[-3,4],[-6,6],[-2,2],[-3,3],[-6,11],[-3,3],[-2,5],[-5,12],[-3,5],[-3,4],[-2,5],[-2,6],[-4,9],[0,4],[0,4],[-1,2],[-2,2],[0,2],[0,4],[0,2],[4,-6]],[[9653,3881],[-1,-2],[-1,0],[-1,1],[0,1],[0,4],[3,-2],[0,-2]],[[9442,4071],[0,-1],[0,9],[0,4],[1,-7],[-1,-5]],[[9666,3949],[1,-1],[3,1],[-1,-10],[-3,-2],[-1,0],[-1,2],[-2,2],[0,3],[-1,8],[3,1],[1,2],[0,-2],[1,-2],[0,-2]],[[9625,3992],[-1,-1],[2,5],[0,4],[0,6],[0,2],[2,0],[1,-2],[-2,-2],[0,-2],[0,-4],[0,-1],[0,-3],[-2,-2]],[[9649,3965],[-1,0],[-2,4],[-4,2],[-2,3],[-1,5],[2,1],[2,6],[-1,2],[-3,0],[0,2],[5,3],[1,-2],[1,-1],[0,-10],[2,-2],[2,-7],[0,-2],[-1,-4]],[[6921,2355],[2,0],[2,0],[6,8],[1,0],[0,-6],[2,-2],[-2,-1],[-4,0],[-1,-3],[4,-4],[2,-1],[1,0],[3,1],[3,2],[3,3],[2,2],[5,0],[2,3],[1,1],[2,0],[2,-1],[1,-3],[1,-4],[0,-4],[-2,-3],[-2,-3],[0,-2],[-1,-2],[-1,0],[-1,1],[-2,3],[-2,2],[-4,0],[-3,-1],[0,-2],[-1,-2],[-1,-1],[-2,1],[0,-1],[1,-3],[2,-3],[3,-2],[2,0],[1,4],[2,0],[3,-1],[1,-3],[-1,-1],[-1,-2],[0,-2],[-3,-2],[-1,0],[-5,1],[-2,2],[-1,2],[-1,1],[-2,-3],[-2,0],[-4,2],[-3,3],[-2,1],[-4,1],[-2,-7],[-2,-3],[-4,0],[-1,0],[-1,3],[0,3],[1,3],[1,3],[0,3],[0,3],[-1,2],[1,4],[-2,3],[1,2],[2,2],[-1,1],[-1,1],[-1,1],[0,3],[0,4],[1,4],[0,4],[2,4],[2,5],[1,2],[2,0],[0,-1],[1,-3],[-1,-1],[1,-1],[1,-6],[-1,-2],[0,-2],[-2,-5],[0,-3],[4,-2]],[[6924,2358],[-2,0],[0,1],[0,3],[-1,2],[-1,2],[1,2],[2,0],[3,0],[1,-4],[-2,-5],[-1,-1]],[[6439,2509],[-2,-1],[-2,2],[-1,3],[3,2],[1,-1],[1,-2],[0,-3]],[[5555,8660],[1,0],[1,0],[3,-2],[0,-1],[2,-1],[0,-1],[-2,-4],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-2],[0,-3],[-7,-1],[-1,1],[-2,8],[0,2],[2,1],[1,0],[0,-4],[2,0],[0,3],[0,2],[0,1],[-1,1],[-1,1],[1,2],[2,1],[1,-3],[2,0]],[[5546,8650],[0,-1],[-1,1],[-1,-1],[-1,-2],[-1,1],[0,2],[1,4],[2,0],[1,-4]],[[5572,8642],[0,-1],[-3,-1],[0,2],[-3,-1],[0,1],[1,1],[2,1],[2,0],[1,-2]],[[5772,8671],[-1,-1],[-3,-2],[-4,0],[-2,-2],[-6,5],[-1,0],[-3,-1],[-4,-3],[-6,-1],[-3,-1],[-2,-2],[-1,4],[1,4],[1,3],[0,2],[-1,0],[-2,-5],[-1,-4],[-2,-3],[-5,-1],[-4,4],[-3,0],[2,-3],[1,-3],[0,-2],[-3,1],[-3,-2],[-2,-3],[-1,0],[-2,4],[-3,-2],[-2,-2],[-6,-1],[-3,-3],[-5,-2],[-3,0],[-7,-3],[-3,-4],[-2,-1],[-2,1],[-9,-2],[-9,-2],[-3,0],[-4,1],[-4,-4],[-4,-4],[-4,-2],[-2,1],[2,2],[3,3],[2,3],[0,3],[-2,1],[-1,0],[-3,3],[-2,7],[-1,0],[-1,-2],[-1,-4],[0,-2],[-2,-1],[-1,-1],[-2,-1],[-5,0],[0,3],[0,1],[1,3],[-1,1],[1,2],[1,0],[1,1],[1,1],[0,1],[-2,1],[0,1],[2,4],[0,2],[-1,0],[-1,-1],[-7,2],[-9,6],[-2,0],[-2,5],[-2,-1],[-3,-3],[-3,3],[-2,1],[-1,2],[0,4],[0,4],[-1,5],[0,6],[0,6],[2,4],[1,2],[1,6],[0,8],[0,3],[0,1],[1,0],[0,2],[-1,0],[0,2],[0,1],[2,0],[0,1],[1,0],[-2,5],[0,2],[-2,6],[-3,6],[-3,4],[1,7],[2,7],[-1,3],[0,4],[-5,4],[0,6],[-1,6],[0,4],[1,3],[1,2],[7,10],[1,4],[5,1],[-2,4],[-1,2],[0,3],[7,2],[3,-1],[6,2],[5,3],[0,2],[-1,2],[-1,4],[1,1],[2,-1],[-1,2],[0,2],[3,-1],[3,5],[0,4],[7,2],[7,8],[3,2],[3,2],[7,8],[3,0],[1,6],[6,7],[2,1],[3,6],[7,8],[4,9],[3,4],[1,3],[2,1],[3,2],[5,2],[6,0],[2,-2],[2,1],[0,3],[-2,2],[1,2],[3,1],[0,3],[-1,2],[-2,3],[1,6],[0,6],[2,7],[-3,4],[-12,7],[-2,-1],[-2,1],[-3,5],[1,5],[1,1],[-1,0],[-2,-2],[-4,-2],[-4,1],[-3,0]],[[5610,8659],[-2,0],[-2,3],[-1,1],[1,0],[0,3],[0,1],[2,-2],[1,-2],[-1,-1],[2,-2],[0,-1]],[[5589,8826],[0,-1],[2,1],[2,2],[1,-1],[0,-3],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-3,3],[-2,4],[4,0],[0,-1],[0,-1]],[[5615,8661],[4,-1],[1,0],[2,-3],[-3,-2],[0,-2],[1,-2],[1,-2],[-3,0],[-2,2],[0,2],[-2,2],[-1,1],[1,2],[0,2],[1,1]],[[5595,8670],[0,-2],[-2,0],[-2,-1],[-1,3],[-1,4],[0,1],[1,1],[1,-2],[4,-4]],[[5606,8648],[-3,-2],[-1,0],[0,4],[2,1],[3,0],[-1,-3]],[[5600,8646],[-2,-1],[-2,2],[1,1],[2,2],[1,-1],[1,-1],[-1,-2]],[[5690,8927],[-4,-2],[-4,1],[0,4],[2,2],[4,1],[5,-2],[1,-1],[-3,-1],[-1,-2]],[[9999,4253],[-4,-8],[-2,-4],[-1,-4],[-4,-5],[-1,-6],[0,-7],[4,7],[4,5],[1,1],[1,0],[0,-2],[-1,-1],[0,-5],[1,-5],[-3,1],[-3,-1],[-3,-2],[-4,-1],[-1,0],[-1,1],[-1,1],[-1,3],[-3,0],[-4,-6],[-2,-5],[-1,0],[-2,1],[-2,-4],[-3,-1],[-1,3],[-1,4],[-1,3],[-3,1],[1,3],[1,2],[0,2],[1,2],[1,-1],[2,-1],[1,2],[2,0],[1,5],[3,3],[4,3],[3,2],[2,0],[2,1],[3,5],[3,3],[2,1],[2,1],[2,-1],[2,1],[4,3]],[[9951,4183],[0,-2],[1,-1],[1,-1],[2,-5],[3,-4],[2,-3],[0,-3],[-1,-3],[1,-5],[1,-5],[1,-9],[-2,-1],[-3,0],[-1,-2],[-1,1],[-2,-1],[-3,-3],[-2,-3],[-3,0],[-3,-1],[-3,0],[-2,2],[-4,3],[-5,1],[-2,2],[-1,3],[-2,6],[0,3],[0,3],[1,1],[2,1],[0,2],[0,2],[1,0],[0,1],[0,3],[0,3],[3,6],[3,4],[5,4],[4,0],[5,3],[2,2],[1,-1],[1,-3]],[[1,4209],[-1,-2],[0,3],[0,3],[0,2],[0,2],[3,5],[1,1],[1,-5],[-1,-5],[-3,-4]],[[9999,4207],[-2,-2],[-1,2],[1,5],[2,5],[0,-4],[0,-6]],[[9957,4091],[0,-3],[-4,-1],[-1,2],[-1,0],[-2,-3],[0,-2],[0,-1],[-1,-1],[-4,-1],[-2,1],[1,2],[2,2],[1,0],[2,2],[1,3],[2,1],[2,1],[2,-1],[2,-1]],[[28,4148],[-1,-1],[0,1],[-1,1],[0,1],[0,2],[2,-2],[0,-2]],[[34,4134],[0,-2],[-1,2],[-1,1],[2,1],[0,-2]],[[49,4150],[-2,-1],[-1,3],[1,2],[1,0],[0,-3],[1,-1]],[[29,4189],[-1,-2],[0,1],[0,3],[1,1],[-2,2],[0,1],[1,1],[1,-2],[1,-1],[0,-1],[0,-2],[-1,-1]],[[41,4080],[-1,-1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1]],[[6,4093],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,2],[0,2],[1,1],[1,-1]],[[9922,4196],[-1,-1],[1,5],[0,1],[1,1],[1,0],[-1,-3],[-1,-3]],[[9983,4183],[-1,-1],[0,8],[1,0],[0,-1],[1,-2],[-1,-4]],[[9981,4141],[-3,4],[0,2],[1,2],[1,1],[1,-2],[0,-5],[0,-2]],[[9966,4163],[-1,-1],[-1,3],[1,4],[2,0],[0,-4],[-1,-2]],[[2,4233],[-2,-2],[0,3],[2,3],[1,0],[-1,-2],[0,-2]],[[1,4254],[-1,-1],[1,2],[1,0],[-1,-1]],[[9999,4231],[0,1],[0,2],[0,-3]],[[9919,4464],[-1,-1],[-2,0],[0,1],[0,1],[2,0],[1,0],[0,-1]],[[9850,3934],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[36,3993],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[6014,6005],[4,3],[4,0],[4,-2],[2,0],[1,1],[1,2],[1,5],[1,2],[2,0],[3,-4],[4,-13],[1,-1],[1,1],[2,10],[2,8],[3,14],[2,8],[1,-2],[2,-4],[2,-2],[2,-2],[1,0],[1,-1],[4,-11],[2,-2],[2,0],[9,3],[5,6],[0,2],[2,0],[1,-2],[1,-3],[1,-3],[2,-1],[5,3],[2,1],[3,-1],[2,-1],[2,0],[4,-3],[4,1],[2,-1],[3,-1],[3,-5],[5,-7],[7,-5],[1,-1],[4,-8],[5,-14],[6,-14],[8,-10],[4,-8],[2,-9],[3,-8],[2,-4],[3,-3],[2,-6],[2,-5],[3,-6]],[[6177,5902],[-3,-8],[-4,-11],[-4,-13],[-1,-3],[-4,-8],[-1,-2],[0,-6],[0,-10],[0,-13],[0,-12],[2,-1],[3,-1],[2,2],[4,1],[4,1],[4,2],[3,2],[2,0],[3,-2],[1,-2],[1,-1],[3,0]],[[5675,8517],[0,2],[4,12],[1,9],[1,1],[0,1],[0,3],[-4,2],[-2,-1],[-1,-3],[-1,-2],[-4,-1],[-3,2],[-6,3],[-2,4],[0,5],[-4,4],[-2,4],[1,4],[3,2],[1,2],[-4,0],[-1,0],[0,2],[-2,6],[2,2],[1,2],[-2,2],[1,2],[1,2],[-1,5],[4,3],[4,2],[8,1],[0,5],[3,0],[6,5],[5,-1],[8,4],[16,0],[2,2],[0,3],[0,2],[3,-1],[5,1],[18,-5],[5,0],[6,-5],[4,-1],[10,0],[15,-2],[3,3],[1,1]],[[5628,8560],[2,-1],[1,0],[2,1],[4,-1],[9,-7],[1,-2],[-5,0],[-1,-3],[-2,-1],[-1,-1],[-3,-3],[-3,-2],[-1,-2],[-7,0],[-3,-1],[-3,-3],[-1,-7],[-2,-4],[-2,-2],[-3,0],[0,1],[0,2],[5,7],[1,2],[-3,1],[-1,3],[-5,3],[0,2],[1,0],[0,1],[2,2],[0,2],[-3,6],[1,1],[3,0],[2,-2],[2,2],[1,1],[2,-1],[2,4],[4,1],[2,2],[2,-1]],[[5636,8572],[-2,-3],[-1,1],[-1,2],[-3,-7],[-3,-1],[-2,2],[0,2],[-2,6],[-3,2],[-4,0],[-3,3],[11,2],[2,3],[2,3],[2,0],[1,-1],[0,-2],[1,-1],[5,-1],[2,-5],[1,-4],[-3,-1]],[[5648,8556],[-2,0],[-6,4],[1,2],[2,2],[5,-2],[0,-4],[0,-2]],[[6072,6221],[8,-33],[4,-20],[3,-21],[2,-30],[2,-16],[3,-8],[3,-15],[2,0],[1,-4],[3,-14],[2,-5],[0,4],[0,3],[0,4],[0,6],[2,3],[3,-5],[2,-3],[0,-7],[1,-3],[3,-8],[3,-3],[4,0],[3,-2],[2,-3],[5,-8],[10,-7],[9,-22],[5,-15],[16,-23],[3,-10],[1,-11],[4,0],[5,-11],[2,-9],[5,-3],[1,5],[2,-5],[1,-6]],[[6197,5916],[-3,-3],[-3,-2],[-1,0],[-1,-3],[-2,-9],[-1,-2],[-1,0],[-6,8],[-2,-2],[0,-1]],[[6113,6110],[1,-5],[-3,2],[-1,1],[2,2],[0,1],[1,-1]],[[6114,6088],[2,-3],[1,1],[0,2],[5,-4],[0,-3],[-3,0],[-3,1],[-3,0],[-3,1],[-1,5],[2,-2],[1,0],[0,1],[-1,3],[-2,1],[0,2],[1,1],[1,1],[-2,4],[3,-1],[1,-2],[1,-2],[0,-6]],[[5242,5400],[1,0],[4,0],[1,-3],[0,-4],[-4,-13],[-1,-6],[-2,-5],[-1,0],[-5,3],[-1,1],[0,3],[0,5],[1,2],[2,1],[1,0],[1,6],[0,5],[1,4],[2,1]],[[5266,5243],[0,2],[-2,3],[-2,0],[-2,1],[2,9],[1,8],[3,7],[1,1],[0,3],[2,10],[3,8],[-1,8],[1,14]],[[5272,5317],[0,-1],[1,-1],[0,-2],[1,-2],[3,-2],[9,0],[5,0],[8,0],[9,0],[6,0]],[[2560,5956],[0,-1],[0,-6],[-1,-3],[-2,-3],[-2,-1],[-5,0],[-6,3],[-5,4],[-3,0],[1,-1],[2,-1],[3,-3],[-1,-1],[-10,6],[-11,11],[-7,2],[-8,3],[-4,7],[-4,3]],[[5698,7007],[2,-7],[4,-1],[15,6],[15,-6],[9,-3],[13,-5],[8,-9],[3,-2],[5,1],[4,-6],[15,-3],[9,-6],[4,-5],[3,-1],[2,0],[4,2],[4,3],[4,5],[10,12],[3,3],[2,-1],[3,0],[1,4],[1,2],[1,3],[2,3],[5,1],[9,5],[-1,-3],[-9,-6],[4,0],[4,2],[5,1],[0,3],[1,4],[1,1],[3,-1],[9,-7],[2,0],[7,4],[1,1],[2,-3],[5,-9],[-2,0],[-5,8],[0,-4],[-3,-7],[4,-3],[3,-1],[1,-4],[1,-3],[3,1],[2,5],[-1,3],[-1,2],[1,0],[2,-2],[6,-9],[2,-2],[2,1],[5,2],[1,0],[7,3],[0,-2],[1,-3],[6,3],[8,0],[6,3],[8,7],[0,1]],[[5969,6882],[-2,-3],[-3,-9],[-3,-30],[-5,-23],[0,-14],[-1,-6],[-2,-7],[-3,-7],[-5,4],[-8,12],[-4,12],[-5,8],[-5,10],[-1,8],[0,4],[-2,12],[-2,5],[-6,13],[-1,6],[-1,3],[-2,4],[-2,16],[-2,10],[-3,-3],[1,-4],[-2,-6],[-2,-7],[1,-5],[5,-9],[1,-3],[1,-8],[0,-11],[1,-4],[3,-8],[1,-5],[1,-4],[1,-4],[4,-7],[5,-13],[4,-10],[4,-4],[1,-4],[1,-12],[-1,-5],[3,-10],[1,-5],[3,-5],[2,-4],[1,-8],[2,-23],[2,-6],[8,-30],[7,-19],[3,-15],[5,-17],[9,-38],[6,-12],[2,-7],[4,-5],[4,-7],[-4,0],[-1,0],[-1,-1],[-1,-5],[0,-4],[0,-19],[1,-10],[4,-19],[3,-5],[1,-4],[2,-2],[9,-7],[5,-13],[11,-17],[2,-5],[0,-1]],[[2768,4989],[1,0],[4,3],[2,3],[2,3],[2,4],[1,4],[2,18],[3,11],[0,6],[-3,7],[0,11],[0,3],[0,3],[-2,-5],[1,-16],[-1,-7],[-2,-2],[-1,2],[0,11],[-1,-2],[-2,-8],[-3,-6],[-1,-2],[0,-2],[-3,2],[-2,3],[-7,13],[-4,2],[-2,5],[-1,2],[0,3],[2,2],[3,4],[0,8],[0,7],[-2,11],[1,14],[0,6],[-3,12],[2,6],[6,4],[2,3],[1,9],[2,6],[3,-2],[2,0],[-3,2],[-3,9],[0,4],[5,11],[2,3],[3,6],[2,10],[1,14],[-1,11],[-1,11],[2,3],[3,1],[3,4],[2,3],[3,0],[4,5],[7,2],[9,6],[2,5],[-1,10]],[[2809,5268],[1,-2],[3,-4],[1,-4],[3,-3],[2,-2],[5,-9],[4,-4],[4,-4],[6,-5],[3,1],[1,-3],[1,-4],[1,-1],[2,-2],[1,-1],[1,-1],[1,-12],[1,-2],[3,-1],[3,-1],[2,0],[3,-3],[2,-2],[3,-1],[1,0],[1,0],[0,1],[2,0],[2,-1],[3,-1],[2,2],[0,2],[0,5],[1,1],[2,3],[1,-1],[6,-5],[1,-2],[1,-4],[3,-6],[3,-3],[4,-2],[4,-5],[5,-4]],[[2774,5013],[-1,-3],[-2,1],[-1,0],[0,3],[1,8],[0,3],[2,3],[2,2],[3,0],[2,-3],[-3,-6],[-1,0],[-1,-1],[-1,-7]],[[2808,5256],[-2,0],[0,2],[1,3],[1,1],[0,-6]],[[2490,5139],[-1,0],[-4,6],[0,5],[2,4],[5,2],[3,-4],[-1,-6],[-2,-5],[-1,-1],[-1,-1]],[[2516,5131],[-3,-2],[-2,1],[0,1],[0,2],[1,3],[2,2],[2,4],[3,3],[1,-1],[0,-1],[0,-1],[-1,-3],[-1,-3],[-2,-5]],[[2460,5157],[-3,-1],[-2,2],[-1,3],[0,5],[0,1],[5,2],[2,-4],[0,-5],[-1,-3]],[[2488,5107],[-1,-1],[-2,3],[1,4],[2,-1],[1,-1],[0,-2],[-1,-2]],[[2464,5185],[2,-3],[1,-11],[6,-11],[0,-6],[0,-3],[0,-1],[3,-5],[2,-5],[-3,-10],[-7,-5],[-6,0],[-2,1],[-1,5],[-1,3],[1,4],[4,5],[5,5],[1,4],[-2,3],[-2,7],[-3,5],[-2,15],[-1,1],[-2,-2],[-1,2],[-1,1],[3,3],[0,3],[4,1],[1,-2],[1,-4]],[[2484,5165],[-1,-2],[-6,2],[-1,3],[1,5],[1,2],[3,-2],[3,-5],[0,-3]],[[3006,6320],[1,1],[1,3],[1,3],[1,2],[2,1],[3,0],[5,-3],[1,0],[4,2],[4,2],[3,-2],[1,-2],[3,-3],[2,-1],[4,0],[1,0],[4,-6],[3,-2],[2,0],[3,2],[1,0],[2,-5],[1,-7],[1,-6],[2,-4],[12,2],[3,-3],[-1,-3],[-2,-1],[-5,0],[-3,0],[0,-3],[0,-2],[3,-1],[3,-1],[3,-2],[3,-1],[4,-1],[4,-1],[6,-5],[6,-11],[2,-3],[1,-3],[0,-4],[-3,-7],[-1,-3],[-2,-1],[-1,-3],[-1,-5],[-1,0],[-1,0],[-2,3],[-1,4],[-3,4],[-4,0],[-6,2],[-3,-1],[-3,0],[-4,1],[-3,0],[-4,-1],[-3,-3],[-2,-2],[-2,-3],[-1,-2],[-8,-2],[-2,3],[-3,4],[-3,0],[-4,-3],[-3,-1],[-1,-1],[-1,-2],[0,-5],[0,-3],[-5,-13],[-2,-9],[-2,-3],[-1,0],[-2,5],[-1,2],[-2,1],[-1,2],[0,4],[0,4],[-1,3],[-2,2]],[[3297,6062],[-2,-1],[-1,10],[-2,7],[0,5],[1,1],[3,-3],[2,-3],[0,-9],[-1,-7]],[[6197,5916],[0,-3],[5,-11],[2,-6],[1,-10],[-1,-6],[-1,-3],[-2,-4],[-6,-8],[-7,-5],[-4,-10],[-3,0],[0,-4],[1,0],[2,1],[4,3],[3,1],[4,0],[3,-1],[3,-4]],[[4168,9997],[26,-3],[14,-4],[3,0],[19,-2],[19,-2],[30,-5],[4,-2],[-3,-1],[-8,-1],[-38,-1],[-70,-2],[-40,-4],[-13,-1],[-1,-5],[5,-1],[9,1],[32,6],[11,1],[22,-1],[29,-2],[11,1],[21,-1],[23,2],[29,4],[7,-8],[11,-9],[8,1],[7,0],[3,-3],[3,-1],[8,1],[25,-3],[17,-4],[6,-2],[3,-3],[2,-2],[-3,-3],[-10,-4],[-14,-5],[-18,-3],[-20,-3],[-159,-7],[-5,-2],[-4,-4],[2,-6],[8,-1],[17,4],[30,3],[22,0],[53,-3],[16,-7],[8,-10],[18,2],[4,2],[3,3],[2,3],[2,4],[2,2],[2,2],[4,1],[11,1],[27,1],[7,0],[5,-5],[1,-3],[0,-4],[0,-4],[-1,-6],[-2,-5],[-8,-10],[-6,-5],[-6,-3],[-13,-9],[-4,-2],[-14,-10],[-4,-5],[0,-3],[2,-1],[4,4],[2,2],[3,2],[20,6],[4,2],[14,8],[8,2],[7,3],[4,2],[21,15],[10,4],[12,0],[2,-7],[13,-1],[6,0],[9,-2],[4,-1],[7,-1],[8,-2],[6,2],[2,1],[6,6],[8,4],[8,6],[3,2],[4,1],[4,1],[11,2],[3,0],[7,0],[27,-1],[15,-1],[21,-4],[14,-2],[7,-2],[10,-4],[7,-5],[4,-1],[0,-1],[-3,-2],[-19,-7],[-7,-4],[-18,-9],[-9,-3],[-10,-1],[-11,0],[-7,-1],[-1,-1],[5,-4],[2,-2],[0,-2],[-5,-4],[-2,0],[-20,-3],[-9,-4],[-13,0],[-9,0],[-12,-4],[5,-4],[4,-1],[14,-4],[0,-2],[-7,-3],[-8,-5],[-11,-3],[-4,0],[-5,0],[-5,0],[-10,-1],[-9,0],[-18,2],[-9,2],[-5,1],[-6,0],[-3,-1],[-9,-6],[-5,-4],[-3,-4],[-1,-4],[0,-5],[1,-3],[2,-1],[2,-1],[4,-1],[9,1],[4,-1],[1,-1],[2,-3],[0,-2],[-2,-4],[-1,-5],[-1,-5],[0,-3],[4,0],[2,0],[2,-1],[2,-2],[1,-2],[2,-3],[-1,-2],[-2,-1],[-6,-2],[-12,-3],[-2,-1],[-1,-2],[0,-3],[-2,-3],[-2,-3],[-2,-1],[-5,-1],[-5,0],[-6,-1],[-14,-9],[-1,-1],[6,-2],[-1,-3],[-6,-10],[-2,-5],[-1,-7],[-3,-5],[-3,-5],[-3,-5],[-4,-7],[1,-4],[4,-4],[6,3],[7,9],[7,3],[8,-1],[7,-1],[9,-4],[8,-2],[6,-3],[3,-2],[3,-3],[0,-2],[-5,-2],[-2,1],[-12,5],[-6,2],[-7,-2],[-7,-2],[6,-10],[7,-5],[11,-2],[6,-2],[5,-3],[3,-1],[5,0],[6,3],[9,0],[4,-1],[3,-3],[1,-4],[0,-7],[-1,-6],[-1,-3],[-4,-5],[-2,-1],[-4,0],[-3,1],[-4,2],[-5,1],[-9,2],[-10,3],[-6,1],[-12,-1],[-12,-2],[-1,-2],[-18,-9],[-4,0],[-5,3],[-7,3],[-4,0],[-6,-4],[-1,-1],[0,-2],[4,-3],[2,0],[2,-1],[8,-1],[4,-1],[3,-10],[5,-6],[3,-1],[2,-1],[6,1],[8,2],[3,-2],[6,-2],[4,0],[4,0],[5,-1],[7,-6],[-3,-7],[4,-6],[7,-6],[2,-2],[0,-4],[0,-2],[1,-3],[1,-2],[1,-4],[1,-6],[-1,-5],[-1,-4],[-3,-3],[-4,-2],[-3,1],[-3,2],[-4,3],[-5,3],[-7,1],[-12,-9],[-5,-1],[-5,-1],[-4,-4],[-7,-2],[-6,1],[-10,5],[4,-4],[5,-3],[3,-2],[3,0],[3,0],[4,2],[8,4],[3,0],[2,0],[1,-1],[2,-4],[2,-6],[0,-5],[-3,-4],[-2,-2],[-2,-1],[0,-1],[5,-1],[7,5],[2,7],[3,7],[6,3],[6,-3],[6,-7],[7,-13],[3,-1],[4,-3],[2,-4],[-1,-5],[-1,-3],[-1,-2],[-1,-2],[-3,0],[-5,-1],[-11,1],[-6,0],[1,-4],[-12,-4],[-13,-2],[-13,3],[-10,5],[3,7],[2,7],[-5,5],[-1,0],[2,-8],[-2,-2],[-5,-4],[-4,-1],[-1,-1],[2,-1],[1,-2],[1,-2],[-1,-2],[-2,-3],[-1,-2],[0,-1],[2,-2],[4,-2],[4,-2],[19,0],[8,-1],[18,-6],[1,-1],[-3,-10],[-2,-9],[-4,-2],[-19,0],[-6,-2],[-9,-4],[-9,-5],[-4,0],[-18,4],[-7,3],[-14,9],[-11,13],[-6,-6],[-3,-2],[-3,-2],[-3,0],[-3,1],[-3,2],[-6,5],[-7,4],[-4,3],[-1,-1],[3,-3],[4,-3],[11,-9],[3,-2],[0,-2],[-7,-2],[-8,-3],[-3,-2],[-6,-6],[-2,-1],[-9,-1],[-3,0],[-7,4],[-10,2],[-6,1],[-8,4],[3,-4],[16,-5],[1,-2],[-3,-3],[-2,-2],[-4,0],[-5,1],[-6,0],[-6,-1],[-2,-2],[1,-1],[1,-1],[2,-2],[2,0],[4,4],[4,0],[8,-1],[9,3],[7,2],[5,0],[17,4],[4,5],[6,2],[13,2],[12,-1],[7,-1],[5,-4],[7,-4],[6,-3],[7,-2],[4,-5],[11,-5],[7,-2],[4,-2],[1,-12],[0,-5],[-2,-13],[-5,-3],[1,-7],[-2,-6],[-5,2],[-6,4],[-14,6],[-13,3],[-5,4],[-6,3],[-8,10],[-5,14],[-3,7],[-4,0],[-6,-2],[-5,-2],[-2,-3],[-17,-4],[-6,-3],[-3,0],[-13,-5],[5,-2],[2,0],[6,1],[3,1],[11,5],[9,1],[4,1],[7,3],[4,1],[1,-1],[0,-1],[4,-17],[-2,-4],[-3,-2],[-8,-3],[-3,-1],[3,-3],[7,2],[5,3],[3,-1],[4,-4],[5,-2],[13,-7],[5,-3],[9,-3],[9,-5],[2,-2],[9,-2],[2,-1],[3,-8],[3,-1],[9,-1],[-2,-3],[-8,-7],[-4,-2],[-2,-2],[1,-2],[0,-5],[2,-7],[2,7],[1,3],[2,1],[2,0],[6,4],[5,-2],[2,-8],[1,-8],[-1,-6],[1,-11],[-1,-3],[2,-3],[1,-12],[2,-4],[-3,-3],[-9,-2],[-3,2],[-9,-1],[0,3],[-1,4],[0,2],[0,2],[-1,12],[-2,-3],[0,-2],[-1,-3],[-1,-13],[-3,-3],[-7,1],[-7,-1],[-3,1],[-13,6],[-5,5],[-5,8],[-2,8],[-1,7],[-4,6],[-5,4],[-6,4],[-7,3],[-6,3],[-5,4],[-6,4],[-6,2],[-10,1],[-13,0],[-9,3],[-2,-1],[-2,-1],[2,-4],[10,-2],[8,0],[10,0],[7,-1],[2,-2],[2,-5],[1,-5],[-2,-5],[-8,-5],[-4,-3],[-12,-5],[-4,-1],[-9,0],[-8,1],[-10,2],[-5,0],[-12,1],[-2,-1],[3,-3],[5,-1],[3,-2],[0,-3],[-1,-5],[-1,-3],[-2,-3],[-8,-4],[-3,-2],[-14,-5],[-1,-1],[3,0],[9,2],[3,0],[14,-4],[12,0],[24,4],[2,0],[1,-1],[2,-1],[1,-2],[-2,-3],[-5,-2],[-8,-2],[-4,-2],[-4,-2],[-6,-5],[-2,-6],[7,-2],[3,3],[4,6],[3,3],[7,3],[10,-2],[7,2],[15,6],[2,0],[22,-3],[20,-7],[10,-2],[14,-2],[25,1],[2,-1],[-1,-2],[-2,-2],[-4,-3],[-5,-2],[-3,0],[-2,-2],[-6,-1],[-2,-1],[2,-5],[-1,0],[-5,0],[-9,-3],[-7,0],[-1,0],[1,-2],[1,-2],[2,-3],[-1,-2],[-3,-1],[-3,-1],[-8,2],[-1,0],[1,-2],[1,-2],[0,-2],[-2,-3],[-5,-1],[-8,-6],[-3,-1],[-8,-1],[-1,-1],[3,-4],[0,-1],[-5,-5],[-8,-2],[-1,-2],[-1,-4],[0,-1],[-2,-2],[-7,-4],[-6,-3],[-2,-1],[-3,-3],[-4,-2],[-5,0],[-4,-1],[-8,-3],[-5,-1],[-16,-5],[-8,-1],[-6,-2],[-14,-5],[-6,-1],[-5,-2],[-5,-1],[-8,1],[-4,0],[-3,0],[-2,-2],[-4,-4],[-4,0],[-11,3],[0,-2],[3,-3],[0,-3],[-6,-2],[-4,-1],[-5,1],[-7,3],[-9,6],[-11,9],[-5,3],[0,-3],[1,-3],[2,-3],[1,-2],[-2,-1],[-1,-1],[-2,0],[3,-5],[2,-4],[0,-4],[-3,-4],[-3,-2],[-2,-1],[-13,-10],[-3,-1],[-2,-1],[-1,-2],[-4,-8],[-2,-3],[-3,-3],[-1,0],[0,-2],[0,-2],[-1,-3],[-2,-5],[-8,-13],[-6,-13],[-2,-4],[-2,-2],[-2,1],[-3,0],[-1,-3],[-1,-4],[-2,-3],[-1,-2],[-13,-9],[-3,-1],[-3,1],[-3,-1],[-7,5],[-1,2],[-5,4],[0,-2],[1,-1],[1,-2],[1,-2],[4,-11],[-3,-2],[-2,-2],[-7,-4],[-6,-7],[-3,-2],[0,5],[0,2],[-4,3],[0,-2],[0,-2],[-3,-8],[-1,-1],[-1,0],[-3,-1],[-3,1],[-3,3],[-1,2],[-5,-5],[-2,0],[0,-4],[-3,-4],[-3,-1],[-4,0],[-2,-2],[-6,2],[-1,5],[4,6],[2,2],[-1,3],[1,4],[8,13],[6,6],[0,1],[-8,1],[-7,2],[-6,1],[-3,0],[4,-4],[7,-4],[-3,-3],[-3,-4],[-3,-9],[-2,-4],[-7,4],[-3,2],[2,-5],[6,-5],[0,-2],[0,-5],[-12,-5],[-12,-1],[-9,-2],[-15,-1],[-6,0],[-1,-2],[15,-9],[2,-2],[-2,-3],[-3,-2],[-5,-6],[-2,-2],[-7,-3],[-11,3],[-6,-2],[-6,1],[0,-3],[2,-3],[2,-7],[3,1],[5,2],[4,-5],[2,-9],[5,-5],[2,-3],[0,-3],[-2,-3],[-6,-5],[-6,-1],[0,-4],[-2,-2],[-6,1],[-2,1],[-3,1],[-11,1],[11,-7],[4,-3],[2,2],[4,0],[5,-1],[-1,-12],[3,-10],[0,-2],[-6,-5],[0,-6],[-4,-1],[-4,0],[0,-6],[-3,-3],[1,-3],[1,-2],[-3,-3],[-2,-5],[-3,-4],[-2,0],[-5,0],[-6,1],[-5,5],[-2,1],[-2,2],[1,-4],[1,-2],[5,-3],[8,-5],[0,-3],[-2,-2],[-6,-9],[-1,0],[-3,-2],[-7,1],[-3,1],[-9,-1],[-3,1],[-2,-1],[2,-2],[5,-2],[6,-3],[9,-1],[-1,-4],[-2,-2],[1,-4],[-1,-3],[0,-3],[-2,-8],[2,-6],[3,-2],[0,-4],[1,-5],[-4,-5],[-3,0],[-5,-1],[-1,-2],[7,-2],[-1,-4],[-2,-5],[-2,-10],[-4,-17],[-2,-17],[-9,-14],[-3,-1],[-1,0],[-5,1],[-6,3],[-6,1],[-3,0],[-1,-2],[3,-2],[5,-1],[3,-2],[7,-2],[2,-3],[2,-3],[0,-2],[0,-2],[1,-12],[-3,-4],[-3,-3],[-8,0],[-1,1],[-8,4],[0,-2],[6,-5],[2,-2],[-1,-1],[-3,0],[-3,-2],[-6,1],[0,3],[2,2],[-3,0],[-3,-1],[-2,0],[-1,0],[-1,1],[-1,6],[1,2],[5,7],[2,4],[-2,1],[-3,-4],[-4,-6],[-1,-4],[-3,0],[-5,2],[-16,8],[1,6],[-1,4],[5,1],[3,2],[3,2],[4,4],[3,7],[-1,1],[-9,-9],[-5,-3],[-3,-1],[-1,2],[-5,3],[-3,1],[-6,2],[-1,1],[-2,1],[-3,9],[3,12],[3,3],[1,4],[1,5],[-1,2],[-2,-1],[0,-2],[0,-2],[-1,-2],[-8,-4],[-8,-4],[-4,-3],[-3,-3],[-1,-2],[-3,0],[-4,-1],[-3,-1],[-4,1],[-3,2],[-3,1],[-4,-2],[-2,0],[0,-1],[2,-4],[-3,-1],[-5,0],[-3,1],[-2,2],[-1,2],[1,3],[8,5],[4,3],[-3,1],[-8,-1],[-1,1],[-5,0],[0,7],[-2,2],[0,1],[-1,2],[-2,1],[-1,1],[-9,1],[-1,5],[-1,4],[-2,5],[-4,2],[-3,2],[2,3],[1,3],[-2,1],[-1,2],[0,2],[-2,4],[0,3],[2,2],[5,4],[2,1],[0,1],[6,2],[-5,2],[-3,0],[-2,0],[-2,-3],[-2,-3],[-8,0],[-1,1],[0,4],[0,4],[3,4],[-4,3],[-3,0],[-4,3],[-3,2],[-3,3],[-3,3],[-1,0],[1,3],[1,3],[0,6],[-2,2],[3,5],[4,6],[7,8],[-8,-4],[-7,-8],[-1,-1],[-1,2],[-2,5],[-2,2],[-1,1],[-4,3],[-2,3],[-2,4],[-3,5],[-5,11],[-8,11],[-2,7],[2,9],[-2,5],[7,3],[11,3],[5,3],[4,0],[6,1],[3,2],[-4,0],[-3,0],[0,1],[1,2],[1,3],[-2,0],[-6,-5],[-10,-4],[-8,-2],[-1,0],[-3,-1],[-1,0],[-1,0],[-3,4],[-1,2],[5,6],[4,9],[5,5],[3,1],[6,0],[2,-1],[-1,4],[0,1],[5,2],[5,1],[4,-1],[2,-3],[3,-8],[5,-2],[-1,3],[-2,5],[-1,7],[-2,3],[-3,1],[-6,-1],[-3,5],[-1,2],[0,3],[-4,7],[-1,3],[-2,5],[-1,0],[1,-6],[2,-4],[3,-9],[1,-4],[-2,-3],[-3,-3],[-3,-2],[-6,-2],[1,5],[1,4],[-3,-1],[-3,-3],[-1,-5],[-2,-4],[-6,-10],[-2,-6],[-2,-3],[-3,0],[-2,2],[-2,5],[0,4],[0,10],[0,5],[-1,7],[-3,15],[-1,6],[-5,3],[-2,4],[-1,3],[1,1],[1,1],[8,4],[6,5],[7,8],[3,3],[10,2],[4,0],[0,1],[-1,1],[-7,0],[-9,-4],[-2,-1],[-4,-5],[-3,-3],[-8,-6],[-6,0],[-6,8],[-6,-2],[-5,1],[-1,1],[-1,10],[3,12],[-3,0],[-1,1],[-2,2],[-1,1],[1,2],[9,5],[14,11],[6,4],[4,2],[3,3],[3,4],[1,2],[2,2],[4,2],[5,2],[7,7],[1,2],[-2,1],[-3,-3],[-7,-5],[-5,-4],[-16,-14],[-8,-5],[-3,-4],[-3,-3],[-4,-2],[-3,-1],[-7,-1],[-4,-2],[-2,1],[-1,7],[1,4],[0,4],[2,6],[2,4],[1,2],[1,2],[5,4],[3,2],[2,4],[12,1],[4,0],[1,1],[1,1],[-1,1],[-3,1],[-10,0],[-9,0],[-4,1],[-2,0],[-3,1],[-4,2],[-5,9],[2,11],[0,5],[7,5],[4,1],[5,4],[7,5],[9,4],[4,1],[4,-1],[13,-5],[7,-1],[5,1],[8,-1],[13,-8],[3,1],[-1,2],[-15,8],[0,2],[4,1],[4,2],[-2,1],[-10,-1],[-3,-2],[-9,-1],[-5,2],[-5,1],[-6,3],[-6,-1],[-3,-1],[-7,-2],[-2,0],[-12,-11],[-5,-2],[-4,1],[3,6],[0,3],[0,3],[1,4],[7,8],[4,8],[1,5],[3,1],[4,-1],[13,-3],[11,-4],[7,-1],[5,0],[3,1],[1,2],[1,2],[0,3],[1,1],[2,1],[3,5],[1,4],[-1,2],[-2,-1],[-5,-1],[0,-1],[-5,-6],[-4,-1],[-11,-2],[-5,0],[-9,3],[-2,1],[0,1],[-11,0],[-4,-1],[-2,1],[1,3],[4,3],[4,12],[4,3],[8,2],[9,0],[14,-9],[5,-1],[4,1],[9,3],[2,1],[3,4],[5,6],[-1,2],[-6,-4],[-3,-1],[-3,0],[3,12],[1,8],[1,2],[8,0],[11,1],[2,2],[0,1],[-4,1],[-2,2],[-4,0],[-5,-2],[-6,0],[0,4],[5,8],[0,3],[2,8],[0,3],[3,4],[7,2],[3,2],[0,2],[-4,6],[1,2],[3,1],[2,2],[-1,0],[-3,1],[-5,-1],[-6,-1],[-4,2],[-4,1],[-2,0],[-7,-4],[-2,0],[-3,1],[-18,3],[-2,1],[-7,6],[-5,3],[-7,4],[-10,3],[-11,2],[-7,2],[-3,3],[-6,6],[-4,5],[-1,2],[2,3],[3,2],[5,2],[9,-1],[4,0],[5,-2],[4,0],[8,0],[8,-1],[5,-1],[6,-3],[17,-10],[7,-4],[4,0],[12,-4],[3,0],[5,2],[0,1],[-1,1],[-6,1],[-7,4],[-4,4],[0,5],[0,3],[1,2],[1,5],[-4,3],[-3,1],[-7,4],[-1,1],[4,0],[3,0],[8,-2],[3,0],[3,0],[0,1],[-4,3],[-5,4],[-12,1],[-8,-1],[-4,2],[-5,2],[-4,1],[-6,-2],[-4,0],[-3,1],[-3,7],[1,3],[2,1],[2,2],[1,3],[4,2],[22,6],[6,4],[-1,1],[-3,-1],[-5,-2],[-3,0],[-13,2],[-2,-1],[-5,-3],[-7,-4],[-3,0],[-5,3],[0,1],[-1,2],[5,3],[1,1],[4,4],[-1,2],[-5,-1],[-1,1],[1,3],[-1,4],[-1,4],[-5,6],[-1,1],[-2,2],[-3,8],[1,2],[3,1],[0,1],[-7,-1],[0,-2],[1,-2],[1,-2],[0,-4],[1,-2],[3,-4],[2,-1],[3,-4],[2,-5],[-1,-3],[-2,-2],[-4,-3],[-2,-2],[0,-3],[-3,-2],[-2,1],[-2,0],[2,-4],[1,-3],[-1,-4],[-4,-3],[-2,0],[-4,-2],[-10,-1],[-4,1],[-7,2],[-7,1],[-4,2],[-4,5],[-2,4],[0,4],[1,3],[3,2],[2,10],[4,9],[10,9],[2,4],[1,1],[0,2],[-1,1],[-12,-12],[-7,-1],[-2,3],[0,4],[2,1],[5,0],[3,2],[-4,4],[-4,1],[-1,1],[4,3],[9,0],[3,2],[3,2],[4,4],[1,3],[0,3],[0,2],[0,3],[0,2],[-1,3],[-2,3],[-6,2],[-2,-3],[-2,-1],[-2,0],[-2,1],[-3,0],[-2,2],[-3,0],[-1,1],[0,3],[0,3],[2,2],[4,1],[3,2],[2,4],[0,3],[-1,4],[-4,4],[-5,-4],[-3,0],[0,2],[-1,2],[-2,3],[-4,1],[-3,2],[0,2],[1,2],[1,2],[2,5],[2,0],[2,0],[-1,4],[-2,4],[-2,2],[0,1],[0,1],[-2,2],[-1,2],[-3,6],[-2,1],[-3,2],[-3,0],[-4,-2],[-8,-1],[-7,-1],[-1,0],[3,2],[5,2],[6,2],[2,3],[0,3],[0,3],[-2,3],[2,1],[6,2],[2,0],[3,2],[-7,5],[-8,4],[-2,1],[-2,2],[-1,3],[-3,3],[-3,4],[-5,3],[-12,5],[-5,4],[-3,5],[-2,3],[-2,2],[-9,4],[-1,2],[9,5],[1,2],[-4,6],[-4,4],[-4,2],[-6,1],[-5,2],[-6,3],[-5,2],[-7,2],[-13,6],[-19,6],[-9,3],[-5,2],[-7,0],[-13,3],[-11,1],[-7,0],[-2,0],[-5,4],[-8,2],[-5,-1],[-5,-4],[-6,-3],[-3,-1],[-5,4],[-2,2],[-3,1],[-2,-1],[-4,-3],[-4,-2],[-6,-3],[-5,-1],[-7,0],[-1,-1],[-3,0],[-3,1],[-3,1],[-3,3],[-2,1],[-2,0],[-5,-1],[-7,-4],[-3,-1],[-2,1],[-3,1],[-6,3],[-3,0],[-3,-2],[1,-2],[6,-6],[5,-4],[-5,-1],[-36,6],[-5,2],[-7,3],[-5,2],[-10,5],[-7,3],[-3,3],[0,1],[2,2],[15,8],[5,1],[12,2],[3,1],[1,1],[-3,1],[-16,0],[-13,1],[-12,3],[-2,1],[-2,1],[-2,3],[1,3],[3,3],[1,2],[1,1],[-15,-8],[-6,-2],[-5,1],[-3,1],[-2,1],[0,2],[1,1],[1,1],[-8,3],[-3,3],[-1,2],[3,3],[3,2],[2,1],[7,1],[27,2],[19,-2],[6,7],[4,2],[13,2],[20,0],[13,-1],[7,-2],[9,-3],[0,1],[-2,3],[0,3],[3,4],[2,3],[-1,2],[-4,3],[-7,4],[-4,0],[-4,0],[-5,-3],[-10,-5],[-5,-1],[-8,0],[-4,0],[-4,1],[-7,3],[-2,1],[-3,-2],[-4,-3],[-3,-2],[-4,-1],[-3,0],[-4,0],[-17,4],[-4,2],[0,4],[-6,3],[-6,0],[0,1],[7,5],[6,2],[-1,0],[-8,0],[-6,-2],[-3,0],[-7,-1],[-8,2],[-3,1],[-4,2],[-4,2],[-11,2],[-3,1],[-2,2],[-10,5],[-5,4],[-1,3],[7,5],[0,1],[-3,2],[-1,1],[1,2],[6,5],[2,2],[10,2],[10,4],[4,1],[4,0],[13,0],[4,1],[4,2],[6,2],[12,3],[27,5],[2,0],[0,1],[-2,3],[-1,1],[6,2],[12,3],[9,2],[5,0],[5,1],[6,2],[4,0],[21,1],[10,-1],[4,0],[3,1],[4,2],[8,6],[3,4],[4,5],[5,9],[3,9],[3,8],[2,5],[1,2],[4,2],[5,2],[8,1],[-1,1],[-3,1],[-3,1],[-3,0],[-6,-2],[-6,-2],[-7,1],[-5,-1],[-4,-2],[-7,-1],[-5,0],[-9,3],[-4,0],[-11,0],[-3,1],[-3,2],[-2,2],[-2,3],[0,4],[4,6],[2,1],[10,7],[7,3],[7,3],[4,1],[5,1],[4,1],[8,5],[8,4],[11,7],[5,2],[17,4],[5,0],[4,-1],[3,-2],[11,-7],[1,0],[-2,3],[-4,8],[1,4],[6,3],[2,1],[7,0],[10,-2],[7,-1],[5,-2],[7,-1],[3,0],[2,1],[3,3],[5,5],[1,7],[0,8],[-2,6],[-1,3],[1,3],[5,4],[5,3],[11,3],[9,1],[6,0],[7,-2],[10,-1],[9,-3],[15,-8],[9,-4],[8,-2],[8,-3],[12,-6],[6,-3],[4,-1],[3,0],[-1,2],[-6,4],[-8,4],[-19,7],[-11,6],[-9,6],[-7,3],[-13,4],[1,1],[15,5],[27,5],[32,3],[10,0],[19,1],[1,2],[4,1],[17,3],[5,0],[8,-1],[8,-3],[4,-2],[5,-5],[2,-6],[0,-18],[0,-4],[1,-1],[3,2],[5,4],[3,2],[3,4],[2,6],[1,4],[-4,5],[-1,7],[3,4],[7,0],[28,-14],[11,-3],[13,-7],[15,1],[13,-1],[7,0],[2,1],[-4,3],[-19,9],[-9,7],[-6,8],[-2,4],[5,1],[22,0],[32,-4],[42,-13],[21,-5],[37,-15],[11,-2],[4,-1],[4,2],[2,2],[0,3],[-2,3],[-1,4],[0,5],[2,9],[6,3],[3,3],[-3,6],[-7,4],[-27,11],[0,1],[6,1],[8,1],[67,-2],[11,-1],[5,-1],[3,-1],[2,-1],[15,1],[-1,3],[-1,2],[-78,4],[-15,2],[-7,0],[-8,-1],[-16,-1],[-7,0],[-9,6],[8,6],[7,0],[14,-3],[8,4],[13,3],[13,1],[28,6],[5,1],[6,-1],[15,-1],[5,-2],[7,-3],[4,-1],[4,0],[6,-2],[9,5],[8,5],[10,4],[13,-2],[8,-3],[7,-3],[11,-1],[18,-11],[4,0],[1,1],[2,2],[1,3],[2,4],[-2,1],[-15,4],[-3,2],[-3,3],[0,2],[3,2],[3,0],[10,0],[3,0],[3,2],[4,2],[3,1],[6,0],[10,-2],[9,0],[3,1],[1,2],[1,1],[1,0],[32,0],[8,1],[6,1],[8,0],[6,0],[8,-2],[9,0],[12,3],[11,1],[64,0],[21,-2]],[[3535,9213],[9,-5],[10,-3],[1,-2],[1,-2],[0,-1],[0,-1],[-1,-1],[1,-2],[2,-1],[0,-2],[-2,-3],[-4,-4],[-18,-7],[-7,-1],[-16,-5],[-5,0],[-1,0],[-3,2],[-4,3],[-2,1],[-1,2],[0,2],[3,0],[5,0],[6,2],[-2,1],[-1,1],[-1,2],[-3,0],[-2,1],[-4,1],[-10,0],[-7,2],[-2,1],[-1,2],[-2,3],[2,11],[2,3],[3,1],[9,-3],[1,1],[-9,4],[-4,3],[-1,2],[0,2],[0,2],[0,2],[1,1],[2,2],[9,4],[10,-1],[18,-5],[2,0],[6,-4],[10,-11]],[[3583,9190],[-5,-2],[-1,0],[-1,2],[-2,7],[0,3],[0,4],[-1,3],[4,4],[3,0],[5,-1],[7,-3],[-1,-1],[-1,-2],[-5,-2],[-1,-6],[0,-2],[0,-2],[-1,-2]],[[3513,9276],[-3,-1],[-8,3],[-1,1],[0,2],[0,1],[2,3],[5,5],[3,0],[2,-2],[2,-4],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,-1]],[[3471,9376],[-4,-3],[-3,-3],[-7,-6],[-1,-1],[-2,1],[-1,2],[-3,0],[-1,2],[-1,1],[-2,0],[-3,0],[-3,0],[-2,3],[4,2],[2,2],[9,1],[3,-1],[2,0],[2,0],[5,2],[1,1],[5,-1],[0,-2]],[[3009,9638],[-10,-1],[-10,2],[-3,2],[0,3],[2,1],[5,1],[4,0],[3,-1],[7,-1],[5,-2],[3,0],[0,-3],[-6,-1]],[[3753,9912],[-5,-1],[-12,6],[-19,6],[-16,4],[-15,11],[-2,3],[3,4],[13,0],[11,2],[27,-7],[14,-5],[5,-5],[-1,-9],[-3,-9]],[[4293,9269],[1,-4],[0,-1],[0,-2],[-1,-1],[-1,0],[3,-3],[0,-1],[1,-1],[-2,-3],[-11,-3],[-3,-1],[-4,-4],[-5,-3],[-1,0],[-2,3],[-7,3],[-14,-2],[-17,-3],[-5,-1],[-3,1],[-1,1],[0,1],[2,5],[0,1],[4,2],[3,4],[-1,4],[1,6],[2,1],[7,-2],[4,0],[7,-1],[10,1],[8,3],[14,7],[3,0],[2,-3],[1,-1],[4,-2],[1,-1]],[[4481,9898],[-3,-2],[-7,1],[-9,5],[-7,4],[0,5],[3,3],[5,0],[7,-4],[7,-6],[4,-6]],[[4510,9782],[-11,-7],[-18,1],[-10,3],[-3,4],[4,5],[12,4],[16,3],[14,-2],[2,-5],[-6,-6]],[[4472,9675],[-4,-2],[-2,6],[-2,8],[-1,9],[6,5],[3,1],[2,-1],[-1,-4],[0,-8],[2,-6],[-3,-8]],[[4483,9564],[-3,-2],[-11,24],[0,9],[1,6],[5,1],[4,-4],[2,-13],[2,-21]],[[4500,9527],[2,-6],[1,-6],[3,-3],[7,0],[3,-6],[-5,-3],[-21,1],[-9,0],[-6,4],[0,7],[1,7],[6,4],[5,-3],[6,2],[7,2]],[[4501,9656],[-6,0],[-2,1],[2,3],[7,9],[3,0],[3,-1],[2,-4],[-3,-4],[-6,-4]],[[3971,8958],[-4,0],[-2,5],[1,5],[5,1],[2,-3],[-1,-5],[-1,-3]],[[3714,8685],[-3,-7],[-3,1],[-2,3],[-3,2],[-3,-1],[0,2],[11,7],[5,2],[0,-3],[-1,-3],[-1,-3]],[[3564,9265],[-3,0],[-9,1],[-1,1],[0,1],[1,3],[4,1],[5,-2],[4,-3],[1,-1],[-2,-1]],[[4816,8744],[-1,-2],[-1,0],[-2,2],[-2,2],[-1,1],[-1,2],[1,0],[2,0],[3,-2],[1,-2],[1,-1]],[[4813,8723],[1,-2],[-1,0],[-2,2],[-3,5],[-1,4],[0,2],[1,0],[0,-2],[3,-1],[1,-1],[0,-2],[1,-2],[0,-3]],[[4800,8763],[2,-2],[1,-2],[-1,-1],[-2,-1],[-2,1],[-3,1],[-2,4],[3,0],[3,1],[1,-1]],[[4815,8768],[0,-8],[-1,0],[-3,2],[-1,1],[0,-1],[0,-2],[3,-6],[0,-1],[0,-1],[-3,2],[-5,6],[-5,11],[6,2],[5,-3],[4,-2]],[[4822,8770],[-2,-4],[-2,0],[0,1],[-1,1],[1,3],[-1,4],[3,-3],[2,-2]],[[5349,8391],[-1,-2],[-1,-1],[-3,-1],[-2,-1],[-2,-3],[-1,-4],[1,-3],[3,-2],[1,-6],[-2,-3],[-7,-2],[0,-7],[0,-6],[0,-4],[-1,-5],[-5,-2],[-3,8],[0,3],[-1,4],[-1,3],[-1,5],[-5,2],[-2,0],[-2,-1],[-1,0],[-3,8],[0,8],[-1,4],[-1,1],[0,2],[-1,2],[-2,1],[-1,4],[2,1],[5,0],[2,0],[1,1],[4,7],[0,2],[0,2],[4,1],[2,-3],[0,-5],[0,-5],[3,-2],[1,0],[1,4],[1,2],[1,1],[0,4],[-1,3],[-1,1],[5,5],[5,4],[3,0],[3,-1],[2,-1],[2,-1],[1,-2],[-2,-4],[-1,-2],[2,-8],[0,-6]],[[5240,8346],[0,5],[-1,3],[-1,5],[2,2],[0,10],[-1,5],[-8,5],[-6,5],[2,18],[0,4],[-2,9],[0,11],[1,16],[2,1],[2,0],[5,-3],[2,0],[2,-3],[1,-1],[2,3],[0,4],[4,7],[3,2],[2,1],[2,-2],[2,-3],[0,6],[2,12],[-4,1],[-4,-1],[-3,-8],[-3,-9],[-5,-1],[-3,-2],[-4,2],[-2,3],[0,3],[1,2],[4,8],[5,7],[5,0],[4,3],[2,0],[8,-1],[4,2],[3,3],[7,14],[4,6],[8,2],[8,7],[2,0],[-3,-5],[-1,-2],[0,-3],[2,-6],[0,-4],[0,-8],[-3,-4],[-2,-9],[-2,-1],[0,-10],[0,-3],[0,-9],[3,-4],[3,-2],[10,0],[1,-1],[1,-3],[-1,-5],[-1,-4],[-3,-3],[-3,-2],[-3,0],[-3,4],[-1,-1],[-2,-2],[-2,-12],[-2,-8],[0,-1],[-2,1],[-2,0],[-3,-2],[1,-1],[2,-3],[-1,-2],[-3,-2],[-2,-3],[-1,-2],[-3,-3],[-2,-4],[1,-4],[0,-4],[1,-5],[-1,-3],[-4,-6],[-1,-4],[3,0],[2,-1],[2,-1],[1,-2],[-1,-2],[1,-6]],[[5295,8387],[1,-3],[2,-7],[2,-7],[-1,-3],[1,-4],[-1,-4],[-4,-4],[-5,0],[-6,2],[-7,4],[-1,3],[-1,1],[-2,7],[0,9],[4,2],[8,4],[2,-1],[2,-2],[2,0],[4,3]],[[5315,8345],[5,-3],[3,0],[3,-1],[0,-3],[0,-5],[-2,-1],[-3,0],[-3,-2],[-12,9],[0,7],[1,2],[5,1],[3,-4]],[[5298,8337],[-2,0],[-1,5],[0,1],[1,3],[2,4],[3,5],[2,6],[1,0],[-1,-6],[-4,-15],[-1,-3]],[[5348,8350],[-1,-1],[-4,1],[-5,-4],[-2,1],[1,2],[0,1],[2,1],[1,2],[0,2],[1,-1],[3,0],[2,-1],[1,-1],[1,-2]],[[5349,8391],[1,0],[1,-2],[0,-3],[-2,-2],[-1,0],[-1,3],[2,2],[0,2]],[[5291,8343],[-2,-1],[-2,2],[-4,4],[0,2],[2,-1],[2,-3],[2,0],[2,-2],[0,-1]],[[5279,8345],[-3,-1],[-1,2],[-3,0],[-1,9],[0,1],[2,-1],[4,-4],[2,-5],[0,-1]],[[5294,8397],[0,-1],[-2,1],[0,4],[0,3],[0,3],[0,2],[3,-5],[1,-2],[-1,-2],[-1,-3]],[[5306,8481],[-1,-1],[-3,2],[1,3],[4,1],[3,0],[-3,-3],[-1,-2]],[[5419,8353],[-1,-1],[-5,2],[-6,4],[1,7],[2,4],[10,-9],[0,-3],[-1,-4]],[[5470,7983],[0,1],[-2,5],[-1,1],[-2,0],[-1,1],[-3,3],[-2,0],[-2,1],[-2,-2],[-1,-2],[-4,0],[-5,1],[-6,6],[-2,0],[-1,0],[-3,2],[-6,4],[-2,1],[-2,-1],[-1,-1],[-1,0],[-1,1],[-2,2],[-2,0],[-1,-1],[0,-9],[-1,-3],[-3,0],[-1,-1],[-2,-5],[0,-4],[-4,1],[-2,1],[-2,-1],[-1,-2],[-5,0],[-4,1],[-2,5],[-2,2],[-2,2],[-1,1]],[[5944,7203],[-1,0],[-2,2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,1],[-2,-2],[0,6],[-1,2],[-1,1],[-2,0],[-2,0],[-2,1],[-3,-2],[-2,-2],[-2,-1],[-2,0],[-2,1],[-2,2],[0,2]],[[5908,7210],[2,-1],[3,1],[1,6],[0,6],[6,-2],[5,-1],[4,0],[4,1],[13,7],[3,4],[2,2],[4,3],[4,2],[-2,-4],[-15,-17],[-1,-6],[1,-3],[2,-5]],[[5944,7203],[1,-1],[0,-3],[-3,-1],[-3,0],[-2,0],[-1,0],[-6,-9],[-2,-4],[-4,-2],[-3,-1],[-2,0],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-2,0],[0,4],[-2,1],[-3,-1],[-1,1],[-6,3],[-1,1],[-1,3],[-3,10],[0,8],[2,-2],[2,2],[3,4],[2,1],[2,0]],[[2726,6518],[8,-3],[6,1],[2,2],[0,-2],[3,-4],[1,0],[4,2],[9,0],[1,-1],[2,-3],[3,-3],[2,-2],[3,0],[3,1],[2,-1],[4,-4],[1,0],[2,1],[0,-3],[4,-5],[4,-10],[3,-4],[2,-3],[3,-3],[2,-1],[8,1],[2,-1],[1,-1],[2,0],[1,0],[15,-15],[5,-8],[3,-4],[6,-6],[3,-1],[1,1],[0,1],[-2,3],[0,2],[2,-1],[4,-7],[2,-3],[2,-2],[2,-2],[-1,-2],[-2,0],[-3,1],[2,-5],[1,-3],[1,0],[2,3],[1,3],[5,-7],[2,-4],[0,-2],[0,-2],[2,2],[1,0],[1,-1],[2,-3],[2,-1],[3,0],[5,-3],[6,-5],[4,-1],[5,0],[3,-3],[1,-4],[-1,-3],[-1,-3],[2,-3],[-4,-1],[-1,-3],[0,-2],[1,-1],[3,1],[3,-1],[5,-1],[3,1],[7,-2],[3,-2],[4,-4],[2,-3],[4,-8],[3,-3],[4,-1],[1,1],[1,-1],[0,-1],[1,-4],[0,-4],[-2,-2],[-1,-3],[-4,0],[-6,-1],[-6,-3],[-3,-3],[-2,-1],[-3,-2],[0,1],[0,2],[-1,3],[-1,-3],[-1,-2],[-2,-1],[-7,-1],[-3,3],[-3,1],[-11,2],[-2,0],[-8,-2],[-7,-1],[-3,-1],[-3,-1],[-6,0],[-7,-2],[-7,-1],[4,13],[10,13],[2,3],[1,3],[0,3],[0,2],[-2,4],[-1,3],[-1,2],[-3,1],[-3,1],[-4,1],[-7,1],[-4,0],[-3,3],[-6,9],[-2,3],[-2,2],[-1,2],[-1,14],[-1,7],[-2,6],[-2,5],[-3,1],[-10,-4],[-2,1],[-3,1],[-15,9],[-6,5],[-3,3],[-2,3],[-2,6],[-3,5],[0,-2],[0,-1],[-13,-1],[-2,1],[-2,2],[-1,2],[0,4],[-1,3],[-1,-3],[0,-4],[-2,-2],[-2,0],[-3,5],[-10,0],[-1,1],[-3,5],[-3,5],[3,2],[6,3],[1,2],[1,2],[-1,3],[-1,2],[-1,2],[-2,1],[-1,0],[-24,1],[-1,-2],[-2,-4],[-4,-4],[-3,-5],[-1,-3],[-1,-2],[-3,-3],[-2,-4],[-3,-2],[-2,1],[-2,0],[-1,-1],[-1,-1],[-6,0],[-1,-1],[-1,-4],[-1,-6],[0,-2],[-3,-1],[-3,-2],[-6,-6],[-2,-1],[1,5],[-1,4],[-1,0],[-2,-1],[-2,-1],[-2,-3],[-2,-1],[-1,2],[0,2],[10,8],[1,0],[1,0],[2,0],[1,2],[-1,11],[0,7],[3,5],[4,9],[2,2],[22,18],[2,1],[14,3],[3,1],[6,5],[7,3],[7,-2]],[[2842,6448],[-1,-2],[-1,3],[-1,0],[-1,1],[-2,3],[-1,3],[2,0],[2,0],[4,-2],[0,-3],[-1,-3]],[[2832,6467],[0,-1],[-2,3],[-2,1],[-1,3],[-1,1],[-1,1],[2,1],[2,0],[1,-3],[1,-4],[1,-2]],[[2816,6483],[3,-1],[2,0],[1,0],[1,0],[2,-5],[-1,0],[-2,0],[-1,0],[-3,1],[-2,1],[-2,1],[0,2],[2,1]],[[2836,6458],[-1,0],[-2,3],[-1,2],[1,2],[0,3],[1,-3],[2,-2],[1,-3],[-1,-2]],[[2706,6426],[-2,-3],[-6,-4],[-3,0],[-3,1],[-2,4],[-1,4],[0,1],[2,-3],[2,-1],[1,1],[1,1],[-3,12],[0,2],[2,7],[7,-2],[1,-1],[1,-4],[1,-3],[2,-9],[0,-3]],[[2796,6489],[0,-1],[-5,4],[-2,4],[-1,1],[1,0],[6,-7],[1,-1]],[[5527,7768],[-1,0],[-3,1],[-2,2],[0,2],[0,1],[-1,3],[-2,3],[-5,1],[-2,1],[-2,1],[-2,0],[-1,0],[-3,0],[-4,1],[-1,-2],[-2,-2],[-2,0],[-3,5],[-1,0],[-3,-2],[-1,0],[-1,0],[-4,2],[-2,1],[-1,-1],[-3,1],[-6,6],[-3,-5],[-7,1],[-3,-3],[-2,-6],[-2,-3],[-2,1],[-2,3],[-3,7],[-2,1],[-2,0],[-2,-1],[-1,-1],[-1,-10],[0,-9],[0,-5],[4,-5],[4,-8],[2,-1],[1,-3],[1,-7],[1,-7],[2,-6],[2,-3],[3,-4],[3,-5],[3,-6],[1,-2],[5,-7],[5,-8],[5,-2],[0,-2],[0,-6],[1,-2],[3,-6],[6,-9],[1,-2],[0,-2],[0,-1],[-2,-1]],[[5488,7657],[-1,1],[-6,9],[-6,6],[-6,10],[-8,4],[-6,5],[-4,-1],[-3,-1],[-3,0],[-2,0],[-1,3],[0,2],[0,3],[-3,5],[-5,4],[-4,6],[-9,15],[-1,5],[1,1],[2,0],[1,1],[2,0],[3,-1],[-2,3],[-3,3],[-8,13],[-3,6],[0,6],[1,9],[-2,6],[-6,9],[-2,4],[-5,2],[-2,0],[-1,-3],[-1,-7],[-4,-9],[-1,-4],[-3,-6],[-1,0],[-2,0],[-3,9],[-3,7],[0,3],[-1,4],[-2,14],[2,2]],[[5462,7660],[5,-1],[4,0],[3,-1],[2,-1],[1,-1],[-3,0],[-3,0],[-3,-1],[-4,1],[-1,1],[-1,1],[0,2]],[[5477,7668],[-2,-1],[-12,1],[-4,1],[-4,3],[-1,1],[4,1],[4,-1],[1,-2],[10,-2],[4,-1]],[[5466,7676],[-5,0],[-3,1],[-2,2],[0,1],[0,3],[5,0],[6,-2],[2,-2],[-1,-1],[-2,-2]],[[5423,7722],[0,-2],[-3,3],[-2,3],[0,1],[5,-5]],[[5411,7774],[-4,-1],[-1,2],[-1,2],[-2,1],[-2,2],[0,1],[2,3],[1,5],[2,-3],[2,-5],[1,-2],[2,-5]],[[5411,7762],[1,-3],[-2,3],[-3,0],[0,2],[0,2],[1,1],[1,0],[1,-2],[1,-3]],[[5421,7737],[0,-1],[-2,3],[-2,2],[-1,2],[-2,3],[-1,4],[-4,6],[0,2],[2,-3],[1,-1],[1,-1],[3,-4],[3,-6],[4,-5],[-1,0],[-1,-1]],[[5421,7714],[1,-1],[0,-1],[-2,1],[-7,12],[-1,3],[3,-3],[6,-11]],[[5426,7717],[2,-5],[-1,1],[-2,3],[-1,3],[2,-2]],[[5402,7756],[0,-2],[-2,3],[-1,5],[-2,8],[0,2],[1,3],[0,2],[-2,7],[2,1],[1,-5],[0,-2],[2,-4],[0,-6],[0,-8],[1,-2],[0,-2]],[[5489,7647],[3,-4],[-11,5],[1,1],[2,0],[5,-2]],[[5514,7628],[-5,5],[-5,6],[-9,10],[-7,2],[-9,8],[-6,2],[2,1],[3,0],[14,-10],[-2,3]],[[5490,7655],[2,1],[2,-1],[1,-3],[2,-3],[4,-3],[2,-3],[5,-6],[1,0],[3,-2]],[[4913,5477],[-4,1],[1,2],[4,-1]],[[4846,5784],[2,-4],[2,-2],[3,0],[3,-1],[2,-3],[1,-7],[2,-5],[0,-6],[3,-4],[2,-1],[2,-5],[3,-3],[3,1],[1,-3],[2,-1],[2,-1],[2,6],[2,2],[6,5],[3,2],[2,1],[6,0],[5,-1],[3,-1],[2,1],[2,-3],[2,-5],[1,-2],[2,-2],[1,-5],[1,-4],[1,-2],[1,-4],[2,0],[1,2],[1,1]],[[4916,5479],[-1,1],[-1,1],[-3,2],[1,9],[-1,0],[-1,-1],[-2,-10],[-1,-2],[-15,5],[-3,5],[-4,1],[-7,-1],[-5,-1],[-2,-3],[14,2],[2,0],[0,-2],[-17,-3],[-7,-2],[-2,0],[-1,4],[-7,0],[-2,-1],[-1,-3],[3,1],[5,0],[1,-2],[-14,-2],[-10,-5],[-4,-3],[-13,-11],[-9,-5],[-2,-2],[-4,-5],[-4,-4],[-6,-6],[-3,-2]],[[2698,5649],[-2,6],[-3,6],[-2,4],[0,9],[-1,4],[-4,5],[-3,3],[-2,-1],[1,-5],[4,-6],[0,-3],[0,-3],[-2,0],[-2,2],[-3,0],[-2,2],[-3,8],[2,7],[1,4],[0,9],[-1,4],[-2,7],[-5,7],[-6,6],[-3,5],[-7,3],[-3,3],[-2,4],[0,4],[1,5],[-2,6],[-9,12],[-5,5],[-1,3],[-1,1],[1,-9],[2,-5],[6,-5],[1,-3],[1,-4],[-3,-7],[-2,-1],[-1,-4],[-1,-1],[-1,2],[-4,11],[-9,5],[-1,3],[-3,10],[-2,10],[1,6],[3,9],[1,4],[0,3],[0,4],[-1,2],[-4,4],[-2,2],[1,2],[4,4],[0,3],[0,1]],[[2676,5813],[1,-3],[1,-3],[0,-5],[4,-15],[3,-9],[6,-16],[2,-3],[5,-12],[1,-3],[1,-3],[5,-3],[1,-3]],[[5665,4558],[-1,-2],[0,-3],[-1,-2],[-2,-2],[-3,1],[-4,1],[-3,1],[-2,0],[-6,-6],[-3,-1],[-7,1],[-4,1],[-3,0],[-2,-2],[-3,-4],[-2,-2],[-1,0],[0,2],[-1,2],[0,6],[-2,7],[1,4],[2,3],[1,5],[-1,8],[0,6],[1,3],[-1,8],[-2,12],[-3,11],[-4,8],[-2,7],[-2,7],[1,18],[1,15],[1,12],[0,20],[-3,14],[-1,14],[2,15],[0,10],[-1,6],[-1,0],[0,1],[-7,1],[-9,0],[-8,0],[-8,1],[-1,2],[-1,3],[0,4],[2,10],[-1,1],[-3,0],[-8,-1],[-5,-2],[-3,-1],[-6,-3],[-4,-6],[-1,-7],[0,-7],[0,-5],[-2,-4],[-1,-6],[-1,-3],[0,-15],[-6,-2],[-5,0],[-2,0],[-6,4],[-3,0],[-2,-2],[-4,-2],[-4,-1],[-4,-5],[-1,0],[-3,2],[-4,0],[-3,-1],[-2,-1],[-1,2],[-4,11],[-5,15],[-2,9],[-1,2],[-2,4],[-2,6],[-1,6],[1,5],[-2,7],[-3,10],[-1,9],[-1,8],[-1,7],[1,6],[-1,5],[-1,3],[-1,3],[-1,2],[-1,3],[-3,4],[-3,2],[-7,0],[-10,0],[-8,0],[-9,-1],[-10,0],[-2,0],[-8,-1],[-5,1],[-2,1],[-4,0],[-6,1],[-3,-1],[-8,0],[-1,0],[-1,-1],[-3,1],[-4,0]],[[5362,4846],[-1,2],[-4,-1],[-2,-2],[-3,-5],[-5,-2],[-2,0],[-1,1],[-2,5],[-3,5],[0,3]],[[5339,4852],[1,1],[4,1],[2,0],[1,2],[0,15],[0,16],[-1,2],[-1,2],[0,1],[2,2],[2,2],[0,1],[3,4],[4,10],[3,2],[3,3],[1,1]],[[5363,4917],[0,2],[1,0],[1,-1],[0,-2],[2,-3],[2,-4],[2,-3],[1,-1],[2,2],[2,3],[3,2],[1,2],[0,4],[0,4],[0,5],[1,1],[1,0],[2,-1],[1,-2],[2,0],[1,2],[2,2],[2,1],[3,3],[2,3],[1,0],[2,-4],[1,-3],[0,-1],[-1,-4],[-2,-4],[2,-6],[0,-5],[0,-3],[1,-2],[1,0],[2,0],[2,-2],[2,1],[2,2],[4,8],[5,14],[5,9],[3,3],[2,5],[2,4],[2,4],[4,2],[3,3],[4,10],[4,17],[1,16],[1,9],[0,33],[-1,11],[1,5],[2,4],[4,9],[3,7],[2,8],[5,19],[1,6],[1,2],[3,5],[4,4],[4,4],[8,13],[6,13],[-1,16],[1,13],[3,16],[1,18],[-1,18],[1,15],[3,18],[1,6],[0,11],[0,17],[4,23],[4,14],[4,15],[2,10],[2,12],[-1,10]],[[5516,5384],[0,12],[1,16],[0,9],[-2,8],[1,5],[3,2],[4,8],[6,22],[7,10],[5,3],[5,0],[4,-2],[1,-3],[4,-5],[6,-7],[5,-8],[3,-9],[2,-4],[2,-2],[4,1],[5,-2],[4,-5],[3,-1],[1,1],[3,-1],[5,-4],[4,2],[6,-1],[14,-7],[1,1],[2,3],[3,14],[2,8],[2,3],[3,5],[3,1],[4,0],[2,-2],[3,-3],[3,0],[3,3],[4,4],[5,2],[4,3],[6,5],[3,2],[3,1],[9,-4],[6,3],[3,-1],[5,3],[1,2],[3,12],[3,3],[6,-2],[3,-2],[9,-4],[13,-5],[4,-1],[1,-1],[2,1],[4,6],[1,1],[2,0],[8,-5]],[[5805,5027],[0,-2],[0,-2],[2,-3],[2,-6],[2,-6],[0,-5],[0,-8],[0,-5],[0,-6],[0,-12],[0,-9],[0,-4],[3,-11],[2,-12],[0,-8]],[[5369,5308],[6,0],[7,0],[7,0],[7,0],[6,0],[2,2],[3,-3],[1,-1],[1,0],[1,-3],[3,1],[0,-1],[0,-3],[3,0],[2,-1],[1,0],[2,2],[1,-1],[2,-2],[2,-2],[2,1],[5,-1],[4,-2],[4,-6],[2,-3],[3,-5],[0,1],[1,2],[1,0],[0,4],[-2,7],[0,6],[0,5],[1,4],[2,2],[0,3],[0,1]],[[5449,5315],[2,7],[2,8],[2,9],[2,8],[0,4],[0,5],[0,6],[0,4],[1,3],[1,9],[1,5],[1,3],[2,1],[2,0],[7,2],[6,2],[2,1],[4,4],[1,0],[2,-1],[7,-5],[2,-2],[1,1],[1,-1],[2,0],[1,1],[2,-1],[1,-3],[1,1],[1,2],[2,2],[5,2],[0,-1],[2,-5],[1,-2]],[[5363,4917],[-1,1],[-2,4],[-3,6],[-1,1],[-1,0],[-2,-3],[-2,-3],[-4,-3],[-4,-2],[0,-2],[-1,-4],[-1,-3],[-3,0],[-1,-4],[-2,-6],[-2,-3]],[[5333,4896],[0,1],[-1,1],[-2,6],[-2,6],[-1,3],[0,1],[0,7],[-3,7],[-8,14],[-1,4],[-6,12]],[[6235,4488],[1,-8],[0,-6],[0,-2],[-2,1],[-2,5],[-4,5],[2,0],[1,0],[1,0],[1,3],[0,1],[1,2],[1,-1]],[[6216,4475],[2,-4],[-6,2],[-1,3],[0,2],[2,0],[3,-3]],[[6207,4498],[-1,0],[-2,3],[-2,1],[-2,5],[1,18],[1,3],[0,1],[1,0],[2,-2],[-1,-12],[2,-8],[1,-6],[0,-3]],[[3142,5254],[-5,-2],[-1,0],[0,1],[0,11],[0,13],[-1,5],[-2,8],[-3,11],[-1,3],[-2,2],[-1,0],[-1,-1],[-2,-2],[-1,-2],[-3,-6],[-3,-8],[-2,-2],[-1,0],[-2,0],[-1,2],[-1,4],[-2,5],[-2,2],[0,-1],[-1,-4],[0,-3],[1,-4],[1,-3],[-2,0],[-6,0],[-6,0],[-7,0],[-5,0],[-6,0],[-2,0],[-2,2],[-2,1],[-1,0],[-2,-2],[-3,0],[-1,-2],[-2,0],[0,-9],[0,-14],[0,-14],[2,1],[1,0],[1,-1],[3,1],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,1],[1,-1],[2,-2],[1,-3],[1,-3],[0,-2],[0,-4],[0,-3],[0,-2],[0,-2],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,-1],[-1,1],[-1,2],[-1,2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[-2,-1],[0,-7],[-1,-15],[0,-10],[0,-9],[1,-4],[3,-6],[3,-4],[2,-4],[2,-2],[1,-2],[1,-2],[0,-3],[1,-2],[-1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[1,-3],[0,-2],[1,-2],[0,-1],[2,-2],[0,-2],[0,-2],[0,-1],[1,-4],[0,-2],[-1,-3],[0,-10],[-1,-12],[-1,-8],[-1,-15],[-2,-17],[-2,-20],[-1,-20],[-2,-19],[-2,-18],[-1,-19],[-1,-12],[-1,-2]],[[2809,5268],[-1,4],[-3,5],[1,8],[5,5],[6,-4],[1,9],[-2,7],[0,15],[1,3],[1,3],[2,3],[1,1],[3,-1],[1,2],[5,-1],[1,1],[1,2],[1,2],[2,3],[1,4],[1,2],[1,-1],[0,2],[1,2],[3,6],[0,2],[-1,5],[1,2],[1,1],[2,1],[1,5],[2,4],[1,6],[2,1],[1,7],[2,6],[5,19],[-2,0],[-1,-3],[-1,1],[-1,1],[0,9],[-1,1],[-2,-7],[-2,7],[0,4],[1,4],[-1,2],[-3,-2],[1,3],[1,3],[1,2],[2,3],[1,5],[0,6],[1,8],[-1,3],[-1,3],[0,14],[0,8],[-1,6],[0,6],[-4,7],[6,8],[2,6],[-3,12],[-3,11],[0,6],[1,-1],[1,0],[1,13],[0,5],[-2,6],[-3,0],[-2,9],[-1,1],[-1,6],[-3,10],[-3,5]],[[2850,5682],[1,-1],[3,-8],[3,-5],[4,-9],[2,-6],[1,-1],[1,-2],[-1,-2],[-1,-1],[0,-4],[1,-2],[1,-1],[2,1],[1,4],[-1,17],[-1,9],[-2,3],[-1,4],[1,2],[2,1],[3,4],[12,17],[4,15],[3,6],[3,4],[4,-1],[4,2],[1,5],[-1,7],[-2,4],[2,6],[1,9],[0,8],[1,5],[0,1],[-2,-3],[-2,-2],[1,3],[3,8],[2,11],[1,5],[5,7],[0,3],[4,5],[6,11],[2,3],[11,-7],[3,0],[-1,-1],[-1,-1],[-3,-1],[0,-5],[1,-4],[2,-1],[1,3],[2,8],[2,8],[1,10],[1,3],[3,1],[4,-2],[3,-2],[3,0],[10,1],[17,24],[7,6],[5,5],[3,9],[1,8],[2,3],[3,0],[1,2],[0,2],[6,6],[3,1],[3,0],[6,-6],[3,-10],[1,-6],[-4,-8],[-1,-3]],[[2830,5330],[-1,-1],[-1,2],[-1,3],[1,2],[1,0],[1,-2],[0,-4]],[[8282,6595],[-1,-4],[-2,1],[0,2],[0,1],[1,2],[0,1],[2,-2],[0,-1]],[[8384,6998],[-2,-2],[-7,5],[-5,5],[-3,7],[-1,3],[4,-1],[3,-2],[1,-4],[1,-1],[1,-2],[7,-5],[1,-1],[0,-2]],[[8396,6910],[0,-1],[-4,3],[-3,1],[-2,2],[0,5],[4,0],[5,-4],[1,-2],[-1,-4]],[[8393,6893],[0,-1],[-3,4],[-1,1],[1,2],[1,0],[2,-4],[0,-2]],[[8399,6906],[0,-3],[-1,0],[-1,5],[1,1],[1,0],[0,-3]],[[8328,6650],[-3,-3],[-1,2],[0,3],[1,3],[-1,3],[1,3],[1,0],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-3],[1,-2],[0,-1]],[[8065,6399],[1,-2],[3,1],[1,-2],[0,-2],[-1,-2],[-3,2],[-2,-1],[-1,0],[-1,2],[1,3],[2,1]],[[8367,6802],[-2,-2],[-1,0],[0,4],[2,4],[1,-1],[0,-2],[0,-3]],[[8153,6497],[1,-2],[-2,4],[-1,0],[-1,1],[-1,3],[2,0],[2,-3],[0,-3]],[[8132,6428],[0,-1],[-1,2],[0,3],[-1,2],[1,2],[1,2],[2,-1],[-1,-3],[0,-1],[-1,-5]],[[8128,6430],[-3,-1],[1,3],[2,2],[0,-4]],[[7809,6426],[0,1],[-1,7],[0,2],[-1,1],[-2,-1],[-5,-5],[-4,-9],[-2,-1],[-2,-1],[-3,1],[-2,1],[-4,-2],[-2,1],[-1,2],[-1,2],[1,4],[0,2],[-2,2],[-2,1],[-1,3],[0,4],[0,4],[1,5],[-1,3],[-3,1],[-6,2],[-6,1],[-2,0],[-2,0],[-1,1],[-1,2],[0,2],[1,5],[1,5],[3,8],[0,5],[0,6],[1,7],[2,6],[1,2],[0,3],[-1,2],[-1,2],[-2,1],[-4,1],[-4,1],[-6,4],[1,6],[0,4],[-1,4],[-1,2],[0,3],[1,6],[-2,6],[-1,3],[-2,3],[0,4],[1,3],[4,7],[0,2],[-1,0],[-1,0],[-5,-3],[-1,2],[-2,1],[-3,0],[-5,0],[-5,-3],[-5,-5],[-2,-3],[-2,-2],[-2,0],[-2,1],[0,4],[4,9],[0,5],[-1,5],[0,4],[-1,3],[-2,1],[-1,2],[0,9],[2,8],[2,2],[2,2],[0,1],[-1,6],[1,4],[1,7],[1,5],[3,-1],[1,2],[2,2],[1,3],[1,4],[1,9],[1,1],[4,-1],[1,1],[2,5],[1,6],[3,2],[2,0],[1,2],[0,4],[-2,5],[-1,4],[0,2],[3,1],[0,3],[0,7],[1,7],[1,9],[0,7],[0,5],[0,5],[-1,10],[-1,8],[0,3],[0,10],[0,9],[-2,1],[-3,3],[-1,1],[-1,-1],[-1,-3],[-1,-3],[-1,1],[-1,2],[-1,4],[-3,18],[0,5],[-1,5],[-1,2],[-1,2],[-2,6],[-2,2],[-2,0],[-1,0],[-1,3],[-1,4],[-1,1],[-2,1],[-1,0],[-1,-3],[-1,-2],[-1,-4],[-2,-6],[-1,-2]],[[7545,6783],[0,2],[0,7],[-1,2],[-3,2],[-4,2],[-1,2],[-1,1],[-2,0],[-2,-3],[-2,-3],[-1,0],[-2,1],[-2,2],[-5,3],[-2,0],[-4,0],[-4,0],[0,1],[0,1],[0,3],[0,3],[0,2],[-4,2],[-3,1],[-3,0],[-3,-1],[-2,-2],[-2,-4],[-2,-1],[-4,-3],[-1,-3],[-3,-6],[-3,-7],[-3,-7],[-2,-7],[-2,-4],[-2,-3],[-2,-9]],[[7160,7228],[-2,-1],[-4,0],[-1,0],[-2,0],[-5,2],[-5,3],[-6,3],[-3,3]],[[7070,7316],[-1,1],[0,1],[-4,5],[0,1],[5,5],[3,1],[2,2],[0,-1],[1,-2],[2,-1],[2,0]],[[8454,7488],[-1,0],[-2,-5],[-4,-4],[-10,-1],[-3,3],[-1,-2],[-1,-4],[-3,-1],[-4,0],[-2,-2],[-1,-2],[-5,-1],[-2,-3],[-4,-1],[-14,-14],[-3,-5],[-3,-7],[-2,-3],[-1,-3],[-2,-1],[-2,-2],[-1,0],[-2,1],[-2,-1],[-1,-2],[1,-4],[-1,-2],[-3,-2],[-6,-1],[-2,-2],[-1,-2],[-1,0],[-1,4],[-1,7],[3,1],[2,1],[11,8],[-1,7],[1,3],[2,4],[2,2],[-1,1],[-7,-1],[-5,0],[-2,0],[1,4],[-1,4],[0,2],[4,4],[1,1],[2,0],[0,3],[-2,4],[2,5],[8,6],[1,5],[4,6],[5,12],[1,3],[1,6],[1,2],[-3,3],[-1,5],[-8,9],[-1,8],[-1,-6],[-1,-2],[-4,0],[-2,2],[-10,2],[-2,-4],[-3,-5],[-2,-4],[-2,-2],[-2,-3],[-8,-21],[-3,-2],[-15,-12],[-7,-5],[-5,-9],[-2,-5],[-2,-6],[-1,-8],[-5,-11],[-2,-2],[-2,-1],[-2,0],[-2,-1],[-4,1],[-4,-3],[-5,-3],[-4,7],[-3,2],[-5,-2],[-2,-3],[-5,-16],[-1,-10],[0,-3],[2,-12],[3,-7],[7,-7],[15,-5],[3,2],[4,0],[4,-5],[2,-8],[1,-5],[0,-2],[1,-2],[0,-3],[-1,-2],[-2,-1],[-1,-9],[0,-9],[2,-3],[3,-4],[5,-4],[4,-1],[9,2],[3,6],[0,2],[0,3],[8,8],[4,8],[-1,2],[0,1],[0,1],[3,0],[10,8],[9,-6],[4,-7],[5,-2],[3,-3],[4,-4],[5,0],[4,0],[1,2],[2,2],[1,0],[2,-4],[4,-3],[5,0],[3,1],[2,-1],[-3,-5],[0,-8],[-2,-2],[-2,-4],[2,-3],[1,-1],[-1,-3],[-1,-2],[-3,-5],[-2,0],[-1,1],[-1,2],[0,3],[-1,2],[-4,0],[-3,0],[-7,-7],[-7,-6],[-8,-5],[-2,-2],[-2,-1],[-3,2],[-2,0],[0,-2],[2,-4],[1,-3],[-1,-2],[-1,-1],[-2,2],[-2,-3],[-1,-4],[0,-10],[-1,-2],[-3,-1],[-4,-4],[-1,2],[0,2],[0,4],[0,2],[-2,0],[-2,-1],[-2,-3],[-1,-2],[3,-6],[2,0],[0,-2],[-1,-2],[-5,-5],[-1,-3],[-1,-4],[-2,-2],[-1,-3],[-2,-2],[-2,-1],[-3,-7],[-3,-7],[-2,-3],[-2,-11],[-4,-6],[-2,-9],[1,-6],[4,0],[3,-2],[4,-7],[5,-5],[5,-3],[7,-7],[2,-3],[1,-6],[3,-18],[2,-8],[1,-5],[3,-8],[3,-15],[4,-13],[0,-9],[-1,-5],[0,-6],[4,-5],[8,-7],[2,-2],[1,-3],[0,-9],[2,-3],[1,-2],[5,-4],[2,-3],[2,-6],[1,-5],[0,-6],[-3,0],[-2,0],[-9,9],[-2,0],[-4,-1],[-4,1],[-6,10],[-3,3],[-4,1],[-9,-8],[-3,1],[0,-1],[-2,-2],[5,-1],[4,2],[4,4],[6,-2],[1,-3],[1,-6],[5,-4],[3,-2],[4,-5],[4,-9],[9,-9],[3,-9],[1,-6],[2,-8],[-3,-3],[-3,-1],[-4,-1],[-3,-3],[-3,-5],[-9,-8],[-1,-5],[-2,-5],[-2,-2],[-5,2],[-5,0],[-6,-6],[-1,-2],[1,0],[1,1],[2,-1],[4,3],[4,-10],[8,2],[7,8],[2,0],[3,-1],[2,-3],[7,-14],[4,-2],[4,-3],[2,-1],[1,-1],[-5,-5],[-6,-11],[-3,-3],[-2,-3],[5,2],[4,5],[2,1],[1,-1],[1,-7],[-1,-20],[-2,0],[-2,5],[-2,2],[-2,-1],[-3,0],[-1,-3],[-1,-3],[2,-1],[4,-6],[0,-4],[-1,-2],[-3,1],[4,-4],[-1,-5],[-1,-2],[-2,-1],[-2,-5],[2,-6],[2,-9],[0,-5],[-3,2],[-4,-5],[-2,-1],[-2,7],[-2,-1],[-1,-2],[-2,-7],[-2,-7],[-2,-2],[-2,0],[-2,0],[1,-2],[2,-2],[0,-3],[-4,-8],[-1,-3],[0,-3],[-2,-4],[1,-5],[-1,-4],[-2,-6],[-1,-3],[-3,-6],[-3,-3],[-4,-13],[-1,-6],[0,-6],[-1,-2],[-2,-3],[-3,2],[0,4],[-1,0],[0,3],[-1,3],[1,3],[-1,-1],[-1,-3],[-2,-3],[-1,1],[-2,3],[0,-4],[1,-3],[0,-3],[3,-1],[2,-3],[1,-6],[0,-2],[1,-2],[0,-2],[-2,-2],[-3,-4],[-4,-6],[-2,-4],[-3,-1],[-2,1],[-2,2],[-2,1],[3,-8],[2,-2],[2,1],[3,3],[3,0],[1,-5],[-1,-6],[-2,-7],[0,-6],[2,-9],[0,-3],[-1,-1],[-2,2],[-3,3],[-2,-1],[-2,2],[-2,-1],[-1,-2],[0,-4],[2,-3],[2,-4],[-2,-1],[-6,1],[-1,-1],[-2,-5],[1,-7],[-1,-4],[-2,-1],[-3,-4],[-2,-1],[0,-1],[1,-2],[1,-2],[-2,-7],[-2,-2],[-5,1],[-3,-2],[-3,3],[-3,0],[-2,-4],[0,-4],[-2,-1],[-1,1],[-1,-1],[0,-2],[1,-2],[4,-1],[0,-3],[1,-5],[-5,-8],[-2,-5],[-2,0],[-2,-4],[-1,-6],[-2,1],[-3,-1],[-1,-3],[1,-1],[0,-2],[-1,-7],[-2,-2],[0,3],[-1,4],[-1,1],[-2,-4],[-2,-3],[-2,-1],[-1,2],[-3,2],[-2,-11],[-3,-4],[-1,-2],[-2,0],[1,-2],[1,-2],[-1,-3],[-2,-1],[-2,-2],[0,-10],[-2,-4],[-3,0],[-3,2],[0,-1],[-1,-2],[-1,-2],[-3,0],[-6,-5],[-2,1],[-4,2],[-2,-2],[-1,-3],[-1,-3],[-3,0],[-2,4],[-3,2],[-3,-2],[-2,-4],[-3,-2],[0,-2],[-1,-2],[-3,1],[-1,7],[-2,0],[-2,-3],[0,-2],[-1,-2],[0,-6],[-1,0],[-2,4],[-3,0],[-2,-3]],[[8173,6482],[-1,1],[-1,1],[-2,0],[0,-1],[-2,-1],[-1,-1],[0,-1]],[[8166,6480],[-2,2],[-3,4],[-2,7],[-3,4],[-1,4],[0,6],[-1,3],[1,3],[0,3],[-2,-2],[-3,-2],[1,-4],[-1,-3],[-3,-2],[0,-1],[1,-1],[2,-5],[1,-3],[1,-2],[1,-6],[0,-11],[1,-3],[0,-3],[-1,-4]],[[8153,6464],[0,1],[-1,0],[-1,-2],[0,-1]],[[8151,6462],[-1,-1],[-2,-1],[-1,-1],[-2,-3],[-3,-1],[-1,8],[-3,-5],[0,-11],[-1,-1],[-2,-2],[-2,4],[-3,-3],[-1,-2],[-1,-2],[-1,-3],[-3,2],[-2,4],[1,3],[-1,2],[-1,1],[-1,0],[1,-4],[0,-6],[-1,-2],[-1,-2],[-3,1],[-2,3],[-3,2],[-2,0],[-1,-4],[-1,-3],[-2,-1],[-1,1],[-2,-4],[-1,-3],[-2,-2],[-6,-2],[-2,-3],[-2,1],[-2,-1],[-2,0],[-1,2],[-1,0],[-1,-5],[-3,-2],[-3,0],[-3,-7],[-2,-3],[-2,-1],[-2,2],[0,5],[-1,1],[0,-5],[-1,-5],[-1,-2],[-4,-5],[-1,-6],[1,-5],[5,-1],[1,-3],[-1,-2],[-1,-2],[-1,-3],[6,-8],[0,-4],[-1,-2],[-1,-4],[-3,-3],[-6,-2],[-5,2],[-2,4],[1,3],[1,-1],[1,0],[0,3],[-1,1],[-2,2],[-2,7],[0,5],[-1,4],[-1,3],[-1,2],[-1,3],[2,7],[-1,5],[2,6],[1,6],[4,2],[0,6],[-3,0],[-2,5],[0,-2],[-2,0],[-3,8],[0,1],[-2,0],[1,-9],[-3,-3],[-2,-1],[-4,-1],[-2,-1],[-2,1],[1,2],[1,4],[-1,2],[-2,2],[-3,0],[-2,1],[-2,0],[-1,1],[-2,4],[-2,3],[0,2],[0,3],[0,2],[-3,0],[0,-4],[0,-5],[1,-4],[-1,-2],[-1,-2],[-2,4],[-1,2],[-1,-1],[0,-4],[-2,-3],[-3,0],[-2,-2],[-3,-1]],[[8079,6335],[2,-2],[1,-4],[0,-7],[1,-6],[-3,-4],[-2,-2],[-5,-15],[-1,-5],[-1,-2],[-1,-2],[0,-2],[-1,-8],[-1,-9],[-1,-3],[-1,-3],[-2,-2],[-1,0],[-1,-1],[-3,-5],[-3,-3],[1,-2],[0,-2],[-2,-1],[-1,0],[-4,-2],[-2,-2],[-2,-6],[-3,-1],[-2,-1],[-3,4],[-2,1],[-4,1],[-4,3],[-3,3],[-6,6],[-1,13],[-1,6],[0,3],[0,20],[1,3],[0,2],[3,4],[3,4],[5,8],[3,3],[3,5],[-2,0],[-1,0],[1,5],[1,2],[2,1],[3,-1],[2,1],[2,4],[2,1],[7,-1],[5,1],[3,4],[1,0],[3,-1],[2,-4],[0,3],[0,2],[5,-5],[0,6],[0,1],[2,3],[1,0],[1,-5],[2,-2],[2,-2]],[[8153,6464],[-1,-1],[0,-1],[-1,0]],[[8173,6482],[1,-2],[0,-3],[1,-1],[0,-2],[-1,-2],[0,-2],[-1,-2],[-3,3],[-3,2],[-3,-1],[-1,2],[0,2],[3,3],[0,1]],[[8172,6463],[0,-1],[-2,4],[0,2],[1,0],[2,-2],[0,-2],[-1,-1]],[[8166,6463],[-4,0],[0,1],[-1,1],[2,2],[4,3],[-1,-3],[0,-4]],[[1964,3621],[-4,-2],[0,3],[1,3],[3,-2],[2,0],[-2,-2]],[[2811,3246],[-5,-1],[0,1],[1,2],[1,2],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,0]],[[3069,4175],[0,-6],[4,-9],[1,-10],[1,-1],[5,-5],[1,-1],[-1,-2],[-1,-2],[1,-4],[0,-4],[1,-5],[0,-4],[1,-7],[0,-6],[2,-9],[0,-5],[0,-4],[1,-3],[2,-4],[3,-4],[2,-5],[2,-3],[2,-2],[1,-3],[1,-1],[0,-2],[-1,-1],[-2,-6],[-4,-9],[0,-1],[4,-7],[0,-3],[0,-3],[-1,-5],[-3,-1],[-1,-1],[0,-2],[1,-2],[-1,-4],[2,-5],[-1,-2],[-1,-2],[0,-2],[0,-3],[1,-2],[6,-6],[0,-1],[0,-1],[-2,-5],[0,-2],[0,-5],[0,-3],[1,-1],[3,-2],[3,-10],[3,-10],[0,-9],[1,-9],[2,-8],[0,-6],[1,-7],[2,-5],[1,-8],[0,-5],[0,-3],[2,-9],[0,-8],[0,-5],[0,-4],[0,-2],[2,-2],[1,-1],[2,-1],[3,0],[7,2],[4,2]],[[3133,3869],[5,-10],[-2,-14],[-4,-22],[-2,-18],[-1,-2],[0,-4],[-6,-4],[-9,-8],[-5,-3],[-5,-5],[-2,-4],[-1,-2],[-2,-3],[-1,-3],[-1,-2],[-2,-7],[0,-5],[1,-3],[2,-2],[0,-4],[1,-3],[1,-2],[0,-2],[-1,-2],[-2,-1],[-1,-4],[-2,-10],[0,-4],[2,-10],[1,-5],[2,-19],[0,-5],[-3,-7],[-1,-4],[-1,-4],[0,-3],[1,-3],[2,-8],[3,-8],[2,-4],[0,-6],[-1,-3],[-1,-1],[-4,-2],[-2,-3],[-1,-1],[-2,3],[-2,-1],[-2,-2],[-1,-6],[-1,-9],[-2,-2],[-1,-7],[-2,-10],[-1,-6],[-1,-5],[-2,-2],[-2,-6],[-2,-5],[-1,-2],[-2,-1],[-1,-4],[-3,-8],[-1,-8],[-1,-5],[-1,-8],[-2,-15],[0,-4],[-2,-2],[-3,-6],[0,-4],[1,-13],[1,-13],[0,-6],[0,-8],[-1,-4],[1,-1],[2,-1],[1,-3],[-2,-2],[0,-4],[-2,-5],[-4,-2],[-1,2],[0,-1],[0,-4],[-1,-3],[-2,-10],[-2,-9],[0,-4],[0,-3],[1,-2],[0,-2],[-1,-2],[-2,-4],[-1,0],[-1,1],[-1,-2],[0,-5],[-1,-5],[0,-6],[-1,-9],[2,-5],[2,-10],[1,-3],[2,0],[1,-2],[1,-2],[-1,-4],[-2,-1],[0,-2],[1,-6],[0,-5],[2,-2],[1,-7],[2,-3],[-1,-8],[2,-11],[2,-3],[1,-1],[-1,-5],[-1,-3],[-1,-6],[1,-5],[2,-4],[1,0],[2,2],[2,-2],[1,-4],[0,-3],[-1,-4],[-1,-8],[-1,-7],[1,-12],[0,-8],[0,-6],[0,-2],[0,-2],[-2,-1],[-2,0],[-1,-2],[0,-3],[-2,-4],[-1,-4],[-2,-5],[-1,-5],[-1,-4],[0,-2],[0,-5],[-1,-4],[-2,-13],[-2,-2],[-1,-2],[-1,-1],[0,-4],[2,-1],[1,-3],[0,-4],[1,-4],[0,-5],[1,-10],[-1,-6],[0,-5],[0,-5],[-1,-4],[-3,-1],[-2,-4],[-3,-4],[0,-3],[-1,-3],[-1,-1],[-1,0],[-2,-1],[-2,-4],[-2,-2],[-1,-3],[1,-4],[-2,-2],[-1,-5],[-1,-4],[1,-5],[1,-8],[0,-3],[-1,-6],[-1,-5],[1,-5],[1,-3],[-1,-7],[-1,-4],[1,-7],[2,-9],[2,-7],[0,-9],[0,-7],[1,-8],[2,-3],[2,-2],[-1,-4],[-1,-4],[-1,-3],[-4,-2],[-3,-3],[-2,-2],[-2,-2],[-2,-3],[0,-3],[0,-12],[0,-5],[-1,-7],[-2,-5],[0,-2],[0,-2],[-1,-2],[-1,-1],[-2,1],[-1,0],[-1,-2],[1,-4],[1,-8],[1,-3],[0,-2],[-1,-5],[-1,-5],[-2,0],[-1,-1],[0,-3],[0,-4],[2,-3],[1,-2],[0,-3],[-2,-1],[-1,-2],[-1,-5],[-1,-6],[-1,-4],[-1,-6],[2,-6],[0,-5],[0,-18],[0,-5],[0,-10],[0,-3],[-1,-2],[2,-7],[2,-12],[1,-4],[-1,-3],[-2,-3],[-3,-1],[-1,2],[-1,-1],[-1,-3],[-1,-3],[-1,-3],[2,-3],[0,-7],[-1,-2],[-1,-4],[0,-4],[1,-7],[-1,-12],[1,-5],[1,-2],[5,-2],[3,-2],[1,-4],[-1,-3],[-1,-2],[-3,-1],[0,-5],[2,-5],[3,-4],[0,-3],[0,-4],[-2,-2],[3,-6],[1,-4],[-1,-4],[-2,-4],[-1,-3],[0,-2],[-1,-5],[0,-6],[1,-3],[13,-2],[4,-1],[1,-3],[0,-4],[-2,-4],[-1,-7],[-2,-2],[-3,2],[-3,0],[-3,-1],[-3,0],[-5,-1],[-3,1],[0,-3],[1,-5],[6,-1],[6,-3],[2,-5],[2,-6],[3,-3],[0,-6],[-4,-6],[-1,-5],[-5,-1],[-1,-2],[-1,-9],[1,-6],[2,-3],[1,-4],[-2,-5],[-3,-4],[-2,-3],[1,-3],[2,-4],[0,-2],[1,-6],[1,-9],[0,-4],[-1,-3],[-3,-5],[-3,-3],[0,-6],[0,-4],[0,-4],[1,-4],[0,-3],[-2,-1],[-1,-1],[-2,-6],[-5,-6],[-2,-3],[0,-4],[-2,-7],[-1,-5],[-2,-6],[1,-5],[2,-3],[3,-5],[1,-7],[-2,-8],[-4,-3],[-2,-3],[-1,-3],[0,-8],[0,-4],[0,-4],[-1,-2],[-3,-4],[-3,-2],[-4,-2],[-1,-2],[-2,-5],[-1,-5],[0,-7],[-9,-1],[-1,-4],[-1,-4],[-1,-7],[2,-7],[1,-5],[-2,-7],[1,-7],[0,-5],[3,-6],[2,-8],[1,-6],[1,-5],[1,-3],[1,-4],[1,-4],[2,-1],[3,4],[3,2],[1,1],[5,0],[4,2],[1,0],[2,-2],[1,-2],[1,-7],[1,-7],[-1,-7],[-1,-1],[-1,-2],[1,-5],[1,-3],[0,-4],[-1,-10],[-2,-4],[2,-4],[2,-5],[4,-3],[3,-4],[2,-3],[0,-5],[1,-2],[6,0],[8,0],[13,0],[13,0],[14,-1],[7,-4],[6,-3],[8,0],[8,-4],[6,-3],[3,-1],[4,-1],[0,-4]],[[3098,2168],[-15,6],[-4,3],[-3,0],[-5,-4],[-4,-9],[-1,-2],[-4,-2],[-4,-1],[-14,-8],[-4,-1],[-4,-2],[-3,-4],[-1,-7],[0,-4],[-3,-15],[-1,-8],[0,-5],[1,-7],[-1,-12],[-3,-2],[-6,-4],[-4,3],[-7,2],[-5,4],[-6,4],[-2,2],[-6,9],[0,3],[-1,4],[3,5],[2,1],[4,0],[4,1],[3,-3],[0,-7],[-1,-3],[-1,-2],[1,-2],[2,2],[2,15],[9,7],[3,4],[3,7],[1,2],[0,2],[-2,2],[-4,3],[-14,-14],[-7,-4],[-4,-4],[-5,-7],[-1,-2],[-1,-4],[-1,-5],[-4,2],[-8,7],[-2,3],[2,4],[2,3],[0,11],[1,3],[2,3],[2,4],[2,1],[1,-2],[0,-2],[5,0],[9,9],[4,0],[5,-2],[6,2],[1,1],[1,2],[-4,2],[-4,2],[-12,1],[-2,-1],[-3,-5],[-2,1],[0,2],[-4,2],[-2,0],[-2,-3],[0,-3],[-1,-4],[-3,-4],[-3,-7],[0,-5],[0,-2],[-1,-2],[-1,-1],[-6,1],[-4,5],[-1,4],[-4,3],[8,5],[3,3],[3,6],[2,4],[-2,3],[-1,0],[0,-5],[-2,-3],[-4,1],[-5,-5],[-4,2],[-5,-2],[-3,3],[-1,3],[1,4],[-1,6],[-1,2],[-2,0],[-1,3],[-1,7],[-1,2],[-1,3],[1,1],[2,-1],[1,-2],[3,0],[6,-5],[2,1],[1,1],[1,4],[0,3],[1,0],[3,-4],[2,0],[4,-1],[2,1],[3,1],[5,5],[3,5],[2,1],[1,-1],[1,-1],[0,-4],[2,-3],[1,-3],[1,-3],[-1,-3],[-3,-4],[0,-2],[1,-1],[1,0],[2,2],[1,3],[0,2],[0,2],[0,3],[-2,8],[-1,1],[0,4],[3,3],[1,2],[0,5],[-1,4],[-6,7],[-11,8],[-1,-1],[-1,-1],[1,-1],[2,-1],[9,-6],[2,-4],[2,-1],[1,-2],[0,-4],[-9,-3],[-7,-8],[-6,-4],[-3,1],[-2,5],[-2,6],[-3,3],[-2,0],[-1,1],[-1,2],[-2,-2],[-5,4],[-1,2],[3,6],[4,-2],[1,16],[-1,4],[-5,4],[-3,-1],[-3,1],[-2,2],[-3,1],[-2,1],[-3,2],[-3,2],[-5,10],[-2,6],[-1,6],[7,0],[4,1],[1,2],[-1,5],[-2,4],[1,3],[2,3],[2,-1],[6,-6],[1,-4],[4,-13],[1,-1],[0,-1],[8,-7],[2,0],[-1,6],[2,8],[3,2],[1,0],[0,2],[-2,3],[1,4],[-1,1],[-2,-3],[-4,-14],[-2,-3],[-4,7],[-1,4],[-1,2],[0,7],[7,-2],[-3,3],[-7,4],[-2,2],[-2,1],[-2,5],[-3,4],[5,7],[3,5],[9,-2],[1,1],[-1,4],[-2,-1],[-3,2],[-4,7],[0,4],[1,7],[2,1],[3,1],[4,-2],[2,-1],[2,0],[-2,5],[-3,2],[-2,4],[0,4],[1,3],[0,3],[1,5],[0,4],[1,2],[1,1],[0,1],[-3,0],[-1,-5],[0,-4],[-2,-4],[-1,-4],[0,-5],[-1,-5],[-2,2],[-2,2],[0,1],[0,3],[0,18],[0,14],[1,12],[3,4],[1,2],[2,-1],[2,0],[1,2],[-5,2],[-2,-1],[-2,-2],[-4,1],[-1,6],[-2,5],[0,7],[0,9],[5,-1],[4,-2],[11,1],[9,-9],[4,1],[0,2],[-3,2],[-2,5],[-1,1],[-1,3],[0,4],[-2,13],[-1,0],[-1,-5],[-2,-7],[-2,-4],[-4,-1],[-4,-1],[-4,1],[0,3],[0,4],[-2,2],[-4,1],[-1,1],[-1,3],[2,5],[1,3],[2,-1],[2,-1],[2,-4],[2,0],[3,3],[0,2],[-1,1],[-2,0],[-2,2],[-4,6],[2,6],[5,7],[2,1],[-2,6],[2,6],[-2,5],[-3,6],[-3,1],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,0],[-5,2],[-3,3],[-6,4],[0,2],[-1,4],[2,7],[-1,0],[-4,-5],[-5,-3],[-4,-1],[-2,-2],[0,-2],[1,-1],[2,0],[2,-6],[-1,-3],[-1,-2],[-1,0],[-4,5],[-2,5],[0,4],[1,5],[6,7],[2,4],[4,3],[4,8],[4,4],[-2,4],[-2,5],[1,7],[8,3],[4,-1],[4,0],[3,2],[2,1],[4,2],[1,3],[1,2],[0,2],[-1,2],[0,6],[0,2],[2,3],[2,1],[1,-1],[3,-2],[-1,-3],[-1,-4],[-2,-15],[-1,-4],[-2,-3],[2,-6],[-2,-4],[-8,-5],[-1,0],[1,-2],[4,0],[4,1],[3,4],[1,6],[2,12],[1,2],[3,0],[1,-3],[-1,-6],[0,-6],[-3,-17],[-3,-8],[0,-1],[0,-3],[2,1],[3,3],[1,5],[2,7],[-1,5],[1,3],[0,10],[1,5],[0,7],[-1,3],[-3,1],[-1,5],[2,8],[5,0],[4,6],[4,2],[1,-1],[7,-5],[1,0],[0,2],[-1,1],[-3,2],[-4,6],[-6,1],[1,8],[1,7],[3,1],[5,2],[9,11],[2,8],[0,9],[-4,3],[-5,6],[-4,3],[-3,4],[0,6],[1,9],[4,2],[2,14],[-3,10],[1,7],[4,7],[0,4],[1,5],[4,1],[0,2],[-1,5],[-2,6],[0,8],[2,10],[4,-1],[-2,6],[-2,6],[0,3],[2,2],[2,1],[2,-3],[4,-10],[0,2],[-1,11],[-1,13],[-4,-2],[-3,1],[-1,2],[-1,3],[1,3],[1,3],[2,3],[5,2],[4,4],[1,9],[-1,-1],[-2,-8],[-3,-3],[-2,1],[-2,1],[-4,7],[-2,1],[-2,1],[-1,-2],[-5,-12],[-2,-2],[-8,-1],[-2,2],[-3,1],[0,3],[1,3],[2,2],[0,2],[-3,0],[-3,3],[-1,5],[0,7],[-3,11],[0,9],[1,6],[4,23],[1,12],[2,10],[0,7],[6,6],[2,4],[4,21],[1,12],[-7,34],[-2,7],[0,8],[2,14],[0,5],[-1,7],[-4,12],[-1,7],[2,6],[-1,8],[0,5],[1,4],[7,-2],[2,1],[2,2],[1,7],[1,10],[0,4],[1,7],[3,2],[1,6],[2,9],[3,23],[3,6],[2,7],[-1,10],[2,5],[2,3],[1,6],[2,6],[4,8],[2,10],[3,18],[1,11],[1,8],[0,7],[2,9],[2,7],[0,4],[5,9],[1,8],[-2,5],[0,8],[-1,12],[3,4],[1,3],[4,18],[0,7],[1,8],[-3,11],[0,23],[-2,18],[-2,18],[0,11],[-1,13],[0,8],[1,17],[7,11],[2,12],[1,16],[-1,12],[0,5],[-4,9],[-1,16],[1,4],[3,4],[2,6],[1,10],[2,7],[1,18],[2,15],[1,5],[3,6],[1,2],[0,5],[0,11],[0,7],[3,13],[0,7],[3,14],[0,10],[1,5],[0,6],[1,14],[-2,7],[-1,5],[3,13],[1,4],[3,6],[1,7],[0,5],[-3,23],[-1,7],[1,18],[1,12],[0,9],[0,5],[1,6],[2,7],[0,5],[0,3],[-3,2],[-2,7],[0,6],[0,5],[1,7],[3,1],[1,4],[2,7],[2,17],[1,21],[1,12],[1,6],[1,13],[1,9],[0,8],[0,6],[-3,30],[0,11],[1,18],[0,24],[0,6],[-1,5],[-1,7],[-1,13],[-2,25],[0,14],[-1,11],[-1,3]],[[3093,2151],[0,-17],[0,-17],[0,-16],[0,-15],[0,-16],[0,-15],[0,-18],[0,-13]],[[3093,2024],[-5,0],[-1,-1],[-6,-2],[-11,3],[-3,3],[-4,5],[-1,-1],[-4,-3],[-4,-1],[-3,-1],[-2,3],[-1,1],[-1,0],[-6,-3],[-6,3],[-5,2],[-9,1],[-6,5],[-11,-1],[-2,2],[0,4],[0,2],[3,1],[0,2],[3,0],[3,-3],[1,0],[2,3],[3,2],[1,1],[5,-3],[2,0],[3,1],[1,2],[0,2],[1,1],[3,1],[3,-2],[0,-3],[0,-4],[3,-2],[5,1],[3,-2],[0,3],[-5,6],[-2,4],[-2,2],[-4,2],[-3,7],[0,7],[0,6],[6,4],[-1,5],[2,4],[2,2],[3,-15],[2,-6],[-3,-1],[-4,0],[2,-7],[5,-3],[3,-5],[0,-5],[3,-1],[5,0],[3,0],[2,3],[1,1],[4,-3],[5,-3],[2,-2],[1,-3],[0,-3],[0,-1],[2,0],[2,5],[1,1],[2,1],[1,1],[0,1],[-4,3],[-22,14],[-3,6],[-2,7],[0,7],[2,3],[4,2],[7,4],[8,6],[1,1],[0,4],[-1,3],[-3,1],[-4,1],[-3,0],[-3,-1],[-6,-4],[-4,0],[-3,2],[-2,5],[-2,5],[0,4],[1,3],[1,4],[2,1],[2,0],[2,1],[1,1],[1,1],[-1,2],[0,1],[-3,2],[-1,3],[-2,3],[1,1],[4,1],[3,-3],[2,-3],[2,0],[1,2],[4,4],[3,4],[2,6],[2,3],[3,1],[6,-11],[3,0],[8,5],[1,0],[2,-3],[1,-1]],[[3136,2007],[0,-2],[-2,-3],[-3,-2],[-2,-1],[-2,1],[0,2],[-1,2],[0,1],[-1,1],[-1,0],[-2,-1],[-3,-3],[-1,-1],[-1,0],[-8,2],[-1,1],[-1,2],[-1,6],[-4,5],[6,3],[6,0],[13,-2],[5,-1],[4,-5],[0,-3],[0,-2]],[[2950,2687],[-2,-1],[-2,0],[-2,1],[-3,-1],[-3,3],[-4,3],[-1,2],[1,2],[2,6],[2,12],[2,17],[-1,6],[0,3],[0,3],[1,3],[-1,3],[1,3],[2,7],[1,2],[0,4],[1,6],[-1,2],[-1,2],[1,1],[9,-4],[5,-1],[1,-5],[1,-4],[0,-7],[1,-1],[0,-5],[-3,-2],[0,-5],[2,-4],[-2,-2],[-3,-1],[0,-1],[-2,-1],[-2,-2],[1,-2],[2,-5],[3,-3],[2,-5],[2,-5],[-1,-4],[-2,-4],[-3,-3],[-3,-2],[0,-8],[-1,-3]],[[2931,2353],[0,-8],[0,-9],[-1,-10],[0,-3],[1,0],[0,-1],[0,-6],[-1,-4],[-1,-3],[-1,-5],[0,-1],[-3,0],[-2,0],[-1,5],[-1,3],[0,4],[-1,5],[0,2],[0,3],[2,2],[0,5],[0,1],[2,2],[0,1],[0,1],[-1,0],[-6,-6],[0,-2],[0,-2],[0,-9],[-2,-5],[0,-1],[-3,0],[-4,1],[-4,4],[-3,-1],[0,5],[1,5],[5,-1],[1,8],[-2,2],[-2,3],[-1,3],[1,2],[3,3],[2,0],[1,-1],[4,1],[0,5],[-3,2],[0,4],[4,3],[3,4],[0,4],[-1,4],[0,1],[2,4],[3,1],[1,0],[3,-2],[2,0],[1,-1],[0,-3],[2,-19]],[[2902,2375],[-3,0],[-1,10],[4,15],[0,6],[-1,4],[0,4],[0,1],[5,3],[1,-3],[2,-9],[3,-11],[0,-12],[-2,-3],[-6,-2],[-2,-3]],[[2933,2136],[1,-1],[1,0],[2,-1],[5,-1],[6,-3],[2,-2],[4,-1],[3,-3],[1,-1],[1,0],[4,-6],[1,-1],[4,-5],[-2,-1],[-5,3],[-3,0],[-2,0],[0,1],[-1,3],[0,1],[-5,6],[-2,1],[-4,2],[-4,-1],[-2,1],[-1,-1],[-4,5],[-4,5],[-2,5],[-3,3],[0,2],[2,0],[2,-2],[3,-3],[1,-2],[1,-3]],[[2928,2385],[0,-1],[-4,0],[-5,-1],[-3,5],[-1,9],[-1,1],[-1,5],[-1,3],[-2,5],[0,5],[0,2],[1,3],[6,3],[2,4],[2,0],[0,-10],[1,-3],[2,-3],[0,-1],[1,-4],[1,-5],[1,-3],[0,-1],[0,-2],[0,-1],[1,-10]],[[2974,2103],[1,-4],[0,-1],[2,1],[4,0],[5,-2],[1,0],[2,-6],[2,-2],[3,-4],[-3,-4],[-1,-4],[-1,-2],[-1,-2],[-1,-1],[-3,-3],[-3,0],[-3,-1],[-2,-2],[-1,1],[-2,1],[0,2],[2,1],[3,5],[0,5],[-3,1],[-1,-1],[-2,1],[-1,1],[-1,-2],[0,-3],[0,-3],[0,-1],[-1,-1],[-3,1],[-3,3],[0,1],[1,5],[0,2],[-1,4],[-1,0],[-3,0],[-3,4],[-2,5],[-6,2],[5,6],[7,1],[2,-3],[7,-2],[0,3],[0,2],[1,1],[1,-1],[2,0],[0,-1],[1,-3]],[[2921,2210],[1,-11],[1,-2],[3,-1],[3,-5],[0,-2],[-3,-10],[-1,-6],[-5,0],[-1,7],[-3,6],[-1,8],[-2,7],[3,4],[3,-1],[0,5],[2,1]],[[3063,2021],[23,-6],[7,3],[5,0],[2,-5],[-6,-5],[0,-1],[1,-1],[5,-1],[2,-2],[1,-2],[-1,-3],[0,-1],[0,-2],[5,-4],[1,-3],[1,-2],[1,-4],[-1,-3],[0,-1],[-3,1],[-2,2],[-1,5],[-2,1],[-3,1],[-4,2],[-2,0],[-3,1],[-2,-1],[-1,1],[-1,4],[0,1],[1,5],[0,1],[-1,0],[-2,-1],[-1,1],[-3,3],[-1,1],[-3,0],[-2,-6],[0,-1],[2,-4],[3,-6],[-2,-1],[-4,2],[-2,1],[-1,4],[-3,1],[-1,1],[0,2],[0,4],[-1,0],[-4,-1],[-1,1],[0,2],[-1,1],[-2,1],[0,1],[1,1],[0,3],[1,11],[5,-2]],[[3017,2072],[6,-5],[4,0],[0,-3],[0,-5],[0,-2],[-2,-2],[-1,-3],[-1,0],[-4,3],[-5,5],[-2,-1],[-3,1],[-3,0],[-1,-2],[-4,-2],[-1,6],[-3,5],[-3,4],[2,6],[2,1],[2,2],[8,-2],[4,-2],[5,-4]],[[2952,2627],[-2,-3],[-2,0],[-3,-3],[-1,-3],[0,-3],[2,-3],[2,-5],[1,-6],[1,-6],[0,-2],[0,-3],[2,-5],[0,-2],[0,-2],[-1,-5],[-2,0],[0,-3],[-1,-1],[-4,0],[-3,1],[1,8],[-3,3],[-2,4],[-3,9],[-1,3],[-3,6],[-3,6],[4,4],[-1,6],[2,2],[4,3],[2,-2],[2,1],[1,1],[0,7],[1,5],[2,2],[3,1],[1,-3],[1,-3],[3,-2],[0,-3],[0,-4]],[[2972,2605],[-6,-5],[-4,1],[-1,4],[-1,3],[0,5],[1,2],[2,4],[1,2],[1,3],[-1,3],[1,2],[1,1],[5,-3],[5,-4],[2,-3],[0,-2],[-2,-5],[-1,-5],[-3,-3]],[[2915,2598],[0,-1],[-1,1],[-1,1],[-1,3],[1,2],[1,0],[1,-2],[0,-3],[0,-1]],[[2908,2265],[-1,-6],[-2,1],[-1,1],[0,4],[-1,1],[1,4],[1,3],[-1,3],[4,0],[4,-1],[1,-1],[-1,-2],[-1,-2],[-3,-1],[0,-4]],[[2913,2371],[0,-5],[-4,-8],[-3,-6],[-4,-4],[-2,0],[-1,2],[1,3],[3,4],[-1,4],[-1,1],[-1,1],[-1,2],[0,3],[1,2],[2,1],[1,-1],[5,2],[2,2],[3,1],[0,-4]],[[2913,2428],[-2,0],[0,2],[-2,3],[2,2],[3,2],[2,0],[2,-2],[1,-2],[-4,-2],[-1,-2],[-1,-1]],[[2926,2672],[-4,-1],[-1,2],[0,1],[0,1],[2,1],[2,-1],[0,-1],[1,-1],[0,-1]],[[2954,2602],[-1,-1],[0,1],[-1,2],[0,2],[-2,4],[-1,2],[0,2],[1,3],[2,1],[1,0],[1,-4],[0,-4],[1,-4],[-1,-4]],[[2929,2230],[0,-5],[-1,-1],[-1,-1],[-2,2],[-1,0],[-2,-2],[-2,-2],[-2,1],[-3,1],[-3,-7],[-1,-2],[-3,-4],[0,4],[2,6],[1,4],[1,6],[3,-2],[5,2],[4,4],[3,0],[1,-2],[1,-2]],[[2915,2287],[-6,-5],[-1,2],[-4,0],[1,5],[0,4],[1,1],[0,3],[1,6],[4,-2],[2,0],[3,-2],[4,-1],[1,-5],[-4,-3],[-2,-3]],[[2949,2659],[1,-2],[-1,-1],[-2,1],[-1,-3],[-1,0],[-4,2],[-1,1],[0,3],[5,0],[3,2],[1,0],[0,-3]],[[2940,2193],[-1,-1],[-3,1],[-1,2],[-3,3],[0,3],[-1,3],[1,1],[2,-2],[1,-1],[1,-2],[4,-4],[1,-1],[0,-1],[-1,-1]],[[2935,2552],[-1,-3],[-3,-1],[-2,2],[-4,-1],[0,5],[1,3],[3,5],[1,5],[0,8],[2,2],[0,3],[4,2],[0,-6],[-1,-11],[2,-6],[1,-2],[-1,-3],[-2,-2]],[[3123,1965],[-1,0],[-3,1],[-4,0],[0,1],[0,1],[2,1],[6,-1],[1,0],[0,-1],[-1,-2]],[[3153,2003],[-2,-3],[-2,0],[0,1],[0,1],[0,2],[1,1],[1,1],[1,0],[2,-1],[-1,-2]],[[3028,2023],[1,-3],[0,-1],[4,-1],[1,1],[4,0],[2,1],[4,1],[3,-9],[0,-3],[-3,-3],[-2,0],[-2,1],[0,1],[0,1],[-1,2],[-2,0],[-1,-1],[-1,0],[-2,1],[-4,1],[-1,2],[0,1],[0,1],[-4,3],[-2,3],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,1],[1,3],[1,0],[5,0],[3,-1],[3,-1]],[[3131,1971],[-1,0],[-1,1],[-1,1],[-5,1],[0,1],[0,2],[1,1],[2,1],[2,3],[1,-1],[1,-5],[1,-3],[0,-1],[0,-1]],[[5634,5813],[-1,0],[-2,2],[-3,1],[-4,1],[-3,-2],[-4,-4],[-1,-2],[-1,-2],[-2,1],[-1,-1],[-1,-2],[-1,-3],[-6,-5],[-1,-2],[-1,-2],[0,-2],[1,-5],[0,-5],[-1,-5],[-2,-2],[-1,-2],[-2,0],[0,-2],[-3,-10],[-1,-2],[-3,0],[-7,-15],[-1,-4],[-2,-6],[-4,-7],[-2,-4],[-1,-1],[0,-1],[-2,-2],[-6,-8],[-8,0],[-3,-3],[-4,-2],[-4,-2],[-2,1],[-6,-1],[-7,0],[-2,-1],[-3,-3],[-2,-3],[0,-1],[0,-1],[0,-1],[5,-7],[1,-4],[-1,-3],[-1,0],[0,-1],[0,-2],[-3,-8],[-5,-9],[-2,-3],[-1,-2],[-1,-6],[-1,-1],[-3,-1],[-6,0],[-8,-2],[-5,-1],[-3,1],[-5,-5],[-1,-1],[-1,0],[-4,-4],[-4,-7],[-1,-1],[-5,-3],[-2,-4],[-1,0],[-4,6],[-2,5],[-1,5],[0,2],[-1,0],[-1,-3],[-2,-3],[-1,-5],[-5,-3],[-4,-3],[-2,-4],[-3,-2],[-4,1],[-4,2],[-3,0]],[[5429,5617],[2,5],[0,3],[1,4],[-1,3],[-1,2],[-2,2],[-2,13],[-3,14],[-4,14],[-4,8],[-3,6],[-1,0],[-1,2],[-1,1],[-6,10],[-5,10],[-2,5],[-3,7],[-3,7],[-2,3],[0,6],[2,5],[2,7],[3,5],[4,0],[6,-2],[7,-1],[6,2],[2,1],[1,0],[4,-2],[6,0],[3,3],[-3,5],[-4,7],[-3,8],[-2,8],[-2,9],[-2,12],[-1,15],[0,8],[1,7],[2,10],[-2,5],[1,5],[-1,7],[0,4],[-3,11],[0,1],[-2,8],[-1,14],[-3,9],[-3,4],[-3,5],[0,9],[-2,3],[-6,3],[-5,0]],[[5449,5315],[-1,5],[-1,6],[0,8],[0,1],[-1,3],[0,6],[0,3],[0,4],[-2,4],[-1,3],[-1,3],[-1,1],[-1,1],[-2,1],[-3,6],[-3,6],[-3,7],[-3,6],[-3,8],[-3,7],[-2,7],[-1,4],[1,1],[1,0],[1,0],[0,2],[-1,6],[-1,7],[-1,4],[-4,6],[-3,5],[-1,3],[-1,4],[-1,23],[-1,6],[-1,3],[-1,1],[0,2],[0,4],[1,4],[0,1],[0,3],[0,22],[0,1],[-1,2],[-1,-1],[-1,1],[-1,3],[-1,4],[1,2],[1,3],[1,2],[1,1],[4,4],[1,2],[1,2],[0,2],[2,11],[4,11],[1,3],[2,7],[1,9],[1,4],[1,4],[1,3],[4,6],[2,9]],[[4300,6160],[-2,-1],[-1,0],[-1,5],[0,3],[0,1],[6,6],[2,-1],[2,-5],[-1,-2],[-5,-6]],[[4348,6048],[-1,-5],[-4,0],[-2,3],[-2,6],[0,5],[1,5],[0,4],[0,1],[1,-1],[0,-3],[4,-6],[1,-1],[2,-8]],[[4308,6152],[-2,-1],[-1,0],[-2,2],[0,3],[2,2],[2,0],[1,-4],[0,-2]],[[4363,6119],[2,-1],[1,0],[2,0],[1,-3],[1,-3],[-1,-4],[-3,-3],[-2,0],[-2,3],[1,6],[0,5]],[[4324,6039],[-2,-2],[-1,1],[-2,3],[0,3],[0,3],[3,3],[2,-1],[1,-5],[-1,-5]],[[4330,6141],[2,-1],[0,-2],[-2,0],[-4,2],[-1,-1],[-1,-5],[-2,7],[0,3],[3,-1],[5,-2]],[[4364,6143],[-1,-3],[-1,5],[-1,1],[0,6],[2,2],[0,-6],[1,-5]],[[4356,6056],[-1,-1],[-1,3],[0,4],[0,1],[1,3],[2,0],[0,-3],[0,-6],[-1,-1]],[[1315,8301],[3,-3],[6,2],[1,0],[1,-1],[1,-3],[2,-4],[0,-5],[-1,-2],[-1,-2],[-9,-7],[-1,-1],[1,-1],[2,0],[8,2],[0,1],[1,6],[1,3],[0,2],[-1,6],[0,2],[6,1],[3,2],[4,3],[0,-7],[-1,-2],[-3,-8],[-2,-7],[-1,-8],[0,-12],[-1,-4],[-1,-2],[-9,-5],[-5,1],[-5,4],[-2,2],[2,4],[1,0],[3,-1],[2,-1],[1,0],[0,1],[-6,6],[-5,3],[-2,3],[0,2],[0,2],[-4,8],[-1,4],[0,5],[0,4],[1,8],[0,1],[2,0],[2,-1],[7,-1]],[[1340,8248],[3,-6],[1,-4],[-1,-6],[-4,-2],[-2,2],[-1,-1],[-2,-1],[2,-1],[2,-3],[3,-4],[3,0],[4,-3],[-3,-4],[0,-3],[4,-7],[0,-2],[1,0],[3,0],[1,0],[0,-2],[-2,-4],[0,-1],[2,0],[3,0],[1,-4],[-3,-4],[-6,5],[-2,4],[-2,5],[-1,2],[-6,6],[-7,12],[-2,2],[-2,5],[-1,2],[0,2],[1,1],[2,0],[0,2],[-9,5],[-1,1],[-1,2],[1,1],[5,-1],[5,2],[3,1],[1,1],[3,2],[1,0],[3,-2]],[[1467,8101],[13,-8],[14,-3],[10,-4],[7,-2],[2,-1],[1,-1],[2,-4],[3,-8],[2,-6],[5,-9],[3,-7],[1,-2],[0,-1],[0,-2],[2,-6],[6,-6],[4,-3],[8,-5],[6,-4],[1,-3],[2,-3],[1,-2],[2,-8],[4,-7],[3,-14],[1,1],[0,4],[1,1],[1,1],[0,-2],[1,-4],[2,-8],[0,-3],[-1,0],[-3,1],[-1,-1],[-2,-4],[-1,-1],[0,1],[-9,3],[-6,3],[-7,4],[-9,5],[-5,3],[-4,3],[-3,3],[0,3],[0,1],[5,8],[3,4],[1,3],[0,3],[0,4],[-1,-4],[-1,-3],[-1,-3],[0,-1],[-7,-1],[-5,0],[-3,-3],[-1,-1],[-1,1],[-4,5],[-4,3],[0,1],[3,2],[2,3],[-1,0],[-1,0],[-1,1],[-1,3],[-2,1],[-2,-2],[-1,0],[-1,3],[2,5],[0,1],[-3,-2],[0,1],[-1,2],[-1,0],[-2,0],[-2,2],[-1,-1],[0,-2],[-1,-1],[-3,4],[-2,-3],[-1,0],[0,1],[-1,7],[0,2],[1,1],[3,2],[7,2],[1,1],[-6,-1],[-1,1],[-2,3],[-2,0],[-1,0],[-1,2],[-2,7],[-2,1],[-3,1],[-1,1],[-1,0],[0,-2],[-1,-1],[-2,-1],[-2,1],[-2,2],[0,2],[-1,2],[1,4],[0,1],[0,1],[-1,2],[-1,1],[0,-1],[0,-2],[-1,-1],[-2,-1],[-1,2],[-1,2],[-1,2],[-6,0],[-2,-2],[-2,-1],[-1,1],[0,1],[1,4],[0,5],[-1,1],[-2,1],[-1,1],[2,5],[1,1],[1,1],[5,0],[2,-1],[3,-3],[-1,1],[0,4],[-1,3],[2,2],[-2,1],[-6,1],[0,-2],[1,-2],[-4,-3],[-3,0],[-2,0],[-2,2],[-4,5],[-2,5],[0,3],[1,2],[2,2],[3,2],[6,0],[5,-2],[15,-10]],[[1083,9196],[4,-1],[13,-2],[12,1],[22,-6],[13,-12],[11,-5],[5,-4],[7,-4],[17,-7],[5,-1],[10,-3],[6,0],[11,-1],[7,-3],[14,-7],[3,-1],[-4,8],[-1,1],[-6,3],[-6,1],[-1,1],[-1,3],[0,1],[2,0],[5,0],[2,1],[1,1],[-2,0],[-3,1],[-3,2],[-1,2],[6,11],[2,-1],[3,3],[6,-2],[1,1],[0,6],[1,1],[2,1],[8,1],[10,-1],[1,1],[-1,3],[0,2],[0,4],[1,1],[1,1],[5,0],[1,-2],[2,-3],[1,-2],[5,-1],[1,-2],[-2,-4],[-2,-3],[-4,-6],[0,-1],[6,2],[7,4],[6,2],[5,1],[4,1],[2,2],[2,2],[3,7],[2,2],[9,-1],[2,0],[1,1],[0,1],[-2,1],[-3,0],[0,1],[1,1],[2,1],[4,0],[3,-2],[2,0],[6,2],[10,8],[4,2],[3,0],[3,-1],[2,0],[3,5],[1,2],[2,2],[7,4],[5,1],[3,-1],[3,-2],[3,0],[4,0],[2,0],[2,1],[4,5],[2,0],[1,-2],[3,-3],[0,-2],[-3,-4],[-23,-13],[-7,-5],[-3,-2],[-4,-2],[-7,0],[-3,-2],[-4,-1],[-11,-1],[-2,-1],[-1,-1],[-4,-7],[-2,-2],[-4,-3],[-4,-2],[-6,-1],[-4,-3],[-4,-6],[-3,-4],[-4,-4],[-4,-4],[-1,-3],[1,-3],[1,-1],[4,-2],[2,0],[-2,2],[-3,3],[-1,1],[1,0],[17,-2],[3,2],[1,2],[0,1],[-4,0],[-1,2],[-1,2],[0,3],[0,1],[1,3],[5,3],[5,2],[4,2],[2,2],[6,3],[3,2],[1,2],[0,1],[-1,1],[1,2],[4,2],[2,0],[6,-2],[2,-1],[-1,-3],[1,0],[2,4],[1,1],[2,1],[1,-1],[2,-1],[0,-4],[0,-6],[1,-3],[1,4],[1,3],[6,9],[4,5],[5,5],[6,4],[16,6],[8,1],[4,2],[3,1],[1,2],[2,2],[1,0],[-1,-4],[-1,-2],[-5,-2],[-1,-2],[1,-3],[1,-2],[1,-1],[2,1],[4,2],[4,4],[9,8],[0,2],[3,7],[5,3],[9,3],[2,3],[-8,2],[-2,1],[0,1],[2,2],[-4,2],[-1,1],[0,3],[1,3],[2,2],[2,1],[3,-2],[3,-2],[11,-8],[4,-4],[2,-4],[6,-10],[3,-6],[2,-6],[2,-4],[2,-3],[10,-11],[5,-4],[4,-3],[5,-2],[6,-2],[4,0],[6,5],[0,3],[-3,5],[-2,3],[0,2],[4,4],[-1,2],[1,4],[2,-1],[1,0],[2,2],[2,3],[2,2],[2,2],[1,1],[-3,1],[-1,0],[-1,0],[-1,1],[1,1],[6,2],[1,2],[2,2],[2,0],[1,0],[2,-2],[0,-3],[-1,-4],[0,-4],[2,-9],[2,-2],[6,-2],[0,-2],[-8,-9],[-1,-3],[-1,-1],[0,-2],[2,-1],[2,-1],[6,0],[2,1],[12,0],[2,1],[2,1],[3,5],[3,1],[1,1],[2,6],[1,6],[1,2],[1,2],[2,0],[5,0],[2,0],[9,0],[9,0],[9,-1],[6,-1],[5,-2],[11,-5],[4,-2],[14,-12],[5,-2],[8,-2],[27,-5],[3,-1],[8,-6],[5,-3],[5,-2],[8,-3],[14,-4],[3,-1],[2,0],[3,0],[13,-2],[4,0],[2,0],[3,-2],[5,0],[0,1],[-5,6],[0,1],[2,0],[6,-1],[2,1],[2,0],[5,0],[5,-2],[6,-3],[7,-3],[10,-6],[6,-5],[5,-6],[3,-4],[1,-2],[1,-2],[1,0],[1,-1],[-1,-5],[-1,-1],[-2,-1],[-4,-1],[-14,1],[-3,-4],[-7,-4],[-2,-1],[0,-2],[1,-3],[-1,-2],[-6,-4],[-1,-1],[4,-2],[5,-3],[3,-1],[4,1],[6,-1],[6,-3],[5,-1],[2,0],[4,0],[4,-1],[6,-1],[13,0],[4,-1],[5,0],[11,0],[2,0],[3,2],[2,1],[4,0],[11,2],[3,-1],[4,2],[4,2],[3,0],[1,-1],[2,-1],[3,0],[5,3],[12,7],[4,0],[3,2],[1,0],[1,-1],[3,-5],[1,-1],[2,0],[2,-3],[2,-4],[2,-1],[11,0],[4,-1],[1,-1],[1,-3],[1,-6],[0,-3],[2,-3],[1,-1],[1,1],[3,8],[1,2],[2,-1],[3,-6],[4,-5],[10,-8],[2,-3],[0,-3],[0,-2],[-2,-2],[-3,-1],[-3,-1],[-4,0],[-3,2],[-1,0],[1,-1],[7,-7],[1,-3],[2,-2],[1,-1],[2,-2],[1,-2],[5,-5],[2,-3],[6,-8],[3,-4],[2,-2],[1,0],[0,2],[-8,11],[-4,7],[-1,2],[0,2],[0,9],[0,1],[3,1],[4,-4],[1,0],[1,0],[0,1],[2,-1],[4,-3],[1,0],[-2,6],[-2,2],[-1,2],[2,3],[-1,1],[-5,4],[-2,5],[-2,6],[-1,3],[1,2],[0,2],[-3,5],[-3,3],[-3,3],[0,2],[0,5],[2,2],[3,3],[1,3],[-1,3],[-1,2],[1,-1],[7,2],[2,-1],[3,1],[3,2],[3,1],[4,0],[2,0],[2,1],[1,1],[3,3],[1,1],[3,0],[3,-1],[1,0],[-1,5],[1,2],[4,4],[4,0],[2,1],[3,2],[2,2],[2,3],[1,4],[0,1],[-5,1],[-2,-1],[-6,-2],[-6,-4],[-3,-3],[0,-4],[-2,-2],[-4,2],[-2,0],[-3,-1],[-3,-2],[-2,-2],[-5,0],[-5,1],[-4,1],[-3,-3],[0,-2],[2,-3],[-2,-2],[-8,0],[-2,0],[-4,-1],[-2,0],[-1,2],[-9,5],[-1,2],[2,4],[8,13],[1,1],[15,2],[9,2],[17,7],[4,1],[10,4],[5,1],[4,0],[6,-3],[3,-2],[2,-2],[2,-4],[2,-8],[1,-7],[2,-3],[5,-4],[2,-2],[2,-1],[1,1],[1,0],[1,0],[1,-3],[4,0],[3,-1],[0,-1],[0,-4],[0,-2],[4,-3],[4,-1],[5,-1],[8,1],[6,1],[6,3],[4,-3],[8,-7],[5,-5],[4,-2],[9,-3],[2,-2],[3,0],[4,1],[5,0],[5,-2],[4,-1],[13,4],[1,0],[5,2],[3,0],[4,0],[3,1],[1,1],[7,0],[12,-1],[9,-2],[5,-2],[4,-1],[3,-1],[3,1],[3,1],[3,2],[7,1],[1,0],[0,1],[-1,2],[-4,3],[-3,4],[-1,1],[1,3],[0,1],[2,1],[3,-2],[3,-3],[10,-13],[2,-2],[1,-1],[9,-5],[5,-1],[5,3],[2,2],[1,2],[0,1],[0,3],[0,1],[-1,2],[-4,3],[-6,3],[-5,1],[-5,-1],[-6,-3],[-2,1],[-7,8],[-1,3],[0,1],[3,-1],[0,1],[-2,4],[-1,1],[-4,7],[-1,1],[3,1],[1,1],[2,-1],[6,-3],[4,1],[8,3],[-3,3],[-1,4],[1,1],[2,0],[6,-3],[2,0],[2,1],[2,0],[2,-1],[2,-1],[4,-5],[1,-2],[2,-4],[1,-1],[10,0],[5,3],[0,-1],[-1,-3],[-7,-10],[0,-1],[4,0],[1,1],[1,1],[1,3],[1,1],[10,5],[3,1],[-2,-5],[-4,-19],[0,-7],[-1,-2],[-4,-7],[0,-3],[4,-6],[1,-1],[0,-5],[1,-1],[4,-1],[3,2],[5,1],[1,-1],[-3,-6],[4,1],[2,0],[1,0],[3,-3],[1,-2],[0,-4],[-1,-2],[-1,-2],[-1,0],[-2,-1],[-1,0],[-4,0],[-3,1],[-3,2],[-1,0],[-3,-1],[-3,0],[-4,4],[-1,0],[-1,-1],[0,-1],[2,-3],[13,-14],[2,-3],[1,-4],[1,4],[-1,2],[-6,8],[-1,3],[0,1],[2,1],[10,-2],[3,1],[3,1],[1,2],[1,10],[2,6],[-1,6],[-3,9],[-2,5],[-5,5],[0,2],[5,17],[1,1],[1,1],[4,0],[3,1],[5,-2],[3,0],[3,2],[7,6],[3,3],[4,4],[4,5],[5,5],[7,4],[5,3],[1,1],[-4,0],[-1,1],[-1,3],[0,6],[0,3],[-1,3],[0,2],[-2,2],[-1,2],[-1,0],[-1,0],[0,-1],[-2,-5],[-1,-4],[-2,-2],[-4,-2],[-8,-1],[-3,2],[0,2],[1,6],[2,3],[7,5],[4,4],[0,1],[-4,0],[0,1],[-1,5],[0,2],[1,2],[2,2],[9,2],[6,2],[0,-1],[-5,-7],[0,-1],[2,-2],[5,4],[3,4],[0,1],[-2,0],[-1,1],[1,3],[0,2],[-4,2],[-4,-1],[-3,-3],[-3,0],[-4,0],[-3,0],[-2,1],[-2,3],[-3,4],[-3,4],[-1,0],[-1,-1],[-2,-3],[-1,-1],[-13,6],[-6,2],[-2,3],[-4,1],[-4,0],[-3,1],[-2,2],[-2,2],[-2,3],[-2,4],[-7,8],[-1,5],[0,2],[0,5],[6,8],[1,2],[2,2],[3,1],[2,0],[4,-1],[-2,3],[-1,1],[3,5],[-8,-4],[-2,1],[-3,2],[-5,7],[0,5],[1,6],[1,4],[-1,4],[0,1],[2,0],[0,1],[0,4],[1,2],[4,4],[3,3],[2,1],[2,0],[2,-1],[2,-2],[4,-2],[2,0],[2,1],[3,7],[2,2],[-1,0],[-7,0],[-3,1],[-1,1],[-1,2],[1,2],[6,5],[3,5],[8,7],[9,4],[4,1],[4,0],[1,0],[2,-4],[0,-4],[5,-5],[4,0],[2,1],[8,-1],[2,-1],[0,-1],[-1,-3],[0,-2],[5,-4],[5,-3],[4,-3],[7,-7],[1,-2],[1,-3],[1,-8],[1,-3],[-1,-9],[0,-1],[-2,-2],[1,-1],[4,-2],[4,-5],[2,-1],[5,-3],[1,-1],[1,-1],[3,-7],[5,-6],[0,-1],[-1,-3],[1,-1],[2,-1],[1,1],[2,2],[1,0],[2,-1],[1,-1],[2,-4],[2,-3],[0,-1],[-1,-1],[-7,-1],[-4,1],[-3,1],[-3,2],[-2,2],[-1,0],[-1,-2],[-2,-3],[-2,-2],[2,-2],[9,1],[2,-1],[2,-2],[-3,-3],[-6,-6],[-13,-10],[-3,-2],[0,-1],[2,0],[4,0],[4,1],[6,0],[2,-1],[-1,-1],[1,-2],[9,-4],[5,1],[5,4],[4,1],[5,0],[2,0],[-1,-1],[-3,-2],[-4,-3],[0,-1],[4,1],[9,-1],[5,-1],[3,1],[3,-1],[3,-2],[1,-1],[-3,0],[-2,0],[-2,-1],[-2,-2],[-1,-3],[-1,-3],[-2,-2],[-3,1],[-1,1],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[14,-11],[4,-9],[3,-4],[1,-1],[-2,-2],[0,-2],[1,-6],[-1,-4],[-1,-8],[1,-3],[3,-2],[2,-3],[1,0],[1,-3],[1,-1],[1,-1],[1,1],[0,2],[2,2],[3,3],[3,6],[0,2],[0,4],[0,2],[3,6],[1,4],[1,7],[1,5],[3,4],[6,8],[2,2],[2,1],[4,-1],[3,-2],[4,-5],[5,-5],[9,-6],[2,-2],[5,-6],[2,-6],[2,-8],[1,-5],[1,-2],[1,-2],[-1,-4],[0,-2],[-1,-2],[-1,-1],[-2,-1],[-4,1],[-1,1],[-2,4],[-3,-3],[-1,-2],[1,-5],[0,-10],[1,-2],[3,-11],[5,-8],[14,-16],[1,-1],[1,-7],[1,-1],[1,-1],[1,0],[2,0],[5,5],[4,5],[3,3],[2,0],[2,1],[2,2],[1,2],[1,2],[1,7],[1,4],[2,5],[1,1],[10,13],[1,2],[5,14],[1,7],[1,4],[-1,4],[0,3],[1,2],[2,2],[2,1],[1,3],[1,0],[2,0],[2,-2],[2,0],[11,2],[0,1],[-6,3],[0,2],[0,2],[2,2],[3,1],[1,1],[0,2],[0,3],[0,1],[-7,5],[-3,-1],[-1,1],[-3,3],[-1,5],[0,2],[0,4],[0,1],[0,1],[-1,2],[0,2],[1,2],[0,2],[-2,2],[0,2],[1,5],[0,2],[-1,2],[-1,1],[1,1],[2,0],[3,-1],[4,-2],[4,0],[5,2],[5,1],[10,0],[2,-1],[9,-5],[7,-3],[3,1],[15,-1],[7,0],[4,0],[7,-3],[-1,-2],[-3,-4],[-4,-1],[-3,-1],[3,-3],[9,-2],[3,-5],[0,-2],[-1,-2],[1,-1],[2,0],[5,2],[6,-1],[9,-4],[1,0],[2,-3],[0,-1],[-8,-7],[-4,-2],[-6,-3],[0,-2],[8,0],[6,-1],[2,-1],[2,-1],[1,-3],[1,-2],[0,-3],[-1,-2],[-7,-5],[-3,-2],[-5,-2],[-3,-2],[-2,0],[-3,2],[-3,1],[-5,-2],[-3,0],[-1,-1],[0,-1],[2,-3],[1,-2],[1,-1],[-1,-2],[1,-1],[5,-8],[1,-1],[1,1],[2,2],[1,1],[1,0],[0,-2],[-3,-7],[0,-1],[0,-2],[1,-4],[3,-3],[3,-4],[4,-5],[6,-4],[2,-3],[4,-5],[0,-3],[-1,-6],[-2,-9],[-2,-6],[0,-1],[-5,-4],[-2,-1],[-5,0],[-1,-1],[-2,-3],[-3,-5],[-3,-4],[-1,-1],[-3,-2],[-5,-5],[-3,-2],[-8,-2],[-7,-7],[-3,-2],[-3,-1],[-3,0],[-2,1],[-1,4],[-1,1],[-2,3],[-5,8],[-3,3],[-1,1],[-3,-1],[-1,1],[-4,2],[-1,2],[0,1],[3,1],[-1,1],[-5,4],[-1,2],[-1,0],[-4,3],[-4,1],[-5,-5],[-3,-2],[1,-1],[2,-1],[1,0],[2,3],[2,0],[3,0],[3,-2],[1,-1],[0,-1],[8,-9],[2,-1],[1,-2],[1,-4],[2,-3],[3,-6],[4,-8],[1,-3],[-2,-1],[-1,-1],[-3,2],[-8,3],[-1,0],[-2,-2],[-1,-4],[-1,0],[-4,1],[-8,4],[-5,3],[-3,3],[-3,4],[-4,5],[-4,2],[-5,-2],[-8,-1],[-16,1],[-2,-1],[-1,0],[2,-3],[-1,-1],[-1,-1],[0,-1],[2,-3],[3,-2],[7,-3],[6,-3],[3,-2],[1,-2],[0,-2],[-1,-4],[-1,-1],[-19,-21],[-7,-8],[-3,-5],[-3,-3],[-3,-2],[-5,-1],[-6,0],[-8,1],[-4,2],[-8,7],[-5,5],[-2,1],[-2,4],[-2,1],[-4,0],[-4,2],[-9,7],[-5,3],[-4,2],[-4,0],[-2,-1],[3,-3],[-1,0],[-3,1],[-3,0],[-6,2],[-6,0],[-3,0],[-5,2],[-5,0],[-9,0],[-2,0],[-1,-1],[4,-3],[7,-4],[-1,4],[0,1],[2,1],[11,-2],[12,-4],[3,-1],[4,-1],[4,-3],[5,-5],[10,-12],[3,-3],[4,-2],[22,-4],[7,0],[15,-1],[8,-2],[2,-2],[1,-5],[-1,-3],[-4,-8],[-3,-5],[-17,-25],[-2,-5],[-1,-4],[-3,-3],[-7,-6],[-8,-4],[-4,-1],[-4,1],[-3,1],[-4,5],[0,-1],[3,-7],[-1,-1],[-2,1],[-6,3],[-1,0],[-1,-1],[-2,0],[-2,1],[-3,3],[-1,1],[0,4],[-1,0],[-6,-2],[-1,-1],[2,-1],[1,-1],[3,-6],[0,-1],[-2,-1],[-6,2],[-1,0],[3,-6],[1,-3],[0,-1],[-4,-7],[-2,-3],[-3,-1],[-3,1],[-2,2],[-2,0],[-1,-3],[-2,-1],[-3,-1],[-4,0],[-4,2],[-12,6],[-4,1],[-7,1],[-1,1],[0,1],[1,1],[-1,1],[-2,-1],[-1,-1],[-3,-1],[-4,1],[-6,2],[-12,7],[-13,5],[-7,7],[3,-7],[0,-2],[-2,-1],[0,-2],[3,-5],[4,-1],[4,0],[0,1],[-2,1],[-1,1],[-1,3],[1,0],[3,-1],[3,-2],[18,-8],[5,-1],[4,-2],[1,-1],[-1,-2],[-8,-5],[0,-1],[5,1],[6,4],[3,2],[4,2],[4,-3],[5,-5],[5,-3],[6,-2],[4,-2],[6,-5],[1,-3],[1,-11],[-1,-3],[0,-2],[-2,-3],[-2,-2],[-4,0],[-3,-1],[-7,-6],[-2,-1],[-12,2],[-5,2],[-2,0],[-1,-2],[-1,0],[-5,-1],[-1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[3,-1],[5,-1],[1,-3],[0,-1],[-2,-2],[-2,0],[-4,3],[-1,0],[-2,-2],[-2,0],[-3,0],[-1,-1],[0,-2],[-1,-2],[-3,-3],[-2,-2],[0,-2],[2,-1],[2,-3],[2,-4],[1,-2],[-2,0],[-2,2],[-2,3],[-4,3],[-8,3],[-1,0],[0,-1],[6,-4],[2,-2],[0,-2],[-4,-3],[-1,-2],[2,-1],[0,-1],[-2,-2],[-2,-1],[-5,0],[-1,-1],[2,-2],[1,-1],[-2,-2],[-1,0],[-6,1],[2,-4],[1,-2],[1,-2],[4,-2],[0,-1],[-1,-1],[-2,-2],[-8,-6],[-6,-7],[-1,-2],[2,-5],[0,-1],[-2,-2],[-3,1],[-1,-1],[1,-2],[0,-4],[0,-4],[-3,-6],[-4,-9],[-3,-8],[-2,-7],[-2,-4],[-3,0],[-3,-3],[2,-1],[1,-1],[1,-2],[-1,-7],[-2,-11],[-1,-9],[0,-27],[0,-12],[-1,-7],[-2,-4],[-2,-1],[3,-1],[2,-2],[1,-2],[1,-4],[1,-2],[1,0],[2,0],[1,-2],[3,-6],[4,-1],[0,-4],[-2,-18],[0,-2],[2,4],[2,15],[2,6],[2,1],[8,1],[8,-2],[3,0],[3,1],[2,-2],[1,-1],[1,-8],[1,-4],[5,-16],[2,-8],[3,-13],[1,-4],[6,-18],[1,-5],[0,-4],[0,-2],[-1,-4],[-2,-6],[-2,-4],[-2,-3],[-1,-2],[-2,-1],[0,-1],[2,1],[2,2],[4,3],[2,1],[4,1],[0,-2],[-2,-3],[3,2],[7,4],[25,10],[6,1],[8,-2],[7,-5],[8,-5],[8,-4],[12,-4],[4,-2],[7,-2],[3,-2],[4,-5],[7,-7],[5,-4],[5,-4],[6,-7],[8,-16],[3,-2],[5,-3],[10,-4],[15,-8],[7,-3],[4,-1],[5,-2],[4,-4],[3,-3],[2,-4],[2,-2],[4,-3],[2,-2],[0,-3],[-4,-12],[-1,-1],[5,9],[2,2],[2,1],[4,0],[6,-1],[5,0],[4,1],[4,1],[3,-1],[3,1],[1,1],[2,0],[7,-3],[2,0],[10,-3],[7,1],[1,0],[2,-4],[2,0],[3,0],[3,-1],[5,-4],[2,-4],[3,-9],[0,-2],[-4,-19],[-2,-7],[0,-7],[1,-3],[4,-7],[0,-1],[2,-9],[1,-4],[0,-5],[-1,-7],[0,-6],[1,-8],[0,-6],[-2,-3],[-1,-3],[-1,-6],[0,-2],[1,-4],[1,-2],[3,-3],[2,-3],[5,-10],[3,-5],[4,-7],[1,-4],[-1,-2],[-2,-2],[-3,-2],[-1,-2],[0,-1],[5,2],[2,0],[3,-2],[2,-4],[3,-3],[4,-2],[5,-5],[7,-10],[1,-2],[2,-5],[3,-8],[1,-6],[0,-2],[-1,-3],[-5,-4],[-5,-8],[1,0],[4,3],[5,7],[3,1],[3,0],[5,-2],[4,-3],[3,-4],[5,-9],[6,-8],[3,-6],[-1,4],[-2,5],[-5,7],[-3,4],[0,2],[0,2],[0,4],[1,5],[1,4],[2,2],[1,3],[1,2],[0,2],[5,3],[1,0],[1,-4],[1,-1],[2,0],[2,-2],[1,-2],[1,-2],[1,-2],[1,-8],[1,-3],[0,4],[1,6],[1,3],[3,4],[0,2],[-2,2],[-5,10],[0,2],[1,1],[1,3],[1,4],[1,3],[4,4],[3,6],[1,4],[1,2],[2,1],[-2,2],[-1,1],[0,5],[0,5],[-2,3],[-3,5],[-1,2],[0,6],[0,3],[1,2],[0,3],[-4,4],[-1,4],[-1,9],[-2,12],[-1,9],[-2,5],[0,4],[1,1],[1,5],[1,1],[2,-1],[0,1],[-3,2],[-1,3],[0,1],[2,3],[0,1],[-2,2],[-4,3],[1,1],[1,2],[0,1],[-2,1],[-2,2],[-2,2],[-2,4],[-1,4],[-1,5],[-2,7],[-1,1],[-1,1],[-2,1],[0,1],[2,1],[21,11],[2,1],[10,6],[5,4],[4,4],[7,5],[3,3],[2,4],[11,12],[4,6],[3,5],[4,7],[4,7],[4,6],[1,6],[1,9],[1,8],[0,12],[0,11],[-1,16],[-1,6],[-2,6],[-3,12],[-1,4],[-2,6],[-8,15],[-9,10],[-2,2],[-3,3],[-6,4],[-3,2],[-10,11],[-3,1],[-1,3],[0,2],[0,5],[1,3],[0,3],[1,1],[5,8],[3,6],[2,4],[2,2],[4,4],[3,4],[-1,2],[-2,2],[0,2],[3,4],[0,2],[0,4],[1,1],[3,0],[6,-6],[1,0],[-2,2],[-2,5],[1,1],[4,5],[0,2],[-1,3],[-1,2],[3,6],[-1,1],[-6,1],[-1,2],[0,1],[3,1],[0,1],[-5,13],[-1,3],[2,5],[3,2],[0,1],[-4,0],[-2,1],[-2,4],[1,2],[0,1],[2,5],[2,1],[0,1],[-7,-2],[-4,2],[-3,-1],[-2,1],[1,2],[6,8],[3,5],[2,4],[1,3],[0,2],[-1,9],[0,2],[3,3],[4,4],[-6,4],[-3,4],[-2,2],[-1,2],[-3,4],[-1,5],[-2,11],[0,6],[0,4],[1,2],[1,2],[5,4],[8,7],[6,2],[5,-1],[9,-2],[7,-3],[23,-9],[4,-4],[-4,-3],[0,-1],[9,6],[2,2],[2,0],[6,-3],[3,0],[3,-2],[8,-6],[-2,3],[1,2],[6,4],[6,2],[5,3],[5,4],[3,2],[1,0],[2,-1],[6,-5],[4,-2],[3,-3],[4,-5],[1,-1],[3,-3],[4,0],[2,0],[0,-1],[1,-2],[0,-1],[0,-2],[-1,-4],[-3,-6],[1,0],[2,1],[3,3],[2,0],[4,-2],[3,-3],[2,-2],[1,-2],[1,-2],[2,-3],[-2,-2],[-4,-2],[1,-1],[5,2],[2,1],[1,2],[1,1],[7,-4],[1,-2],[-1,-1],[-1,-1],[-3,-1],[-2,-4],[0,-1],[1,-1],[5,-1],[0,-1],[-3,-1],[0,-2],[5,-7],[4,-4],[2,0],[5,0],[4,-1],[8,-5],[5,0],[5,1],[2,0],[3,-1],[1,-2],[0,-2],[0,-3],[2,-3],[2,-1],[3,0],[3,3],[2,0],[1,2],[1,4],[1,2],[2,1],[1,-1],[1,-2],[2,-5],[0,-2],[0,-3],[-1,-1],[-2,-2],[-2,-3],[-2,-3],[-2,-7],[-1,-4],[0,-3],[0,-3],[0,-3],[1,-3],[2,-4],[1,-1],[0,-3],[0,-1],[-2,-3],[-3,-3],[-5,0],[-15,0],[-4,0],[1,-2],[4,-1],[4,0],[15,-1],[2,-2],[1,-3],[2,-3],[1,-5],[0,-3],[-1,-3],[-1,-3],[-1,-5],[-1,-5],[1,-3],[8,0],[1,-2],[0,-2],[-2,-6],[-1,-1],[2,-4],[-1,-1],[0,-1],[-1,-3],[-1,-4],[-1,-3],[-2,-3],[-1,0],[-1,0],[-2,7],[-1,1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-3,-2],[-5,-2],[0,-2],[3,-1],[5,-2],[2,-1],[4,2],[7,8],[3,1],[3,1],[3,0],[4,0],[6,1],[2,-1],[2,-2],[3,-2],[1,-2],[1,-3],[2,-8],[2,-2],[0,-2],[0,-3],[0,-5],[-2,-9],[-1,-4],[-3,-5],[-4,-2],[-6,-3],[-3,-1],[-3,-3],[0,-1],[7,4],[8,2],[2,2],[2,3],[2,5],[3,13],[2,4],[2,0],[1,-1],[3,-8],[0,-1],[-1,-2],[-4,-7],[2,0],[4,7],[1,2],[0,4],[2,2],[0,-1],[1,-8],[0,-6],[1,-2],[-1,-6],[1,-1],[1,5],[0,4],[1,2],[1,2],[5,5],[6,4],[4,3],[3,2],[5,2],[3,3],[2,5],[1,4],[1,2],[3,3],[2,0],[2,-1],[2,-3],[2,-4],[1,-3],[1,-2],[0,-8],[2,6],[0,2],[0,3],[0,2],[-2,5],[-1,3],[0,2],[2,1],[3,0],[1,1],[-2,2],[0,1],[2,4],[1,0],[3,-1],[-1,2],[0,1],[1,1],[4,-1],[1,1],[3,0],[0,2],[-3,1],[-3,1],[-1,1],[0,2],[-1,3],[0,1],[1,0],[1,-1],[1,2],[1,5],[1,1],[3,-2],[0,1],[-2,7],[0,1],[3,1],[3,-1],[5,-5],[1,0],[-1,2],[-3,3],[-2,2],[-2,1],[-2,1],[-2,5],[0,1],[0,3],[1,5],[1,1],[1,1],[2,0],[2,0],[5,-4],[0,1],[-2,2],[-1,2],[-1,2],[0,2],[2,5],[1,4],[4,11],[1,2],[1,1],[1,2],[3,0],[6,-4],[2,-2],[0,-3],[-3,-5],[-5,-3],[-1,-2],[1,0],[4,2],[5,1],[3,0],[3,-5],[0,-7],[-1,-6],[2,3],[2,1],[2,-3],[1,-4],[1,-3],[2,-4],[3,-3],[-3,-4],[-3,-2],[0,-2],[5,-2],[1,-2],[-1,-2],[1,0],[3,4],[3,-1],[3,-8],[-2,-4],[-4,-2],[-3,-1],[-5,0],[-1,-1],[1,-1],[4,0],[6,1],[5,2],[2,0],[2,-1],[0,-1],[-2,-1],[1,-2],[2,-4],[0,-1],[-2,-3],[3,0],[3,1],[1,-1],[3,-5],[1,-6],[-6,-7],[-3,-2],[-5,-3],[-1,-4],[-3,-3],[2,0],[4,6],[3,1],[2,0],[0,-1],[0,-2],[2,0],[6,4],[3,1],[4,0],[0,-1],[-2,-9],[-4,-7],[-7,-4],[-3,-3],[-3,-4],[2,0],[6,5],[5,2],[6,2],[3,-1],[5,-10],[3,-1],[2,0],[5,-3],[1,-2],[0,-3],[-2,-1],[0,-2],[1,-6],[-1,-3],[-3,-3],[-2,-1],[-3,-1],[-2,-2],[-1,-1],[-3,1],[1,-1],[1,-1],[3,-1],[3,1],[3,0],[5,-2],[2,-2],[0,-1],[-1,-1],[-2,-4],[-1,-2],[1,-1],[2,-2],[2,0],[2,0],[3,-1],[8,-9],[0,-6],[-2,-4],[1,-4],[0,-5],[-5,-2],[-14,3],[-9,3],[0,2],[2,2],[-2,0],[-2,-1],[-1,-1],[2,-4],[8,-3],[4,-5],[3,0],[2,-1],[2,-2],[-1,-1],[-4,-1],[-3,-3],[2,-1],[7,-2],[5,0],[2,-2],[-2,-2],[-5,-2],[-1,-3],[5,-2],[4,1],[1,0],[1,-8],[1,-2],[-4,-1],[0,-2],[2,-1],[5,-1],[2,-2],[0,-2],[1,-1],[2,-1],[3,3],[2,3],[2,-1],[1,-3],[2,-4],[2,0],[0,-5],[3,4],[2,-1],[2,0],[-1,-4],[-1,-4],[1,-2],[1,-3],[4,-5],[-1,-2],[-4,-4],[-2,-7],[-1,-3],[-1,-4],[-3,-4],[2,1],[6,7],[3,2],[8,2],[2,2],[3,1],[1,-3],[1,-4],[2,-1],[2,1],[3,-1],[-2,-3],[-7,-11],[-2,-4],[0,-3],[2,4],[9,10],[1,1],[2,5],[2,2],[4,-1],[3,-2],[1,-5],[2,-6],[3,-7],[8,-3],[2,0],[5,2],[1,3],[4,1],[3,0],[1,-6],[2,-3],[3,-3],[3,-1],[4,-1],[2,-3],[0,-1],[-2,-3],[-2,-5],[-4,-3],[-5,0],[-8,-2],[0,-1],[-2,-2],[-3,-2],[-3,-2],[-3,-7],[-2,-3],[-2,-1],[-4,1],[-2,-1],[-2,-1],[-1,-2],[0,-1],[-5,-2],[-8,-5],[-4,-1],[-3,1],[-2,0],[-1,-2],[-4,-3],[-2,-1],[0,-2],[-1,-4],[0,-1],[-1,-1],[-3,1],[-4,2],[1,-2],[6,-5],[1,-2],[-1,-3],[-4,-3],[0,-2],[1,-1],[-1,-1],[-2,-2],[1,-1],[5,2],[4,5],[3,5],[2,2],[6,1],[3,3],[5,4],[5,5],[6,8],[7,6],[9,4],[7,2],[4,0],[1,1],[-4,1],[-3,1],[-4,-1],[-1,2],[0,1],[1,2],[3,1],[16,-2],[6,-2],[6,-13],[1,-5],[1,-3],[-1,-2],[-2,-2],[-7,-5],[-1,-1],[0,-1],[3,-1],[1,-1],[1,-5],[3,3],[6,8],[5,4],[4,1],[5,1],[1,0],[1,-3],[2,-6],[3,-1],[4,-1],[4,-6],[2,-5],[1,-3],[0,-2],[0,-1],[1,-2],[1,-2],[-1,-5],[-2,-7],[2,-7],[-1,-4],[0,-5],[1,-3],[1,-2],[-2,-1],[-9,-3],[-3,0],[-1,-2],[3,0],[5,0],[6,-2],[2,-2],[1,-2],[0,-3],[-2,-1],[-3,0],[-3,2],[0,-2],[5,-3],[1,-2],[3,-2],[0,-3],[0,-3],[-9,-12],[-8,-8],[-7,-6],[-12,-13],[-1,-1],[-2,0],[-6,2],[-4,-1],[-9,-2],[-2,-2],[-5,-4],[-2,-1],[-5,-1],[-5,1],[-2,-1],[-2,-2],[-1,-1],[0,-4],[-12,-17],[-3,-5],[-6,-6],[-6,-11],[-6,-4],[-2,-6],[-5,-4],[-10,-1],[-5,-1],[-5,2],[-5,-2],[-6,-1],[-3,0],[-12,-5],[-3,5],[-2,2],[-7,0],[-6,3],[-5,0],[-4,1],[-4,0],[-3,-1],[-5,1],[-3,-3],[-10,1],[-4,2],[-3,1],[-5,-1],[-4,-2],[-9,3],[-10,-2],[-9,1],[-2,1],[-14,-3],[-5,2],[-5,-6],[-3,1],[-4,0],[-1,1],[-2,-1],[-2,-3],[-2,0],[-3,-6],[-6,-4],[-8,-22],[-1,-9],[-3,-6],[-2,-1],[-3,0],[-14,-4],[-6,-4],[2,-2],[-2,-2],[-4,-1],[-3,-3],[-3,-2],[-1,-4],[-7,-7],[-8,-14],[-4,-11],[-5,-8],[-4,-3],[-2,0],[-3,0],[-4,4],[-3,1],[-7,5],[-18,5],[3,-2],[2,-3],[5,-1],[4,0],[10,-6],[5,-3],[3,-2],[2,-4],[-1,-8],[-2,-7],[-3,-5],[-8,-14],[-4,-5],[-7,-16],[-8,-8],[-4,-4],[-4,-8],[-10,-5],[-4,-2],[-3,1],[-4,-5],[-5,-2],[-1,-5],[-12,-11],[-5,-2],[-4,-3],[-1,-5],[-3,-3],[-1,-2],[-3,-7],[-5,-10],[-7,-1],[-2,-4],[-3,-5],[-4,-3],[-8,1],[2,-2],[7,-3],[1,-5],[-4,-2],[-7,-6],[-10,-12]],[[1589,8006],[-1,2],[-3,2],[-1,0],[-1,0],[-1,-2],[0,-2],[-1,-1],[0,1],[-1,3],[0,2],[1,2],[0,1],[-2,-1],[-1,1],[0,1],[0,4],[-1,2],[1,1],[3,1],[4,0],[1,2],[1,4],[-3,-4],[-1,0],[-5,1],[-3,0],[0,1],[0,1],[1,1],[0,3],[1,8],[1,3],[0,2],[-4,-6],[0,-1],[0,-2],[0,-3],[-2,-1],[-1,0],[-2,-3],[-1,0],[-9,5],[-1,1],[-1,2],[-2,4],[-1,3],[1,3],[1,2],[1,0],[1,-2],[2,-4],[0,-3],[3,0],[3,4],[1,1],[-3,-1],[-2,0],[-2,2],[-1,3],[-1,3],[0,11],[1,2],[1,1],[1,3],[0,1],[-1,2],[-1,2],[-2,1],[0,-1],[2,-4],[0,-2],[-2,-5],[-1,-1],[0,-5],[-2,-2],[-3,-3],[-3,-1],[-4,0],[-2,2],[-6,8],[-2,4],[0,3],[-5,11],[0,2],[-1,3],[-2,1],[0,3],[3,7],[2,5],[1,2],[0,3],[-1,6],[1,3],[-3,-4],[0,-2],[1,-3],[-1,-3],[-1,-4],[-2,-5],[-4,-2],[-8,1],[0,1],[-1,1],[0,7],[-1,-1],[-1,-3],[0,-5],[-1,-1],[-2,-1],[-1,1],[-1,2],[-2,0],[-3,-1],[-2,0],[-2,0],[-4,2],[-4,0],[-2,1],[0,3],[1,1],[5,1],[5,2],[5,1],[0,1],[-3,1],[-10,-3],[-4,0],[0,1],[-1,2],[2,3],[2,2],[0,2],[-1,1],[-2,-1],[-1,2],[1,5],[-1,6],[-1,-6],[-2,-3],[-9,-1],[-1,-1],[-2,0],[-5,2],[-3,2],[-2,3],[-4,5],[-4,4],[0,7],[1,4],[2,5],[5,10],[2,2],[2,1],[9,1],[6,1],[2,1],[-10,1],[-8,-1],[-3,-2],[-4,-6],[-1,-3],[-1,-2],[-2,1],[-1,3],[-2,3],[-1,4],[0,6],[0,3],[1,3],[3,7],[-4,-1],[1,6],[1,6],[3,3],[4,3],[3,3],[5,3],[2,-5],[5,-1],[1,-2],[2,-4],[2,-4],[2,-3],[1,-1],[-1,3],[-4,7],[0,2],[-1,3],[-5,3],[-1,2],[-1,3],[-1,3],[1,2],[5,7],[1,3],[0,2],[0,2],[-1,3],[0,-5],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-11,-15],[-1,-1],[-5,-2],[-2,-1],[-1,-3],[-2,-5],[-3,-12],[-3,-9],[-2,12],[-5,9],[9,9],[0,2],[0,5],[0,1],[1,2],[2,3],[0,1],[-3,-1],[-4,-8],[-1,-2],[-1,0],[0,4],[2,11],[2,10],[0,3],[2,3],[-2,0],[-7,-5],[-2,3],[-2,16],[-4,6],[-6,4],[-6,3],[-1,4],[-1,5],[1,6],[3,3],[2,2],[3,-1],[0,-2],[-2,-6],[2,-1],[8,-7],[2,-1],[3,3],[2,0],[5,-2],[1,-3],[4,-6],[0,4],[-5,6],[-2,2],[-5,1],[-3,-1],[-1,0],[-2,2],[-2,2],[-3,7],[0,2],[0,3],[1,1],[0,2],[2,1],[3,1],[1,1],[-4,3],[-1,0],[-5,-5],[-1,0],[-1,1],[-2,-3],[-1,-1],[-4,-8],[-1,-3],[0,-6],[-1,-3],[0,-2],[-5,-3],[-3,-5],[-4,5],[-3,4],[-3,8],[-4,2],[-6,4],[-2,4],[3,8],[4,7],[1,7],[1,2],[7,2],[4,3],[-5,1],[-2,-1],[-6,-2],[-5,5],[-3,4],[-1,4],[1,4],[0,3],[0,5],[1,2],[1,2],[3,2],[2,5],[1,4],[4,11],[2,5],[3,7],[6,10],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,4],[0,-2],[0,-6],[-1,-6],[-1,-4],[-3,-8],[-2,-3],[-1,3],[1,5],[2,4],[0,5],[-1,7],[-1,5],[-1,4],[0,4],[0,3],[1,4],[1,3],[0,1]],[[1949,9714],[5,-3],[2,0],[2,-1],[1,-1],[3,-4],[1,-2],[0,-3],[-1,-2],[-1,-2],[-2,-1],[-7,-1],[-8,1],[-8,-1],[-3,-1],[-10,1],[-2,1],[-5,3],[-4,1],[-2,-1],[-2,-2],[-4,-3],[-2,-1],[-7,1],[-10,5],[-12,-2],[-12,-3],[-5,0],[-1,1],[-2,2],[0,1],[4,3],[8,3],[6,2],[12,3],[14,2],[5,1],[3,3],[9,3],[6,2],[7,1],[6,0],[7,-3],[6,-1],[3,-2]],[[1932,9682],[22,-1],[1,0],[0,-1],[-2,-4],[-2,-2],[-12,-3],[-16,-3],[-3,-1],[0,-1],[2,-1],[2,-1],[12,0],[3,0],[1,-1],[1,-1],[0,-2],[0,-5],[-1,-3],[-1,-3],[-5,-2],[-9,-2],[-6,-2],[-4,1],[-5,0],[-20,-5],[-6,0],[-6,1],[-7,4],[-8,2],[-3,2],[-4,1],[-1,2],[0,1],[1,1],[1,1],[1,1],[-2,3],[0,2],[-3,4],[0,2],[0,1],[0,1],[2,3],[1,0],[4,1],[6,1],[14,4],[31,5],[9,-1],[4,1],[8,0]],[[1790,9640],[2,-2],[0,-1],[-1,-1],[-3,-2],[-16,-5],[-4,-2],[2,-2],[6,-4],[6,-4],[1,-2],[-3,-1],[-5,0],[-2,0],[-2,-1],[0,-1],[6,-6],[2,-2],[0,-2],[-1,-1],[-3,-2],[-4,-3],[-6,-1],[-15,-3],[-1,-2],[0,-2],[0,-3],[0,-2],[-2,-3],[-1,-2],[-3,-1],[-3,0],[-4,0],[-7,3],[-3,1],[-4,4],[-1,2],[1,3],[1,4],[2,5],[2,5],[1,2],[-1,2],[-2,0],[-5,-2],[-4,-1],[-2,-1],[-2,-2],[-1,-3],[-1,-4],[-1,-2],[-3,-1],[-4,0],[-2,-1],[-1,-2],[1,-1],[4,-3],[1,-3],[-1,-1],[-4,-4],[-2,-1],[-2,-5],[-2,-1],[-2,-2],[-2,1],[-3,1],[-3,4],[-2,3],[-1,3],[-1,1],[-2,-1],[-2,-3],[0,-2],[1,-3],[0,-2],[-3,-2],[0,-1],[5,-3],[1,-1],[0,-2],[-1,-1],[-2,0],[-1,-2],[-2,-2],[-5,-3],[-7,0],[-6,-2],[-1,0],[-1,3],[-2,5],[-1,3],[-2,1],[-3,6],[-1,2],[-1,1],[-1,0],[-2,-1],[-3,-9],[-5,-2],[-3,0],[-3,0],[-8,2],[-6,1],[-4,-1],[-6,-3],[-3,-1],[-4,0],[-1,2],[-2,2],[0,1],[1,1],[2,2],[0,1],[-2,1],[0,1],[1,1],[-1,1],[-2,0],[-6,-2],[1,2],[2,3],[8,8],[2,2],[2,0],[21,3],[1,0],[10,10],[3,2],[3,2],[14,6],[1,1],[3,4],[1,1],[3,2],[10,8],[10,6],[4,4],[7,3],[7,2],[23,3],[16,-4],[4,0],[2,1],[2,2],[2,-1],[6,-1],[2,1],[2,2],[-2,1],[-7,2],[0,1],[0,1],[2,2],[3,1],[9,1],[5,0],[4,-1],[5,-4],[13,-5]],[[1992,9565],[3,-1],[4,1],[5,0],[2,-2],[1,-2],[1,-1],[-1,-1],[0,-1],[-6,-6],[-2,-2],[2,0],[1,0],[6,4],[5,2],[3,0],[6,-1],[2,-1],[1,-1],[1,-1],[2,-4],[2,-5],[0,3],[1,3],[5,1],[0,1],[-2,1],[-1,2],[-2,3],[1,1],[1,2],[4,3],[4,1],[3,1],[14,-3],[5,-3],[3,-1],[0,-1],[1,-3],[3,-7],[0,-3],[-1,-4],[-5,-7],[0,-6],[-5,-12],[-3,-4],[-3,-2],[-14,-4],[-10,-5],[-3,0],[-3,-1],[-8,2],[-10,3],[-6,-1],[-5,-2],[-4,-1],[-3,1],[-4,0],[-4,2],[2,1],[1,1],[-1,1],[-4,1],[-5,-3],[-14,-7],[-19,-3],[-5,-1],[-5,-2],[-2,-2],[-4,-3],[-5,-3],[-10,-3],[-12,-5],[-22,-5],[-14,-1],[-13,2],[-5,1],[-4,2],[-10,5],[-2,2],[-3,4],[1,2],[5,3],[8,3],[15,3],[13,6],[5,1],[13,1],[7,0],[5,0],[3,1],[4,2],[7,4],[5,4],[2,2],[-2,1],[-3,1],[-8,-4],[-4,-2],[-4,0],[-6,-1],[-6,-1],[-1,0],[-7,4],[-3,1],[-1,-1],[-2,-1],[-3,-2],[-1,-1],[-3,-1],[-11,-1],[-10,-1],[-2,1],[-2,1],[0,1],[0,3],[-1,2],[1,3],[1,2],[2,1],[7,5],[1,1],[-3,-1],[-8,-2],[-2,1],[-1,2],[-1,1],[-1,-1],[-1,-2],[-1,-6],[-2,-3],[-3,1],[-4,2],[-1,0],[-1,0],[0,-1],[4,-5],[0,-2],[-2,-3],[-12,-5],[-4,-2],[-2,1],[-1,1],[-1,2],[-3,4],[-2,0],[-2,0],[-2,0],[-2,-2],[-1,-1],[-1,-3],[-2,-2],[-1,0],[-11,4],[-10,8],[-10,-2],[-4,1],[-14,2],[-2,2],[-1,2],[0,2],[1,1],[2,2],[3,4],[2,1],[2,1],[3,1],[7,0],[19,0],[3,1],[21,7],[2,1],[3,3],[1,1],[-25,-5],[-11,-2],[-17,1],[-3,1],[-1,2],[4,4],[2,2],[4,1],[12,2],[15,2],[10,0],[9,2],[5,1],[-17,0],[-21,-1],[-3,1],[-6,2],[0,2],[2,2],[1,1],[-1,4],[0,1],[4,3],[7,2],[4,1],[8,-1],[23,-1],[5,0],[-3,1],[-4,1],[-18,2],[-4,1],[0,1],[-1,1],[0,2],[2,2],[5,4],[16,4],[7,0],[6,0],[7,-1],[3,-2],[1,-1],[1,-2],[0,-3],[0,-1],[2,-1],[3,-5],[3,-1],[13,3],[5,0],[6,-1],[7,-2],[10,-8],[13,-7],[0,-2],[-5,-2],[-1,-2],[1,0],[5,-1],[5,1],[4,-1],[1,-1],[2,-2],[2,-5],[3,-4],[3,-2],[3,-2],[5,0],[4,1],[7,0],[39,-3],[2,0],[1,2],[1,2],[1,3],[-1,3],[0,1],[-24,9],[-2,4],[11,5],[1,2],[0,1],[0,3],[-1,2],[-7,4],[-5,0],[-8,4],[-2,1],[-1,1],[0,3],[0,1],[1,1],[8,4],[3,2],[10,10],[5,4],[3,2],[3,1],[8,1],[7,-4],[2,0],[1,-1],[0,-2],[-1,-2],[-3,-2],[-1,-2],[0,-1],[2,-3],[1,-2],[0,-3],[1,0],[4,-3],[4,-4],[2,-5],[-1,-2],[-4,-3],[-2,-2],[0,-2],[0,-1],[3,0]],[[1819,9365],[1,-1],[4,1],[4,2],[6,1],[8,2],[2,-2],[1,0],[2,3],[0,1],[0,2],[0,4],[1,3],[5,5],[2,1],[4,1],[9,0],[8,-3],[11,-3],[17,-7],[5,-3],[1,-3],[-3,-5],[-7,-8],[-6,-3],[-2,-2],[3,-1],[3,-2],[3,3],[3,3],[4,3],[1,0],[0,-2],[-1,-1],[1,-1],[0,-1],[2,-1],[2,1],[5,4],[5,6],[7,3],[2,2],[7,2],[-1,1],[1,5],[-3,2],[-7,3],[-4,5],[1,4],[4,-1],[12,0],[2,0],[11,-7],[4,-4],[3,-1],[7,-3],[2,-3],[1,0],[1,-1],[-1,-1],[0,-3],[1,-1],[5,0],[1,-1],[1,-3],[2,-5],[2,-6],[3,-10],[5,-14],[2,-8],[1,-2],[1,-1],[3,-2],[3,-2],[3,-1],[1,1],[1,1],[1,4],[10,5],[0,1],[-1,2],[0,1],[2,1],[-6,7],[-5,7],[-2,9],[-1,3],[0,5],[-1,2],[-2,1],[0,2],[0,2],[0,2],[-2,3],[-7,27],[0,2],[1,2],[3,1],[3,0],[2,1],[-2,1],[-2,3],[-1,1],[2,3],[9,-2],[6,-2],[10,-5],[2,0],[1,3],[2,1],[3,0],[10,-4],[11,-7],[8,-4],[5,-5],[3,-4],[3,-4],[0,-1],[-1,-1],[1,-2],[1,-3],[1,-2],[1,-4],[1,-5],[1,-3],[10,-25],[1,-5],[2,-2],[7,-9],[3,-7],[1,-5],[0,-2],[0,-2],[0,-3],[-1,-2],[-1,-2],[-2,-3],[-2,-7],[0,-2],[2,-2],[9,-8],[6,-9],[3,-2],[7,-6],[8,-3],[3,-2],[3,-2],[1,0],[1,0],[1,1],[0,1],[-3,4],[0,2],[1,0],[9,-7],[4,-3],[6,-4],[11,-7],[1,-1],[6,1],[1,0],[1,-1],[1,-1],[0,-4],[2,-3],[9,1],[2,0],[2,-1],[1,-1],[2,-5],[2,-9],[0,-3],[-1,-6],[-1,-2],[-2,0],[-5,0],[-3,2],[-2,2],[-1,5],[-1,1],[-1,-1],[-1,-4],[-2,-2],[-1,-2],[-2,1],[-4,2],[-6,5],[-3,1],[-1,0],[-3,-2],[-5,-3],[-2,-3],[1,-1],[0,-2],[1,-2],[-1,-2],[0,-1],[-2,-1],[-3,0],[-5,1],[-4,1],[-7,5],[-1,1],[-2,-1],[-1,-2],[1,-2],[4,-2],[4,-4],[1,-1],[1,0],[0,-1],[1,-2],[0,-4],[-2,-7],[-1,-2],[1,0],[6,8],[3,2],[6,3],[3,3],[8,0],[3,-1],[2,-2],[0,-1],[-2,-3],[0,-1],[-1,-2],[1,-2],[0,-1],[2,-1],[2,0],[1,0],[1,-1],[1,-2],[0,-3],[-2,-7],[-3,-2],[-11,-3],[-3,-2],[-7,-2],[-3,-2],[-1,0],[-8,0],[-8,-1],[-10,2],[-7,1],[-8,4],[-3,-1],[-3,-2],[-15,3],[-2,2],[1,1],[4,4],[0,1],[0,1],[-7,0],[-8,3],[-7,1],[-6,0],[-4,0],[-3,2],[-2,2],[0,2],[-1,1],[1,4],[-1,2],[-1,2],[-4,2],[-3,-1],[-3,-1],[-2,-4],[-5,-10],[-3,-1],[-6,-7],[-3,-2],[-11,-3],[-14,-1],[-6,-2],[-4,-4],[-6,-4],[-15,-5],[-14,-2],[-14,-1],[-10,-2],[-3,1],[-5,-1],[-5,-2],[-6,-1],[-22,-1],[-10,-2],[-5,0],[-5,0],[-3,1],[-3,2],[-2,4],[-6,10],[-2,4],[0,7],[0,4],[-2,9],[-11,4],[-7,1],[-10,0],[-13,-1],[-13,1],[-7,2],[-6,2],[-12,5],[-1,2],[-1,3],[-3,3],[-8,9],[-3,4],[-1,2],[0,3],[-1,6],[-1,4],[1,2],[1,0],[16,5],[29,4],[26,4],[12,-1],[6,-1],[7,-1],[13,0],[16,-2],[3,0],[7,1],[2,2],[12,-1],[2,1],[2,1],[-3,3],[-10,5],[-29,10],[-7,2],[-10,2],[-6,1],[-7,-1],[-3,0],[-7,-2],[-7,-2],[-13,-1],[-19,-1],[-3,1],[-4,1],[-2,1],[-19,-2],[-16,2],[-19,15],[-3,4],[0,2],[3,2],[9,6],[3,1],[14,3],[14,4],[11,4],[5,1],[5,0],[5,1],[-1,1],[-4,2],[0,1],[2,1],[7,1],[7,-1],[4,0],[1,2],[-1,1],[-7,2],[-33,-6],[-16,-1],[-10,-2],[-6,0],[-7,2],[-1,1],[0,1],[2,4],[7,2],[4,5],[-4,0],[-13,-1],[-6,1],[-8,2],[-2,2],[-1,2],[-1,3],[1,6],[0,3],[1,1],[10,11],[6,2],[4,3],[0,1],[-1,2],[-4,3],[-1,2],[-1,2],[0,2],[3,4],[6,5],[17,12],[8,5],[8,2],[11,6],[28,9],[25,9],[10,-2],[2,-2],[2,-2],[1,-2],[0,-3],[2,-6],[0,-4],[0,-3],[-1,-3],[-1,-3],[-2,-3],[-3,-4],[-6,-6],[0,-2]],[[1674,9453],[0,-1],[7,6],[5,0],[3,-1],[1,0],[0,-1],[0,-3],[1,-5],[0,-1],[1,0],[2,2],[7,8],[4,2],[2,1],[10,1],[6,0],[7,0],[6,-2],[8,-3],[7,-4],[7,-4],[21,-16],[9,-5],[3,-3],[2,-2],[1,-2],[0,-3],[0,-2],[-1,-1],[-2,-2],[-13,-5],[-7,-2],[-7,-2],[-16,-8],[-11,-4],[-14,-8],[-28,-13],[-3,-2],[-1,-2],[-8,-14],[-3,-4],[-7,-3],[-9,-1],[-2,-1],[-1,-5],[-3,-8],[-2,-6],[-2,-14],[0,-2],[-2,-3],[-3,-3],[-8,-3],[-7,-2],[-8,-1],[-2,1],[-3,2],[-2,0],[-1,0],[-11,-10],[-11,-5],[-5,-3],[-3,-2],[-3,-1],[-4,1],[-4,1],[-3,3],[-2,3],[-5,12],[-3,4],[-2,2],[-5,7],[-2,1],[-21,9],[-10,5],[-2,2],[-3,1],[-13,0],[-1,0],[-1,1],[2,2],[0,2],[1,2],[-1,2],[0,1],[5,2],[0,1],[-1,1],[0,2],[0,1],[2,0],[1,3],[2,4],[2,2],[2,2],[4,4],[3,2],[2,2],[0,1],[-1,0],[0,2],[0,5],[0,3],[1,2],[0,1],[2,2],[9,3],[1,1],[0,1],[0,2],[-1,1],[-1,1],[-3,0],[-2,2],[-1,1],[1,3],[4,4],[2,2],[5,11],[8,6],[3,7],[6,7],[0,1],[-2,2],[-6,2],[-3,2],[-2,3],[-9,17],[-1,2],[-1,2],[-1,1],[0,1],[34,5],[24,2],[24,4],[7,0],[5,0],[5,-3],[7,-4],[9,-4],[17,-5],[11,-2],[-5,-4],[0,-1],[0,-1]],[[3069,9965],[23,-1],[7,1],[9,-3],[5,0],[8,0],[6,0],[23,-1],[5,-1],[0,-1],[-5,-3],[-7,-2],[-42,-8],[-3,-2],[8,0],[12,0],[10,1],[11,3],[3,0],[7,2],[14,3],[11,2],[5,-1],[4,-1],[3,0],[1,1],[3,3],[1,1],[4,1],[2,0],[3,-2],[4,-3],[4,-2],[2,0],[8,2],[4,1],[10,-1],[4,-1],[1,-2],[-3,-1],[-2,-1],[0,-1],[1,-1],[6,-2],[8,-6],[0,-1],[-4,-4],[0,-1],[21,4],[22,-2],[6,-1],[2,-2],[3,-2],[2,-3],[-1,-4],[-10,-6],[-10,-4],[-5,-4],[-9,-2],[-31,-9],[-15,-3],[-8,-3],[-4,0],[-18,0],[-5,-2],[-3,-2],[-5,-2],[-9,0],[-17,-1],[-4,-3],[-1,-2],[-2,-2],[-1,-1],[-49,-11],[-1,-2],[5,0],[6,0],[72,14],[13,1],[13,-1],[-1,-3],[-18,-9],[-23,-8],[-12,-6],[-29,-11],[-24,-10],[-9,-6],[-12,-9],[-4,-2],[-5,-1],[-6,0],[-6,2],[-7,3],[-6,4],[-3,1],[2,-2],[12,-13],[-1,-3],[-23,-3],[-11,-2],[-5,-1],[-4,1],[-3,0],[-4,-1],[0,-1],[3,-1],[9,-1],[21,3],[3,0],[5,-2],[1,-1],[-6,-4],[-16,-5],[2,-1],[5,-2],[-1,-1],[-5,-4],[-2,-1],[-16,-4],[-7,0],[-6,0],[-29,8],[-9,1],[-10,2],[-7,-1],[-7,-2],[3,-1],[14,-2],[11,-1],[5,0],[2,-2],[5,-5],[0,-3],[-1,-2],[-1,-2],[-2,-1],[-3,0],[-11,0],[-4,-1],[-5,-1],[-6,-1],[-11,0],[-13,-2],[-7,0],[-7,1],[-8,2],[-9,2],[-14,1],[1,-2],[5,0],[10,-4],[5,-5],[5,-1],[10,-4],[7,-1],[7,-1],[10,2],[7,-1],[-2,-10],[-3,-1],[-16,0],[-8,2],[-3,1],[-8,2],[-7,-1],[-6,0],[-4,-1],[-7,0],[-17,-2],[-9,0],[-7,1],[-8,1],[-9,-1],[1,-1],[3,0],[6,-2],[5,-3],[4,-1],[5,0],[6,2],[19,2],[8,0],[7,-1],[5,-1],[4,-1],[4,-4],[11,-1],[9,-1],[13,-6],[4,0],[1,-2],[-3,-4],[0,-2],[-9,-4],[-15,-1],[-15,0],[-12,-1],[-1,0],[8,-1],[18,-5],[7,-3],[1,-2],[-10,-6],[-9,-12],[-3,-1],[-3,0],[-7,0],[-10,-3],[-7,-1],[-14,1],[-15,0],[-2,-2],[0,-3],[0,-6],[1,-8],[-1,-5],[-3,-4],[-3,-2],[-6,-3],[-6,-1],[-4,-1],[-8,0],[-21,-2],[-10,0],[-8,1],[-9,3],[-14,7],[-4,1],[-4,1],[1,-1],[4,-4],[3,-3],[3,-1],[-1,-1],[-6,-2],[-7,-1],[-8,0],[0,-1],[3,-2],[3,-2],[3,0],[6,0],[7,3],[4,0],[9,0],[4,-1],[11,-5],[1,-1],[9,3],[11,0],[5,-2],[1,-4],[1,-4],[-2,-2],[3,-3],[7,-2],[5,-1],[4,2],[5,3],[3,1],[2,0],[3,-3],[5,-5],[1,-5],[-4,-7],[-5,-4],[-18,-7],[-5,-2],[-5,-3],[-6,-3],[-12,-3],[-7,-1],[-14,-4],[-3,0],[-4,1],[-1,2],[1,3],[1,3],[2,3],[0,2],[-4,3],[-2,2],[-3,1],[-5,-1],[-3,-1],[-4,0],[-3,1],[-3,1],[-6,7],[-2,0],[-3,0],[-3,1],[-2,2],[-4,2],[1,-2],[4,-3],[3,-4],[1,-3],[-1,-3],[-32,-1],[-13,0],[-3,3],[-7,10],[-1,-18],[-24,-3],[-6,0],[-9,2],[-12,5],[-5,4],[-2,3],[-2,2],[-1,0],[-3,-4],[-3,-8],[-8,2],[-11,2],[-4,8],[0,-11],[-17,1],[-8,0],[-2,10],[0,11],[-4,-7],[2,-6],[0,-7],[-7,2],[-16,1],[-5,1],[0,9],[2,10],[20,9],[6,5],[4,2],[7,1],[9,1],[6,-1],[7,1],[8,1],[6,1],[1,1],[-1,0],[-7,7],[-2,1],[-2,1],[-5,0],[-4,3],[-3,2],[-3,3],[-4,6],[-4,7],[2,4],[7,3],[7,2],[8,1],[6,0],[7,-1],[10,-4],[6,-3],[7,-8],[5,-6],[4,-3],[18,-5],[6,0],[7,0],[14,1],[7,2],[3,1],[2,3],[2,1],[6,5],[10,8],[5,7],[1,2],[2,3],[0,3],[-3,-2],[-16,-16],[-4,-3],[-9,-5],[-5,-1],[-6,0],[-9,2],[-11,-3],[-6,1],[-5,2],[0,12],[-8,9],[8,5],[7,3],[11,8],[3,0],[8,-1],[-4,1],[-5,3],[-10,-1],[4,17],[-7,-13],[-7,-6],[-4,-3],[-5,-2],[-17,-2],[4,6],[4,9],[-4,-3],[-10,-5],[-7,-3],[-7,-1],[-11,0],[-6,3],[1,6],[0,8],[4,3],[6,5],[5,6],[4,6],[16,3],[15,1],[13,3],[7,1],[6,-2],[24,-2],[10,-2],[4,-2],[4,0],[3,2],[4,2],[16,0],[4,0],[4,1],[4,2],[6,3],[1,2],[-4,0],[-4,-1],[-6,-2],[-5,-1],[-6,0],[-11,2],[-20,0],[-11,1],[-4,1],[-3,1],[-2,2],[-2,2],[1,2],[4,1],[3,0],[6,-1],[6,-3],[7,0],[-2,2],[-9,4],[-6,4],[-5,4],[-4,5],[-9,7],[-7,6],[-5,3],[-5,2],[-16,2],[-3,1],[-8,6],[-2,10],[-3,6],[3,8],[5,3],[32,-3],[14,1],[17,-1],[9,-2],[11,-5],[9,-5],[9,-4],[8,-5],[10,-7],[5,-3],[5,-2],[6,-2],[12,-3],[10,0],[5,0],[6,2],[4,2],[-4,0],[-12,0],[-9,1],[-4,2],[-5,3],[-8,6],[-6,4],[-13,6],[-10,7],[-8,6],[0,2],[5,2],[7,1],[43,4],[26,5],[11,6],[1,1],[34,8],[25,3],[9,0],[9,1],[0,1],[-7,1],[-8,1],[-17,0],[-15,1],[-5,1],[1,3],[2,3],[4,4],[5,3],[21,9],[14,3],[4,3],[-30,-6],[-11,-4],[-10,-6],[-6,-2],[-4,1],[-3,-1],[-3,-2],[-3,-3],[-2,-4],[-2,-3],[-2,-2],[-4,-2],[-10,-4],[-24,-7],[-9,-1],[-7,0],[-22,-4],[-7,0],[-8,1],[4,3],[12,6],[3,2],[-8,0],[-8,-2],[-17,-1],[-7,-3],[-6,-4],[-6,-2],[-4,-1],[-5,-1],[-20,0],[-5,0],[-12,3],[-10,-1],[-4,0],[-8,3],[-2,1],[0,2],[5,4],[5,3],[17,8],[11,4],[16,3],[36,3],[2,3],[-37,-3],[-32,-4],[-5,-1],[-8,-4],[-23,-12],[-7,-4],[-11,-1],[-8,2],[-6,1],[-11,4],[-8,2],[-4,1],[-2,2],[-2,1],[-2,2],[3,2],[21,3],[28,0],[13,0],[13,2],[18,5],[20,7],[4,3],[-7,0],[-6,0],[-13,-3],[-20,-7],[-19,-2],[-44,-1],[-15,-2],[-6,0],[-4,2],[-6,3],[1,3],[11,3],[8,1],[2,1],[-12,3],[-1,1],[7,4],[15,5],[7,1],[14,1],[14,0],[0,1],[-14,1],[-10,1],[-14,-2],[-37,-8],[-3,1],[-5,1],[1,2],[20,8],[1,2],[-14,0],[-5,0],[-4,1],[-5,-1],[-8,-3],[-5,-1],[-3,1],[-8,3],[1,3],[6,3],[6,3],[8,2],[12,3],[9,1],[15,0],[7,1],[6,2],[8,4],[9,2],[14,2],[11,0],[7,-2],[5,-3],[6,-3],[0,2],[5,3],[5,1],[7,-1],[6,-1],[8,-3],[7,-1],[3,0],[3,2],[10,0],[0,1],[-3,1],[-4,1],[-35,9],[-1,1],[12,2],[7,2],[4,1],[8,4],[6,2],[10,3],[5,-1],[5,-2],[5,-2],[15,-1],[7,-1],[11,-8],[5,-3],[6,-3],[4,-1],[8,0],[1,1],[-9,4],[-3,2],[1,2],[2,1],[3,0],[7,-2],[19,-5],[29,-7],[11,-1],[7,-3],[6,-3],[6,-2],[1,0],[-5,5],[-14,5],[-37,10],[-15,5],[-7,3],[-5,4],[-1,1],[5,3],[7,1],[9,1],[1,1],[-8,2],[-4,3],[0,1],[9,1],[6,0],[10,-3],[10,-1],[1,1],[-9,7],[-1,2],[1,1],[3,1],[10,-1],[16,-3],[29,-2],[8,0],[-1,1],[-11,2],[-13,3],[-5,2],[-4,2],[-4,2],[-1,1],[8,2],[19,0],[18,-3],[16,1],[10,-1],[4,0],[7,-3],[22,-9],[2,-2],[3,-2],[3,-3],[3,-1],[8,2],[5,2],[-2,2],[-13,5],[-3,2],[-6,3],[-14,6],[-3,3],[-3,2],[39,2],[37,-2],[6,-1],[4,-2],[3,-3],[6,-3],[12,-5],[17,-3],[-3,2],[-13,5],[-5,4],[0,2],[1,2],[2,1],[14,5],[21,2],[2,-1],[16,-7],[8,-3],[5,-1],[-7,4],[-6,2],[0,1],[9,3],[6,1],[25,1],[3,0],[2,-1],[6,-4],[2,-1]],[[2347,9664],[7,-2],[8,1],[8,1],[18,-1],[12,0],[3,0],[5,-2],[3,-1],[2,-3],[-6,-2],[-5,-9],[-1,0],[-5,0],[-3,-1],[-16,1],[-44,1],[-1,1],[-6,5],[-1,2],[1,3],[2,1],[1,1],[13,4],[5,0]],[[2401,9505],[2,-4],[0,-2],[1,-4],[-1,-4],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-2,-1],[-10,-1],[-6,0],[-9,0],[-5,0],[-3,1],[-4,2],[-9,6],[-5,0],[-11,2],[-7,6],[-2,1],[-2,-2],[-1,0],[-1,2],[0,2],[-2,1],[-4,-1],[-1,1],[-1,2],[1,1],[0,2],[5,7],[3,0],[3,2],[2,3],[0,3],[4,5],[3,2],[5,3],[17,5],[5,1],[7,0],[6,-2],[5,-3],[9,-7],[5,-4],[2,-5],[2,-2],[3,-5],[-1,-3],[-1,-2],[0,-2]],[[2222,9443],[23,-12],[4,1],[7,0],[7,2],[10,2],[7,2],[2,1],[5,1],[2,0],[7,-2],[3,-1],[2,-1],[1,-2],[3,-5],[0,-2],[-2,-3],[-2,-1],[-4,-2],[-3,0],[-2,-2],[-3,0],[-1,-2],[0,-1],[1,0],[2,0],[1,1],[4,-1],[1,-1],[2,-2],[-1,-2],[-6,-3],[-9,-3],[-10,-10],[-6,-4],[-1,-1],[-1,-2],[1,-2],[0,-1],[1,0],[6,3],[3,2],[3,1],[6,0],[3,-1],[4,-2],[4,-3],[1,-1],[0,-1],[-2,-2],[4,-2],[4,-4],[0,-3],[-2,-2],[0,-2],[1,-1],[2,1],[5,2],[5,2],[3,0],[1,-1],[2,-4],[1,-4],[0,-4],[-1,-3],[-1,-2],[-4,-3],[-3,-2],[-1,0],[4,-2],[1,-2],[1,-2],[-1,-2],[0,-2],[-4,-5],[0,-1],[1,-1],[3,-3],[0,-8],[-9,-2],[-2,-2],[-3,-3],[-3,-2],[-6,-2],[-4,0],[-16,1],[-2,2],[-1,1],[-1,3],[0,3],[0,1],[0,1],[-2,-1],[-2,-3],[1,-3],[5,-10],[1,-3],[0,-2],[0,-1],[-6,-6],[-3,-1],[-4,-1],[-3,0],[-3,3],[-3,1],[-5,-1],[-1,2],[-2,2],[-3,7],[-5,6],[-5,6],[-10,9],[-6,5],[-8,9],[-3,2],[-2,0],[-5,1],[-2,1],[-1,3],[-4,2],[-1,0],[-2,0],[-5,-2],[-6,2],[-1,2],[-1,2],[-1,1],[-2,2],[-2,3],[-12,6],[-7,7],[-1,3],[0,1],[0,3],[2,4],[2,4],[1,2],[5,3],[4,1],[5,0],[3,-1],[2,-2],[1,-3],[1,-2],[4,-2],[2,-1],[3,-4],[2,-4],[3,-2],[5,0],[5,1],[12,2],[0,1],[1,1],[1,10],[1,0],[4,-4],[1,-1],[1,1],[1,2],[0,1],[-2,6],[-2,2],[-1,1],[-1,1],[-3,-1],[-3,1],[0,2],[0,2],[1,2],[2,1],[3,1],[3,-1],[4,-2],[3,-1],[4,1],[-5,1],[-7,6],[-3,1],[-4,-2],[-2,-1],[-5,-1],[-4,-1],[-15,9],[-1,1],[-1,2],[0,2],[1,1],[4,2],[6,2],[4,0],[3,-2],[5,-4],[5,-3],[0,1],[-1,3],[-2,4],[-1,1],[-4,1],[-3,2],[-1,2],[-1,2],[0,3],[0,1],[2,1],[12,2],[8,-2],[5,-1],[2,3],[0,1],[-3,-1],[-3,0],[-2,2],[0,1],[2,2],[4,1]],[[2641,8943],[1,-1],[1,0],[2,3],[4,8],[2,1],[1,0],[7,-5],[2,-3],[2,-4],[1,-2],[5,-2],[5,-1],[7,-2],[2,-1],[5,-8],[1,-1],[5,-3],[9,-7],[3,-1],[8,-2],[4,-2],[3,-3],[3,-5],[4,-7],[3,-13],[0,-2],[0,-2],[-1,-1],[-5,-5],[0,-1],[5,0],[10,3],[7,-2],[2,0],[1,0],[2,4],[2,-1],[4,-3],[3,-4],[1,-2],[-1,-1],[-2,-1],[6,-2],[5,-3],[-1,-3],[-6,-5],[-5,-4],[-7,-7],[-2,-1],[-1,0],[-3,1],[-6,3],[-16,8],[-5,1],[-7,1],[0,2],[-2,11],[-3,2],[-10,2],[-3,1],[0,3],[1,3],[-2,2],[-3,0],[-3,-1],[-6,-2],[-2,-3],[-1,-2],[-1,-6],[0,-2],[-2,-4],[-8,-8],[-4,-3],[-3,-1],[-1,-1],[-2,-3],[-4,-8],[-1,-2],[-2,-3],[-5,-3],[-4,-3],[-8,-3],[-4,-2],[-3,2],[-2,7],[-4,22],[-1,2],[-1,1],[-1,0],[-14,-3],[-7,1],[-8,-5],[-2,-1],[-3,0],[-3,1],[-1,1],[0,2],[0,2],[1,3],[3,6],[3,4],[1,2],[13,7],[3,2],[2,3],[0,3],[-1,3],[-2,8],[-1,7],[0,4],[1,5],[4,14],[1,6],[2,24],[1,6],[1,7],[2,3],[4,8],[3,3],[4,2],[1,-1],[1,0],[1,-4],[6,-2],[2,-3],[1,-3],[1,-4],[-1,-2],[-3,-3],[0,-1],[0,-1],[5,-4],[4,-10]],[[2286,9588],[0,-2],[0,-2],[-1,-2],[0,-1],[1,-2],[3,-5],[2,-2],[0,-3],[0,-1],[-3,-4],[-1,-4],[0,-2],[2,-4],[0,-1],[-3,-3],[-5,-3],[0,-1],[12,-3],[1,-1],[0,-7],[2,-7],[-1,0],[-3,2],[-5,3],[-6,-5],[1,-9],[4,-4],[1,-3],[0,-1],[-4,-1],[-1,1],[-4,2],[-2,2],[-1,-1],[0,-2],[3,-2],[1,-3],[-1,-1],[-4,0],[-5,0],[-7,-2],[-4,0],[-4,1],[-5,0],[-4,0],[-2,0],[-2,2],[-3,-1],[-6,-3],[-9,1],[-8,0],[-1,1],[-2,3],[-3,7],[0,1],[9,1],[0,1],[-6,2],[-7,2],[-3,2],[0,2],[0,1],[12,3],[9,6],[5,3],[1,1],[4,1],[11,1],[0,2],[-20,-1],[-27,-4],[-9,-1],[-7,1],[-30,-6],[-1,0],[-3,2],[-3,3],[2,2],[9,5],[4,3],[0,2],[3,4],[6,1],[10,-3],[5,-3],[4,-2],[4,1],[4,2],[-1,0],[-7,-1],[-1,0],[-3,3],[-2,2],[-1,3],[0,1],[2,3],[-8,1],[-3,2],[-1,2],[0,1],[3,3],[7,4],[-1,1],[-10,0],[-2,0],[-4,3],[1,2],[3,4],[3,3],[2,0],[3,0],[8,-1],[2,-1],[5,-4],[2,-2],[0,-2],[1,-2],[4,-2],[19,-11],[3,-3],[2,-1],[5,-1],[2,0],[2,1],[1,1],[-8,4],[-2,2],[-2,3],[1,1],[2,0],[6,0],[7,1],[-8,1],[-5,2],[-5,0],[-7,2],[0,1],[2,1],[9,1],[1,1],[1,0],[-3,2],[-3,1],[-13,2],[-5,2],[-1,2],[-1,1],[2,2],[7,4],[5,2],[9,1],[7,0],[4,-1],[10,-6],[4,-4],[8,1],[-2,4],[-2,5],[2,1],[7,3],[5,-1],[7,-4],[1,-2],[7,-2],[5,-1],[2,-1],[1,-2]],[[2127,9752],[6,-1],[8,-4],[7,-7],[1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-2],[4,-1],[0,-1],[0,-2],[0,-1],[3,1],[2,2],[0,1],[1,4],[5,1],[6,3],[3,0],[5,0],[11,-6],[4,0],[2,-1],[1,-1],[0,-2],[-2,-3],[-1,-2],[1,-1],[6,-1],[13,2],[12,-6],[6,-6],[5,-2],[1,-1],[-2,-1],[-1,-3],[-4,-2],[-1,-1],[2,-3],[0,-2],[0,-2],[1,-1],[5,-1],[12,-10],[2,-2],[2,-4],[0,-1],[-2,-2],[-2,-5],[-1,-1],[-5,-1],[-9,-1],[-8,-1],[-9,2],[-8,3],[-3,2],[-2,3],[-1,1],[0,5],[-1,1],[-4,2],[-3,4],[-6,0],[-15,4],[-6,1],[-6,-1],[-9,-1],[-2,0],[-2,1],[-1,2],[0,1],[1,3],[-26,-3],[-8,-4],[-10,1],[-5,1],[-7,4],[-4,3],[-2,3],[-1,3],[3,2],[2,1],[3,1],[14,-2],[12,-2],[6,2],[2,3],[-3,1],[-12,1],[3,2],[10,1],[5,3],[-1,1],[-3,1],[-13,-1],[-5,1],[-1,1],[2,1],[7,5],[0,1],[-3,2],[-3,2],[-1,0],[-7,-1],[-10,-8],[-2,-1],[-2,0],[-2,1],[0,2],[2,2],[4,6],[0,2],[-4,1],[-11,-1],[-7,0],[-1,2],[0,3],[0,3],[2,4],[2,3],[1,2],[15,-1],[25,2],[7,0],[8,-2]],[[2447,9857],[4,-5],[13,-11],[6,-5],[11,-5],[1,-2],[0,-3],[3,-1],[9,-2],[10,-3],[1,1],[4,1],[4,1],[5,-1],[3,-1],[2,-2],[1,-1],[0,-1],[-2,-2],[0,-1],[1,-1],[0,-1],[-2,-4],[1,-1],[5,-4],[4,-2],[9,-2],[6,0],[4,-1],[0,1],[-2,2],[-3,4],[-7,1],[-1,2],[0,4],[0,2],[4,2],[3,0],[8,0],[4,0],[8,-3],[1,-1],[1,-3],[0,-5],[0,-2],[-7,-3],[-2,-2],[2,0],[6,-1],[9,-2],[3,0],[4,-4],[3,-4],[-2,-6],[-3,-8],[-2,-2],[-2,-3],[1,0],[9,1],[2,0],[6,3],[8,0],[3,-1],[2,-1],[2,-3],[3,-4],[1,0],[4,5],[2,1],[2,2],[1,-1],[4,-4],[9,-9],[3,-3],[0,-3],[-3,-2],[-3,-2],[-23,-6],[-10,-4],[-5,-2],[-2,-1],[-6,0],[-1,0],[-1,-5],[-2,-2],[-5,-3],[-6,-5],[-4,-3],[-7,2],[-2,3],[0,6],[-1,2],[1,1],[0,2],[3,5],[0,1],[-1,-1],[-5,-2],[-2,-1],[-1,-3],[-1,-4],[1,-7],[-1,-2],[-2,-2],[1,-1],[5,-1],[1,-1],[1,-1],[0,-2],[0,-2],[-2,-2],[-3,-1],[-4,1],[-8,6],[-3,0],[-1,-1],[0,-2],[3,-5],[0,-4],[-1,-3],[-2,-6],[-2,-2],[-1,-1],[-4,0],[-3,2],[-11,9],[-5,4],[-7,7],[-2,2],[-1,0],[-1,-3],[2,-3],[6,-7],[5,-5],[2,-5],[1,-2],[-1,0],[-2,0],[-2,2],[-6,2],[-2,2],[-2,1],[-3,2],[-5,0],[-4,1],[-5,-1],[0,-1],[5,-2],[1,-1],[2,-2],[1,-2],[-2,-1],[-6,-1],[-9,1],[-13,1],[-14,3],[-13,4],[-9,5],[-3,2],[-1,2],[3,2],[12,1],[12,2],[-2,1],[-22,2],[-7,1],[-4,-1],[-4,1],[-3,1],[-5,4],[-2,3],[0,1],[2,0],[10,0],[1,0],[-5,2],[-16,4],[-6,3],[-1,1],[0,2],[0,1],[6,2],[18,6],[7,1],[6,0],[4,2],[4,5],[19,2],[14,3],[2,1],[-11,-1],[-16,1],[-6,3],[-5,1],[-5,0],[-5,-1],[-10,-4],[-5,-1],[-10,-3],[-3,0],[-2,1],[2,3],[2,1],[0,1],[-4,0],[-5,0],[-4,0],[-12,-4],[-5,-2],[-2,0],[-6,4],[-9,2],[-2,1],[1,6],[3,2],[7,1],[22,5],[1,2],[2,2],[-4,0],[-11,-3],[-9,-1],[-7,0],[-6,0],[-3,1],[-4,2],[-13,8],[-3,4],[-1,3],[-1,3],[-3,6],[27,-4],[11,0],[21,-1],[1,1],[0,1],[0,2],[0,1],[0,1],[8,2],[1,1],[-9,0],[-16,-4],[-6,0],[-7,6],[-7,-1],[-4,0],[-5,2],[-2,1],[-2,2],[-1,1],[0,1],[2,1],[6,2],[3,0],[7,-1],[6,0],[-2,1],[-8,5],[-7,5],[0,7],[6,2],[6,0],[6,-2],[8,0],[5,-2],[4,-4],[4,0],[7,-1],[16,0],[-3,1],[-5,2],[-11,2],[-5,6],[-12,3],[-8,2],[0,1],[6,8],[8,3],[13,-1],[9,2],[10,2],[11,-1],[3,0],[1,1],[2,2],[0,1],[-2,2],[-3,1],[-13,1],[-6,0],[-3,1],[0,2],[-1,1],[0,1],[1,1],[1,1],[3,0],[13,0],[7,1],[8,-1],[18,-4],[5,-2],[6,-3],[3,-3]],[[2380,9614],[6,-1],[4,1],[4,0],[6,-2],[5,-4],[4,-2],[1,0],[1,-1],[0,-3],[0,-1],[0,-1],[-2,-3],[-1,-3],[-3,-2],[-2,-2],[-1,-3],[3,2],[12,8],[7,-1],[12,1],[14,3],[7,1],[7,-1],[5,-1],[10,-4],[4,-2],[1,-2],[1,-1],[-3,-2],[-6,1],[-11,1],[-2,1],[-2,0],[-1,-1],[0,-2],[3,-1],[13,-1],[44,-7],[1,-3],[0,-1],[-2,-1],[-3,-2],[-25,-2],[-14,2],[-12,3],[-4,-1],[3,-4],[7,-1],[6,-2],[3,-1],[13,-2],[2,-1],[4,-3],[3,-1],[3,-2],[3,-4],[1,-1],[4,1],[7,-4],[2,-1],[0,-2],[-2,-2],[-3,-3],[-7,-4],[0,-1],[8,1],[2,-1],[10,-6],[1,0],[1,0],[1,3],[0,2],[-2,3],[1,2],[2,1],[1,1],[2,0],[2,-1],[11,-8],[13,4],[2,-2],[2,-3],[1,0],[5,6],[3,1],[12,-7],[8,-2],[3,-1],[5,-2],[8,-1],[2,3],[-5,4],[3,1],[10,3],[6,0],[11,4],[7,0],[4,0],[13,7],[3,1],[2,2],[5,-1],[15,-3],[4,0],[15,4],[5,1],[6,0],[14,-3],[10,-2],[4,-1],[-2,-3],[1,-1],[1,0],[4,-1],[13,0],[6,-1],[4,-3],[1,-1],[0,-1],[-4,-3],[0,-1],[5,0],[10,-1],[2,0],[2,-4],[2,-5],[0,-2],[-3,-4],[-10,-4],[-10,-4],[-1,-1],[3,-2],[4,-1],[2,0],[9,2],[2,0],[4,-2],[1,-2],[2,-2],[-3,-2],[-12,-3],[-7,4],[-3,0],[-1,0],[1,-1],[3,-3],[1,-2],[-1,-1],[0,-2],[0,-2],[-1,-3],[-1,-4],[-27,-1],[-3,-1],[-7,-3],[-6,-1],[-3,-1],[-4,1],[-10,3],[-6,-1],[-2,1],[-6,2],[-1,1],[-2,2],[-2,4],[0,2],[1,3],[-1,2],[-1,0],[-2,1],[-5,3],[-3,1],[-1,-1],[1,-2],[1,-1],[3,-2],[1,-2],[-2,-5],[0,-1],[-4,-4],[-2,-1],[-7,0],[-10,-3],[-5,-1],[-7,1],[-4,1],[-3,2],[-3,2],[-1,0],[-1,-5],[-1,0],[-2,0],[-4,1],[-3,4],[-1,0],[0,-2],[-1,-2],[-8,-2],[-4,0],[-4,2],[-3,0],[-4,-1],[-8,2],[-2,0],[1,-4],[-3,0],[-6,0],[-10,1],[-6,-2],[-12,1],[-11,1],[-3,0],[-1,2],[0,2],[0,2],[2,3],[3,5],[1,2],[-3,1],[-1,2],[-2,0],[-4,-2],[-2,-5],[-2,-1],[-1,1],[-1,3],[-1,2],[-1,-1],[-1,0],[-1,-2],[-2,0],[-2,0],[-1,-1],[1,-2],[0,-2],[0,-1],[-2,-2],[-5,-2],[-3,-1],[-8,0],[-5,0],[-9,3],[-6,0],[-6,5],[-5,1],[0,2],[2,3],[0,1],[-7,-5],[-1,-1],[1,-3],[-1,-1],[-4,2],[-5,-1],[-1,0],[-4,2],[-5,3],[-3,3],[-4,9],[-2,6],[1,1],[3,1],[-1,2],[-4,3],[-3,3],[-2,2],[0,2],[-1,3],[0,2],[1,1],[2,4],[6,8],[1,1],[0,2],[-1,4],[-1,4],[-1,2],[-3,4],[-5,4],[-6,8],[-5,6],[-6,8],[-3,0],[-3,0],[-7,-3],[-2,-1],[-1,-1],[-5,0],[-15,1],[-6,0],[-4,0],[-7,-2],[-8,1],[-5,5],[-11,3],[-3,2],[-2,2],[1,2],[6,1],[3,2],[1,1],[-6,-1],[-3,0],[-19,8],[-5,1],[-1,1],[-1,1],[0,1],[1,2],[5,-3],[3,0],[4,1],[1,1],[-1,1],[-6,3],[-3,1],[-1,2],[1,2],[0,1],[2,1],[4,0],[5,1],[8,3],[6,1],[6,0],[14,-3],[15,-4],[8,-2]],[[2327,9707],[7,-1],[11,0],[4,-1],[11,-4],[3,-2],[1,-2],[0,-1],[-4,-2],[-7,-2],[-1,-3],[6,-2],[3,-3],[2,-1],[0,-2],[-5,-5],[-3,-1],[-4,0],[-3,-1],[-6,-2],[-9,-2],[-13,-1],[-4,-1],[-6,-2],[-4,-1],[-2,2],[0,1],[0,2],[1,1],[-2,2],[-10,2],[-5,4],[-1,2],[0,1],[12,0],[5,1],[2,1],[1,1],[-2,1],[-9,2],[-13,2],[-1,2],[-6,3],[0,4],[-2,1],[-4,1],[0,1],[-1,2],[0,1],[0,1],[7,3],[-1,1],[-6,6],[-1,4],[0,1],[4,2],[4,0],[13,-1],[6,0],[6,-2],[6,-2],[10,-2],[3,-1],[6,-4],[0,-2],[0,-1],[1,-1]],[[2412,9455],[11,-2],[5,-2],[3,-1],[4,-4],[3,-2],[10,3],[6,1],[16,-1],[12,-4],[5,-2],[3,-2],[-1,-3],[-2,-4],[-3,-4],[-5,-6],[-5,-3],[-1,-2],[-1,-2],[-2,-3],[-5,-6],[-1,-1],[-7,-3],[2,-1],[1,-1],[-1,-3],[-4,-7],[-5,-6],[-3,-4],[-6,-6],[-3,-1],[-5,-1],[-26,5],[-7,0],[-17,-3],[1,-1],[7,-2],[4,-2],[6,-6],[0,-2],[1,-1],[-1,-4],[0,-1],[-9,-10],[-3,-7],[-1,-5],[-3,-2],[-10,2],[-3,0],[-11,-1],[-5,0],[0,9],[0,10],[-2,9],[-8,16],[-1,3],[-1,3],[0,3],[0,3],[0,7],[1,4],[-1,8],[-1,14],[0,4],[0,2],[0,2],[2,1],[3,2],[2,0],[11,-4],[5,-1],[3,0],[-2,1],[-3,2],[-5,5],[-2,4],[0,2],[0,1],[0,2],[1,1],[2,2],[2,1],[6,3],[7,2],[15,1],[5,-1],[6,3],[4,0],[7,-1]],[[2293,9195],[1,-1],[2,1],[1,2],[1,0],[1,0],[4,-3],[3,-4],[3,-3],[5,-2],[11,-7],[3,-5],[3,-8],[3,-6],[3,-4],[3,-3],[5,-3],[4,2],[1,1],[2,-1],[1,-3],[0,-1],[-2,-2],[-3,-1],[-4,-1],[-2,0],[-3,-3],[-3,-3],[-4,-2],[-6,-5],[-4,-2],[-6,-1],[-11,5],[-7,-1],[-6,1],[-6,5],[-5,2],[-10,4],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-2,0],[-1,-1],[-3,-2],[-5,1],[-2,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,0],[-3,-1],[-1,-1],[1,-1],[-1,-1],[-4,0],[-2,1],[-3,2],[-2,3],[-2,4],[0,1],[2,3],[1,2],[10,1],[5,1],[5,3],[7,5],[1,1],[0,1],[0,2],[-2,3],[-1,2],[1,1],[2,0],[-1,1],[-1,1],[-1,1],[0,2],[2,0],[3,0],[4,-5],[2,-1],[3,-1],[-3,4],[-3,6],[-1,3],[0,1],[1,4],[1,1],[1,1],[3,2],[6,2],[2,0],[3,-1],[3,-3],[5,-3],[1,-2],[0,-1],[-2,-1],[-1,-1],[1,-1]],[[3302,7830],[1,0],[4,2],[2,0],[0,-2],[-3,-2],[-2,-1],[2,-2],[0,-1],[-2,-2],[-1,-3],[1,-3],[3,3],[2,0],[2,-1],[2,1],[1,1],[6,10],[0,2],[-7,-3],[0,2],[4,6],[0,3],[2,5],[2,3],[2,2],[2,1],[1,-2],[1,-4],[3,0],[4,-1],[3,-1],[0,-2],[0,-1],[-1,-3],[-1,-3],[3,-3],[-1,-1],[-4,-4],[-3,-3],[-3,-4],[-5,-6],[-8,-3],[-2,0],[-3,1],[-3,0],[-3,-2],[-3,0],[-1,0],[-2,0],[-1,1],[-2,4],[-1,3],[-2,13],[1,7],[2,6],[3,4],[2,4],[7,20],[1,4],[2,4],[3,4],[4,7],[1,1],[2,0],[3,0],[-1,-2],[0,-3],[3,-8],[0,-2],[-2,-7],[-2,-12],[-1,-6],[0,-2],[-1,-3],[-1,-3],[-5,-4],[-2,-1],[-2,-2],[-6,-6]],[[2924,7776],[4,2],[9,9],[6,3],[8,9],[5,1],[2,2],[0,8],[1,2],[3,7],[3,6],[2,9],[5,5],[7,5],[7,10],[4,3],[3,2],[2,4],[2,2],[5,5],[7,1],[6,4],[5,2],[3,4],[5,1],[13,11],[3,5],[5,10],[4,5],[2,5],[6,9],[6,11],[3,9],[5,4],[8,13],[5,6],[2,0],[5,5],[4,5],[5,5],[10,6],[9,7],[12,6],[15,9],[11,5],[9,1],[10,2],[3,0],[16,-4],[7,-5],[9,-10],[1,-3],[0,-4],[-4,2],[-4,0],[2,-2],[5,-7],[0,-8],[-3,-7],[-8,-4],[-2,-3],[-1,-4],[-2,-2],[-4,-2],[-2,-3],[-6,-5],[-3,-1],[-3,1],[-8,5],[-5,4],[-2,-2],[-2,-3],[-5,1],[-2,-1],[-3,1],[-7,-5],[2,-1],[5,3],[2,0],[5,-4],[10,-5],[2,-3],[3,-9],[1,-1],[4,0],[4,5],[3,3],[6,2],[-1,-3],[5,0],[4,-4],[-1,-3],[-3,-6],[-1,-12],[-5,-8],[-7,-7],[2,-2],[2,-1],[4,2],[3,0],[3,-2],[-1,-6],[-1,-4],[0,-3],[2,-7],[3,-2],[1,-9],[1,-5],[0,-4],[2,-3],[1,-4],[9,-1],[2,-2],[6,-1],[1,-1],[2,-3],[-7,-4],[5,-4],[5,-6],[4,1],[2,0],[4,-4],[1,-1],[1,-2],[2,0],[3,2],[5,-1],[6,-2],[-1,-3],[0,-2],[4,1],[3,-2],[1,1],[1,1],[5,4],[8,8],[1,-1],[0,-3],[1,-5],[3,-4],[3,0],[5,2],[1,-2],[2,-4],[3,-6],[-1,-2],[-2,-2],[-3,-2],[10,-1],[1,-1],[1,-2],[-1,-3],[-1,-1],[-1,1],[-4,-1],[-3,-3],[-3,-1],[-2,0],[-2,-2],[-2,-2],[-2,0],[-6,-6],[-7,-3],[-7,-5],[-7,-4],[-7,-4],[-2,0],[-2,0],[-4,-4],[-2,1],[-2,-1],[-2,1],[-2,1],[1,-4],[1,-4],[-1,-1],[-1,-2],[-4,0],[-2,2],[-2,2],[-1,3],[-2,2],[-1,-3],[0,-2],[-2,-4],[-2,6],[-3,-2],[-2,-6],[1,-2],[1,-5],[-1,-2],[-2,1],[-2,-7],[-3,-3],[-3,-7],[-4,-5],[-1,-3],[-6,-9],[-3,1],[-1,-1],[-3,-3],[0,-7],[-2,1],[-1,0],[0,-2],[-1,-1],[-3,2],[-2,-1],[-2,2],[-3,10],[-2,3],[-2,1],[-1,-2],[-1,-2],[-2,4],[-2,16],[0,3],[3,13],[6,12],[-2,0],[-6,-8],[1,2],[1,2],[2,3],[3,4],[4,1],[2,1],[2,1],[3,3],[0,2],[-2,-2],[-4,-2],[1,3],[1,1],[21,21],[4,3],[8,4],[2,3],[-2,2],[4,-1],[-1,-3],[0,-2],[0,-2],[0,-3],[3,-2],[3,-5],[-1,7],[2,4],[10,6],[8,0],[2,3],[-6,1],[-9,0],[-5,1],[-6,-1],[-8,1],[-2,-1],[-2,-4],[-2,2],[-1,0],[-1,1],[2,6],[7,9],[5,7],[1,2],[1,3],[-2,-1],[-2,-1],[-2,4],[-3,4],[0,-2],[1,-5],[-5,-11],[-3,0],[-4,-5],[-7,-4],[-7,-8],[-9,-6],[-2,0],[-5,5],[1,2],[2,4],[-1,-1],[-1,-2],[-3,-2],[2,-4],[-1,-2],[-3,-2],[-2,-4],[-3,-2],[-2,3],[-5,-3],[-5,-1],[-1,1],[0,3],[-2,1],[-3,-1],[-1,1]],[[3459,8152],[-2,-6],[-1,-2],[-2,-1],[-2,-1],[-6,-1],[-3,-1],[0,-4],[0,-2],[1,-1],[1,-1],[3,1],[1,0],[0,-1],[1,-1],[0,-2],[0,-3],[0,-3],[-2,-7],[-3,-4],[-3,-3],[-1,-2],[0,-1],[-1,-5],[-1,-4],[-6,-9],[-2,-2],[0,-2],[0,-5],[-2,-3],[-4,-9],[-1,-3],[-1,-2],[0,-4],[0,-1],[-1,-3],[-1,-3],[0,-1],[0,-2],[1,-1],[0,-2],[-1,-4],[2,3],[4,7],[3,5],[2,2],[2,2],[1,5],[2,4],[2,1],[1,-1],[1,-2],[0,-2],[-1,-4],[0,-1],[2,3],[4,2],[2,-1],[3,-3],[2,1],[4,2],[1,-1],[-1,-3],[-1,-2],[-4,-4],[-9,-7],[-3,-5],[1,0],[2,2],[2,1],[2,0],[1,0],[-1,-2],[0,-3],[-5,-8],[1,0],[6,4],[4,-5],[5,2],[3,1],[0,-1],[1,-2],[0,-3],[2,1],[0,1],[0,6],[1,-1],[1,-1],[0,-4],[0,-5],[-1,-4],[-3,-5],[1,-3],[-1,-2],[1,0],[2,2],[0,1],[0,2],[0,2],[2,2],[3,3],[1,1],[1,-1],[-1,-2],[1,1],[2,2],[2,2],[2,1],[2,1],[2,4],[2,2],[2,2],[1,1],[-1,-4],[1,-4],[0,-3],[0,-1],[2,4],[1,1],[1,1],[1,-1],[9,2],[2,-1],[3,-3],[4,-3],[2,-4],[0,-4],[-1,-3],[-2,-3],[-3,-3],[-1,-2],[0,-3],[-1,-1],[-2,-2],[-7,-6],[2,0],[4,1],[3,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[1,-1],[2,-1],[3,1],[2,-1],[0,-2],[-2,-4],[-1,-3],[-2,-3],[-5,-3],[-2,-2],[1,0],[4,3],[3,0],[1,0],[2,3],[3,1],[2,-2],[4,5],[1,1],[3,-1],[1,1],[3,3],[2,1],[1,-1],[0,-4],[-1,-3],[0,-2],[-2,-4],[-2,-2],[-1,-1],[-2,1],[-1,-1],[-2,-4],[-3,-3],[-3,-2],[2,-1],[0,-4],[0,-1],[-4,-2],[-2,-1],[-3,-1],[2,-1],[4,1],[1,-1],[-1,-2],[-1,-3],[-5,-7],[0,-1],[1,-3],[1,-3],[1,-2],[3,0],[2,1],[2,5],[7,14],[5,4],[5,5],[1,-1],[0,-1],[0,-1],[-2,-4],[-2,-3],[-3,-9],[-1,-5],[0,-4],[0,-9],[0,-1],[1,-2],[2,2],[3,4],[2,4],[2,6],[0,2],[2,0],[0,-1],[1,-3],[1,-4],[0,-4],[0,-5],[-1,-3],[-6,-18],[1,-3],[0,-2],[0,-3],[-3,-8],[-1,-6],[-2,-2],[-1,-2],[-1,0],[-2,0],[-1,3],[-1,1],[-1,0],[-1,-1],[-4,-4],[-1,0],[-1,0],[-1,3],[1,11],[0,4],[-1,4],[1,5],[0,2],[-1,0],[-2,-3],[-2,-4],[-2,-5],[-5,-5],[-1,-1],[-1,0],[-1,1],[-1,2],[0,2],[0,3],[2,7],[3,10],[3,7],[1,3],[-1,2],[-1,2],[-1,8],[-1,6],[-2,3],[-4,3],[-1,-5],[-5,-12],[0,-5],[-1,-2],[-1,-2],[-2,-1],[1,2],[2,7],[-1,0],[-2,-5],[-2,-3],[-3,0],[-2,0],[-1,-1],[-7,-12],[0,-4],[-1,-3],[-3,-6],[-2,-3],[-2,0],[-2,1],[-2,0],[-3,-2],[-4,-1],[-2,1],[-1,0],[-2,3],[0,1],[0,1],[1,3],[3,3],[1,1],[5,2],[3,2],[3,4],[1,2],[5,11],[6,4],[2,3],[3,4],[0,1],[-3,-2],[-2,0],[-2,0],[-1,2],[-4,-1],[-4,1],[-1,-1],[-1,-5],[0,-3],[-1,-1],[-1,-1],[-2,0],[-6,2],[-1,1],[-1,0],[-6,-1],[-1,0],[1,1],[6,4],[0,11],[0,2],[-2,-1],[-2,-2],[-2,0],[-1,1],[-1,0],[-2,-6],[-1,-1],[-2,0],[-4,-3],[-7,-1],[-1,-2],[-5,1],[-15,3],[-5,0],[-6,2],[-1,1],[-9,-1],[-3,1],[0,2],[0,1],[-2,-3],[-3,-1],[-2,-2],[-10,-3],[-4,0],[-3,2],[-1,1],[-2,6],[-1,8],[0,1],[0,3],[2,3],[9,10],[7,9],[3,5],[3,2],[4,4],[0,1],[-4,-1],[-3,1],[-4,1],[-6,-1],[-6,0],[0,2],[3,4],[6,7],[1,0],[-2,-4],[-1,-2],[1,-2],[1,-1],[4,0],[0,1],[2,8],[2,8],[2,6],[2,5],[2,1],[1,-1],[3,-1],[4,-5],[1,0],[1,0],[-2,2],[-1,2],[0,2],[1,5],[2,2],[0,1],[-3,0],[-3,2],[-1,3],[1,4],[0,3],[3,4],[2,2],[2,0],[3,-4],[1,1],[0,1],[-3,6],[0,4],[0,1],[6,19],[2,10],[4,15],[1,3],[2,4],[1,2],[3,0],[1,0],[-2,2],[-1,2],[0,1],[1,1],[1,2],[3,2],[2,4],[1,5],[0,1],[-1,2],[0,1],[2,1],[4,6],[1,1],[1,7],[2,3],[2,2],[3,2],[8,5],[5,5],[4,0],[1,-3],[5,-3],[1,3],[-2,3],[1,1],[4,1],[1,-1],[1,-1],[0,-2]],[[2594,9274],[2,-1],[6,1],[5,2],[9,5],[5,1],[15,0],[3,-1],[-2,-2],[0,-1],[0,-1],[2,-2],[3,-2],[2,2],[0,4],[3,15],[1,5],[0,4],[0,4],[-1,3],[-4,1],[-5,0],[-3,0],[-3,1],[-3,1],[-1,2],[-4,5],[-2,3],[-6,5],[-3,2],[2,2],[5,2],[3,3],[4,6],[3,1],[8,-1],[11,-5],[8,-4],[2,-1],[0,1],[-2,2],[-8,6],[-4,4],[-2,3],[1,1],[4,1],[1,2],[-6,1],[-3,0],[-3,-1],[-3,0],[-5,2],[-1,1],[-3,4],[-2,4],[-1,2],[-1,1],[0,5],[0,3],[0,3],[2,2],[3,4],[2,1],[3,1],[8,-2],[20,-7],[0,2],[-23,10],[-8,2],[-2,4],[12,13],[11,3],[6,4],[9,0],[8,-3],[1,1],[-4,5],[0,1],[5,3],[9,3],[11,2],[2,2],[3,1],[5,1],[12,0],[7,0],[10,-2],[5,-4],[2,-2],[3,-7],[3,-9],[3,-4],[6,-3],[4,-2],[2,-3],[0,-3],[-1,-4],[1,-4],[3,-4],[2,-2],[4,-3],[0,-1],[-1,-2],[-3,-2],[-7,-7],[-9,-8],[-7,-6],[0,-2],[13,10],[5,0],[0,-2],[-3,-5],[-3,-4],[-4,-3],[1,-1],[6,-5],[-1,-1],[-3,0],[-1,0],[-1,-1],[-1,-1],[0,-2],[1,-3],[0,-2],[-1,-1],[1,0],[2,0],[1,1],[3,3],[9,9],[5,4],[2,0],[5,-2],[2,0],[-6,7],[-1,2],[2,3],[0,1],[4,2],[2,1],[2,-1],[2,-3],[1,-3],[2,-1],[4,1],[3,3],[4,-2],[5,-4],[0,-5],[0,-5],[0,-4],[6,-6],[5,-3],[1,0],[0,1],[-1,2],[-3,2],[-2,4],[-2,4],[1,9],[4,5],[3,-1],[4,-3],[4,0],[5,0],[11,-6],[5,0],[0,2],[-4,2],[-7,3],[-10,4],[-5,4],[0,2],[0,2],[0,2],[1,2],[2,1],[10,5],[7,3],[5,0],[9,0],[10,-1],[5,-1],[6,-4],[8,-3],[3,-1],[3,0],[4,1],[4,0],[11,-5],[3,-3],[2,-3],[1,-4],[1,-3],[0,-2],[-10,-11],[-4,-2],[-2,-4],[-4,-7],[-4,-5],[0,-1],[3,2],[3,6],[3,4],[4,4],[8,5],[7,2],[6,-1],[5,0],[4,-1],[2,-1],[1,-1],[1,-3],[0,-3],[-1,-2],[-2,-3],[-8,-3],[-5,-3],[-3,-1],[-8,-1],[0,-1],[7,-1],[7,0],[0,-1],[-4,-5],[-1,-4],[1,-3],[0,-2],[-3,-6],[-3,-4],[1,-1],[7,7],[2,7],[2,7],[4,4],[2,1],[7,1],[4,3],[4,2],[1,0],[3,-2],[0,-1],[-4,-7],[-9,-11],[3,1],[3,3],[3,2],[4,4],[3,-3],[4,-3],[2,-6],[4,-3],[2,-2],[0,3],[-4,8],[1,3],[3,2],[8,6],[5,-2],[4,-2],[1,1],[5,-1],[6,-1],[7,-1],[7,-3],[5,-3],[3,-3],[2,-3],[1,-1],[1,-4],[-1,-2],[-5,-5],[-2,-3],[-3,-1],[-7,1],[-3,0],[-2,-2],[-8,-7],[-4,-3],[-4,-2],[-1,-1],[9,0],[2,2],[3,4],[3,4],[8,2],[10,-4],[5,0],[4,4],[5,3],[1,1],[1,-1],[4,-3],[1,-2],[-1,-6],[0,-2],[-3,-5],[-7,-6],[-5,-3],[-5,-1],[-6,-3],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[3,-3],[1,0],[1,2],[4,5],[2,2],[2,0],[1,0],[1,-1],[2,-1],[0,-5],[-4,-17],[3,5],[7,18],[2,3],[4,4],[8,5],[6,3],[7,2],[4,1],[4,0],[3,-3],[3,-1],[5,1],[3,0],[3,-1],[3,-2],[5,-3],[11,-4],[1,-1],[2,-2],[1,-2],[0,-3],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-4,-4],[-2,0],[-6,-2],[-6,0],[-4,-2],[-7,-3],[-10,-7],[0,-2],[4,-1],[3,1],[4,5],[5,2],[6,1],[9,2],[4,-1],[1,0],[0,-1],[1,-2],[-2,-2],[-2,-2],[-4,-6],[3,-1],[4,-1],[3,2],[2,3],[2,2],[3,1],[2,1],[2,1],[1,1],[-3,2],[0,1],[1,3],[2,3],[2,2],[2,0],[6,-2],[4,-4],[9,-10],[2,-2],[3,-8],[1,-4],[-1,-2],[-1,-2],[-1,0],[-2,0],[-13,3],[-6,-1],[-2,0],[-2,-2],[-2,-2],[-1,-2],[-3,-1],[-8,0],[-4,-1],[-8,-3],[-3,-1],[-1,-2],[5,0],[8,3],[8,0],[12,-6],[4,0],[3,0],[2,1],[11,-1],[3,0],[5,-3],[8,-5],[1,-1],[1,-1],[1,-2],[-1,-4],[0,-1],[-3,-1],[-11,1],[-4,1],[-4,-1],[-3,0],[-5,2],[-4,2],[-8,-2],[-5,1],[-6,-1],[-12,-6],[1,-1],[16,5],[3,0],[5,-2],[8,-4],[3,-2],[0,-6],[-2,-4],[-2,-4],[-4,0],[-8,3],[-4,0],[-2,0],[-4,-2],[-1,0],[-14,4],[-3,0],[0,-1],[13,-6],[9,0],[6,-1],[3,-2],[2,-1],[0,-4],[3,-4],[3,-1],[1,0],[3,1],[3,0],[3,-1],[3,-2],[4,0],[3,-2],[2,0],[8,1],[3,-1],[1,-1],[-2,-1],[-6,-3],[-1,-3],[3,-3],[2,-3],[0,-2],[-2,-5],[0,-2],[5,4],[1,-1],[0,-5],[1,0],[2,5],[-1,6],[3,2],[8,2],[-1,-9],[0,-5],[-4,-8],[-3,-3],[2,-1],[1,0],[2,1],[3,6],[7,6],[1,1],[0,-3],[-1,-4],[3,-2],[3,2],[2,2],[3,-1],[2,0],[0,-2],[-1,-8],[0,-2],[4,-5],[0,3],[-1,6],[1,3],[3,3],[6,5],[3,1],[1,-1],[3,-2],[-1,-2],[-3,-1],[-2,-3],[-1,-4],[2,-2],[5,0],[5,3],[3,-1],[4,-4],[7,-7],[3,2],[5,-6],[-6,-4],[2,-8],[-9,0],[-4,0],[-3,0],[-4,0],[4,-2],[5,-1],[1,-2],[5,0],[3,0],[6,0],[1,3],[4,2],[2,2],[2,-1],[6,-2],[8,-6],[-4,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-1],[-11,-10],[2,0],[5,2],[9,4],[5,1],[3,-1],[2,0],[2,1],[3,-1],[6,-2],[7,9],[4,-2],[4,-5],[9,-9],[4,-5],[2,-2],[0,-3],[-4,-2],[-2,-1],[-6,5],[-5,2],[-3,0],[-3,-2],[1,-1],[12,-7],[2,-5],[0,-2],[-8,-4],[-2,0],[-6,2],[-3,3],[-3,1],[-4,0],[-1,0],[4,-6],[0,-1],[-2,-1],[-1,-3],[8,-4],[6,-5],[1,-2],[-4,-1],[-3,0],[-7,0],[-3,1],[-1,-1],[4,-2],[1,-2],[1,-2],[1,-2],[0,-2],[-3,-2],[-3,-5],[-2,-4],[-3,-1],[-1,1],[-4,-1],[-6,2],[-2,2],[-6,9],[0,-1],[1,-5],[0,-2],[-6,-2],[0,-1],[4,-2],[4,-1],[0,-4],[0,-18],[-1,-6],[-3,-6],[-3,-5],[-4,3],[-1,4],[-1,1],[-2,2],[-2,1],[-3,0],[-2,-3],[-3,2],[-3,4],[1,8],[1,5],[-2,-2],[-3,-7],[-3,-8],[-3,3],[-2,4],[-3,4],[-3,4],[-4,5],[-2,6],[-1,2],[-2,5],[-1,1],[0,1],[-2,3],[1,3],[2,4],[3,3],[4,3],[5,1],[2,4],[3,6],[3,5],[4,3],[-2,0],[-4,-2],[-3,-3],[-4,-6],[-3,-3],[-8,-4],[-3,-1],[-4,0],[-8,0],[-2,1],[1,4],[6,7],[-1,1],[-2,-3],[-3,-2],[-2,0],[-3,0],[-4,4],[-2,1],[-4,2],[-2,1],[-6,11],[-2,3],[-1,2],[-2,3],[-3,1],[-1,0],[1,-2],[0,-2],[-3,-1],[-3,0],[-3,2],[0,-3],[3,-5],[0,-6],[-1,-1],[-2,0],[-2,1],[-5,4],[-5,4],[-4,2],[0,-2],[2,-6],[3,-5],[4,-5],[7,-6],[3,-3],[-2,-4],[-2,-2],[-2,0],[-4,0],[-7,2],[-4,3],[-5,7],[-9,7],[-2,0],[-6,-3],[1,-1],[4,0],[3,-1],[7,-5],[0,-2],[-1,-3],[0,-3],[2,-4],[2,-3],[4,-1],[2,-1],[1,-1],[-3,-8],[0,-3],[1,-1],[6,4],[2,1],[2,0],[2,-1],[2,-2],[2,-3],[0,-2],[1,-1],[5,-3],[0,-1],[-5,-4],[-1,0],[1,-1],[4,-2],[3,-3],[2,-4],[0,-2],[0,-2],[0,-1],[2,-1],[1,1],[1,-1],[1,-3],[2,-9],[1,-3],[1,0],[0,9],[1,2],[3,-2],[5,-4],[3,-3],[1,-1],[-3,-3],[1,-1],[1,-2],[2,0],[1,4],[3,3],[2,2],[5,-2],[4,-5],[0,-1],[3,-2],[2,1],[4,-6],[-2,-2],[-4,-4],[-1,-1],[2,0],[8,0],[2,-1],[1,-3],[-4,-7],[-3,0],[-5,0],[-2,0],[0,-1],[6,-4],[2,-2],[3,-3],[1,-3],[0,-1],[-1,-2],[5,-1],[3,1],[3,0],[3,0],[0,-1],[0,-3],[-3,-3],[1,0],[3,0],[2,-1],[2,-6],[2,-5],[-1,-1],[-3,0],[1,-7],[1,-6],[0,-6],[0,-5],[-2,-1],[-3,0],[0,1],[-6,16],[-1,3],[-2,3],[-5,7],[0,-2],[1,-3],[2,-5],[1,-9],[1,-6],[0,-3],[-1,0],[-1,-1],[1,-2],[4,-6],[2,-4],[2,-4],[1,-3],[1,-1],[0,-1],[-2,-1],[-3,0],[-2,0],[-6,4],[0,-1],[3,-14],[0,-3],[-2,-1],[-2,1],[-2,4],[-4,4],[-5,5],[-4,4],[-2,-1],[0,-1],[-1,0],[-1,1],[-1,3],[-2,2],[-7,6],[-1,0],[1,-2],[1,-4],[-1,-1],[-2,0],[-3,2],[-2,4],[-3,7],[-2,3],[0,-2],[1,-7],[0,-2],[-2,0],[-1,0],[0,2],[-1,3],[-2,2],[-2,2],[-2,1],[0,3],[-1,1],[-4,-1],[-3,2],[-6,8],[-6,9],[-4,5],[-1,1],[2,-6],[2,-8],[1,-4],[-2,0],[-2,1],[-11,11],[-7,5],[-4,1],[-6,1],[-2,-3],[4,-6],[3,-5],[3,-3],[5,-6],[5,-8],[2,-3],[6,-3],[3,-1],[4,0],[0,-1],[-2,-3],[0,-1],[8,-3],[2,-2],[3,-4],[2,-1],[6,-8],[2,-1],[6,-3],[1,-1],[4,-6],[2,-2],[2,-7],[3,-3],[5,-3],[2,-1],[1,-1],[-1,-3],[0,-1],[-3,-2],[0,-3],[2,-5],[0,-3],[-2,-1],[-4,-2],[-2,0],[-2,2],[-4,2],[-7,5],[-10,3],[-4,2],[-2,2],[-2,1],[-26,4],[-4,2],[-3,1],[-2,2],[-10,5],[-1,1],[-7,9],[-5,10],[-2,1],[-5,1],[-5,0],[-3,-1],[-4,0],[-3,1],[-7,5],[-6,2],[-6,4],[-2,2],[0,1],[4,5],[-1,0],[-8,-4],[-2,1],[-4,4],[-4,3],[-6,10],[-4,3],[0,1],[5,1],[3,-1],[2,1],[5,4],[2,2],[0,2],[-4,0],[-1,1],[0,2],[-2,2],[-3,2],[-3,1],[-10,-1],[-2,1],[0,2],[2,5],[1,2],[0,1],[-2,0],[-6,-4],[-1,0],[-3,4],[-1,5],[-1,2],[-2,1],[-5,5],[-7,9],[-3,3],[-3,3],[-2,1],[1,1],[4,8],[0,2],[-4,-1],[-5,2],[-3,-2],[-2,0],[-2,1],[-1,-1],[-1,-6],[-1,-2],[-2,-1],[-1,1],[-1,1],[0,1],[0,8],[-3,1],[-5,1],[-2,0],[-1,2],[-1,2],[-1,4],[-1,3],[-2,0],[-1,0],[-1,-1],[-1,-1],[-3,0],[0,-2],[2,-3],[3,-4],[2,-5],[-1,-3],[-6,-2],[-4,-1],[-5,1],[-3,1],[-4,3],[-6,-1],[-2,-7],[-1,-1],[-6,0],[-3,0],[-8,-4],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-3,0],[-5,2],[-4,1],[-3,-1],[-3,1],[-4,3],[-3,1],[-3,0],[-1,0],[-6,6],[-1,2],[-4,7],[0,2],[-1,3],[1,2],[1,4],[1,7],[2,3],[1,2],[3,3],[12,5],[3,2],[0,1],[-3,7],[0,1],[1,1],[2,4],[1,1],[2,0],[4,-1],[4,-1],[5,0],[8,-3],[12,-5],[6,-3],[5,-5],[4,-5],[0,-3],[-1,-3],[-1,-1],[0,-2],[1,-1],[3,-2],[1,0],[-1,3],[1,2],[1,2],[0,2],[-1,3],[-1,2],[-2,2],[-7,7],[-1,3],[3,1],[11,-2],[4,0],[1,3],[2,2],[2,1],[4,0],[5,-1],[2,0],[2,0],[3,2],[5,5],[2,1],[4,0],[4,1],[5,-2],[4,0],[-1,3],[-2,6],[-3,7],[-2,2],[-6,4],[-7,8],[-3,5],[-1,2],[1,2],[1,2],[12,9],[10,8],[4,5],[2,3],[2,2],[2,2],[5,1],[1,2],[1,4],[0,3],[5,9],[3,2],[5,2],[4,2],[4,7],[-1,1],[-2,2],[-1,2],[-6,18],[-4,9],[-5,7],[-5,10],[-7,9],[0,2],[1,3],[-1,1],[-7,-4],[-2,-1],[-3,2],[-2,2],[-1,4],[0,2],[1,2],[1,5],[0,2],[0,2],[-1,2],[-1,1],[-2,0],[-4,1],[-1,-1],[4,-7],[-1,-2],[-5,-1],[-2,1],[-3,1],[-2,1],[-6,7],[-1,3],[0,2],[0,1],[-2,-1],[-1,0],[-3,1],[0,1],[4,4],[1,1],[-3,1],[-3,1],[0,1],[1,1],[4,2],[1,2],[-2,1],[-2,0],[-2,-2],[-5,-5],[-3,-2],[-4,2],[-2,1],[-2,-1],[-3,-3],[-6,-3],[-11,-7],[-5,-2],[-5,1],[-1,1],[0,2],[1,2],[0,2],[1,1],[-1,8],[1,2],[2,1],[3,1],[8,-1],[4,0],[3,2],[2,2],[3,3],[0,3],[-2,5],[-1,1],[-8,4],[-4,2],[-3,0],[-3,1],[-1,2],[-2,3],[0,2],[0,2],[2,2],[6,2],[-5,2],[-3,-1],[-2,-1],[-2,-4],[-2,-1],[-5,2],[-3,1],[-2,1],[-1,1],[1,1],[2,1],[4,3],[1,2],[-3,3],[-2,0],[-6,1],[-7,-1],[-3,1],[-1,3],[-1,4],[0,4],[-1,8],[-2,3],[-2,1],[-8,-2],[-2,0],[-2,1],[-6,5],[-2,2],[-1,0],[-4,5],[-2,1],[-2,3],[-2,4],[-3,1],[-2,-1],[-3,-3],[-2,-3],[-2,-2],[0,-2],[2,-2],[9,-3],[2,-1],[2,-3],[2,-4],[1,-4],[-1,-4],[-1,-2],[-2,-2],[-5,-3],[-6,-1],[-6,-1],[-3,1],[-15,5],[-3,0],[-3,1],[-8,3],[-4,0],[-8,2],[-13,1],[-2,-1],[3,-3],[3,-1],[3,0],[3,-2],[5,-5],[3,-3],[2,-3],[0,-1],[-2,-3],[-18,12],[-11,-4],[-5,-1],[-4,-1],[-6,2],[-12,6],[-4,2],[-2,0],[-11,-2],[-9,0],[-18,2],[-7,2],[-2,1],[-2,1],[-4,0],[-10,2],[-10,-4],[-12,4],[-3,2],[-1,2],[-4,6],[0,4],[1,3],[1,2],[1,1],[-6,-3],[-3,-1],[-3,0],[-8,1],[-2,0],[1,-2],[2,-1],[0,-2],[-5,0],[-7,0],[-3,0],[-2,0],[-3,-3],[-1,-1],[-2,0],[-8,7],[-6,4],[-7,2],[-3,1],[-2,2],[-10,13],[-2,3],[-3,11],[-1,2],[-1,2],[2,0],[10,-1],[9,0],[5,-1],[6,-3],[7,-2],[6,0],[8,1],[10,2],[1,1],[-6,2],[-6,3],[-5,5],[-3,1],[-5,1],[-15,1],[-14,3],[-9,4],[-8,4],[-3,2],[-1,2],[-1,5],[-1,9],[-2,6],[-1,3],[0,3],[3,6],[7,6],[0,1],[-1,0],[-3,2],[-1,2],[-1,4],[0,3],[1,3],[1,3],[3,6],[5,7],[5,6],[0,2],[1,6],[1,4],[0,3],[1,3],[3,4],[4,4],[6,3],[1,2],[0,2],[0,1],[1,1],[15,11],[6,4],[6,3],[7,2],[19,5],[11,1],[12,-1],[24,-2],[2,-2],[1,-1],[1,-2],[-1,-2],[-6,-5],[-8,-4],[-5,-4],[-9,-9],[-3,-3],[-11,-17],[-2,-3],[-2,-2],[-1,-6],[1,-2],[1,-4],[6,-8],[2,-4],[0,-3],[-1,-8],[0,-4],[0,-4],[2,-6],[2,-7],[5,-7],[8,-8],[6,-5],[6,-3],[6,-6],[2,-2],[-3,-3],[-8,-5],[-9,-2],[-6,-1],[-6,-4],[-8,-3],[-4,-2]],[[3283,8012],[-12,-1],[-9,3],[-7,2],[-6,3],[-15,10],[-2,4],[-1,4],[-3,4],[-3,3],[-15,10],[-2,3],[4,2],[3,2],[3,-1],[11,-3],[13,-4],[5,-2],[7,-4],[6,-5],[14,-12],[2,-1],[7,-7],[2,-4],[1,-4],[-1,-2],[-2,0]],[[3227,7860],[1,0],[1,1],[2,5],[4,-2],[2,-2],[1,1],[1,0],[3,-3],[4,-2],[5,0],[7,1],[1,1],[7,1],[7,0],[2,-1],[1,-1],[1,-1],[-4,-4],[-4,-5],[-6,-4],[-1,-2],[0,-4],[0,-4],[1,0],[1,-2],[-1,-1],[-6,-1],[-2,1],[-2,1],[-1,4],[-2,0],[-1,0],[4,3],[-2,5],[-2,-1],[-1,2],[0,3],[2,1],[0,2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[3,-1],[-1,-1],[-2,-1],[-8,3],[-2,2],[-3,3],[-2,4],[1,1],[1,0],[0,1],[-3,1],[-5,0],[-2,1],[0,8],[-1,2],[-3,2],[-4,0],[0,3],[1,5],[2,3],[2,4],[2,3],[4,6],[0,-4],[0,-4],[-3,-8],[6,-8],[0,-2],[1,-2],[-1,-2],[0,-1],[2,-1],[0,-2]],[[2722,8810],[1,-2],[0,-2],[0,-3],[-1,-3],[-1,-3],[-2,-5],[-8,-7],[-3,-4],[-2,-3],[-12,-11],[-2,-1],[-1,1],[-4,1],[-3,1],[-9,-5],[-1,1],[0,5],[-1,2],[-4,6],[0,1],[0,2],[0,1],[5,6],[10,19],[2,1],[5,-2],[2,-1],[2,0],[7,4],[7,0],[6,2],[3,0],[3,0],[1,-1]],[[2790,8779],[2,-2],[4,-5],[1,-3],[1,-3],[-1,-5],[-1,-5],[-1,-3],[-3,-4],[-2,-5],[-2,-6],[-1,-4],[-2,-1],[-1,-1],[-1,0],[-3,2],[-3,4],[-2,2],[-3,2],[-2,2],[0,3],[0,7],[0,4],[0,3],[1,3],[2,3],[4,8],[3,3],[1,0],[4,0],[2,0],[2,1],[1,0]],[[2898,9119],[14,-5],[2,-2],[0,-2],[1,-1],[0,-4],[-1,-2],[-1,-3],[0,-2],[1,-12],[0,-7],[-1,-5],[-2,-5],[-3,-3],[-3,-2],[-10,-5],[-8,-1],[-8,0],[-10,-2],[-4,1],[-3,0],[-1,1],[-2,3],[-3,5],[-1,6],[-3,10],[0,2],[2,8],[3,5],[5,9],[6,8],[1,1],[3,2],[6,2],[6,-1],[2,1],[3,1],[3,0],[6,-1]],[[2790,9426],[5,-1],[30,2],[6,-1],[19,-7],[5,-2],[2,-3],[3,-4],[1,-1],[7,-3],[2,-3],[1,-2],[2,-3],[3,-3],[3,-1],[2,-1],[-1,-5],[2,-2],[3,-3],[1,-1],[-2,-3],[-7,-1],[-17,1],[-22,4],[-14,-1],[-6,-2],[-16,-5],[-6,0],[-5,-1],[-9,4],[-3,3],[-1,1],[-2,5],[-2,6],[-1,5],[-1,3],[-3,2],[-9,1],[-3,2],[-1,2],[-1,2],[0,3],[0,3],[1,0],[1,0],[-2,3],[-1,4],[0,4],[0,3],[1,1],[1,1],[4,1],[6,0],[8,-4],[7,0],[9,-3]],[[2757,8222],[-2,-1],[-6,2],[-2,1],[-7,4],[-14,6],[-4,3],[-1,2],[2,5],[2,2],[1,1],[14,2],[6,-1],[6,-9],[4,-7],[2,-5],[0,-3],[-1,-2]],[[2810,8418],[-1,-1],[-1,0],[0,2],[1,4],[1,3],[0,3],[1,2],[1,3],[1,1],[1,0],[1,-7],[-1,-4],[-1,-2],[-1,-3],[-2,-1]],[[2807,8425],[-2,-6],[-2,-6],[-3,-10],[-1,-1],[-1,3],[3,12],[0,2],[0,1],[-1,2],[-1,-3],[-5,-13],[-1,-3],[-1,-1],[-1,0],[-3,0],[-4,-4],[7,17],[1,1],[-2,1],[0,-1],[-6,-10],[-4,-4],[-2,1],[-1,1],[0,1],[6,11],[6,7],[2,5],[1,5],[0,3],[0,3],[1,1],[0,-1],[0,-4],[-1,-8],[-1,-3],[-1,-4],[3,1],[1,4],[2,6],[1,5],[1,8],[0,-2],[1,-1],[2,-1],[1,-1],[0,-2],[1,-2],[2,-1],[1,0],[1,-3],[0,-2],[0,-1],[1,0],[-1,-3]],[[2778,8421],[-1,0],[-2,1],[1,4],[1,2],[4,1],[1,1],[1,1],[1,0],[2,2],[2,3],[1,0],[-1,-4],[-2,-4],[-8,-7]],[[2504,9634],[-7,-3],[-4,0],[-21,7],[-4,3],[-1,2],[0,4],[0,4],[1,3],[1,1],[2,1],[5,1],[5,-1],[7,-1],[7,-2],[9,-6],[4,-3],[0,-3],[0,-3],[0,-1],[-1,-1],[-3,-2]],[[2095,9627],[-4,-1],[-8,2],[-6,1],[-4,5],[-5,5],[-4,6],[-2,4],[-2,2],[-1,4],[-5,6],[5,1],[8,-1],[3,-2],[5,-3],[6,-6],[2,-2],[0,-3],[1,-2],[6,0],[6,-5],[1,-1],[1,-4],[0,-1],[-1,-4],[-2,-1]],[[2256,9791],[0,-8],[0,-4],[-2,-2],[-1,-1],[-2,0],[-7,2],[-3,1],[0,1],[0,2],[-6,3],[-9,0],[-4,0],[-2,1],[-1,1],[-1,5],[1,1],[1,3],[1,1],[6,3],[2,0],[9,-1],[8,0],[3,-1],[4,-2],[2,-2],[1,-3]],[[2075,9384],[-1,0],[-3,1],[-4,3],[-6,6],[-8,6],[-1,3],[-2,3],[-9,6],[-6,3],[-5,1],[-1,2],[3,5],[4,4],[2,2],[7,1],[24,3],[5,0],[6,-2],[8,-5],[3,-1],[2,-1],[2,-2],[0,-2],[1,-5],[-1,-6],[-1,-3],[-5,-8],[-5,-4],[-1,-3],[-2,-3],[-3,-3],[-3,-1]],[[2160,9562],[6,-3],[0,-1],[-1,-1],[-7,-2],[-3,-1],[-3,-4],[-2,-1],[-10,-1],[-10,0],[2,3],[6,6],[-5,2],[-16,-4],[-6,2],[5,6],[-5,1],[-7,0],[-4,4],[1,4],[10,2],[12,2],[13,3],[10,0],[4,-2],[2,-4],[1,-6],[2,-1],[5,-4]],[[2110,9595],[2,0],[4,1],[3,0],[3,-2],[0,-2],[11,-3],[4,-2],[1,-1],[-2,-1],[-3,-2],[-3,-2],[-4,-1],[-23,0],[-2,1],[-1,1],[-3,7],[-2,3],[-1,3],[1,1],[2,2],[8,2],[4,0],[2,-1],[1,-1],[0,-1],[-2,-2]],[[1713,9537],[-8,-4],[-6,1],[-7,2],[-6,1],[-2,1],[-1,1],[2,3],[3,2],[6,4],[11,8],[7,3],[6,2],[7,5],[4,2],[3,0],[4,-1],[0,-1],[-4,-7],[-2,-2],[-5,-7],[-9,-11],[-3,-2]],[[1838,9662],[-8,-2],[-5,0],[-9,3],[-10,9],[-1,3],[3,0],[3,1],[2,1],[3,2],[8,2],[1,-1],[0,-2],[0,-1],[3,-1],[3,-1],[5,-3],[4,-1],[1,-1],[1,-1],[2,-2],[0,-1],[-3,-2],[-3,-2]],[[1363,8322],[-1,0],[0,1],[0,2],[1,5],[1,0],[3,0],[1,-1],[0,-2],[-2,-2],[-3,-3]],[[1360,8177],[-1,1],[-1,2],[0,5],[0,2],[0,1],[3,-4],[-1,-7]],[[1382,8292],[-1,-2],[-2,-4],[-1,-1],[-1,1],[-1,0],[-2,3],[-2,2],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,1],[-1,2],[0,2],[0,1],[2,3],[4,4],[1,1],[2,0],[2,-2],[0,-1],[2,-4]],[[1393,8246],[-1,0],[-1,1],[-6,9],[-5,4],[-3,5],[-3,3],[2,5],[2,-1],[5,-4],[5,-4],[2,-2],[6,-11],[-1,-2],[-2,-3]],[[1383,8353],[0,-4],[-4,-8],[-5,-4],[-1,1]],[[1429,8233],[1,-18],[0,-6],[-2,-4],[-1,-7],[-2,-2],[-1,3],[0,7],[-1,5],[0,2],[1,10],[-1,-1],[-2,-4],[-2,0],[-3,4],[-2,4],[0,4],[-2,4],[-1,2],[1,2],[1,4],[1,3],[1,5],[1,3],[1,-1],[3,-2],[4,-3],[3,-4],[2,-10]],[[1497,8027],[1,-6],[-3,1],[-2,1],[0,3],[1,2],[3,-1]],[[1551,8037],[1,-1],[-7,4],[-2,3],[-1,2],[-1,1],[-3,2],[-1,2],[1,1],[2,-1],[4,-2],[3,-3],[4,-8]],[[1482,8041],[-1,0],[-2,0],[-2,2],[-3,4],[-1,1],[1,1],[1,1],[0,1],[-1,3],[3,2],[2,-1],[1,-2],[2,-4],[0,-4],[0,-3],[0,-1]],[[1523,8069],[-1,-3],[-2,5],[-2,11],[0,2],[1,4],[1,0],[2,-2],[2,-3],[0,-1],[1,-3],[1,-3],[-2,-3],[-1,-4]],[[1418,8208],[-1,-2],[-3,6],[-2,2],[-2,7],[-1,2],[0,2],[1,1],[1,-1],[0,-1],[6,-7],[1,-3],[0,-6]],[[1446,8149],[0,-1],[-1,0],[-2,1],[-1,2],[-2,6],[0,2],[1,1],[2,2],[1,0],[1,-2],[1,-4],[1,-1],[0,-5],[-1,-1]],[[1434,8202],[-2,-1],[1,3],[0,2],[-1,2],[0,3],[0,8],[2,5],[3,0],[0,-2],[-1,-12],[-1,-5],[0,-2],[-1,-1]],[[1408,8236],[-1,0],[-1,0],[-1,2],[-2,4],[0,2],[-1,3],[1,0],[1,0],[3,-7],[1,-4]],[[1412,8243],[-3,0],[-1,0],[0,2],[-1,2],[1,2],[1,4],[1,2],[0,1],[1,-3],[1,-2],[0,-8]],[[1571,7992],[-1,-2],[-1,1],[0,1],[-2,10],[1,0],[2,-4],[0,-1],[1,-3],[1,-2],[-1,0]],[[3339,7715],[-4,-2],[-3,0],[-2,2],[5,0],[2,0],[4,3],[-2,-3]],[[3306,7804],[-1,-1],[0,1],[-2,3],[0,1],[2,1],[3,-1],[-1,-3],[-1,-1]],[[3280,7907],[1,-1],[2,0],[1,0],[-2,-2],[-3,0],[-2,0],[3,11],[2,3],[6,7],[2,2],[2,1],[2,0],[-2,-5],[-3,0],[-3,-3],[-2,-4],[-2,-2],[-1,-3],[-1,-4]],[[3208,7942],[-1,-4],[-2,-4],[-2,0],[1,3],[-1,4],[2,0],[1,0],[2,1]],[[3209,7946],[-4,-3],[2,5],[0,1],[1,0],[1,0],[0,-3]],[[3159,7735],[-2,-2],[1,2],[1,5],[2,1],[-2,-6]],[[3145,7757],[-4,-3],[2,8],[1,3],[2,-1],[-1,-5],[0,-2]],[[2956,7803],[-2,-1],[-4,1],[-4,-2],[-1,0],[3,4],[5,3],[4,8],[2,0],[-2,-9],[0,-3],[-1,-1]],[[2953,7809],[-4,-1],[-1,1],[4,5],[4,2],[-3,-7]],[[3027,7884],[-3,-1],[1,2],[3,4],[3,2],[1,0],[-2,-5],[-3,-2]],[[3457,8105],[-1,0],[-1,0],[-1,0],[0,1],[1,3],[2,1],[2,0],[0,-2],[-1,-2],[-1,-1]],[[3484,8040],[-4,-3],[-1,-2],[-1,0],[-1,1],[-1,3],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[3,4],[2,0],[1,0],[-1,-2]],[[3462,8173],[-1,0],[-1,0],[1,2],[1,3],[2,1],[0,-4],[-2,-2]],[[3497,8049],[2,-4],[1,-1],[-7,-4],[-1,0],[0,4],[0,3],[0,1],[2,-2],[2,3],[1,0]],[[3493,7916],[-1,-2],[-1,0],[0,2],[1,4],[1,2],[0,1],[1,2],[1,1],[1,2],[0,-4],[-3,-8]],[[3199,8787],[5,-1],[4,1],[1,-1],[1,-3],[-1,-4],[-2,-2],[-3,0],[-5,1],[-2,1],[-2,2],[1,2],[3,0],[0,1],[-1,1],[0,1],[1,1]],[[3104,8654],[-2,-1],[-1,1],[0,4],[0,2],[3,6],[3,6],[1,2],[3,-1],[2,-2],[2,-3],[1,-2],[-1,-4],[-2,-3],[-3,-2],[-6,-3]],[[3046,8787],[-2,-1],[-4,1],[-4,1],[-2,1],[-2,3],[0,3],[-4,5],[-4,2],[-3,3],[3,0],[3,0],[5,-2],[5,-2],[6,-4],[2,-4],[2,-3],[1,-2],[-1,-1],[-1,0]],[[3199,8718],[-1,0],[-1,0],[-2,3],[-2,1],[-1,1],[-9,7],[-1,2],[0,3],[3,1],[6,1],[4,0],[5,-2],[1,-1],[2,-3],[0,-3],[0,-4],[-1,-1],[-2,-2],[-1,-3]],[[3193,8748],[1,-1],[1,1],[1,-2],[0,-1],[2,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-6,4],[-2,4],[0,2],[0,2],[1,1],[2,0],[1,-1],[1,-3]],[[3079,8584],[-2,-4],[-2,1],[-1,-1],[-1,0],[1,4],[0,2],[0,3],[1,1],[3,1],[0,-4],[0,-1],[1,0],[0,-2]],[[3211,8661],[-1,-4],[-4,1],[-5,3],[-2,2],[0,3],[0,3],[1,0],[4,0],[3,-4],[1,-1],[3,-3]],[[3305,8412],[1,-2],[-5,1],[-1,1],[0,1],[0,1],[1,2],[2,1],[1,0],[2,-2],[0,-1],[-1,-2]],[[3285,8499],[2,-2],[1,-6],[-5,0],[-5,4],[-1,3],[0,1],[1,1],[1,-1],[1,1],[2,0],[3,-1]],[[3113,9189],[-1,0],[-7,3],[0,2],[3,2],[3,1],[2,0],[3,0],[2,-3],[-3,-2],[-2,-3]],[[3259,9046],[-4,-1],[-2,1],[2,1],[1,2],[3,2],[1,2],[4,1],[2,0],[0,-1],[-2,-2],[-5,-5]],[[2804,9557],[0,-3],[-2,0],[-7,-2],[-5,-1],[-2,1],[-2,3],[4,4],[5,3],[5,5],[5,3],[2,-1],[3,-2],[-3,-4],[-3,-3],[0,-3]],[[2781,8454],[-1,-1],[-1,1],[0,3],[1,2],[1,0],[1,-1],[0,-2],[-1,-2]],[[2785,8497],[0,-1],[-1,1],[-1,-4],[0,-1],[-1,3],[1,2],[0,1],[0,1],[1,2],[1,1],[0,-3],[0,-2]],[[2791,8447],[-1,-1],[-1,0],[1,6],[-1,1],[0,1],[0,1],[1,0],[1,-1],[1,-2],[0,-2],[0,-1],[-1,-1],[0,-1]],[[2779,8254],[0,-2],[-2,1],[-1,1],[0,1],[-1,1],[1,2],[2,-1],[1,-3]],[[2795,8176],[-2,0],[-2,0],[-2,2],[-2,1],[9,6],[2,-1],[0,-1],[-2,-3],[0,-2],[0,-1],[-1,-1]],[[1573,8000],[-1,-1],[-4,4],[-3,5],[-1,4],[6,-8],[3,-3],[0,-1]],[[1528,8065],[-1,6],[1,3],[0,1],[0,1],[1,-3],[1,-2],[0,-2],[0,-1],[-2,-3]],[[2955,9088],[-14,0],[-7,0],[-3,1],[-3,2],[-3,4],[-2,5],[0,2],[1,1],[1,1],[9,2],[7,-2],[6,-2],[9,-1],[2,0],[1,-1],[1,-1],[1,-5],[0,-3],[0,-2],[-6,-1]],[[2836,8840],[3,-3],[2,0],[2,-2],[3,-6],[0,-1],[0,-2],[-2,-3],[-1,-1],[-4,-2],[-4,-1],[-3,1],[-6,6],[-6,7],[-2,4],[1,1],[2,2],[6,1],[8,-1],[1,0]],[[2374,9547],[-3,0],[-3,1],[-1,1],[-1,2],[-1,2],[0,2],[-1,1],[0,1],[0,1],[1,1],[3,0],[6,2],[1,0],[1,-1],[0,-4],[1,-1],[2,-4],[1,-2],[0,-1],[-1,0],[-5,-1]],[[2770,8618],[-1,0],[-1,1],[1,2],[1,0],[2,3],[1,-1],[-1,-2],[-1,-2],[-1,-1]],[[2776,8626],[-3,0],[1,4],[1,1],[1,1],[3,1],[1,-2],[-1,-2],[-3,-3]],[[2311,9385],[-4,-1],[-4,4],[0,4],[0,2],[0,2],[2,2],[4,1],[2,-1],[1,-2],[3,-2],[1,-1],[0,-2],[-1,-3],[-1,-2],[-1,-1],[-2,0]],[[2295,9476],[-8,-3],[-2,1],[-1,1],[7,6],[3,1],[2,-1],[1,-2],[0,-1],[-2,-2]],[[2270,9439],[-8,-2],[-4,1],[-2,-2],[-1,0],[-5,-1],[-9,3],[-2,1],[-1,1],[1,1],[1,1],[7,1],[3,1],[1,1],[1,1],[3,1],[6,1],[15,4],[7,1],[3,-1],[1,-1],[0,-1],[0,-1],[-3,-3],[-3,-2],[-8,-4],[-3,-1]],[[2494,9182],[1,-3],[-3,-5],[0,-1],[-1,0],[-1,0],[-3,4],[-1,2],[1,2],[2,1],[2,1],[2,-1],[0,1],[1,-1]],[[2486,9171],[-2,-1],[-2,3],[-1,0],[0,2],[-3,0],[0,2],[1,2],[2,1],[2,-1],[2,-2],[1,-2],[0,-3],[0,-1]],[[2944,8791],[-1,-1],[-6,1],[-7,2],[-3,3],[0,1],[1,0],[2,0],[3,-2],[8,-1],[3,-1],[0,-1],[0,-1]],[[2920,9121],[-2,-1],[-4,4],[-6,4],[-3,3],[0,1],[0,2],[1,3],[2,3],[3,1],[3,-1],[3,-2],[3,-6],[1,-3],[1,-2],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1]],[[2818,8682],[-4,-1],[0,1],[2,2],[6,2],[4,1],[-1,-2],[-2,-2],[-5,-1]],[[2806,9112],[-3,-1],[-3,3],[0,2],[1,4],[6,1],[2,-3],[1,-2],[-4,-4]],[[2870,8835],[-3,0],[-4,1],[-4,2],[-8,8],[6,6],[10,-6],[3,-5],[0,-6]],[[2793,9203],[1,-3],[1,-1],[-1,-1],[-4,-4],[-9,-1],[-5,2],[2,-5],[1,-2],[-1,-1],[-2,1],[-3,1],[-2,1],[0,2],[-1,1],[-1,-1],[-1,0],[-2,3],[-1,1],[-9,1],[-1,1],[1,1],[1,2],[2,0],[6,0],[0,2],[1,1],[3,0],[3,0],[1,-1],[1,-2],[2,0],[2,0],[3,1],[4,2],[4,1],[4,-2]],[[2832,9199],[2,-3],[0,-1],[-2,-2],[-7,-3],[-5,-3],[-2,-1],[-3,1],[-4,-1],[-2,0],[2,2],[6,7],[5,1],[1,1],[2,0],[1,1],[0,1],[1,2],[2,0],[3,-2]],[[2843,8870],[-2,-3],[-6,1],[-1,1],[0,1],[1,1],[6,1],[3,0],[1,0],[0,-1],[-2,-1]],[[2691,9002],[3,-1],[2,0],[0,-1],[-2,-3],[-1,0],[-3,2],[-2,2],[0,2],[0,1],[0,1],[3,-3]],[[2799,9149],[-1,0],[-3,1],[-1,2],[0,2],[0,1],[1,1],[2,2],[2,3],[2,2],[6,2],[1,1],[3,6],[1,1],[3,0],[0,1],[-1,1],[0,2],[1,1],[1,1],[4,2],[4,-1],[1,0],[0,-1],[2,-3],[-2,-3],[-4,-3],[-3,-4],[0,-1],[-1,-1],[0,-1],[-4,-4],[-2,-4],[-2,-2],[-5,-2],[-5,-2]],[[2861,9166],[-4,0],[-2,0],[-2,1],[-1,2],[-2,5],[1,2],[0,4],[0,1],[1,1],[4,1],[2,0],[3,-1],[7,-1],[2,-1],[0,-1],[0,-1],[0,-1],[-4,-4],[-2,-2],[-1,-3],[-2,-2]],[[2585,9222],[4,0],[3,0],[2,0],[1,-2],[1,-2],[1,-1],[-2,-2],[-5,-1],[-3,1],[-3,1],[-2,0],[-4,1],[-2,1],[-2,2],[0,2],[4,1],[2,1],[5,-2]],[[2674,8974],[4,-3],[3,-1],[6,-1],[1,0],[0,-1],[-1,-2],[-2,-2],[-1,0],[-4,1],[-1,1],[-1,2],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[-4,0],[0,1],[0,2],[3,2],[-3,1],[0,1],[-4,-2],[-2,0],[-3,1],[0,6],[-1,2],[-1,2],[-1,2],[-1,1],[-3,1],[-2,3],[-1,1],[1,1],[1,2],[8,-3],[5,-3],[4,-4],[3,-2],[0,-2],[-1,-2],[-1,-1],[1,-2]],[[2594,9085],[-1,0],[-2,1],[-4,4],[-1,1],[0,2],[0,2],[0,2],[1,4],[-2,3],[-1,2],[0,1],[2,3],[0,1],[2,3],[3,4],[4,-1],[3,-4],[1,-2],[0,-3],[0,-3],[1,-5],[0,-4],[0,-2],[-2,-4],[-1,-2],[-1,-2],[-2,-1]],[[2648,8961],[-2,-1],[-1,1],[-2,1],[-1,3],[-1,2],[-4,3],[-1,1],[-1,4],[0,4],[-1,3],[0,2],[0,2],[4,1],[2,-1],[1,-1],[1,-1],[0,-2],[3,-5],[2,-4],[3,-7],[0,-2],[-1,-2],[-1,-1]],[[2415,8746],[-1,0],[-2,3],[-1,1],[3,1],[3,-2],[-1,-2],[-1,-1]],[[2188,9595],[-7,-1],[-4,1],[0,1],[3,1],[10,3],[5,4],[2,0],[8,1],[4,-1],[6,0],[-14,-5],[-13,-4]],[[2139,9685],[-4,-1],[-3,0],[-1,1],[0,1],[0,1],[5,4],[3,1],[3,0],[2,-1],[1,-2],[-6,-4]],[[2175,9659],[-4,-1],[-7,1],[-8,2],[-2,2],[-1,4],[0,2],[1,1],[5,0],[10,1],[7,-1],[9,-2],[4,-1],[2,-1],[2,-2],[1,-1],[0,-2],[-11,0],[-5,-1],[-3,-1]],[[2507,9591],[-1,-1],[-4,0],[-2,-1],[-2,1],[-3,1],[-3,4],[-4,4],[-4,5],[0,1],[1,2],[3,1],[8,1],[5,0],[5,-3],[1,-1],[1,-1],[0,-1],[0,-1],[-2,-3],[-1,-1],[0,-2],[0,-2],[1,-2],[1,-1]],[[2331,9533],[-2,-2],[-2,0],[-3,2],[-4,-1],[-4,-3],[-2,-3],[-1,0],[-4,-1],[-1,1],[-2,1],[-1,4],[1,2],[3,2],[10,2],[2,2],[1,1],[0,1],[1,0],[6,-2],[3,-2],[2,-1],[0,-1],[-3,-2]],[[2352,9475],[-1,0],[-2,0],[-10,3],[-1,1],[-1,1],[2,1],[1,1],[3,1],[4,0],[4,-3],[2,-3],[0,-1],[-1,-1]],[[1637,9547],[-3,-1],[-2,1],[1,1],[5,4],[0,2],[0,1],[0,1],[1,1],[2,1],[1,-1],[0,-1],[0,-4],[-1,-1],[-1,-2],[-1,-1],[-2,-1]],[[1845,9604],[-4,-2],[-29,3],[-1,1],[-1,1],[5,3],[6,2],[15,1],[5,-1],[4,-2],[2,-1],[0,-3],[-2,-2]],[[2108,9506],[-6,-1],[-9,2],[-5,4],[-2,1],[0,1],[1,1],[2,2],[3,6],[1,2],[5,3],[3,1],[8,0],[4,-2],[2,-1],[1,-1],[2,-4],[0,-2],[2,-2],[1,-2],[0,-1],[-1,-1],[-1,-2],[-3,-2],[-8,-2]],[[2216,9147],[-1,-2],[-1,0],[-2,-3],[-1,0],[-1,2],[-1,2],[-1,0],[-2,-1],[-1,0],[0,1],[0,1],[0,3],[0,5],[0,1],[0,2],[0,1],[1,1],[2,0],[3,0],[2,-2],[1,-2],[2,-2],[1,-1],[-1,-6]],[[2222,9159],[-1,-4],[-3,1],[-1,2],[-2,2],[0,1],[0,1],[2,3],[1,1],[2,-1],[1,-2],[1,-2],[0,-2]],[[2213,9244],[-6,2],[-2,1],[-1,1],[-1,2],[0,3],[1,1],[3,0],[3,-1],[4,-3],[-1,-1],[0,-2],[1,-2],[-1,-1]],[[2347,9191],[3,-4],[0,-2],[0,-3],[-1,-2],[-2,-2],[-2,-1],[-3,0],[-1,1],[1,3],[0,2],[0,4],[-1,2],[-1,1],[-2,0],[0,-1],[1,-2],[-1,-3],[-1,-4],[-1,-2],[-2,1],[-1,2],[1,2],[-1,2],[1,2],[1,4],[2,2],[2,1],[2,0],[3,-1],[3,-2]],[[2189,9181],[-2,-1],[0,1],[0,1],[0,1],[-1,1],[2,1],[0,1],[-3,2],[-1,1],[0,1],[2,1],[1,0],[4,-2],[2,-2],[1,-2],[-1,-1],[-1,0],[-1,-2],[-2,-1]],[[2171,9134],[-1,0],[-2,1],[-9,4],[-1,1],[1,1],[3,2],[2,2],[2,3],[5,-1],[2,-2],[1,-1],[0,-2],[0,-4],[-2,-1],[-1,-3]],[[2096,9124],[-2,0],[-3,1],[-4,2],[-3,2],[-2,2],[0,2],[1,1],[3,0],[5,0],[3,-1],[4,-4],[1,-1],[0,-2],[-1,-1],[-2,-1]],[[2003,9066],[-2,-5],[0,1],[-1,2],[-2,1],[-2,3],[0,5],[0,3],[0,3],[2,2],[2,-2],[0,-4],[0,-3],[2,-2],[1,-2],[0,-2]],[[1967,9099],[4,0],[2,0],[2,-2],[0,-2],[0,-1],[-1,0],[-5,2],[-1,2],[-1,1]],[[1997,9043],[4,0],[4,0],[-1,-5],[-1,-2],[-2,-1],[0,1],[-3,4],[-1,3]],[[1963,9100],[-1,0],[-4,3],[1,3],[4,-3],[0,-2],[0,-1]],[[1138,9191],[-3,-2],[-3,2],[-1,2],[4,3],[2,-1],[4,-1],[1,-2],[-4,-1]],[[5272,5317],[0,13],[2,11],[0,11],[2,9],[-1,9],[-1,4],[-6,14],[3,5],[-4,-1],[0,5],[-2,6],[1,0],[1,4],[3,-1],[0,1],[-3,5],[1,3],[1,2],[-1,2],[-2,-3],[-1,0],[-1,2],[-1,0],[0,-4],[-1,-3],[-1,-1],[-1,0],[-2,1],[0,2],[-2,1],[-3,3],[-4,2],[0,8],[-1,4],[-1,4],[0,4],[0,7],[-1,1],[-1,1],[-1,-1],[-1,1],[-2,3],[-1,2],[1,-7],[-1,-2],[-2,0],[-1,3],[-1,2],[2,9],[-1,0]],[[7862,5834],[-1,-1],[-1,1],[0,3],[1,2],[0,1],[1,-6]],[[7869,5801],[-1,-2],[-1,5],[0,1],[2,-4]],[[7900,5783],[-5,8],[-9,3],[-1,3],[0,1],[-1,-5],[-5,-4],[-2,3],[-2,3],[0,3],[2,3],[2,2],[1,8],[-2,10],[-1,3],[-2,2],[-2,-4],[-1,-6],[-2,-3],[-2,-1],[-3,0],[-2,10],[0,8],[0,9],[1,5],[-3,7],[-1,7],[-1,4],[-1,-2]],[[7741,5771],[-1,-1],[-3,-8],[-1,4],[-1,4],[1,10],[-2,19],[1,2],[1,1],[2,8],[2,7],[0,8],[2,6],[0,5],[0,6],[0,5],[0,4],[1,5],[3,3],[-1,1],[-1,2],[-3,-3],[-2,1],[0,4],[0,3],[0,3],[2,2],[0,6],[-1,4],[1,6],[-2,0],[-1,1],[1,3],[1,3],[-1,5],[1,6],[0,7],[-1,6],[0,5],[-1,8],[-1,10],[-2,7],[-2,11],[-5,15],[0,6],[0,5],[-1,3],[-1,-19],[-1,4],[-1,10],[-1,5],[1,10],[-3,10],[0,8],[-2,11],[0,2],[3,-2],[-2,6],[-2,-1],[-2,7],[0,18],[-2,7],[1,8],[-2,25],[-3,8],[1,8],[0,6],[0,12],[1,3],[2,3],[-2,-1],[-1,-1],[-3,0],[-4,-1],[-1,9],[-2,4],[-1,9],[-1,10],[0,1],[-3,4],[0,3],[-3,6],[-3,5],[0,-3],[1,-2],[-1,-6],[1,-10],[-1,-7],[-2,-8],[-1,-4],[-4,-8],[-3,-3],[-2,-1],[-2,1],[-2,5],[-1,3],[0,6],[-1,1],[-1,0],[2,-8],[-1,-4],[3,-7],[-1,-2],[-4,-4],[-2,1],[-1,-1],[0,-3],[-1,-2],[-7,-5],[-1,-5],[-1,-6],[-3,-8],[-5,-7],[-1,1],[-2,1],[1,7],[1,7],[0,6],[-1,-4],[-3,-9],[-1,-3],[-3,1],[-3,-1],[-2,9],[0,4],[0,2],[0,3],[0,3],[-1,-5],[0,-4],[-1,-3],[-4,-4],[0,5],[-1,4],[1,4],[0,6],[1,9],[0,3],[0,4],[-1,-5],[0,-5],[-1,-2],[-1,-1],[-3,-6],[-1,-5],[-4,-5],[-2,0],[-1,7],[2,22],[1,3],[1,4],[1,13],[2,5],[0,11],[1,2],[2,8],[1,15],[-1,7],[-2,7],[-2,22],[-4,18],[-1,6],[-2,7],[2,0],[-4,6],[-1,3],[-1,15],[1,8],[-1,-1],[-1,-5],[-1,-2],[0,-9],[0,-2],[-1,-4],[-3,4],[-3,4],[-3,9],[-3,10],[1,2],[2,0],[4,-7],[2,-2],[2,2],[2,3],[1,7],[-1,2],[-2,1],[-1,2],[-2,4],[0,2],[-1,3],[-2,2],[-1,3],[1,4],[1,4],[-3,0],[-4,5],[-1,2],[-1,1],[-3,1],[-3,-2],[1,-8],[0,-3],[-2,1],[-3,12],[1,3],[1,3],[-1,1],[-1,-1],[1,12],[0,1],[-1,-3],[-1,-4],[-3,-7],[-1,1],[-1,2],[1,4],[1,1],[1,2],[-2,5],[-1,3],[-2,5],[-1,0],[1,-6],[0,-9],[-3,10],[-7,14],[-1,4]],[[7564,6381],[-1,5],[0,3],[-1,5],[0,3],[-1,3],[-1,5],[0,5],[1,4],[2,4],[1,1],[1,-2],[3,-3],[2,-2],[1,-3],[1,2],[0,3],[-1,6],[0,8],[0,20],[0,2]],[[7727,5815],[3,-10],[-1,-2],[0,-1],[-1,1],[0,5],[-2,3],[-2,0],[1,4],[1,1],[1,-1]],[[7727,5756],[-2,-3],[0,5],[3,4],[2,1],[-1,-3],[-1,-3],[-1,-1]],[[7728,5845],[-1,-1],[0,1],[0,5],[1,5],[1,6],[1,1],[0,-3],[-1,-7],[0,-4],[-1,-3]],[[7736,5870],[-1,-1],[-1,10],[0,1],[2,-5],[2,-3],[-1,-1],[-1,-1]],[[7737,5860],[-1,-12],[-2,2],[-2,7],[1,2],[-1,4],[4,1],[1,-4]],[[7733,5909],[1,-1],[0,-6],[-2,-7],[-1,-1],[-1,0],[1,10],[-1,6],[0,4],[2,-2],[1,-3]],[[7725,5884],[0,-1],[-1,1],[-2,4],[1,3],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2]],[[7624,6102],[-2,-5],[-1,8],[3,5],[2,4],[1,3],[1,-3],[-2,-8],[-2,-4]],[[7710,6120],[-1,-1],[-2,4],[0,9],[1,2],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-8]],[[7602,6260],[-1,-1],[-3,5],[-2,7],[4,1],[3,-2],[0,-3],[0,-5],[-1,-2]],[[7596,6330],[1,-8],[-2,3],[-1,4],[0,4],[2,-3]],[[7602,6310],[4,-4],[1,0],[2,-3],[0,-1],[0,-3],[-1,-2],[-3,-2],[-1,2],[-1,5],[-2,3],[-1,2],[2,3]],[[7736,5815],[-1,0],[0,1],[1,6],[0,-7]],[[7724,5857],[0,-3],[-2,3],[0,10],[1,-6],[1,-1],[0,-3]],[[7723,5897],[0,-2],[-1,-4],[-2,3],[0,1],[1,3],[2,-1],[0,1],[0,-1]],[[7730,5938],[0,-9],[-1,4],[-1,6],[1,4],[0,1],[0,-1],[1,-2],[0,-3]],[[7633,6095],[-1,-2],[-1,2],[2,7],[1,-3],[-1,-4]],[[7583,6331],[0,-5],[-1,2],[-2,8],[0,5],[1,-3],[2,-7]],[[5066,5869],[-1,-3],[-2,-9],[-2,-3],[-6,-13],[-4,2],[-7,-3],[-1,3],[-2,1],[-2,-1],[-1,-1],[0,-1],[-1,-2],[-1,-5],[-1,-1],[-1,-1],[-2,1],[-1,-1],[0,-3],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,1],[-1,-3],[-1,-2]],[[5793,7703],[0,-14],[-3,-6],[-4,2],[-5,-2],[-3,-7],[-1,-2],[-2,-3],[-1,-9],[0,-16],[-2,-2],[-2,0],[-7,-14],[4,-4],[2,-3],[3,-8],[5,-9],[1,-5]],[[8194,5466],[4,0]],[[8168,5448],[3,0],[3,1],[4,3],[3,4],[3,4],[2,5],[3,4],[4,4],[2,0],[0,-3],[-1,-4]],[[3565,5418],[2,10],[1,4],[2,0],[4,-5],[3,-7],[4,-25],[1,-22],[1,-12],[5,-24],[0,-5],[1,-5],[1,-6],[2,-10],[0,-2],[-1,-2],[1,0],[2,-2],[1,-6],[1,-4],[2,-6],[4,-2],[4,0],[3,-4],[3,-4],[2,-13],[-1,-9],[1,-6],[-2,-3],[-3,-4],[0,-2],[-6,-10],[-2,-5],[-3,-6],[-3,-13],[-5,-11],[-2,-3],[-3,-1],[-1,-2],[-4,-9],[-5,-3],[0,-6],[-3,-12],[-3,-7],[-1,-2],[-5,-12],[0,-5],[0,-10],[-3,-6],[-3,-3],[0,-8],[-1,-3],[-1,-2],[-6,2],[-9,-8],[-3,-3],[10,0],[3,-5],[7,3],[8,11],[3,3],[7,7],[2,5],[5,6],[1,3],[3,3],[1,-4],[0,-2],[-2,-4],[1,-3],[1,-4],[1,-5],[0,-3],[1,-7],[3,-9],[0,-3],[0,-4],[1,-3],[1,-2],[6,-9],[4,5],[2,2],[2,2],[3,1],[2,-2],[6,-3],[3,3],[8,8],[-3,-14],[-1,-12],[-2,-6],[-1,-13],[-1,-4],[-1,-4],[2,1],[1,2],[2,6],[1,9],[6,24],[1,3],[5,2],[8,20],[3,0],[2,-4],[1,-3],[1,5],[3,2],[-3,3],[-1,3],[0,4],[2,5],[-1,5],[4,6],[-1,4],[2,4],[2,4],[2,2],[0,3],[1,2],[1,0],[2,-4],[3,5],[2,2],[1,-1],[1,-2],[1,-1],[1,0],[3,3],[2,-4],[1,-1],[0,2],[-1,3],[1,1],[1,2],[4,-1],[2,-2],[2,-4],[2,0],[3,0],[1,-2],[2,0],[1,-3],[4,-5],[1,-3],[3,-2],[2,-2],[3,0],[3,0],[0,-4],[2,-1],[3,1],[2,-5],[5,-3],[4,-6],[2,1],[3,-1],[3,-12],[0,-9],[2,1],[1,4],[2,7],[3,2],[1,-2],[3,-5],[2,-4],[1,-4],[2,0],[-1,-4],[1,1],[2,2],[2,-5],[1,-6],[0,-6],[-1,-4],[-1,-2],[-1,-5],[-1,0],[-2,-2],[2,-3],[1,-3],[2,8],[2,3],[2,1],[2,-6],[0,-5],[-4,-3],[0,-4],[-1,-3],[-1,-2],[-1,-6],[0,-5],[-3,-22],[0,-4],[3,4],[5,11],[2,12],[2,12],[2,3],[1,0],[2,-1],[1,-4],[-1,-2],[-2,-6],[-1,-3],[1,-3],[5,10],[2,3],[2,-1],[4,5],[8,1],[0,5],[2,2],[4,-1],[8,-4],[3,-4],[4,-3],[2,-4],[10,-8],[7,-1],[3,4],[5,-4],[2,-4],[4,-2],[5,-1],[3,3],[9,1],[11,4],[7,-1],[7,-3],[6,-7],[4,-4],[3,-4],[4,-4],[10,-11],[3,-7],[6,-9],[6,-3],[3,-9],[2,-5],[7,-15],[7,-11],[4,-11],[9,-7],[4,-11],[6,-2],[3,-1],[3,-5],[4,-3],[6,1],[6,-1],[5,3],[12,-5],[2,-2],[2,-5],[5,-18],[2,-20],[2,-15],[3,-12],[1,-23],[2,-7],[0,-6],[1,-1],[1,-15],[-1,-6],[-1,-8],[0,-4],[0,-2],[0,-3],[0,-3],[1,-8],[0,-5],[-2,-7],[-2,-18],[-5,-31],[-5,-17],[-7,-18],[-5,-9],[-2,-1],[-1,2],[1,-5],[-1,-4],[-5,-14],[-5,-8],[-4,-15],[-1,0],[-6,-6],[-4,-5],[-4,-8],[-5,-14],[-1,-2],[-1,1],[0,-7],[-4,-10],[-1,-2],[0,3],[1,2],[0,3],[0,3],[-1,-2],[-2,-8],[0,-6],[-1,-9],[-6,-26],[-8,-22],[-1,-6],[-7,-15],[-4,-7],[-1,0],[-2,1],[-1,11],[-3,6],[-1,2],[-2,-8],[-1,-1],[-2,-1],[2,-3],[1,-4],[-2,-7],[0,-6],[-4,-8],[-2,-5],[-1,-7],[0,-6],[1,2],[1,-1],[1,-2],[-1,-3],[-1,-6],[0,-13],[0,-3],[1,-3],[1,5],[1,-1],[-3,-36],[1,-16],[0,-19],[2,-18],[1,-16],[1,-1],[-3,-19],[-2,-18],[-2,-15],[-1,-16],[-1,-8],[-1,-8],[2,-18],[0,-4],[-3,-8],[-4,-4],[-2,-4],[-5,-16],[-2,-22],[0,-12],[1,-25],[-1,-10],[-1,-7],[-2,-4],[-5,-5],[-3,-13],[-2,-14],[-3,-5],[0,-8],[-2,-8],[-6,-12],[-4,-4],[-1,-3],[-2,-8],[-3,-11],[-3,-16],[1,-5],[0,-1],[1,-18],[0,-4],[-4,-5],[-12,-9],[-4,-4],[-8,-16],[0,-3],[0,-6],[2,-3],[-2,-3],[-1,-6],[-2,0],[-13,0],[-7,-1],[-4,0],[-1,1],[-2,3],[-1,3],[1,4],[0,3],[-2,0],[-2,-1],[-1,-3],[1,-2],[0,-3],[1,-3],[-1,-3],[-4,-1],[-5,-3],[-5,-1],[-5,-2],[-2,3],[2,1],[3,-1],[3,2],[0,3],[-5,3],[-5,-2],[-3,-4],[-6,1],[-7,-3],[-2,-3],[1,-6],[1,-1],[2,-3],[-2,-2],[-1,-1],[-8,-3],[-7,-11],[-3,-2],[-3,-4],[0,-5],[-1,-2],[-2,0],[-4,2],[-5,0],[-3,-2],[-19,-18],[-6,-7],[-8,-15],[-12,-17],[-7,-9],[-1,-3],[-1,0],[-2,-2],[0,-2],[2,0],[-1,-6],[-2,-4],[-5,-10],[-1,1],[1,5],[-2,0],[-4,2],[-1,-2],[0,-5],[-1,-3],[-2,0],[-3,1],[-2,4],[1,-7],[5,-2],[2,-2],[1,-3],[-4,-12],[-3,-2],[-1,-2],[2,0],[1,-3],[-1,-14],[-2,-3],[-1,0],[0,-2],[1,-5],[1,-3],[0,-7],[0,-5],[-1,-5],[2,-10],[1,-11],[1,-3],[0,-5],[-1,-4],[0,-6],[-2,-10],[1,-16],[0,-14],[-1,-8],[-1,-6],[-3,-7],[0,-8],[-6,-7],[-7,-10],[-6,-12],[-7,-16],[-8,-26],[-8,-36],[-8,-27],[-4,-10],[-5,-11],[-6,-12],[-9,-13],[-9,-12],[-4,-5],[-3,-7],[-1,3],[1,5],[0,4],[-1,4],[2,1],[3,-3],[2,2],[1,2],[3,2],[7,12],[4,5],[3,8],[1,4],[-1,8],[2,3],[4,-1],[0,2],[0,3],[1,6],[4,5],[3,6],[-1,16],[1,1],[2,-2],[1,1],[1,7],[-1,3],[-2,1],[-8,-8],[-3,1],[0,6],[-4,3],[-2,5],[0,3],[-1,2],[0,-6],[0,-6],[4,-7],[-1,-3],[-2,-3],[-1,-7],[0,-9],[-1,2],[-1,2],[0,-10],[-3,-4],[-1,-3],[1,-5],[-1,-3],[-6,-8],[-6,-5],[-1,-3],[-1,-6],[-1,-6],[-2,-6],[-2,-11],[0,-4],[1,-7],[1,-5],[-2,-3],[-2,-6],[-2,-7],[-5,-25],[-4,-15],[-3,-7],[-4,-8],[-13,-20]],[[3399,3445],[2,3],[4,6],[3,5],[0,5],[2,4],[4,4],[4,7],[5,10],[2,8],[1,5],[2,3],[3,3],[2,6],[2,8],[3,7],[3,4],[2,5],[1,3],[1,2],[1,1],[1,2],[0,2],[0,2],[1,1],[1,-1],[3,-1],[1,0],[0,2],[0,3],[-2,2],[1,3],[4,5],[3,2],[1,3],[2,5],[3,3],[4,2],[1,1],[0,3],[1,1],[2,2],[1,2],[1,3],[0,3],[2,3],[1,1],[2,-1],[1,1],[2,3],[1,1],[2,0],[1,1],[4,1],[1,3],[2,5],[1,2],[1,-1],[3,2],[2,4],[1,0],[2,3],[2,8],[2,5],[-1,5],[0,3],[0,5],[0,13],[1,5],[1,4],[0,3],[-2,8],[-2,8],[-2,12],[0,4],[-2,2],[-2,4],[-2,0],[-1,1],[-1,2],[-1,-1],[-1,-2],[-3,0],[-1,-1],[-2,-2],[-1,1],[-1,2],[-2,0]],[[3384,4022],[2,1],[1,2],[1,4],[2,0],[2,2],[0,2],[-4,8],[-3,6],[2,6],[2,12],[3,11],[2,9],[1,1],[1,1],[0,4],[0,3],[-1,0],[1,11],[3,15],[1,11],[1,2],[1,0],[1,2],[-2,1],[-1,4],[-2,10],[-3,16],[-1,6],[-1,3],[-2,-1],[-2,1],[-6,9],[-4,4],[-1,3],[-1,9],[-1,10],[-1,12],[0,3],[4,9],[0,5],[0,4],[0,3],[-1,0],[-1,-2],[-2,-1],[-1,0],[-12,1],[-13,1],[-11,1],[-10,1],[0,8],[-1,13],[0,9],[-1,15],[-4,9],[-4,11],[-1,2],[5,0],[3,1],[0,27],[-1,3],[-1,8],[-1,5],[-2,4],[0,5],[0,3],[1,2],[1,4],[-1,5],[-1,4],[-1,5],[-3,2],[-3,5],[-5,6],[-5,4],[-1,-1],[-8,-1],[-3,-1],[-2,1],[-6,0],[-2,3],[-2,4],[-4,9],[-1,5],[-1,1],[-3,0],[-2,0],[-5,4],[-5,4],[-2,0],[-2,3],[-3,6],[-2,2],[0,3],[-1,5],[-2,1],[-1,-1],[-2,-2],[-3,1],[-3,5],[-2,3],[-2,2],[-2,2],[-3,1],[-4,-4],[-4,2],[-5,1],[-5,2],[-1,7],[-1,4],[-3,3],[-2,3],[-3,5],[-1,2],[-2,1],[-3,2],[0,3],[-1,4],[0,1],[-1,6],[-1,0],[-1,-1],[0,-1],[-1,1],[0,2],[0,4],[-1,4],[-2,4],[-1,4],[0,4],[0,3],[-1,2],[-1,2],[0,4],[1,4],[1,5],[0,7],[-2,11],[-1,7],[0,5],[0,3],[1,3],[2,8],[1,6],[-1,7],[0,6],[1,3],[-1,5],[-2,4],[-1,0],[-2,-1],[-1,-4],[-3,0],[-2,2],[-6,-1],[-9,-2],[-4,-3],[-2,-1],[-3,0],[-4,-5],[-11,-17],[-2,-2],[-2,0],[-2,-3],[-2,-2],[-5,-6],[-2,-6],[-1,-5],[-2,0],[-2,2],[-4,-1],[-2,-2],[-3,-4],[-3,-9],[-1,-2],[-2,-3],[-3,-2],[-3,-3],[-2,0],[-1,-1],[-2,2],[0,3],[-2,2],[-4,1],[-6,2],[-7,0],[-3,0]],[[3621,5171],[3,-1],[3,1],[3,3],[3,1],[2,-1],[9,-3],[6,-1],[2,-1],[2,-1],[1,-1],[1,-4],[-2,-5],[-1,-5],[-1,-8],[0,-1],[-1,0],[0,-6],[0,-3],[-1,-3],[-1,-5],[-2,-7],[-1,-1],[-2,-3],[-1,-3],[0,-3],[1,-3],[-1,-3],[-3,-6],[-1,-1],[-2,0],[-1,0],[-2,5],[-1,-4],[0,-4],[-1,-2],[-3,0],[-2,2],[-3,3],[0,-7],[-2,-5],[-2,-1],[-2,-1],[-2,-2],[-3,1],[-3,3],[-1,1],[-1,-3],[-7,0],[-3,-3],[-1,1],[-3,5],[0,3],[-2,7],[-1,9],[-1,7],[0,7],[2,0],[2,-1],[1,0],[0,2],[-1,2],[-3,0],[-2,4],[0,6],[0,12],[0,3],[2,3],[0,3],[0,4],[0,6],[2,5],[5,7],[6,2],[17,-6]],[[3774,3851],[1,-2],[-2,0],[-2,-1],[-2,-1],[-2,2],[3,3],[1,3],[0,-1],[1,-1],[2,-2]],[[3650,3663],[0,-1],[-2,8],[3,6],[1,-2],[0,-6],[-1,-4],[-1,-1]],[[3742,3808],[0,-3],[-1,1],[-3,-1],[-1,2],[4,10],[1,-1],[1,-2],[0,-3],[0,-1],[-1,-2]],[[3764,5014],[-3,-5],[1,6],[-1,5],[1,3],[1,4],[1,0],[0,-4],[0,-1],[0,-8]],[[3923,4429],[-1,-1],[0,4],[3,4],[0,6],[2,-3],[0,-2],[0,-2],[-4,-6]],[[3919,4408],[-1,-4],[-1,1],[-1,2],[0,2],[0,2],[1,1],[2,0],[0,-4]],[[3753,5108],[-2,-3],[0,-1],[-2,1],[0,1],[1,0],[0,5],[3,-1],[0,-2]],[[3618,5199],[1,-3],[-4,-12],[-2,-2],[-2,0],[-3,4],[-5,-1],[-2,1],[0,6],[2,5],[4,0],[7,4],[4,-2]],[[3602,5295],[-2,-2],[-2,1],[-1,7],[0,5],[2,2],[2,0],[0,-1],[2,-9],[-1,-3]],[[3593,5176],[-8,-11],[-3,4],[0,2],[0,2],[0,1],[1,4],[4,3],[2,0],[3,-1],[1,-2],[0,-2]],[[3626,5177],[-7,-1],[-4,2],[1,3],[3,4],[3,2],[3,2],[2,-2],[1,-3],[0,-3],[-2,-4]],[[3599,5192],[-1,-9],[-5,4],[1,9],[2,2],[2,5],[1,5],[0,8],[1,1],[0,1],[1,-1],[0,-11],[1,-7],[-3,-7]],[[3607,5206],[-4,-2],[0,2],[0,8],[1,4],[4,1],[0,1],[1,1],[1,-3],[0,-4],[-3,-8]],[[3560,5101],[-3,-1],[4,15],[3,6],[0,14],[4,11],[3,5],[5,2],[3,-8],[-4,-20],[-1,0],[-4,-11],[-5,-7],[-5,-6]],[[3653,3584],[-2,-2],[0,14],[1,4],[1,4],[2,2],[1,-3],[-1,-7],[-2,-8],[0,-4]],[[5490,7655],[-2,2]],[[3259,3903],[0,1],[-2,3],[-2,7],[-1,3],[-12,0],[-11,-1],[-1,-1],[-2,0],[-1,1],[-1,0],[-2,-1],[-1,-3],[-5,-16],[-2,-8],[-1,-6],[-2,-11],[0,-2],[-1,4],[-2,10],[-1,6],[-2,6],[-2,8],[-3,3],[-1,1],[-3,1],[-4,2],[-1,1],[-12,0],[-1,0],[-5,-1],[-2,1],[-3,4],[-5,9],[-1,2],[-3,2],[-1,0],[-1,-2],[0,-6],[-2,-6],[-1,-4],[-4,-2],[-3,-3],[-2,-1],[-1,-3],[-1,-4],[-1,-4],[-5,-6],[-1,-2],[-1,-6],[-3,-7],[-1,-3]],[[5075,5551],[-12,-3],[-13,-4],[-5,-2]],[[2547,6248],[-1,-7],[1,-1],[1,1],[4,0],[1,-7],[0,-6],[-3,-16],[-1,-6],[-1,-8],[2,-5],[-2,-7],[-1,-5],[0,-7],[1,-13],[-1,-19],[-3,-8],[-2,-4],[-2,-8],[-4,-2],[-5,-14],[-1,-3],[0,-4]],[[2557,6216],[-2,-1],[1,3],[1,3],[1,8],[1,0],[1,0],[-3,-13]],[[2559,6187],[-2,-8],[0,3],[1,6],[1,2],[1,2],[0,2],[1,-1],[0,-2],[-2,-4]],[[5070,8127],[12,10],[7,5],[4,1]],[[3347,5937],[-1,-1],[-2,2],[-1,3],[0,9],[1,1],[3,-7],[2,-3],[-2,-4]],[[7564,6381],[-1,0],[-1,6],[-2,5],[-4,11],[-1,20],[0,10],[-3,11]],[[7552,6444],[-1,16],[-1,4],[1,5],[0,2],[-2,-3],[-2,6],[-1,6],[-4,12],[-2,5],[0,5],[-2,-5],[-2,-4],[-3,-5],[-2,-2],[-5,-1],[-4,8],[-5,17],[0,4],[0,10],[-1,10],[0,5],[0,4],[-1,-1],[0,-3],[0,-3],[0,-3],[-4,0],[-4,2],[3,-5],[4,-2],[2,-4],[0,-4],[0,-4],[-2,-3],[-2,-1],[1,-4],[2,-5],[-3,-1],[-1,-3],[0,-5],[2,-4],[0,-2],[0,-3],[1,-3],[2,-6],[0,-4],[0,-6],[-1,-2],[-2,-3],[-4,-7],[-2,-9],[-1,-4],[-2,-1],[-1,2],[-2,2],[0,5],[1,3],[3,8],[-2,-1],[-2,-2],[-3,-5],[-1,6],[-1,5],[0,6],[3,9],[-3,-5],[-1,-5],[1,-7],[-1,-5],[-1,-6],[-2,-4],[-2,-2],[-1,-4],[-2,-2],[0,5],[0,7],[-2,17],[0,-4],[0,-10],[0,-7],[-1,-5],[-3,-6],[-2,-1],[-1,1],[-2,4],[-2,5],[0,8],[-1,4]],[[7531,6461],[-3,-4],[1,24],[2,-9],[1,-5],[-1,-6]],[[7542,6473],[-1,-2],[-1,2],[-2,5],[1,7],[1,1],[0,-2],[2,-5],[0,-4],[0,-2]],[[7521,6456],[-5,-2],[-2,1],[4,15],[0,7],[-1,5],[-2,5],[0,3],[-1,4],[-1,5],[3,2],[2,-3],[0,-2],[1,-4],[1,-4],[3,-9],[0,-6],[-1,-13],[-1,-4]],[[7552,6444],[-1,-3],[-1,-4],[0,3],[0,4],[1,3],[1,-3]],[[7553,6423],[-1,-1],[-1,2],[0,2],[0,8],[1,1],[1,0],[0,-2],[1,-5],[-1,-5]],[[7517,6506],[1,-2],[-2,1],[-1,2],[-1,2],[1,2],[2,-5]],[[6405,6675],[-1,-5],[-1,2],[-2,7],[1,6],[-1,7],[0,3],[3,1],[1,-1],[-1,-2],[1,-4],[0,-8],[0,-6]],[[2843,6581],[0,-2],[-3,-3],[2,-3],[2,6],[1,-5],[1,-9],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-8],[-6,1],[0,6],[-1,1],[-1,9],[-2,3],[-2,8],[1,2],[2,-1],[1,1],[3,1],[1,1],[2,-2]],[[2855,6676],[-1,-1],[-2,6],[-2,2],[3,4],[1,3],[0,8],[1,4],[-1,4],[1,4],[-1,4],[-2,3],[-5,13],[-8,3],[-4,0],[2,3],[2,-1],[3,-1],[4,-1],[2,-3],[3,-6],[2,-2],[0,-1],[0,-1],[1,-2],[2,-2],[3,-4],[1,-11],[-4,-6],[0,-16],[-1,-3]],[[2971,6404],[-1,-4],[-3,-8],[-6,-2],[-7,0],[-1,2],[0,2],[0,3],[0,1],[0,1],[3,2],[1,3],[3,1],[4,-3],[1,0],[3,3],[2,6],[2,0],[-1,-7]],[[2840,6607],[0,-7],[0,-5],[0,-2],[-3,-4],[-1,-2],[-2,-2],[-2,-2],[-1,4],[-2,3],[0,5],[-1,-2],[-2,1],[-3,4],[-2,4],[3,1],[0,-3],[2,4],[0,2],[-1,0],[0,4],[3,9],[1,6],[-2,10],[2,0],[3,-3],[2,-3],[0,-5],[1,-4],[2,-8],[3,-5]],[[2819,6723],[4,-1],[2,0],[1,1],[5,-1],[4,2],[0,-3],[0,-1],[-8,-2],[-8,-4],[-5,-3],[-2,-1],[-1,2],[-5,9],[1,-1],[4,-5],[2,1],[2,3],[1,3],[-1,1],[1,4],[3,-4]],[[2851,6625],[-3,-2],[-2,2],[-1,0],[1,2],[2,1],[4,1],[1,-2],[0,-1],[-2,-1]],[[2943,6493],[0,-1],[-2,-3],[-4,3],[-1,3],[-1,2],[1,2],[2,-1],[1,-3],[4,-2]],[[2932,6570],[-2,-6],[-1,0],[1,8],[1,1],[1,0],[0,-3]],[[2938,6463],[-2,-1],[1,3],[4,5],[2,4],[1,2],[0,1],[2,1],[1,3],[0,3],[-2,4],[0,2],[0,2],[3,1],[0,-3],[1,-8],[-4,-10],[-3,-3],[-4,-6]],[[2871,6652],[4,-7],[4,-2],[4,-8],[2,-3],[0,-3],[0,-12],[-1,-7],[0,-6],[-1,1],[-1,5],[-2,2],[0,1],[3,1],[0,6],[1,5],[0,6],[-3,6],[-3,5],[-3,1],[-4,6],[-2,0],[-2,-1],[1,3],[0,5],[1,0],[2,-4]],[[2898,6534],[-1,0],[-2,2],[-5,7],[-2,0],[0,4],[2,-1],[4,-6],[1,-3],[3,-3]],[[2921,6502],[0,-1],[-4,12],[-4,2],[-3,3],[1,2],[1,0],[1,4],[-1,4],[-2,8],[-2,5],[0,2],[0,4],[2,-7],[2,-6],[1,-6],[2,-11],[3,-3],[3,-5],[0,-7]],[[2908,6578],[0,-3],[-2,0],[-3,-1],[-1,0],[1,2],[2,3],[0,2],[-2,4],[-3,9],[-1,3],[-1,3],[-2,4],[0,2],[1,0],[1,-1],[4,-13],[0,-1],[6,-13]],[[2971,6476],[2,-1],[4,-2],[2,-2],[0,-1],[-1,-2],[-3,4],[-3,0],[-3,0],[-2,1],[1,4],[3,-1]],[[2974,6423],[-3,-3],[-1,3],[2,3],[2,-3]],[[6243,7471],[3,1],[4,2],[1,-1],[2,-3],[1,-2],[0,-4],[0,-1],[2,1],[1,-1],[2,-2],[3,-2],[4,3],[2,1],[2,0],[1,-1],[0,-4],[0,-4],[0,-2],[1,-2],[3,-4],[2,-2],[-1,-4],[2,-9],[1,-3],[1,-5]],[[6291,7425],[0,5],[0,4],[-1,3],[-2,3],[0,1],[1,1],[1,0],[2,0],[1,1],[-2,4],[-2,3],[-1,2],[-1,1],[0,1],[1,1],[2,2],[1,3],[0,2],[-5,4],[-3,-2],[-3,4],[-2,4],[-3,3],[-2,2],[-2,4],[-3,4],[-3,1],[1,1],[0,1],[1,1],[6,-1],[1,1],[0,2],[1,3],[1,4],[0,3],[-6,6],[-5,5],[-3,6],[-2,6],[0,3],[1,1],[4,6],[1,2],[0,1],[-2,2],[-2,3],[-1,3],[-1,1],[-3,0],[-5,3],[-1,1],[0,1],[4,2],[0,1],[-1,1],[-2,2],[-2,2],[-1,3]],[[6349,7594],[2,-3],[5,-9],[6,-15],[1,-4],[1,-5],[1,-6],[2,-5],[6,-13],[3,-5],[4,-6],[2,-2],[2,0],[4,0],[4,-2],[1,-2],[2,-3],[2,-3],[1,-7],[-6,2],[-6,0],[-4,-2],[-3,-2],[-3,-3],[-2,-6],[-2,-14],[-3,-14],[1,-6],[1,-6],[0,-3],[-2,-1],[-1,-2],[-2,-13],[-1,-2],[-1,-2],[-1,2],[1,3],[-3,3],[-2,-3],[-1,-7],[-2,-7],[0,-2],[1,-21]],[[6265,7523],[0,2],[-1,1],[-1,0],[0,-1],[0,-2],[1,-1],[1,1]],[[6250,7547],[-1,-1],[0,1],[-1,1],[0,2],[1,0],[1,0],[0,-2],[0,-1]],[[8976,4495],[0,-7],[-2,-5],[0,-3],[0,-5],[3,-3],[1,-2],[1,-6],[3,-8],[0,-6],[2,-7],[2,-13],[0,-12],[2,-9],[-1,-17],[1,-7],[1,-5],[2,-12],[1,-11],[2,-3],[4,-3],[4,4],[3,5],[3,1],[4,3],[3,-7],[2,-8],[8,-10],[4,-7],[3,-4],[3,-5],[0,-5],[-1,-4],[1,-6],[0,-7],[-1,-9],[3,-13],[0,-10],[3,-10],[-1,-10],[0,-4],[0,-6],[1,-7],[2,-6],[3,-6],[3,-8],[2,-2],[2,0],[0,-9],[4,-18],[2,-15],[-1,-20],[-2,-11],[1,-6],[5,-13],[3,-3],[-1,-6],[0,-10],[2,-8],[3,-6],[3,-4],[3,-2],[4,-3],[4,-1],[3,-5],[1,-3],[4,-1],[2,0],[2,2],[2,-3],[1,-3],[2,-8],[4,-9],[3,-1],[2,-5],[2,-1],[2,0],[3,-4],[5,-7],[5,-1],[2,-3],[4,-8],[2,-4],[2,-7],[-2,0],[-3,1],[-1,-7],[3,-9],[4,-6],[4,-7],[4,-9],[1,-7],[1,-3],[1,-10],[4,-6],[0,-11],[2,-15],[2,-13],[1,-4],[2,-7],[1,1],[2,2],[3,-6],[1,-3],[1,2],[-2,12],[1,7],[1,1],[2,0],[2,-6],[2,-6],[5,-5],[4,-6],[1,1],[-1,4],[1,6],[1,0],[1,-2],[3,-10],[0,-18],[0,-16],[2,-16],[3,-5],[1,-4],[3,-5],[2,-5],[2,-2],[7,-11],[3,-2],[3,0],[4,-5],[2,-4],[4,-17],[2,-6],[4,-6],[2,-2],[3,-4],[1,-6],[0,-3],[2,-6],[2,-8],[4,-4],[4,-9],[0,-15],[2,-7],[1,-3],[3,-3],[1,-3],[-3,-19],[3,-39],[-2,-13],[3,-12],[5,-21],[1,-7],[1,-9],[3,-11],[0,-17],[1,-8],[0,-10],[-4,-11],[-3,-14],[0,-12],[-2,-23],[-2,-6],[-1,-10],[-4,-23],[0,-9],[0,-10],[0,-11],[-1,-7],[-1,-13],[-5,-20],[-6,-15],[-1,-11],[0,-5],[-2,-7],[-3,-6],[-3,-3],[-1,-4],[-2,0],[0,-2],[2,-1],[-1,-2],[-6,-4],[-4,-4],[-4,-12],[-2,-6],[-2,-5],[-1,-3],[-1,-3],[0,-7],[-3,-1],[-1,-2],[0,-7],[0,-8],[-1,-5],[-1,-4],[-1,2],[-1,-1],[-1,-2],[2,0],[1,-1],[-4,-8],[-4,-8],[0,-5],[-2,-6],[-1,-15],[-2,-8],[1,-6],[0,-1],[-1,0],[-2,-2],[0,-2],[0,-2],[1,-1],[0,-1],[-1,-1],[-2,0],[-1,-2],[-6,-22],[-2,-5],[-3,-9],[-1,-8],[-1,-9],[-1,-14],[-1,-10],[-2,-10],[0,-7],[-1,-14],[1,-10],[0,-6],[0,-5],[-1,-5],[-4,-1],[-2,-4],[-4,-6],[-3,-3],[-5,-2],[-10,1],[-19,-2],[-3,-2],[-7,-4],[-7,-7],[-7,-10],[-15,-25],[-11,-3],[-2,0],[-2,1],[-2,-2],[0,-3],[2,-3],[1,-3],[3,4],[1,-1],[0,-8],[0,-5],[-1,-3],[-1,-2],[-2,1],[0,3],[-2,7],[-3,5],[-2,2],[-2,-2],[-2,-2],[-2,7],[-2,7],[-3,0],[-2,0],[-2,3],[-4,4],[1,4],[1,3],[2,1],[-1,5],[-1,4],[-3,1],[-2,-1],[-1,-3],[-2,-5],[-6,-7],[-3,4],[-4,5],[2,0],[3,0],[3,5],[2,3],[1,7],[-2,4],[-2,4],[-2,3],[-10,-10],[-2,-2],[-2,-2],[3,-2],[2,1],[3,-3],[-4,-4],[-2,-1],[-4,-3],[-6,-7],[-8,-13],[-4,-4],[-4,-3],[-5,3],[-3,1],[-4,6],[-7,4],[-6,7],[-5,4],[-3,1],[-4,-2],[-8,7],[-5,0],[-4,-6],[-3,0],[-1,1],[-6,11],[-6,6],[-11,2],[-6,8],[-5,15],[-9,16],[-3,6],[-1,6],[0,5],[1,9],[2,9],[0,5],[-4,17],[-5,16],[-2,5],[-6,10],[-6,8],[-1,4],[-1,2],[3,-1],[1,4],[2,1],[2,-5],[1,0],[0,7],[1,3],[0,2],[-1,1],[-2,2],[-3,-3],[-2,-3],[-3,-2],[-1,-3],[-3,0],[-1,-1],[-6,-5],[-4,0],[-5,2],[1,7],[3,4],[2,5],[3,17],[-1,15],[-1,7],[-5,12],[-2,8],[-3,8],[-1,-5],[-1,-5],[-3,-7],[-1,-15],[-5,-24],[-4,-1],[-3,1],[-5,-2],[-3,-4],[-3,0],[-2,-1],[-3,1],[4,19],[3,-1],[4,1],[1,0],[3,0],[1,8],[1,10],[0,6],[-1,7],[1,7],[0,5],[5,18],[3,9],[5,7],[-1,6],[-1,9],[-1,6],[2,3],[2,4],[-2,18],[-1,6],[-3,5],[0,-7],[1,-7],[-3,-9],[-4,-6],[-3,-6],[-2,-14],[-4,-11],[-3,-4],[-2,-1],[-3,-2],[-4,-5],[-4,-4],[-3,-5],[-3,-2],[-9,-23],[-4,-8],[0,-3],[-2,-3],[0,-3],[2,-3],[1,-10],[-1,-2],[-1,1],[-4,6],[-2,-2],[-2,-3],[-5,11],[-1,2],[-3,4],[-2,4],[-2,0],[-1,0],[0,3],[1,2],[1,0],[2,-3],[3,-3],[1,0],[1,1],[-3,12],[-1,10],[-1,3],[-2,11],[-1,3],[-4,7],[-4,9],[-1,10],[-2,7],[-2,4],[-3,4],[-8,2],[-4,10],[-2,14],[2,0],[2,1],[0,4],[0,6],[-9,8],[-4,8],[-3,4],[-3,1],[-4,0],[-6,0],[-12,13],[-3,1],[-9,-5],[-3,1],[-14,18],[-9,9],[-3,1],[-4,2],[-3,-2],[-2,-2],[-5,-3],[-18,2],[-16,-3],[-10,-2],[-7,-2],[-11,-11],[-13,-10],[-11,-5],[-10,-7],[-7,-1],[-8,-1],[-18,3],[-6,-2],[-10,-12],[-3,-3],[-5,-4],[-14,-15],[-7,-4],[-4,-1],[-4,-3],[-3,-6],[-4,-19],[-3,-8],[-6,-14],[-4,-5],[-4,1],[-4,-5],[-4,5],[-3,1],[-5,0],[-18,-6],[-2,7],[-3,1],[-6,-1],[-9,2],[-17,-2],[-8,-3],[-3,-2],[-6,1],[-10,-2],[-3,-4],[-3,-3],[-5,-16],[-5,-5],[-5,0],[-5,-1],[-11,-15],[-10,-14],[-4,-2],[-4,-2],[-5,-1],[-3,-2],[-12,4],[-8,0],[-9,3],[-9,7],[-6,4],[-7,15],[-5,6],[-8,7],[-2,0],[-2,-2],[-3,5],[0,6],[-1,6],[0,14],[0,16],[3,-3],[3,-4],[5,0],[4,6],[2,10],[3,10],[-1,11],[-1,19],[1,4],[1,2],[1,10],[0,29],[-1,11],[-7,23],[-4,19],[-3,9],[-3,15],[-3,19],[0,10],[-1,19],[1,10],[-1,6],[-2,17],[-7,16],[-1,6],[0,6],[-1,7],[-5,14],[-6,12],[0,6],[-1,25],[-2,12],[-9,28],[-11,25],[-3,10],[-1,4],[1,0],[1,-1],[1,-3],[1,0],[1,2],[0,5],[0,3],[1,-2],[1,-5],[3,-14],[1,-7],[4,-2],[2,2],[1,3],[1,10],[-2,4],[-2,2],[-4,8],[-2,11],[-3,11],[0,4],[2,2],[2,-1],[2,-6],[3,-6],[-1,-10],[0,-3],[0,-2],[1,-2],[1,-2],[2,3],[1,5],[1,0],[1,-14],[2,-3],[2,-4],[3,3],[1,3],[-1,9],[1,9],[0,7],[-6,17],[-6,22],[-3,11],[-3,17],[-2,5],[-2,9],[0,11],[0,7],[2,15],[1,8],[6,18],[0,8],[0,6],[1,9],[0,6],[-1,6],[-2,10],[3,18],[5,22],[1,3],[3,4],[1,-5],[-2,-16],[2,-8],[0,-9],[2,1],[2,2],[2,5],[1,5],[6,18],[3,7],[4,5],[8,6],[8,8],[4,8],[5,6],[3,8],[4,4],[16,19],[3,3],[4,1],[4,-1],[4,1],[4,-4],[3,-1],[8,5],[4,4],[7,9],[3,2],[8,3],[8,4],[10,15],[7,-1],[6,-1],[5,4],[12,3],[7,4],[12,10],[3,4],[5,7],[5,9],[4,12],[3,11],[1,6],[2,9],[2,7],[1,4],[5,4],[7,14],[3,3],[0,4],[-1,2],[-2,2],[-2,14],[-1,10],[0,7],[1,7],[2,10],[2,4],[3,5],[3,2],[2,4],[3,5],[1,4],[3,9],[2,7],[1,0],[3,-16],[2,-8],[3,-10],[3,-15],[3,-7],[1,-4],[1,-2],[1,2],[-1,4],[2,11],[-1,8],[0,3],[1,1],[1,-1],[3,-4],[1,-2],[1,1],[0,7],[1,4],[0,3],[-3,0],[0,4],[-2,5],[-2,3],[-3,7],[-1,3],[1,1],[2,0],[1,3],[1,4],[-1,7],[1,3],[2,-1],[4,-11],[1,1],[2,5],[2,1],[2,-1],[2,-3],[3,-3],[4,0],[2,-1],[5,1],[2,-1],[0,2],[-3,2],[-3,0],[-3,0],[-1,2],[-1,6],[1,4],[1,1],[2,0],[2,0],[0,5],[1,5],[1,4],[0,3],[-2,-1],[-2,-8],[-2,7],[-2,5],[1,8],[1,7],[2,1],[1,-1],[2,5],[2,3],[-1,3],[1,2],[1,-1],[7,-6],[1,-4],[1,1],[1,4],[-1,4],[-1,0],[-3,0],[-1,2],[0,2],[-1,5],[2,2],[2,1],[1,2],[0,2],[0,2],[1,-2],[4,-1],[3,-3],[1,-1],[1,2],[0,4],[-4,4],[0,4],[-2,5],[0,4],[3,4],[0,4],[2,1],[2,0],[2,3],[2,2],[1,7],[0,4],[1,2],[2,-2],[-1,-6],[0,-5],[0,-3],[1,0],[0,1],[1,4],[2,-2],[1,-3],[0,-4],[1,-1],[2,5],[2,2],[0,7],[0,5],[1,4],[1,2],[0,4],[-1,3],[0,5],[1,1],[2,-3],[1,-6],[1,-3],[1,2],[1,4],[2,2],[3,-3],[2,-5],[3,4],[3,8],[-1,5],[1,5],[3,2],[3,-2],[3,-5],[5,-4],[5,-5],[2,-4],[4,-6],[2,-6],[4,-11],[8,-13],[0,-2],[-1,-4],[-1,-6],[-1,-9],[0,-14],[1,1],[1,5],[1,-1],[2,-3],[0,3],[-1,2],[-1,6],[0,3],[1,3],[2,3],[2,2],[1,2],[0,3],[2,2],[3,1],[1,-1],[12,-6],[3,-5],[0,-8],[1,-2],[1,4],[0,10],[1,2],[3,-1],[2,-2],[3,-7],[1,-3],[1,-2],[1,3],[-1,4],[-1,5],[1,4],[4,1],[2,1],[-1,1],[-2,1],[-2,4],[-2,4],[3,4],[0,1],[-3,0],[-3,4],[-3,6],[2,10],[5,10],[2,4],[0,3],[2,6],[0,6],[1,4],[1,4],[3,4],[3,2],[2,1],[2,4],[1,5],[-3,9],[0,5],[1,5],[4,5],[2,11],[2,2],[3,-1],[1,1],[0,9],[1,4],[1,1],[2,-1],[1,-4],[2,-4],[1,2],[0,4],[0,5],[2,2],[2,0],[0,4],[0,3],[0,2],[5,0],[1,4],[1,3],[1,-2],[1,-6],[2,-4],[8,0],[5,2],[2,-1],[3,-2],[3,4],[2,2],[3,-3],[1,-3],[1,6],[2,3],[2,1],[3,-1],[1,1],[-3,5],[0,4],[0,7],[1,6],[1,5],[-6,9],[-5,1],[-4,-2],[-2,2],[-4,7],[-3,3],[0,2],[4,5],[1,-1],[3,-5],[1,-2],[1,1],[1,3],[1,2],[2,-1],[6,-8],[4,-8],[2,2],[3,5],[2,-1],[2,-3],[3,-10],[2,-4],[4,-2],[3,-2],[2,-3],[4,0],[7,-1],[6,-6],[3,-4],[3,-1],[2,-1],[3,-1],[6,5],[2,-5],[1,-2],[5,-6],[5,-1],[4,5],[5,4],[4,6],[3,3],[3,5],[1,0],[-2,-5],[-1,-3],[2,-1],[0,-1],[-3,-4],[-2,-5],[0,-3],[1,-2],[1,1],[2,2],[2,2],[2,-2],[1,-8],[1,-6],[3,0],[2,0],[2,7],[-1,6],[-1,2],[0,2],[5,10],[3,0],[2,-10],[3,-5],[3,0],[2,-1],[1,-7],[-11,-25],[-1,-2],[2,-5],[0,-5],[-3,-13],[-2,-1],[-1,4],[-2,2],[-2,-1],[-1,-1],[-7,-8],[0,-18],[2,-11],[-1,-7],[-2,-12],[-2,-5],[-2,-3],[-6,-17],[-2,-4],[-2,-6],[1,-6],[1,-4],[2,-4],[8,-9],[4,-7],[7,-7],[1,-6],[1,-4],[5,-5],[3,-3],[1,1],[1,1],[1,0],[0,-1],[0,-3],[0,-3],[0,-2],[3,-4],[4,0],[2,1],[2,-3],[2,-3],[4,-5],[6,-5],[5,-4],[6,-14],[4,-8],[5,-6],[7,-4],[4,0],[5,-4],[5,-3],[3,-6],[1,-5],[1,-4],[2,-9],[5,-3],[7,-10],[6,-4],[2,-2],[2,-3],[5,0],[8,5],[4,4],[5,8],[2,13],[2,10],[7,21],[2,11],[2,13],[1,9],[0,10],[1,17],[4,24],[1,8],[0,11],[-3,22],[1,8],[1,11],[-1,7],[-2,6],[0,7],[2,14],[1,8],[2,9],[-1,18],[3,7],[2,3],[2,0],[1,-2],[1,4],[-1,3],[-1,4],[-1,2],[-1,1],[-1,2],[-2,2],[0,8],[3,16],[2,6],[1,-2],[1,-3],[1,5],[-1,5],[3,15],[2,20],[1,19],[5,4],[2,5],[1,5],[3,0],[1,-2],[-1,-4],[0,-4],[5,-7],[1,-6],[1,-6],[1,-5],[0,-8],[0,-11],[1,-11],[1,-4],[2,-2],[2,0],[3,-2]],[[9251,3701],[0,-2],[-2,3],[-1,10],[1,6],[2,5],[0,3],[-1,7],[4,7],[1,4],[1,4],[-2,5],[-1,1],[1,3],[1,2],[1,0],[1,0],[0,-10],[2,-4],[0,-5],[-6,-26],[-2,-9],[0,-4]],[[8874,4229],[-2,-5],[-1,1],[-1,-3],[-2,-1],[-1,0],[-2,-2],[-1,2],[1,5],[2,6],[1,3],[5,2],[4,2],[3,-6],[-4,-1],[-2,-3]],[[8797,4389],[1,-3],[1,0],[1,6],[1,-1],[1,-1],[0,-3],[-2,-4],[-1,-2],[-1,-8],[0,-2],[1,-3],[2,-2],[2,1],[0,-4],[-1,-2],[-4,1],[-3,-1],[-5,3],[-3,0],[-1,1],[2,2],[1,3],[-1,7],[1,8],[3,4],[1,4],[2,3],[1,0],[0,-3],[1,-4]],[[8623,4511],[2,-1],[1,-2],[1,-2],[0,-3],[-3,-1],[-5,4],[-5,-3],[-2,0],[-1,2],[1,6],[2,-1],[2,2],[-1,7],[-1,4],[3,6],[1,2],[2,0],[1,-5],[0,-5],[1,-5],[1,-5]],[[8627,4529],[4,-1],[5,4],[2,-1],[1,0],[3,4],[2,1],[1,3],[2,-3],[3,-4],[1,-4],[2,-2],[0,-1],[-2,-4],[0,-5],[-2,1],[-3,-8],[-9,-12],[-9,10],[-4,8],[-2,10],[-1,8],[-1,5],[1,1],[0,1],[1,0],[3,-6],[1,-1],[1,-4]],[[8143,3683],[-1,-2],[-5,18],[-1,12],[1,2],[1,1],[3,-17],[1,-4],[0,-4],[0,-1],[1,-5]],[[8821,3125],[7,-1],[2,2],[4,-2],[2,-5],[-2,-3],[-1,0],[-5,2],[-5,-2],[-1,-2],[-1,-5],[-4,-3],[-2,3],[-5,2],[-1,-3],[-4,1],[-3,-1],[-4,0],[-5,6],[-1,3],[1,4],[2,4],[12,5],[7,4],[5,-1],[2,-1],[1,-2],[-1,-4],[0,-1]],[[9040,2975],[-4,-4],[-1,2],[0,2],[0,2],[4,0],[1,-2]],[[9036,2967],[1,-3],[0,-1],[-3,2],[-4,0],[3,4],[2,-1],[1,-1]],[[9139,4015],[0,-1],[-1,0],[-2,1],[1,8],[1,-4],[1,-3],[0,-1]],[[9136,4023],[-1,1],[0,2],[1,2],[1,1],[0,-5],[-1,-1]],[[9198,3831],[1,-2],[1,0],[0,-4],[1,-4],[1,-3],[-1,-3],[-1,-1],[-1,2],[-5,12],[1,5],[3,-2]],[[9180,3898],[-1,0],[0,1],[0,2],[0,3],[1,-1],[1,-4],[-1,-1]],[[9164,3906],[-1,-2],[-1,4],[0,4],[1,2],[1,-6],[0,-2]],[[9264,3604],[-2,-16],[-1,0],[-1,2],[0,10],[1,5],[3,-1]],[[9261,3610],[-1,5],[-1,6],[1,5],[1,1],[1,-1],[-1,-9],[0,-7]],[[8951,4567],[-2,-3],[-2,2],[0,3],[0,2],[2,3],[2,-7]],[[8953,4597],[-2,-4],[-1,1],[-1,2],[1,3],[2,1],[1,-3]],[[8948,4599],[-1,-2],[-1,4],[2,4],[1,-2],[-1,-4]],[[9062,4134],[1,-6],[1,-4],[0,-3],[-1,-2],[-2,2],[-1,5],[-2,4],[-1,3],[3,-1],[1,1],[1,1]],[[8794,4528],[-2,-3],[-1,3],[1,2],[3,8],[1,2],[1,1],[0,3],[0,5],[2,0],[-2,-10],[-3,-11]],[[8786,4516],[-4,-5],[2,6],[5,5],[1,1],[0,-2],[-3,-4],[-1,-1]],[[8807,4275],[-1,-3],[-1,3],[-1,3],[-1,1],[1,2],[0,1],[1,4],[1,-4],[1,-5],[0,-2]],[[8801,4284],[-1,0],[0,4],[1,3],[1,-5],[-1,-2]],[[8793,4284],[-1,-1],[-1,1],[0,2],[0,3],[2,0],[1,-1],[-1,-4]],[[8873,4198],[-1,-1],[0,2],[1,3],[1,3],[2,-3],[0,-3],[-3,-1]],[[8783,4388],[0,-1],[-3,1],[0,2],[1,2],[0,1],[2,4],[1,-3],[1,-5],[-2,-1]],[[8682,4533],[0,-1],[-2,9],[0,3],[-1,4],[2,1],[1,3],[0,-2],[0,-6],[1,-4],[-1,-7]],[[8477,4344],[-2,-4],[-1,3],[1,6],[1,2],[1,-1],[0,-4],[0,-2]],[[8460,4297],[-1,-2],[-1,1],[0,2],[-1,2],[1,3],[0,1],[1,0],[0,-2],[1,-3],[0,-2]],[[8206,3986],[-2,-4],[-2,1],[0,2],[1,4],[3,4],[0,-2],[0,-5]],[[9028,2835],[3,-1],[2,2],[2,0],[2,-4],[2,-2],[1,1],[2,-1],[1,-2],[3,-2],[1,-2],[1,-2],[2,-1],[8,-6],[5,-2],[8,1],[2,2],[2,2],[1,-2],[2,-3],[0,3],[0,3],[2,2],[2,2],[3,0],[4,0],[1,2],[1,0],[2,-2],[2,-1],[1,2],[3,5],[1,2],[5,-1],[2,0],[2,5],[2,0],[5,-4],[2,-6],[0,-9],[0,-4],[1,-3],[0,-7],[-1,-7],[0,-5],[0,-5],[0,-10],[1,-6],[0,-5],[0,-2],[0,-2],[1,-2],[-1,-3],[1,-3],[-1,-2],[-1,0],[0,2],[0,3],[0,2],[-1,2],[-2,2],[1,1],[1,1],[-1,3],[-1,-2],[-1,-3],[1,-1],[-1,-1],[-2,-4],[-1,-5],[-1,-5],[0,-5],[-1,-4],[-1,-4],[0,-5],[0,-9],[1,-9],[1,-11],[-1,-1],[-3,-1],[-2,-2],[-2,6],[-2,6],[2,2],[2,-1],[1,1],[0,2],[0,1],[-3,3],[-4,2],[-1,-2],[1,-5],[-1,-2],[-2,-2],[-1,8],[-3,6],[0,-3],[1,-5],[0,-2],[-1,-3],[-1,-1],[0,-2],[0,-3],[-1,-5],[-2,-3],[-5,6],[0,-2],[0,-2],[3,-3],[-2,-2],[0,-3],[-2,-8],[-2,-6],[-1,-1],[-4,1],[-4,6],[-4,-1],[-6,1],[-4,-2],[-1,5],[-1,3],[0,1],[4,2],[3,0],[-1,2],[0,1],[-2,-1],[-4,2],[-3,-1],[-2,3],[-3,10],[-2,4],[-1,2],[-2,1],[-1,1],[-6,22],[-1,5],[-1,13],[5,-6],[2,-4],[1,-5],[2,6],[-1,2],[-4,8],[-1,2],[0,2],[-1,-2],[-2,-1],[1,5],[-1,6],[-5,11],[-3,10],[-4,13],[-1,2],[0,3],[-2,8],[-1,7],[0,5],[2,12],[0,6],[3,-3],[6,-3]],[[8997,2873],[-1,0],[0,3],[0,5],[-1,4],[0,5],[0,5],[1,2],[1,3],[1,4],[1,0],[3,-3],[0,-9],[0,-5],[1,-4],[-1,-4],[-2,-4],[-3,-2]],[[9110,2894],[5,-11],[3,-1],[0,-1],[0,-5],[-1,-2],[2,-2],[0,-2],[-3,-4],[-3,-1],[-1,1],[0,2],[-1,2],[-4,9],[1,3],[-1,3],[-2,0],[-1,2],[2,3],[2,6],[2,-2]],[[9092,2684],[-1,-6],[-2,1],[-2,-1],[-2,4],[0,1],[2,-1],[1,2],[0,1],[1,1],[0,2],[1,3],[1,0],[1,-4],[0,-3]],[[9113,2724],[-1,-1],[-1,0],[0,3],[0,2],[1,2],[2,-1],[1,-2],[-2,-2],[0,-1]],[[9094,2693],[-1,0],[-1,1],[0,3],[-1,1],[0,1],[1,1],[0,2],[1,-2],[1,-7]],[[9021,2851],[-1,-5],[-1,6],[1,1],[1,2],[0,-1],[0,-3]],[[9119,2862],[3,-3],[1,-4],[-2,-3],[-1,-1],[-1,4],[-3,-1],[-3,0],[-2,3],[-1,1],[2,1],[4,0],[3,3]],[[9117,2850],[-2,-4],[-1,3],[-1,1],[3,1],[1,-1]],[[9412,2033],[-1,-3],[0,3],[2,11],[2,2],[-1,-6],[-2,-7]],[[7936,4579],[-1,-4],[-1,3],[-2,0],[0,3],[2,1],[1,1],[1,-4]],[[7689,4482],[1,0],[-1,-1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[0,-1]],[[7691,4481],[0,1],[0,1],[1,0],[0,-1],[-1,-1]],[[7047,2123],[-4,-3],[-3,0],[-1,3],[-3,6],[-1,1],[-1,2],[2,1],[2,-2],[5,-1],[4,-4],[3,-1],[-1,-1],[-2,-1]],[[9664,3512],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,-1]],[[8432,4468],[0,0]],[[3383,3313],[-1,-5],[2,-23],[-1,-3],[-1,-3],[-2,-1],[-2,1],[-1,-2],[-1,-10],[-3,-22],[1,-5],[2,-9],[1,-5],[0,-4],[1,-8],[-2,-3],[-1,-1],[-1,-2],[2,-9],[1,-4],[4,-9],[14,-12],[6,-7],[7,-10],[4,-10],[0,-8],[-6,-13],[0,-10],[1,-7],[2,-7],[5,-9],[4,-3],[5,0],[1,-2],[1,-2],[1,-18],[-1,-7],[-1,-6],[-10,-28],[-9,-17],[-3,-10],[-1,-10],[-3,-5],[-14,-15],[-23,-14],[-19,-7],[-4,-2],[-30,-8],[-6,-1],[-7,1],[-7,-1],[-6,2],[-6,2],[-4,6],[-4,1],[-1,-3],[2,-8],[-1,-9],[1,-6],[3,-1],[2,-2],[2,-4],[-4,0],[2,-3],[1,-2],[0,-6],[-1,-15],[-4,-3],[-1,-1],[-1,-3],[-2,-14],[0,-10],[1,-6],[4,-12],[-2,-8],[-3,-4],[-11,-9],[-4,-4],[-7,-3],[-12,0],[-4,1],[-10,8],[-7,5],[-6,4],[-7,2],[1,1],[1,2],[-2,1],[-2,1],[-4,-5],[-2,-4],[0,-4],[0,-9],[1,-7],[3,-19],[0,-11],[-2,-13],[3,-7],[2,-4],[5,-3],[3,-2],[2,0],[1,-1],[-1,-2],[-1,-3],[0,-3],[4,-1],[5,0],[4,2],[1,2],[0,5],[-5,1],[1,2],[4,2],[5,3],[3,1],[1,-2],[2,-2],[1,-6],[1,-7],[0,-8],[0,-8],[-1,-3],[-2,-4],[-9,-4],[-3,1],[-2,6],[-1,6],[-2,5],[-5,3],[-4,-1],[-5,-6],[-4,-2],[-2,-5],[11,-9],[6,-2],[1,0],[2,-1],[-2,-3],[-1,-2],[-8,-5],[-3,-3],[-4,-6],[-6,-13],[-2,-3],[-1,-3],[0,-9],[1,-15],[-1,-7],[1,-7],[-1,-4],[-2,-7],[-8,-11],[-1,-7],[2,-5],[0,-4],[-1,-4],[-3,0],[-12,3],[-4,-4],[-4,-5],[-1,-2],[-2,-2],[-8,-2],[-2,-2],[-9,-18],[-3,-12],[-5,-11],[-1,-5],[0,-6],[0,-6],[1,-5],[2,-5],[3,-7],[17,-26],[3,-2],[18,-3],[4,-3],[3,-6],[1,-5],[-1,-13],[-1,-4],[-2,-4],[-5,-4],[-5,-3],[2,-2],[2,1],[4,1],[2,-1],[2,-6],[-3,-2],[-1,-2],[-2,-4],[-11,-15],[-5,-4],[-5,-6],[-7,-6],[-3,-4],[-4,-7],[-5,-8],[-6,-17],[-1,-3],[1,-2],[-3,-30],[-1,-3],[-3,-4],[-6,-6],[-3,-1],[-4,3],[-3,4],[-2,7],[-3,6],[0,-2],[1,-4],[-1,-4],[-7,-2],[-1,-2],[6,1],[4,-2],[2,-1],[2,-3],[1,-4],[-1,-2],[-4,-2],[-4,-3],[-5,-6],[-3,-7],[-1,-5],[-2,-9],[0,-7],[-3,-5],[-3,-4],[0,-1],[3,2],[1,1],[2,-6],[2,-12],[1,-8],[0,-3],[-1,-3],[-4,-1],[-4,0],[-3,-1],[2,-2],[2,1],[4,-4],[4,2],[2,-3],[1,-2],[7,-17],[5,-11],[3,-6],[-2,-3]],[[3093,2151],[2,-2],[6,-12],[2,-5],[1,-6],[-2,4],[-3,-2],[-2,-3],[-1,-4],[0,-3],[1,-2],[3,-2],[6,-1],[1,0],[4,-14],[1,-4],[3,-2],[5,-7],[5,-8],[5,-7],[7,-6],[5,-4],[6,-6],[6,-7],[6,-5],[7,-4],[6,-3],[11,1],[3,0],[2,-3],[-2,-6],[-2,-5],[-4,-2],[-4,-1],[-3,0],[-3,1],[-3,0],[-3,-3],[-3,-1],[-4,0],[-3,-2],[-3,-1],[-3,1],[-8,5],[-6,1],[-18,2],[-6,2],[-6,1],[-3,0],[-5,-1],[-3,0],[-1,-1]],[[3207,2032],[3,-1],[6,1],[3,0],[1,-1],[1,0],[4,1],[2,0],[0,-3],[-4,-2],[-2,1],[-8,0],[-4,-3],[-1,0],[-4,-4],[-2,3],[-1,2],[2,3],[2,0],[1,1],[1,2]],[[3281,2928],[0,-4],[-1,0],[-4,4],[-1,3],[0,1],[3,-1],[2,-1],[1,-2]],[[3285,6165],[-1,-2],[-3,1],[0,3],[0,2],[2,4],[2,-2],[1,-2],[0,-2],[0,-1],[-1,-1]],[[3284,6196],[0,-1],[-2,2],[-1,5],[0,2],[1,0],[0,-1],[2,0],[0,-2],[0,-5]],[[5339,4852],[-1,2],[-1,5],[1,6],[1,4],[-1,8],[-2,7],[-2,10],[-1,2]],[[5326,4190],[1,22],[1,10],[0,11],[-1,30],[-1,4],[0,5],[3,4],[1,2],[2,5],[1,7],[2,16],[6,35],[2,34],[4,17],[1,18],[10,23],[2,15],[5,7],[7,8],[5,13],[3,9],[2,18],[0,19],[2,25],[0,7],[-3,10],[0,7],[-3,7],[-2,6],[-2,9],[-4,15],[-1,10],[-3,7],[0,9],[-1,9],[-2,9],[-2,11],[0,3],[1,4],[1,1],[0,-2],[-1,-2],[0,-2],[9,18],[0,4],[0,4],[0,5],[0,6],[-8,34],[-6,31],[-1,16],[-9,21],[-3,14],[-2,9],[-1,4],[0,2],[2,0],[5,3],[7,2],[6,6],[1,2]],[[4938,7206],[5,-1],[3,0],[7,5],[5,7],[4,4],[4,7],[3,5],[5,5],[14,11],[2,0],[4,-2],[4,1],[3,4],[3,9],[4,6],[6,5],[7,6],[5,5],[8,4],[20,3],[11,2],[7,0],[7,8],[3,3],[15,0],[7,6],[28,0],[3,-2],[3,-3],[6,-8],[3,-1],[3,1],[9,7],[9,4],[5,4],[2,7],[5,2],[2,-5],[10,-5],[6,2],[3,1],[-1,7],[6,-2],[5,-3],[5,-7],[3,-1],[6,3],[13,1]],[[5555,7471],[0,5],[-1,4],[-3,10],[-10,10],[-3,4],[-1,4],[-1,3],[1,0],[1,-1],[1,-1],[1,2],[-1,4],[-2,9],[0,2],[1,7],[2,8],[0,10],[1,8],[-1,5],[-1,6],[2,8],[1,2],[1,2],[0,9],[-3,4],[-3,0]],[[3730,1698],[6,-2],[3,-2],[1,-2],[3,-1],[1,0],[0,-2],[1,-1],[0,-2],[-6,4],[-9,1],[-2,3],[-4,-2],[-1,1],[0,2],[1,3],[2,-1],[4,1]],[[2485,1221],[-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]],[[3416,1534],[2,-8],[4,-4],[-1,-3],[-4,0],[-4,-1],[-1,4],[2,3],[-2,2],[-4,0],[-4,-1],[-4,-2],[-4,-4],[-3,-3],[-12,-6],[-7,-9],[-6,-9],[-3,-6],[-4,-1],[-2,-2],[2,-2],[2,-1],[3,0],[0,-3],[-3,-1],[1,-2],[2,-3],[1,-5],[-3,0],[-5,4],[-5,1],[-3,2],[-3,4],[-2,-1],[-2,-5],[1,-5],[-2,-3],[-3,1],[0,6],[-3,2],[-3,0],[-8,-7],[-2,0],[-2,-4],[-4,-3],[-3,-4],[-7,-10],[-4,-4],[-8,-2],[-3,0],[-2,1],[-3,1],[-2,0],[-1,-3],[4,-9],[-2,-3],[-6,0],[-2,3],[-2,-2],[-2,-3],[-2,-3],[3,-7],[4,-4],[3,0],[1,-3],[-6,-1],[-5,-6],[-2,-5],[-2,-4],[0,-4],[4,-7],[4,-4],[5,-1],[6,2],[1,1],[6,1],[3,4],[2,1],[1,-1],[3,0],[2,3],[2,1],[2,-1],[6,0],[1,-3],[-1,-3],[-4,-4],[-3,3],[-3,-1],[-1,-2],[3,-5],[-1,-4],[-3,-4],[-3,3],[0,4],[-4,3],[-4,1],[-2,-5],[-5,-1],[0,-5],[-2,-5],[-2,1],[-1,6],[-7,5],[-3,1],[-7,-1],[-3,0],[-2,-1],[-3,-5],[3,-3],[1,-4],[0,-3],[0,-1],[-1,-3],[3,-3],[1,-5],[-3,0],[-2,1],[-8,13],[-5,6],[-2,5],[-6,1],[-4,0],[-4,-2],[2,-2],[0,-4],[-2,-1],[-4,-6],[-2,-5],[-2,-1],[-1,-2],[7,-7],[1,-2],[1,-4],[-3,-2],[-5,-1],[-10,4],[-4,0],[-2,3],[-2,0],[-2,-5],[-1,-5],[-2,-3],[0,-4],[2,-1],[-1,-2],[-4,-2],[-2,-2],[5,-1],[1,-2],[0,-2],[-7,-2],[-5,0],[-3,2],[-2,-1],[-2,-3],[0,-4],[0,-5],[1,-3],[1,-1],[1,-3],[-5,-8],[0,-1],[-1,-4],[2,-3],[2,-4],[-2,-3],[-3,-4],[3,-1],[4,-1],[5,1],[7,4],[2,1],[1,-2],[1,-2],[-2,-3],[-13,-6],[-2,-3],[3,-2],[7,0],[2,-2],[-1,-3],[-3,-2],[-3,-5],[3,-2],[7,-4],[13,-4],[10,-1],[-2,5],[-1,6],[7,4],[4,2],[16,3],[4,0],[4,-1],[-2,-3],[-4,1],[-6,-2],[-10,-5],[-2,-2],[1,-4],[8,-4],[3,-3],[-4,-8],[1,-5],[4,-6],[6,-6],[3,-4],[4,-3],[7,-6],[4,-6],[1,-14],[6,-12],[7,-5],[0,-5],[-2,-4],[-6,2],[-3,-2],[-1,-5],[4,-4],[6,-4],[14,1],[1,-5],[-4,-3],[-2,-3],[-3,-2],[-5,-1],[-2,-4],[3,-6],[7,3],[5,0],[6,-1],[1,-8],[7,-9],[1,-5],[-1,-4],[-4,-1],[-2,-4],[-4,-3],[-4,-1],[-8,-8],[-3,-1],[-1,-2],[6,0],[5,-1],[9,7],[4,-2],[2,-4],[2,-5],[-3,-4],[-17,-2],[-8,-3],[-9,-6],[10,-3],[8,1],[4,-1],[5,-3],[5,1],[5,3],[3,0],[3,-1],[0,-5],[1,-7],[1,-5],[-2,-4],[-9,-2],[-7,0],[0,-8],[10,-6],[6,3],[5,-1],[0,-9],[4,-10],[4,-1],[3,5],[4,0],[1,-6],[-1,-9],[-3,-5],[-8,2],[-5,2],[-3,-3],[-6,-3],[-5,-1],[-4,5],[-6,3],[-8,2],[-8,1],[3,-4],[3,-3],[2,-7],[3,-7],[6,2],[9,-4],[6,-4],[2,-6],[-3,-9],[-5,-3],[-3,-2],[-6,4],[-4,0],[-4,-2],[-1,-4],[-3,-2],[14,-1],[5,-1],[3,-4],[-5,-4],[-10,0],[-4,-2],[-3,-3],[14,-2],[6,1],[9,4],[2,-4],[-3,-4],[-5,-6],[-10,-2],[-8,0],[-9,2],[-3,1],[-4,1],[0,-4],[3,-2],[6,-10],[1,-3],[-2,-5],[-5,-4],[-7,-1],[-5,3],[-4,9],[-5,3],[-5,0],[-3,0],[0,-5],[1,-4],[-2,-4],[-4,2],[-6,-2],[-5,-2],[-5,-3],[10,-2],[6,0],[5,-5],[-2,-2],[-9,-1],[-8,-2],[-12,-5],[9,-2],[8,0],[5,0],[5,-1],[2,-3],[-3,-3],[-20,-7],[-20,-10],[-7,-2],[-8,-2],[-18,-8],[-11,-3],[-32,-6],[-49,-14],[-17,-10],[-5,-7],[-4,-2],[-9,-2],[-10,-1],[-25,-1],[-25,4],[-21,0],[-12,-1],[-38,7],[-5,0],[-6,-2],[-5,0],[-3,1],[-8,1],[-26,-3],[-3,-4],[3,-8],[10,-9],[16,-16],[8,-4],[6,-3],[10,-5],[22,0],[31,-3],[17,-3],[-1,-6],[-10,-12],[-7,-4],[-15,-8],[-21,-4],[-17,1],[-29,7],[-36,6],[-54,5],[-11,3],[-14,2],[-8,-2],[-6,-3],[-13,0],[3,-2],[54,-16],[46,-11],[5,-3],[7,-2],[-1,-7],[-2,-6],[-9,-5],[-24,0],[-29,-4],[-15,0],[-14,4],[-31,11],[-19,8],[-13,10],[-9,8],[-10,7],[0,-5],[2,-4],[5,-6],[7,-6],[1,-3],[-4,0],[-5,3],[-4,-3],[-2,-3],[2,-5],[3,-4],[9,-9],[8,-3],[11,-6],[25,-10],[5,-4],[8,-8],[1,-6],[8,-5],[5,-1],[5,0],[1,5],[0,6],[2,2],[7,1],[20,-2],[82,-1],[8,-4],[3,-4],[2,-10],[-9,-11],[-6,-5],[-10,-3],[-8,-2],[-14,-1],[-27,1],[-27,0],[21,-5],[20,-5],[28,1],[12,1],[9,2],[4,-3],[8,-8],[5,-3],[3,-2],[4,-9],[2,-5],[4,-5],[3,-5],[4,-4],[8,-1],[8,3],[16,1],[15,-5],[10,-1],[13,4],[11,5],[22,5],[4,2],[6,1],[9,0],[4,-1],[4,-5],[5,-7],[6,-4],[7,-2],[3,-1],[13,-2],[16,2],[8,-2],[1,-4],[4,-3],[5,-1],[66,-18],[23,-4],[35,-2],[28,0],[4,-1],[5,-3],[-11,-3],[-11,0],[-17,1],[-6,-1],[-13,1],[-6,0],[-6,1],[-9,-3],[-17,-2],[4,-2],[6,-1],[12,-1],[18,1],[1,-5],[-16,-1],[-33,-1],[-4,0],[-2,-3],[5,-1],[3,-1],[1,-3],[-3,-8],[5,-5],[4,-1],[4,1],[7,-3],[7,-3],[15,0],[17,4],[9,0],[23,3],[20,-1],[29,5],[5,0],[4,-1],[-8,-4],[-35,-11],[-13,-2],[-5,-2],[3,-5],[5,-6],[9,-6],[6,-9],[6,-1],[11,4],[2,-3],[1,-7],[-3,-4],[-4,-3],[-3,-3],[-1,-4],[4,-3],[13,-1],[16,-1],[15,0],[9,-1],[34,19],[14,10],[7,3],[6,3],[28,12],[7,4],[8,5],[14,1],[19,9],[17,6],[7,1],[5,1],[6,1],[15,0],[11,1],[19,4],[14,3],[16,2],[17,1],[46,4],[13,-2],[15,-5],[10,1],[12,1],[9,2],[4,-6],[2,-6],[-5,-7],[-7,-4],[-2,-6],[10,-4],[11,1],[20,3],[17,5],[4,2],[7,0],[11,3],[13,15],[17,14],[15,10],[9,11],[8,6],[8,5],[6,2],[13,1],[19,7],[28,9],[21,-4],[22,-6],[11,5],[9,1],[7,2],[8,2],[5,4],[7,4],[5,5],[27,3],[29,4],[4,1],[3,-1],[10,1],[13,3],[17,1],[9,0],[8,8],[16,2],[18,3],[7,2],[6,1],[141,6],[6,3],[13,3],[4,6],[-19,3],[-5,2],[-7,1],[-4,-1],[-16,1],[-130,9],[-3,1],[-5,6],[1,10],[-4,8],[-9,2],[-9,0],[-12,-1],[-31,-4],[-13,-1],[-33,7],[-22,8],[-15,2],[-10,6],[-10,4],[-1,9],[3,8],[18,25],[12,12],[8,0],[7,6],[7,12],[6,5],[14,7],[5,1],[22,9],[5,0],[10,-1],[11,7],[33,15],[7,6],[9,4],[27,13],[24,6],[11,2],[15,4],[16,6],[14,6],[49,11],[30,3],[21,3],[14,-2],[14,1],[13,2],[5,3],[8,6],[28,-3],[18,4],[7,0],[8,2],[-3,2],[-3,0],[-3,3],[-3,6],[3,7],[3,4],[8,4],[5,7],[4,9],[13,19],[4,2],[9,1],[7,0],[8,0],[21,-5],[4,2],[7,5],[5,7],[12,10],[3,3],[-1,5],[-18,-2],[-14,-3],[-13,1],[-2,3],[3,2],[5,1],[2,3],[-5,3],[-8,2],[-3,2],[0,5],[2,8],[4,2],[4,3],[10,10],[5,4],[17,2],[19,-4],[4,1],[5,6],[-5,9],[-4,4],[0,2],[10,-1],[10,-2],[11,0],[12,9],[19,8],[8,3],[8,2],[4,7],[7,15],[4,7],[0,5],[-1,4],[-5,-1],[-4,-1],[-10,4],[-13,6],[-4,7],[-2,6],[4,3],[4,2],[4,1],[8,-3],[9,-6],[5,-2],[5,-5],[4,0],[4,7],[4,8],[3,3],[5,3],[6,4],[-3,4],[-5,2],[-1,2],[2,3],[5,1],[6,-6],[8,-4],[5,-1],[5,-4],[7,-11],[9,-17],[4,-1],[8,2],[9,1],[5,5],[1,13],[3,5],[-1,6],[-4,6],[-3,5],[0,3],[3,2],[4,1],[6,3],[10,-3],[6,-1],[8,2],[8,3],[9,3],[6,-2],[3,-6],[-3,-7],[-5,-5],[-5,-6],[-2,-6],[1,-3],[4,-1],[42,0],[5,0],[8,0],[7,-2],[14,1],[11,2],[6,0],[10,-2],[7,-5],[14,2],[4,1],[4,6],[4,1],[5,-5],[1,-11],[2,-5],[6,-5],[6,4],[4,5],[10,9],[10,8],[9,4],[20,7],[10,4],[19,6],[25,3],[45,11],[14,1],[24,3],[13,3],[12,2],[8,8],[17,-6],[6,0],[8,4],[9,12],[14,-5],[7,-7],[9,-6],[21,-11],[7,-2],[14,-2],[3,1],[7,7],[6,10],[5,5],[6,3],[7,6],[-2,3],[-4,1],[-4,1],[1,3],[12,1],[7,-10],[6,-4],[8,-3],[19,3],[16,0],[14,-2],[7,0],[6,8],[9,3],[6,-4],[4,-11],[12,-3],[27,-5],[3,1],[3,6],[2,7],[6,1],[7,4],[3,0],[6,-5],[-2,-11],[-3,-11],[3,-8],[4,-5],[4,-1],[6,0],[8,0],[6,0],[26,4],[3,10],[4,10],[10,14],[4,-1],[4,-1],[7,-7],[4,-3],[1,-5],[-5,-5],[1,-3],[5,-3],[15,-4],[4,1],[8,4],[7,9],[4,10],[6,-1],[6,-2],[4,-5],[0,-10],[5,-6],[5,-4],[12,-5],[13,-1],[9,-3],[15,1],[7,3],[4,1],[8,2],[9,6],[5,2],[19,6],[15,5],[15,11],[15,6],[23,3],[6,1],[9,0],[22,7],[8,4],[5,2],[5,5],[3,10],[2,7],[-1,6],[-2,8],[-4,7],[-5,10],[2,12],[4,5],[9,5],[10,1],[11,0],[9,-1],[1,-5],[-4,-6],[-5,-5],[-3,-3],[1,-4],[6,-1],[15,1],[5,-4],[10,-19],[3,-8],[4,-3],[5,1],[13,0],[9,2],[7,0],[3,-1],[4,-4],[7,-5],[8,3],[5,2],[6,0],[10,-6],[10,-13],[11,-7],[0,4],[-1,6],[4,4],[6,8],[7,10],[6,11],[2,15],[3,11],[5,6],[4,4],[8,4],[9,0],[9,9],[6,3],[13,5],[16,5],[12,13],[4,2],[6,2],[10,0],[18,5],[5,0],[9,4],[8,7],[6,3],[10,-1],[9,5],[7,0],[7,2],[1,5],[-3,3],[0,5],[4,5],[3,2],[9,0],[7,-5],[6,0],[1,-3],[-5,-3],[-3,-6],[6,-6],[5,-3],[5,0],[8,4],[7,-3],[3,-5],[0,-7],[1,-4],[5,3],[3,8],[-1,10],[0,6],[12,9],[5,8],[-9,1],[-5,-1],[-4,3],[-3,7],[10,6],[11,0],[7,-5],[14,-8],[8,0],[8,-1],[1,2],[-3,12],[1,7],[-6,4],[-2,9],[2,9],[8,5],[9,2],[21,14],[6,3],[13,3],[16,1],[20,5],[36,-3],[9,-2],[6,-3],[6,-4],[7,-8],[11,-9],[14,-3],[4,-3],[5,-8],[-6,-5],[-4,-1],[-9,3],[-6,4],[-4,-2],[4,-5],[4,-4],[1,-4],[-2,-7],[-17,-13],[10,-4],[6,3],[6,6],[5,2],[4,1],[13,1],[7,2],[6,-2],[5,-3],[8,-4],[12,-4],[14,-14],[11,1],[6,3],[17,2],[15,-7],[8,-2],[24,-2],[15,-5],[9,5],[6,2],[13,1],[6,-1],[18,-5],[32,-6],[21,-2],[19,-1],[9,-2],[17,-2],[6,-3],[16,2],[8,2],[7,5],[4,-1],[2,-6],[-1,-10],[3,-7],[2,-7],[3,-6],[2,-5],[-1,-4],[-5,-3],[-6,-8],[0,-7],[3,-5],[-3,-5],[2,-7],[0,-5],[-2,-3],[-5,-3],[-8,0],[-5,-2],[0,-6],[2,-4],[5,-2],[1,-4],[-1,-7],[-2,-5],[-4,-3],[-5,-1],[-9,2],[-7,3],[-4,-3],[-3,-3],[-10,-8],[-4,-5],[-4,-6],[11,-3],[8,-5],[17,0],[5,3],[8,2],[3,0],[3,-6],[-2,-9],[0,-7],[-9,-19],[-2,-3],[-4,-5],[-5,-4],[-4,-2],[-8,-6],[-4,-11],[-5,-9],[-8,-15],[-4,-17],[-2,-10],[-2,-10],[-7,-18],[-4,-3],[-7,-7],[2,-5],[6,0],[7,-2],[8,-3],[12,7],[6,5],[2,10],[-2,9],[4,6],[9,8],[20,6],[5,0],[6,2],[6,7],[6,7],[9,5],[8,7],[1,5],[3,1],[10,5],[2,4],[3,2],[2,7],[1,11],[2,9],[5,12],[4,9],[4,5],[10,3],[4,3],[6,8],[3,4],[0,9],[2,8],[6,5],[8,10],[10,1],[7,5],[8,-4],[10,-4],[16,1],[7,-2],[6,3],[5,7],[2,8],[7,5],[6,0],[12,9],[12,8],[9,1],[8,7],[5,10],[6,8],[8,7],[2,13],[4,7],[9,6],[7,3],[30,10],[22,7],[24,8],[7,0],[9,4],[15,1],[4,0],[6,9],[11,9],[7,3],[9,7],[7,1],[11,-2],[8,-2],[8,0],[11,7],[18,1],[5,3],[4,2],[25,9],[9,-2],[14,2],[8,-1],[7,-1],[10,0],[16,3],[7,2],[14,8],[14,1],[7,2],[8,2],[6,-3],[5,-3],[3,0],[4,-1],[10,3],[8,0],[10,-4],[6,-2],[4,0],[6,2],[8,6],[7,2],[6,-1],[5,-3],[8,-3],[13,1],[12,1],[10,3],[8,3],[8,-5],[10,-2],[15,8],[5,-1],[4,-3],[3,-1],[4,-6],[15,1],[12,6],[11,4],[10,3],[9,4],[12,15],[0,4],[1,3],[3,1],[19,0],[6,1],[8,4],[14,-3],[13,-5],[4,1],[5,0],[9,-3],[11,-6],[9,-1],[38,-14],[22,-4],[11,-5],[3,-1],[3,-5],[6,0],[5,1],[6,-7],[14,-5],[16,-3],[10,4],[17,13],[5,5],[-1,12],[9,14],[15,7],[19,3],[12,3],[15,3],[7,-3],[4,-2],[6,-3],[7,-7],[10,-17],[8,-7],[7,0],[6,-1],[6,-4],[9,-12],[-5,-11],[-5,-4],[-19,-5],[-9,-3],[-7,-3],[-3,-8],[4,-5],[8,2],[9,1],[8,2],[6,3],[6,4],[14,2],[9,3],[9,2],[5,4],[6,0],[6,-4],[4,0],[13,-1],[6,3],[5,0],[5,-2],[5,-3],[6,0],[7,1],[10,5],[12,4],[12,2],[3,0],[2,-1],[-12,-6],[-18,-7],[-10,-7],[5,-3],[36,8],[16,6],[14,2],[3,2],[12,9],[4,3],[13,3],[16,3],[12,4],[9,4],[6,1],[5,-3],[6,-3],[6,0],[8,3],[5,8],[3,5],[6,2],[7,1],[6,-1],[10,-4],[7,-2],[5,-15],[14,-14],[5,-3],[12,1],[13,-5],[5,1],[5,1],[5,-1],[7,3],[7,17],[7,16],[7,7],[4,4],[5,1],[7,3],[11,1],[7,-1],[17,-1],[14,4],[15,-1],[8,5],[8,1],[11,-5],[3,-2],[6,-5],[2,-4],[1,-7],[3,0],[11,7],[5,1],[11,12],[6,-3],[12,-5],[5,-2],[10,-8],[5,2],[5,4],[12,-1],[12,-3],[4,-3],[6,-5],[4,-1],[3,1],[24,-2],[10,-3],[8,-5],[28,-2],[11,-5],[6,3],[13,-1],[5,-4],[5,-4],[10,-4],[5,1],[8,3],[8,4],[8,0],[3,-4],[2,-9],[5,1],[7,4],[5,-1],[2,-6],[-3,-9],[-7,-11],[-3,-9],[-6,-9],[1,-4],[6,-2],[6,6],[14,4],[6,6],[12,2],[12,-2],[8,-8],[16,-12],[0,-4],[2,-5],[-1,-4],[-2,-5],[8,-5],[7,-1],[6,0],[25,-5],[12,2],[10,0],[13,1],[10,0],[7,-1],[9,2],[8,2],[3,-1],[2,-14],[0,-8],[5,-3],[4,3],[3,4],[20,-2],[7,0],[8,-2],[7,-5],[8,2],[4,3],[6,2],[1,5],[1,9],[0,8],[3,1],[4,-1],[4,-4],[11,-12],[8,-8],[3,-4],[5,-3],[10,-8],[14,-3],[13,-6],[15,0],[13,-7],[8,6],[4,1],[6,-2],[8,-5],[6,-1],[20,-8],[12,-4],[4,-6],[5,-6],[0,-6],[2,-8],[13,-6],[4,-6],[6,-7],[11,-30],[6,-5],[8,1],[7,-8],[3,1],[0,3],[-7,20],[0,11],[5,6],[13,1],[10,-11],[9,-7],[6,-1],[12,0],[11,8],[8,-3],[14,-1],[18,-4],[8,0],[14,-1],[16,-7],[10,-2],[2,-2],[4,-4],[2,-5],[3,-5],[5,-5],[6,-1],[12,-5],[24,-13],[9,-4],[5,-3],[2,4],[1,7],[4,1],[5,-10],[5,-9],[2,-7],[-5,-5],[-7,1],[-6,0],[-5,-10],[-2,-16],[5,0],[3,1],[1,-6],[-2,-5],[-4,-2],[-8,4],[-9,3],[-11,1],[-9,5],[-4,0],[-4,0],[5,-6],[5,-4],[13,-4],[15,-6],[1,-4],[-4,-5],[-4,-10],[-15,-8],[-8,6],[-10,1],[-5,-3],[-9,0],[-20,-1],[-7,7],[-12,5],[0,-4],[10,-13],[11,-3],[11,-3],[3,-4],[-5,-3],[-7,1],[-8,-6],[-16,1],[-7,-1],[-5,-2],[-4,-1],[3,-2],[4,-6],[-5,-5],[-5,-3],[-5,1],[-6,-2],[-3,6],[0,12],[-3,11],[-3,1],[-6,-2],[-2,-9],[4,-16],[3,-5],[-2,-5],[-4,-1],[7,-14],[7,-9],[3,-3],[1,-5],[-3,-2],[-9,2],[-4,-1],[-4,1],[-8,2],[-7,0],[-6,-2],[-6,0],[-5,8],[-4,3],[-4,-3],[-3,-10],[-5,-3],[-6,-5],[-4,-5],[-2,-20],[-4,-4],[-5,0],[-4,-1],[-4,1],[-7,1],[-21,-6],[3,-4],[6,1],[18,-1],[8,-4],[2,-9],[3,-4],[6,-4],[5,-2],[2,-3],[-2,-6],[-3,-6],[-6,-6],[2,-3],[6,-1],[3,-13],[-4,-6],[2,-6],[0,-5],[-4,-4],[-3,-3],[-1,-5],[6,-3],[5,-1],[6,0],[5,-6],[6,-8],[4,-7],[0,-11],[4,-7],[8,-4],[0,-4],[5,-2],[5,0],[2,-4],[-1,-5],[-9,-6],[-4,-5],[9,0],[9,-5],[12,5],[6,6],[4,5],[3,-2],[0,-5],[4,-8],[15,-9],[8,-3],[8,-1],[8,0],[2,-5],[-3,-4],[-5,0],[-9,-1],[-7,4],[-5,3],[-41,-2],[-9,-1],[-11,-5],[-11,-3],[-17,-5],[-7,-3],[-19,12],[-6,9],[-2,0],[-5,-2],[0,-6],[9,-13],[4,-4],[0,-3],[-3,-2],[-3,0],[-6,3],[-9,2],[-9,-4],[-11,-9],[2,-6],[3,-3],[-1,-4],[-12,-7],[-4,-1],[-2,-1],[3,-3],[6,0],[1,-3],[-2,-3],[-11,-3],[1,-4],[6,-2],[7,1],[5,-3],[0,-5],[-5,-2],[-6,-2],[-39,-12],[-5,-3],[0,-4],[14,-2],[41,1],[2,-1],[-1,-3],[-2,-5],[2,-3],[6,-2],[1,-3],[-4,-1],[-6,-2],[-6,0],[0,-4],[9,-3],[3,0],[1,-12],[-1,-5],[-5,-3],[-1,-1],[0,-4],[12,-3],[18,-13],[5,0],[7,-2],[12,-7],[4,-4],[7,-2],[1,-3],[4,-2],[17,-9],[2,-4],[-35,-7],[-35,-6],[3,-4],[38,0],[10,-3],[5,1],[2,3],[21,4],[20,2],[7,-1],[28,-15],[13,-5],[8,-2],[6,0],[4,-2],[4,-5],[-1,-4],[2,-2],[3,-1],[6,-3],[6,1],[7,4],[5,-1],[10,-5],[-4,-3],[-2,-2],[-2,-3],[-3,-1],[-7,-1],[-4,0],[-4,1],[-1,-3],[5,-2],[8,-3],[48,-2],[13,-4],[14,2],[6,-1],[5,-1],[2,-5],[7,-1],[10,-4],[15,-2],[12,0],[15,-5],[7,0],[4,-3],[33,-1],[5,-2],[4,-4],[8,-2],[8,0],[47,-6],[17,-3],[4,0],[4,0],[13,-3],[12,-1],[6,-4],[11,-5],[0,-325],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-40,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[0,24],[0,17],[0,40],[0,41],[0,41],[0,40],[0,41],[0,41],[0,40],[45,1],[9,-1],[9,-2],[21,0],[19,-2],[5,-3],[7,-2],[13,2],[11,1],[9,0],[82,-5],[85,-8],[17,-2],[15,-6],[17,0],[95,-4],[15,0],[59,-5],[102,-12],[9,0],[10,0],[-5,6],[-10,6],[-13,4],[9,1],[18,0],[-4,3],[-10,2],[-36,2],[-147,14],[-3,1],[-2,1],[-4,1],[-6,2],[-22,1],[-6,1],[-3,2],[1,0],[2,0],[34,1],[4,2],[0,1],[-2,1],[-5,1],[-14,5],[-5,2],[3,3],[2,1],[11,1],[3,3],[-2,4],[-24,8],[-16,3],[-11,-2],[-20,0],[-25,-2],[-7,2],[-7,3],[-8,5],[-5,2],[-8,5],[-10,4],[-56,11],[-10,3],[-70,18],[-3,3],[-2,3],[32,-7],[7,0],[7,2],[5,-1],[8,2],[8,1],[22,-6],[44,-8],[12,-4],[6,-2],[6,0],[5,-2],[6,1],[4,-1],[9,1],[42,1],[16,-1],[20,-5],[8,-7],[5,-3],[11,3],[9,3],[17,2],[6,-1],[9,-4],[10,-6],[45,2],[19,0],[13,-3],[48,9],[8,2],[11,7],[-9,2],[-7,0],[-2,4],[4,1],[14,2],[28,3],[16,2],[8,7],[37,11],[12,5],[11,8],[-25,16],[-23,13],[8,4],[7,4],[3,2],[3,4],[-7,4],[-7,4],[-12,3],[-44,8],[-15,3],[6,5],[8,4],[17,2],[108,6],[108,7],[3,4],[-14,4],[-13,1],[-4,2],[-2,2],[0,4],[-1,1],[-5,0],[-19,5],[-5,1],[-6,4],[-2,4],[4,8],[6,3],[11,2],[7,1],[23,0],[8,1],[4,1],[-1,4],[-2,2],[0,2],[4,1],[4,0],[1,3],[-2,5],[-7,2],[-17,5],[-40,6],[-16,5],[-9,4],[-7,4],[-8,2],[-5,3],[1,2],[-2,5],[-3,1],[-13,-2],[-22,1],[-28,4],[-19,5],[-26,12],[-9,7],[7,4],[8,3],[33,6],[5,2],[7,6],[-11,3],[-10,-1],[-8,2],[-34,0],[-20,0],[-16,7],[-12,7],[-3,4],[-3,6],[4,9],[4,7],[-1,8],[1,12],[6,3],[4,1],[11,-9],[9,0],[13,1],[8,5],[5,2],[8,0],[15,-2],[8,1],[8,-1],[25,-5],[5,-3],[3,-2],[1,-3],[3,-3],[11,-2],[30,2],[8,-1],[21,-8],[18,-9],[6,-3],[10,-1],[4,1],[3,4],[10,4],[21,5],[5,5],[-2,3],[-9,3],[-5,1],[-3,3],[0,5],[2,5],[6,1],[10,-6],[13,-6],[5,-1],[3,0],[7,2],[8,2],[15,-12],[8,-1],[11,0],[2,1],[-1,4],[-2,3],[-2,1],[0,3],[4,3],[4,1],[-2,2],[-5,4],[-3,0],[-3,2],[1,2],[4,1],[5,3],[-2,4],[0,5],[-2,3],[-11,5],[-17,9],[-16,4],[-35,-3],[-12,2],[-8,2],[-9,3],[10,3],[11,3],[3,2],[4,4],[5,3],[4,0],[13,-1],[29,-11],[6,-1],[20,-5],[5,0],[7,1],[-6,5],[-6,3],[-14,10],[1,4],[10,8],[24,0],[11,3],[14,6],[18,9],[15,2],[19,3],[7,-3],[16,-9],[10,-3],[4,0],[4,0],[-10,11],[6,2],[8,1],[7,3],[5,3],[17,11],[15,3],[42,5],[15,-5],[12,0],[3,1],[2,6],[7,11],[5,4],[19,5],[14,0],[11,-5],[9,-3],[9,-2],[9,0],[14,3],[17,1],[9,1],[9,-2],[24,-1],[18,-4],[12,0],[15,4],[8,0],[30,6],[24,1],[17,-2],[29,1],[29,-1],[11,-2],[66,1],[51,6],[8,2],[11,6],[6,5],[4,2],[9,1],[14,-2],[21,-4],[18,2],[33,-3],[3,2],[4,11],[5,16],[5,5],[8,-1],[23,-10],[0,-4],[-2,-2],[-4,-2],[-1,-8],[3,-2],[5,1],[4,-4],[-8,-6],[-5,-3],[-3,-2],[-2,-11],[-4,-4],[0,-4],[5,0],[5,2],[4,0],[14,3],[26,4],[8,1],[5,1],[3,2],[-4,6],[-1,5],[2,3],[-1,7],[-2,7],[5,5],[5,-1],[7,1],[5,-3],[7,-2],[6,-1],[7,-5],[2,-9],[-2,-10],[-7,-8],[-12,-6],[-13,-11],[3,-5],[7,2],[31,-1],[19,1],[13,-1],[16,-3],[12,-4],[15,0],[9,1],[9,-2],[34,9],[14,4],[8,-2],[12,2],[8,-2],[13,3],[8,0],[10,-1],[30,0],[2,-6],[9,-8],[7,-3],[9,1],[7,3],[11,-1],[15,3],[15,-1],[7,1],[3,2],[2,5],[-5,3],[-13,3],[-12,8],[-6,1],[-9,-1],[-4,2],[-4,2],[6,3],[7,9],[-3,9],[-4,2],[-8,-1],[-9,-3],[-4,2],[-7,2],[-2,7],[-7,15],[-4,4],[-10,4],[-10,2],[-9,2],[-3,6],[2,8],[11,2],[10,-1],[6,-2],[7,0],[8,-2],[5,-2],[4,-2],[7,0],[26,3],[4,1],[3,3],[5,1],[5,-1],[8,2],[-9,2],[-9,5],[-14,5],[-11,3],[-21,2],[-11,-1],[-6,1],[-24,0],[-7,2],[-4,5],[-7,14],[-2,8],[5,2],[3,3],[7,0],[10,-1],[3,-1],[3,-4],[-3,-5],[-3,-2],[2,-2],[11,-1],[5,-1],[4,-1],[10,2],[14,1],[7,-2],[9,-1],[12,2],[45,-1],[5,-1],[6,-4],[4,-2],[5,1],[15,-5],[7,-3],[8,-2],[7,-1],[7,1],[10,3],[8,1],[6,-1],[12,0],[10,-4],[7,2],[8,4],[24,3],[17,-1],[29,-8],[7,0],[14,4],[4,7],[0,8],[4,2],[3,-1],[6,6],[8,0],[5,-2],[3,4],[3,8],[10,0],[7,-1],[9,-5],[0,-4],[-4,-4],[-6,-11],[4,-6],[6,0],[7,-1],[9,3],[6,0],[10,-9],[7,-1],[5,1],[17,8],[5,1],[6,-4],[9,-9],[8,-5],[12,-3],[9,-1],[12,-4],[6,-4],[15,0],[6,-1],[18,-7],[16,3],[8,4],[4,6],[-2,9],[-1,9],[3,4],[4,1],[19,-11],[-1,6],[-2,5],[-5,8],[1,6],[4,2],[8,-3],[10,-2],[8,-3],[15,-13],[5,-11],[11,-3],[7,1],[8,1],[11,2],[9,0],[8,2],[2,-7],[-7,-8],[-3,-6],[2,-2],[5,2],[4,2],[13,-1],[10,4],[9,1],[8,4],[7,0],[5,-1],[8,-3],[7,2],[4,-1],[5,0],[30,14],[7,0],[8,1],[11,3],[8,2],[7,0],[12,5],[19,-1],[10,3],[19,3],[13,4],[23,10],[9,6],[10,13],[6,12],[7,18],[-3,11],[-4,5],[-3,5],[-7,11],[-2,14],[1,13],[-3,12],[-3,9],[-5,16],[-7,10],[-7,13],[0,12],[-2,9],[-5,7],[-2,6],[4,1],[3,1],[9,2],[21,-3],[2,5],[6,4],[3,5],[-1,8],[-5,3],[-5,6],[2,6],[5,0],[2,5],[-2,6],[2,7],[5,9],[2,3],[-5,6],[-5,7],[2,5],[2,6],[3,8],[4,6],[3,1],[-1,2],[-6,2],[-6,1],[-10,-4],[-2,1],[0,2],[-1,4],[1,9],[2,9],[1,1],[4,2],[4,6],[4,1],[2,-2],[1,-10],[1,-2],[-1,-4],[2,-2],[2,3],[4,2],[2,-3],[1,-2],[1,3],[0,7],[-1,3],[0,5],[0,2],[1,4],[-1,8],[0,3],[4,4],[2,1],[3,0],[7,-3],[3,0],[2,1],[1,3],[1,10],[-2,4],[0,3],[1,2],[3,7],[4,0],[4,-1],[4,2],[-1,2],[-1,5],[4,2],[3,0],[8,-2],[3,-2],[3,4],[-1,3],[-3,2],[-1,3],[1,4],[5,-2],[1,1],[1,3],[-1,2],[0,2],[6,0],[1,1],[1,3],[2,1],[6,0],[1,1],[1,3],[-4,1],[-4,3],[0,8],[1,6],[3,5],[5,3],[7,-3],[6,1],[3,-3],[3,-1],[1,3],[-2,3],[-1,5],[10,6],[3,-1],[4,1],[-2,5],[2,6],[3,0],[2,-5],[3,-1],[3,2],[7,5],[3,1],[4,1],[3,3],[1,4],[2,3],[6,4],[3,2],[5,10],[-1,2],[2,2],[16,9],[8,1],[14,5],[8,6],[5,2],[4,7],[6,1],[13,5],[9,8],[14,5],[6,0],[2,-2],[2,-6]],[[3743,644],[4,0],[15,1],[14,0],[9,-1],[3,-2],[2,-3],[3,-5],[2,-5],[3,-5],[1,-8],[3,-3],[4,-7],[1,-6],[-2,-13],[-2,-5],[-5,-5],[-7,1],[-2,-1],[-3,-1],[-1,0],[-1,-1],[8,-5],[0,-1],[1,-2],[-1,-1],[-1,-1],[-158,-26],[-6,-1],[-6,-3],[-2,-2],[-2,-2],[-122,-5],[-1,0],[-1,1],[-3,5],[-1,8],[1,3],[6,3],[2,2],[11,12],[5,5],[2,5],[2,-1],[5,-2],[3,-1],[7,1],[6,3],[3,2],[3,-1],[1,-2],[1,-1],[16,9],[15,9],[14,11],[8,7],[1,2],[2,3],[-1,3],[-2,2],[-1,1],[-1,0],[-8,2],[3,3],[2,4],[1,4],[1,4],[-1,3],[1,1],[3,2],[2,2],[2,3],[-3,1],[-1,2],[3,5],[2,5],[2,3],[5,5],[17,14],[6,8],[1,2],[39,12],[6,2],[12,1],[6,0],[16,-1],[7,-1],[13,-3],[19,-6],[7,-3],[7,-3],[7,-5],[6,-5],[2,-1],[0,-3],[1,-3],[-1,-3],[-1,-5],[-3,-4],[-31,-4],[-4,-1],[-3,-3],[-1,-3],[3,-2]],[[3340,556],[-1,-12],[0,-6],[-1,-4],[-3,-3],[-5,-4],[-4,-2],[-9,-4],[-40,4],[-18,3],[-8,4],[-1,2],[-2,6],[-2,2],[-16,-2],[-10,-2],[-2,-1],[-2,-3],[-2,-1],[-26,8],[-27,9],[-11,5],[-4,3],[-1,1],[2,2],[3,1],[3,1],[3,0],[2,-1],[2,-1],[2,-5],[1,-1],[4,-1],[96,0],[8,1],[17,1],[9,2],[3,3],[-8,1],[-3,2],[-3,4],[-1,4],[1,3],[11,1],[1,1],[-2,2],[0,3],[6,2],[2,3],[13,4],[20,-2],[4,-6],[-1,-4],[-1,-3],[0,-6],[8,-1],[2,-2],[3,-2],[-3,0],[-3,-1],[-2,-3],[-2,-3],[-2,-2]],[[3054,1199],[-1,-7],[5,2],[1,0],[4,-3],[8,-15],[2,-5],[4,-14],[3,-10],[11,-19],[4,-10],[3,-5],[0,-8],[3,-2],[1,-4],[1,-10],[1,-13],[0,-23],[0,-6],[-4,-9],[-2,-6],[-2,-4],[-3,-3],[-14,-13],[-2,-6],[-24,-5],[-13,-3],[-5,3],[-5,0],[-7,0],[-19,-1],[-15,-2],[-1,1],[-2,2],[-1,2],[-4,-1],[-3,1],[-3,2],[-3,4],[-2,2],[0,2],[6,6],[3,2],[4,0],[6,-1],[7,-2],[15,-2],[20,0],[6,0],[6,2],[7,6],[-3,2],[-4,1],[-3,0],[-3,0],[-8,-3],[-6,-3],[-7,-1],[-7,2],[-6,6],[0,2],[22,4],[2,1],[3,2],[2,3],[0,2],[-14,4],[-3,0],[-3,-1],[-7,2],[-7,5],[-5,5],[-3,1],[-2,-2],[-14,-15],[-1,0],[-6,1],[-6,3],[-7,1],[-4,-1],[-1,-1],[4,-3],[3,-3],[1,-3],[-10,-7],[-3,-1],[-4,1],[-2,1],[-3,4],[-3,1],[-6,-1],[-4,0],[-3,2],[-3,2],[-3,2],[-4,3],[-2,2],[-1,3],[0,2],[1,2],[0,2],[0,2],[0,2],[1,2],[6,3],[6,1],[6,-4],[5,-2],[2,0],[0,1],[1,1],[0,2],[-2,4],[0,3],[2,2],[2,1],[2,1],[1,0],[4,-1],[3,-2],[6,-4],[5,-4],[2,0],[1,1],[1,2],[-6,5],[0,2],[0,3],[4,2],[2,0],[10,-3],[6,-1],[5,0],[12,3],[-6,3],[-13,3],[-3,3],[-2,3],[10,3],[10,0],[18,-4],[5,2],[6,6],[3,1],[13,0],[10,2],[1,0],[2,-1],[10,-9],[1,0],[1,2],[0,3],[0,4],[0,3],[-1,2],[-2,0],[-2,-1],[-2,1],[-3,2],[-3,1],[-10,1],[-7,2],[-4,1],[-3,3],[-1,3],[4,7],[14,8],[6,2],[7,1],[3,-1],[8,-3],[1,0],[1,1],[-8,5],[-6,4],[-3,4],[-3,1],[-11,1],[-5,-3],[-3,-1],[-3,1],[-16,7],[-1,1],[-2,3],[-1,2],[-1,3],[0,4],[1,2],[2,9],[2,7],[-1,6],[-3,3],[-3,3],[-4,3],[0,3],[-1,2],[0,4],[1,3],[1,3],[2,2],[3,2],[14,4],[27,5],[3,-3],[4,-5],[1,-2],[2,-11],[0,-2]],[[2275,1042],[-2,-6],[0,-6],[7,0],[3,11],[6,2],[3,-6],[-3,-6],[2,-3],[2,-2],[3,0],[3,3],[1,2],[1,3],[2,6],[6,5],[13,1],[8,-3],[-5,-9],[-12,-5],[-7,-5],[2,-2],[3,0],[2,0],[7,3],[16,5],[6,3],[2,0],[0,-6],[2,-5],[-1,-9],[-7,-2],[-7,0],[2,-5],[-1,-1],[0,-2],[-18,2],[-3,0],[-3,-2],[-3,1],[-7,3],[-3,0],[-6,-2],[-7,0],[-9,0],[-7,0],[-6,4],[-7,0],[-7,1],[-8,3],[-7,2],[-9,4],[-3,1],[-2,1],[-5,0],[-34,6],[-6,-1],[-3,0],[-3,0],[-7,3],[-1,3],[0,3],[2,1],[3,2],[48,6],[5,2],[4,0],[2,-6],[5,-6],[1,0],[1,1],[5,5],[9,-2],[4,3],[4,4],[9,5],[7,-1],[5,-2],[3,-5]],[[1651,936],[5,-6],[2,-4],[1,-4],[-20,-10],[-1,0],[-1,-5],[1,-2],[1,0],[0,-2],[-2,-1],[-34,-4],[-16,4],[-2,2],[-1,4],[2,0],[4,1],[-1,2],[-2,2],[-1,3],[5,6],[3,1],[-9,6],[-2,1],[-1,1],[-4,-1],[-4,1],[1,2],[1,4],[4,3],[3,0],[3,0],[13,0],[13,-2],[13,-1],[21,-1],[5,0]],[[1491,963],[7,-2],[3,-2],[3,-2],[3,-1],[3,-3],[2,-5],[2,-1],[5,-3],[1,-3],[0,-2],[-9,-1],[-3,1],[-3,-1],[-1,-2],[0,-2],[1,-1],[4,-1],[3,0],[7,1],[2,0],[4,-1],[3,-1],[8,5],[2,1],[2,0],[12,-6],[2,-3],[-1,-1],[-2,-2],[1,-2],[5,-2],[3,-3],[1,-1],[0,-2],[-1,-3],[0,-3],[-3,-2],[-1,0],[-6,2],[-19,1],[-6,1],[-9,6],[-4,1],[-3,1],[-6,5],[-10,4],[-6,4],[0,4],[-1,3],[-1,1],[-1,1],[-4,0],[-3,0],[-2,-1],[-3,-3],[-3,0],[-3,0],[0,1],[0,7],[-3,1],[-2,3],[-1,4],[1,4],[4,5],[4,0],[4,-1],[4,1],[6,1],[8,0]],[[582,587],[-35,-2],[-14,2],[-29,6],[-41,11],[-11,4],[-7,3],[-7,4],[-1,4],[1,7],[1,5],[2,3],[9,4],[4,4],[9,4],[2,4],[4,0],[7,-1],[7,-1],[6,-1],[6,-2],[15,-6],[10,-6],[14,-7],[15,-8],[8,-3],[7,-5],[8,-6],[1,-2],[3,-3],[2,-2],[2,-2],[2,-1],[1,-3],[0,-2],[-1,-2]],[[9640,730],[11,-4],[27,0],[23,-3],[2,-5],[-6,-2],[-10,-5],[-7,-2],[-5,0],[-12,3],[-14,-1],[-3,-3],[-7,-3],[-9,-5],[-2,4],[-3,4],[-8,9],[-1,2],[5,1],[2,3],[5,4],[-1,2],[-4,3],[-1,2],[2,4],[6,1],[8,-1],[3,-5],[-1,-2],[0,-1]],[[4135,588],[4,-2],[4,3],[-1,3],[3,4],[3,-5],[22,-5],[7,-5],[-3,-1],[-2,0],[-7,0],[-10,-5],[-12,4],[-21,3],[-6,3],[-5,6],[9,6],[2,-1],[13,-8]],[[4057,615],[-3,-2],[-68,4],[-3,0],[1,4],[9,1],[5,1],[7,2],[6,3],[2,0],[31,-7],[11,-4],[2,-1],[0,-1]],[[3046,594],[-6,0],[-12,1],[-12,2],[-3,1],[-5,3],[-1,1],[-1,3],[0,3],[3,11],[6,7],[5,4],[18,9],[2,1],[16,5],[6,2],[10,5],[53,18],[13,3],[5,-2],[3,-2],[-2,-2],[-7,-5],[-3,-4],[-9,-6],[-19,-11],[-13,-8],[-17,-12],[-4,-4],[-8,-9],[1,-4],[-2,-6],[-11,-3],[-6,-1]],[[3393,1494],[1,0],[1,0],[1,1],[1,2],[3,2],[3,1],[-1,-3],[7,-5],[0,-4],[1,-3],[-3,-1],[-2,-4],[2,-1],[1,-3],[-2,0],[-6,1],[-3,0],[1,3],[-1,1],[-4,-1],[-1,-6],[-1,0],[-1,1],[1,3],[-2,1],[-1,0],[-4,-3],[-1,0],[-3,3],[8,5],[-3,2],[-1,2],[0,4],[-2,-1],[-3,-1],[-1,0],[-2,1],[1,3],[2,4],[2,4],[4,3],[2,1],[2,1],[2,2],[2,0],[2,-4],[0,-2],[-2,-3],[0,-6]],[[3457,1545],[2,-1],[7,0],[2,-1],[1,-2],[1,-5],[-2,-1],[-13,1],[-4,2],[-2,0],[-5,-3],[-2,-2],[-8,-3],[-3,1],[-1,3],[0,2],[1,1],[0,1],[0,1],[2,3],[10,4],[12,2],[2,-2],[0,-1]],[[3389,1618],[4,-2],[3,1],[2,-1],[1,-3],[0,-1],[-5,0],[-4,-4],[-6,1],[0,-3],[1,-2],[-2,-1],[-4,3],[-3,-1],[-2,-5],[-1,-1],[-1,-1],[-1,2],[-3,0],[0,1],[-2,2],[-5,-2],[1,2],[7,7],[1,2],[7,4],[4,-1],[8,3]],[[3245,1470],[-3,-6],[4,1],[3,2],[3,1],[2,-3],[-5,-3],[-5,-4],[-2,-2],[-2,-1],[-3,1],[-3,-1],[-2,-4],[-3,-2],[-1,2],[-1,1],[-5,1],[-3,2],[-2,2],[-3,0],[2,4],[1,3],[9,4],[-1,1],[-1,2],[7,2],[0,2],[0,3],[2,1],[2,3],[1,0],[4,0],[3,-3],[-1,-3],[3,-6]],[[3268,1473],[-2,-2],[-1,-1],[-2,1],[-2,-3],[-4,1],[-1,1],[1,0],[0,2],[3,3],[3,8],[1,2],[-3,4],[-1,2],[1,2],[1,2],[3,2],[3,0],[2,-2],[0,-3],[6,-2],[-1,-6],[-2,-4],[-1,-4],[-3,-2],[-1,-1]],[[3111,1297],[-3,-3],[-2,-1],[-2,1],[-2,0],[-2,-1],[-1,-6],[-2,-3],[-2,-2],[-1,1],[-2,0],[-2,-1],[-2,-1],[-2,1],[-2,4],[-4,4],[0,1],[-1,4],[0,4],[2,2],[7,10],[2,5],[3,5],[2,4],[4,8],[2,3],[12,8],[3,2],[3,0],[1,-5],[-2,-2],[-5,-5],[-1,-8],[0,-3],[0,-1],[2,-1],[2,-1],[1,-2],[2,-2],[-4,-4],[-3,-2],[-2,-3],[-4,-2],[-2,-2],[3,0],[4,-2],[1,-2],[-1,-2]],[[2952,1115],[5,-5],[-4,-4],[-15,-7],[-8,-3],[-8,-2],[-38,-7],[-3,0],[-3,1],[-1,1],[-3,6],[1,3],[3,2],[4,2],[6,2],[23,3],[2,2],[2,2],[0,3],[1,3],[2,1],[1,0],[3,-2],[6,-10],[2,2],[1,2],[0,8],[2,1],[5,-2],[3,-3],[0,5],[2,1],[2,0],[2,-1],[5,-4]],[[2917,1168],[5,-2],[7,-6],[2,-3],[1,-2],[-1,-1],[-3,-2],[-3,-8],[-4,-2],[-12,1],[-13,3],[-1,1],[-1,3],[0,3],[1,4],[2,2],[10,2],[1,1],[1,4],[2,1],[2,0],[4,1]],[[2934,973],[-4,-7],[0,-1],[-4,-2],[1,-2],[1,-1],[1,-2],[2,-3],[3,-3],[-2,-5],[-4,-3],[-37,16],[-2,3],[-2,1],[-1,3],[0,3],[1,3],[1,1],[3,2],[4,0],[7,-3],[1,0],[2,3],[4,0],[1,3],[-6,0],[-4,3],[-3,2],[-1,2],[10,3],[25,-4],[4,-1],[1,-2],[2,-3],[-4,-6]],[[2468,969],[-6,-2],[-4,1],[1,13],[3,3],[-1,3],[-4,6],[-4,8],[2,2],[9,2],[9,0],[4,-3],[2,-5],[-1,-2],[-3,-6],[3,-1],[1,-4],[-1,-4],[-3,-6],[-3,-3],[-4,-2]],[[9656,683],[-4,-4],[-4,-2],[-12,1],[-8,-3],[-10,-2],[-4,2],[-2,4],[-2,5],[1,1],[2,1],[13,-3],[5,-3],[3,0],[8,4],[6,4],[2,3],[2,1],[2,-2],[2,-5],[0,-2]],[[7804,1401],[-12,-1],[-1,1],[-4,0],[-2,1],[0,3],[1,5],[2,3],[4,3],[2,1],[8,1],[5,-1],[4,-4],[1,-3],[-1,-3],[-7,-6]],[[5745,1130],[-1,-2],[-5,0],[-4,-2],[-3,1],[-10,3],[-1,5],[-1,2],[1,3],[9,8],[3,0],[5,-1],[3,-2],[1,-4],[4,-8],[-1,-3]],[[4836,1120],[-7,-3],[-1,1],[-3,2],[-4,6],[5,0],[5,3],[3,-1],[0,-1],[2,-7]],[[4908,1121],[-4,0],[-1,2],[-1,1],[6,8],[3,2],[7,2],[4,-1],[2,-2],[1,-3],[0,-5],[-2,-2],[-15,-2]],[[3162,571],[-3,0],[-2,1],[-1,1],[-1,4],[-14,4],[-1,2],[-1,5],[-3,2],[-17,8],[-2,2],[-1,2],[3,1],[7,-2],[13,0],[3,-1],[3,-1],[14,-1],[7,0],[4,-7],[8,-2],[1,-4],[1,-6],[-11,-5],[-2,-1],[-5,-2]],[[3131,607],[-4,-2],[-21,1],[-7,1],[-3,1],[3,6],[3,2],[2,1],[6,3],[9,1],[6,0],[12,-3],[-3,-2],[-2,-1],[-2,-4],[1,-4]],[[3467,1658],[-3,-2],[-2,2],[0,4],[-2,2],[1,2],[20,-2],[-1,-2],[-10,-1],[-3,-3]],[[3448,1524],[-3,-2],[-6,4],[-1,2],[0,2],[10,2],[3,-1],[1,-4],[-4,-3]],[[3410,1465],[-3,0],[-3,1],[0,3],[0,2],[2,1],[2,0],[8,5],[3,1],[-1,-2],[0,-3],[-1,-2],[-7,-6]],[[3442,1551],[-5,-6],[-3,0],[-5,4],[-2,3],[4,4],[9,-1],[2,-1],[1,-2],[-1,-1]],[[3406,1509],[0,-1],[6,0],[1,-1],[-3,-2],[-1,0],[-2,-1],[-8,2],[-2,2],[7,2],[2,-1]],[[3278,1168],[-3,-1],[-2,6],[-2,8],[-7,12],[-2,6],[1,2],[2,0],[6,-2],[3,-2],[4,-5],[5,-4],[0,-4],[0,-4],[-3,-1],[0,-3],[-2,-6],[0,-2]],[[3316,1580],[1,0],[12,1],[4,-4],[4,0],[-10,-7],[-3,2],[-1,2],[0,3],[-7,-1],[-2,1],[-3,-2],[-6,-1],[-2,0],[-2,2],[0,3],[5,0],[4,3],[1,3],[2,-1],[3,-4]],[[3000,1169],[-6,-2],[-4,2],[-12,3],[-5,7],[1,3],[2,3],[4,1],[7,-3],[4,-2],[9,-12]],[[2360,998],[-5,0],[-2,1],[2,3],[13,5],[5,3],[1,-1],[0,-1],[3,-5],[0,-2],[-17,-3]],[[2096,970],[-3,-3],[-7,1],[-4,4],[-2,6],[-1,2],[2,1],[3,2],[12,-13]],[[1679,915],[-6,-1],[-2,1],[-1,1],[-1,1],[3,3],[3,1],[1,1],[-4,10],[4,0],[4,2],[8,0],[7,-2],[2,-1],[1,-2],[-3,-6],[-2,-1],[-11,-5],[-3,-2]],[[1462,886],[-4,-1],[-9,3],[-2,2],[-3,3],[-2,1],[0,1],[-1,8],[2,1],[5,-2],[11,-4],[7,-1],[2,-3],[-2,-6],[-4,-2]],[[500,396],[-9,-1],[-20,3],[-6,2],[-3,2],[-5,2],[-2,1],[0,2],[0,2],[-2,1],[-1,1],[-2,1],[28,-1],[11,-2],[2,-1],[19,-6],[-5,-1],[-5,-5]],[[543,484],[-3,0],[-75,7],[-14,2],[-4,1],[-1,1],[0,1],[0,2],[2,2],[19,2],[20,-2],[25,-5],[17,-3],[9,-4],[4,-2],[1,-2]],[[9554,874],[-4,0],[-2,1],[-1,4],[0,2],[8,4],[5,2],[-3,-8],[-1,-1],[-2,-4]],[[9526,831],[-5,-7],[-4,0],[-2,1],[4,5],[3,1],[3,1],[1,-1]],[[9717,944],[-4,-1],[-5,4],[-1,1],[5,7],[-1,2],[1,2],[2,2],[1,-1],[3,-7],[2,-4],[-3,-3],[0,-2]],[[9578,1294],[-3,-2],[-1,0],[-2,4],[2,5],[-1,7],[1,2],[4,-4],[0,-2],[2,-3],[0,-2],[-2,-3],[0,-2]],[[9535,1335],[0,-3],[-2,0],[-2,3],[-2,7],[2,1],[2,-2],[1,-3],[1,-2],[0,-1]],[[9516,1355],[-1,-3],[-2,0],[-6,7],[1,3],[-1,3],[0,2],[1,1],[7,-11],[1,-2]],[[7683,1380],[3,-1],[6,0],[2,-2],[0,-3],[0,-1],[-2,-2],[-15,-2],[-3,3],[3,6],[3,2],[3,0]],[[7784,1370],[-3,-1],[-2,2],[3,4],[3,1],[0,-4],[-1,-2]],[[7745,1355],[-3,0],[-2,1],[-2,3],[0,1],[4,1],[6,-3],[-3,-3]],[[7871,1414],[-1,-1],[-5,1],[-1,1],[0,5],[-1,2],[-1,1],[-8,3],[0,4],[1,2],[2,0],[7,-3],[2,-3],[-1,-4],[0,-1],[3,-3],[3,-3],[0,-1]],[[7572,1393],[-4,0],[-4,0],[-2,3],[0,1],[1,2],[6,0],[3,-1],[1,-2],[0,-1],[-1,-2]],[[7383,1327],[-5,-1],[0,1],[0,1],[-8,5],[-1,5],[1,3],[6,-1],[7,-2],[3,-7],[-3,-4]],[[7403,1338],[-3,-1],[-2,0],[-3,3],[1,2],[3,1],[4,0],[1,-1],[2,-1],[-3,-3]],[[7369,1347],[-2,-2],[-3,1],[-1,1],[-1,2],[2,3],[1,0],[1,-2],[3,-3]],[[6941,1041],[-3,-7],[-1,0],[-2,5],[1,2],[2,2],[3,-1],[0,-1]],[[6901,1019],[-1,0],[0,3],[4,4],[3,5],[1,1],[4,-5],[-1,-3],[-4,-3],[-6,-2]],[[6999,1115],[-2,0],[-2,1],[-3,4],[-2,3],[-1,3],[0,7],[2,3],[3,1],[1,-3],[0,-3],[1,-2],[3,-3],[2,-3],[0,-1],[1,-3],[-1,-2],[-2,-2]],[[6348,1337],[-5,-1],[-2,0],[0,2],[0,1],[0,2],[2,1],[7,0],[4,-1],[0,-1],[1,-2],[-1,-1],[-6,0]],[[5450,1151],[-2,-3],[-8,5],[-5,1],[-2,1],[-1,4],[0,1],[1,2],[3,3],[5,3],[10,1],[9,-1],[1,-2],[-8,-5],[-3,-10]],[[5084,1117],[-10,-1],[-2,2],[-1,3],[2,2],[12,7],[3,-1],[1,0],[1,-3],[-1,-4],[-1,-2],[-4,-3]],[[4917,1082],[-3,-1],[-3,0],[-3,2],[-3,3],[0,1],[0,3],[0,1],[4,0],[1,-1],[1,-1],[6,-7]],[[5036,1137],[-3,-7],[-1,0],[-2,4],[-3,5],[-1,3],[0,4],[2,3],[8,2],[3,-1],[1,-6],[-4,-7]],[[4929,1108],[3,-2],[5,0],[4,-1],[0,-2],[-3,-3],[-2,-6],[-2,-2],[-7,-6],[-5,-1],[-1,3],[0,3],[1,2],[0,2],[-5,3],[0,3],[-1,2],[-13,7],[-3,1],[1,2],[14,0],[8,-1],[6,-4]],[[5125,1124],[-4,-1],[-5,3],[-2,2],[-1,5],[0,2],[1,2],[4,1],[6,-1],[3,-2],[1,-4],[-1,-4],[-2,-3]],[[4427,928],[-1,-13],[0,-2],[1,-3],[5,-7],[1,-5],[-1,-2],[-2,-3],[-6,1],[-3,1],[0,1],[-4,13],[-2,2],[-3,3],[-13,2],[-12,-1],[3,3],[18,4],[5,3],[3,3],[1,6],[3,6],[5,3],[3,0],[2,-5],[0,-5],[-3,-5]],[[4552,998],[-2,-2],[-4,0],[-3,3],[-2,4],[0,3],[1,3],[3,1],[2,-1],[3,-7],[2,-4]],[[4652,1027],[-2,-2],[-4,1],[-4,3],[-2,2],[-1,2],[2,3],[1,1],[2,-1],[5,-3],[2,-4],[1,-2]],[[4101,595],[-5,-1],[-1,2],[2,3],[3,4],[7,0],[6,-2],[-1,-2],[-1,0],[-10,-4]],[[3498,1653],[-2,0],[-1,2],[-1,1],[2,3],[2,3],[1,1],[0,-7],[-1,-3]],[[3365,1595],[-6,-2],[-3,2],[-1,1],[4,3],[2,-1],[1,-1],[2,0],[1,-2]],[[3301,1153],[-4,0],[-2,2],[-1,1],[0,2],[2,2],[5,-1],[1,-5],[-1,-1]],[[3315,1223],[-1,-2],[-4,1],[-2,1],[-3,3],[2,2],[3,-1],[3,-1],[2,-3]],[[3312,1111],[-2,0],[-2,1],[-2,4],[0,1],[1,4],[1,1],[10,1],[2,-2],[1,-4],[-2,-2],[-7,-4]],[[3318,1091],[-3,0],[-4,1],[-3,2],[-1,2],[1,2],[3,1],[5,0],[2,-3],[1,-2],[-1,-2],[0,-1]],[[3350,1587],[-4,0],[-2,3],[-2,2],[5,0],[3,0],[1,-3],[-1,-2]],[[3319,1557],[-1,-1],[-2,1],[0,-1],[1,-1],[-1,-1],[-2,1],[-2,3],[1,3],[2,0],[4,-4]],[[3315,1505],[-4,-2],[-2,1],[-3,2],[5,1],[0,7],[2,3],[4,-2],[-2,-4],[-1,-2],[1,-3],[0,-1]],[[3279,1493],[-3,0],[1,3],[2,2],[4,1],[-2,-3],[-1,-2],[-1,-1]],[[3241,1448],[-5,-3],[-2,0],[3,7],[2,0],[5,3],[1,0],[-2,-3],[-2,-4]],[[3260,1551],[-1,0],[1,2],[3,6],[6,3],[-1,-2],[-2,-3],[-6,-6]],[[3171,1391],[-6,-2],[-4,1],[0,2],[1,3],[3,2],[-1,5],[2,1],[1,4],[4,3],[5,-2],[0,-4],[0,-2],[-4,-1],[0,-1],[-1,-3],[0,-4],[0,-2]],[[3150,1371],[-6,-7],[-1,1],[-1,0],[0,1],[2,3],[1,7],[4,2],[1,0],[-1,-3],[1,-3],[0,-1]],[[3129,1331],[-2,-1],[-3,1],[-2,1],[3,4],[-1,3],[3,1],[2,-1],[2,-4],[0,-1],[-2,-3]],[[3129,1281],[-6,-2],[-4,2],[0,4],[-1,1],[0,1],[5,3],[4,1],[5,-1],[2,-1],[0,-2],[-3,-3],[-1,-2],[-1,-1]],[[3008,1137],[1,-2],[6,2],[3,-2],[0,-1],[-3,-5],[-3,-2],[-4,-1],[-2,8],[-1,1],[3,2]],[[2948,959],[-3,-2],[-2,1],[-3,3],[0,2],[2,2],[1,1],[6,7],[4,0],[4,-1],[-4,-6],[-1,-4],[-4,-3]],[[2394,984],[-4,0],[-4,2],[0,1],[1,2],[2,0],[5,-3],[1,-2],[-1,0]],[[1757,912],[-14,-2],[-3,2],[-1,2],[0,3],[28,12],[5,-1],[1,-1],[-8,-7],[-4,-2],[2,-1],[0,-1],[-1,-2],[-5,-2]],[[1322,896],[-4,-3],[-9,2],[1,2],[8,2],[5,-1],[-1,-2]],[[1359,888],[-3,-1],[-12,3],[-6,0],[-3,2],[-2,1],[-1,2],[-3,2],[6,4],[5,2],[4,0],[1,-3],[9,-2],[7,0],[1,-3],[0,-3],[-3,-4]],[[900,769],[0,-1],[-4,1],[-6,3],[-1,1],[3,1],[3,-1],[4,-2],[1,-2]],[[966,823],[-4,0],[-5,1],[-14,5],[-3,2],[2,2],[5,2],[4,-1],[10,-4],[2,-3],[2,-2],[1,-2]],[[927,751],[-10,-3],[-3,1],[1,4],[-1,2],[-1,1],[1,2],[6,0],[18,-3],[2,-3],[-13,-1]],[[872,748],[-11,0],[-7,1],[-1,5],[1,0],[15,-2],[6,-1],[2,-1],[-1,-1],[-4,-1]],[[852,765],[11,-1],[7,1],[8,-2],[2,-1],[-2,-1],[-8,-1],[-4,-2],[-5,0],[-7,1],[-6,4],[4,2]],[[855,729],[8,-3],[-14,1],[-6,4],[4,2],[4,0],[3,-2],[1,-2]],[[827,762],[-12,-1],[-5,1],[-1,2],[1,1],[18,1],[2,-1],[1,-1],[-4,-2]],[[925,792],[-5,-1],[-8,4],[-5,3],[-2,2],[0,1],[0,1],[2,1],[11,-2],[7,-9]],[[922,770],[-3,-5],[-9,3],[-3,3],[2,3],[4,2],[5,-2],[2,0],[2,-4]],[[822,727],[-2,0],[-24,5],[-5,1],[8,3],[6,0],[14,-7],[4,0],[-1,-2]],[[724,574],[-5,0],[-7,0],[-5,2],[-11,2],[-3,4],[-13,3],[-6,1],[2,3],[14,-4],[17,-5],[14,-3],[3,-3]],[[855,742],[-2,-1],[-12,0],[-3,1],[-1,1],[-17,1],[-7,4],[-2,2],[3,2],[6,1],[2,2],[15,1],[2,-1],[1,-2],[7,-4],[2,-3],[0,-2],[4,-1],[2,-1]],[[611,455],[-2,-1],[-2,3],[-11,7],[-6,4],[-5,3],[-1,2],[2,0],[15,-7],[3,-2],[12,-5],[-5,-4]],[[3249,6225],[0,-2],[0,-1],[-2,1],[-1,1],[0,1]]],"bbox":[-180,-89.99892578125002,180,83.599609375],"transform":{"scale":[0.036003600360036005,0.017361589674592462],"translate":[-180,-89.99892578125002]}} diff --git a/worldmap/index.html b/worldmap/index.html index 76a6e1f..38a186c 100644 --- a/worldmap/index.html +++ b/worldmap/index.html @@ -212,7 +212,15 @@ if ( window.localStorage.hasOwnProperty("maxage") ) { // Create the Initial Map object. map = new L.map('map').setView(startpos, startzoom); -var menuButton = L.easyButton( 'fa-bars fa-lg', function() { toggleMenu(); }, "Toggle menu", "topright"); +var menuButton = L.easyButton({states:[{icon:'fa-bars fa-lg', onClick:function() { toggleMenu(); }, title:'Toggle menu'}], position:"topright"}); +//var colorPickButton = L.easyButton({states:[{icon:'fa-tint fa-lg', onClick:function() { console.log("PICK"); }, title:'Pick Colour'}]}); +var redButton = L.easyButton('fa-square wm-red', function(btn) { console.log("RED",btn); }) +var blueButton = L.easyButton('fa-square wm-blue', function(btn) { console.log("BLUE",btn); }) +var greenButton = L.easyButton('fa-square wm-green', function(btn) { console.log("GREEN",btn); }) +var yellowButton = L.easyButton('fa-square wm-yellow', function(btn) { console.log("YELLOW",btn); }) +var blackButton = L.easyButton('fa-square wm-black', function(btn) { console.log("BLACK",btn); }) +var colorControl = L.easyBar([redButton,blueButton,greenButton,yellowButton,blackButton]); + // Move some bits around if in an iframe if (window.self !== window.top) { @@ -264,6 +272,7 @@ if (!inIframe) { } else { if (showUserMenu) { menuButton.addTo(map); } } + // Handle the dialog for popup help var dialog = document.querySelector('dialog'); dialogPolyfill.registerDialog(dialog); @@ -436,8 +445,11 @@ map.on('overlayadd', function(e) { layers["_daynight"].addLayer(L.terminator()); } if (e.name == "drawing") { - map.addControl(drawControl); overlays["drawing"].bringToFront(); + // And the actual draw controls + map.addControl(drawControl); + // Add the color change button + //colorControl.addTo(map); } ws.send(JSON.stringify({action:"addlayer", name:e.name})); }); @@ -452,6 +464,7 @@ map.on('overlayremove', function(e) { layers["_daynight"].clearLayers(); } if (e.name == "drawing") { + map.removeControl(colorControl); map.removeControl(drawControl); } //else console.log("layer del :",e.name); @@ -623,7 +636,6 @@ var NLS_OS_opendata = L.tileLayer('https://geo.nls.uk/maps/opendata/{z}/{x}/{y}. }); basemaps["UK OS Opendata"] = NLS_OS_opendata; - var HikeBike_HikeBike = L.tileLayer('http://{s}.tiles.wmflabs.org/hikebike/{z}/{x}/{y}.png', { maxZoom: 19, attribution: '© OpenStreetMap' @@ -658,8 +670,14 @@ basemaps["Terrain"] = new L.StamenTileLayer('terrain'); // Nice watercolour based maps by Stamen Design basemaps["Watercolor"] = new L.StamenTileLayer('watercolor'); + // Now add the overlays +// Add the countries (world-110m) for offline use +var customTopoLayer = L.geoJson(null, {style: {color:"blue", weight:2, fillColor:"#cf6", fillOpacity:0.04}}); +layers["_countries"] = omnivore.topojson('images/world-50m-flat.json',null,customTopoLayer); +overlays["countries"] = layers["_countries"]; + // Add the day/night overlay layers["_daynight"] = new L.LayerGroup(); overlays["day/night"] = layers["_daynight"]; diff --git a/worldmap/leaflet/easy-button.js b/worldmap/leaflet/easy-button.js index 41283a7..f03f3bd 100644 --- a/worldmap/leaflet/easy-button.js +++ b/worldmap/leaflet/easy-button.js @@ -111,19 +111,22 @@ L.Control.EasyButton = L.Control.extend({ // icon: 'fa-circle', // wrapped with // } - leafletClasses: true // use leaflet styles for the button + leafletClasses: true, // use leaflet styles for the button + tagName: 'button', }, - initialize: function(icon, onClick, title, position){ - - // Added easy position input - DCJ - this.options.position = position || 'topleft'; + initialize: function(icon, onClick, title, id){ // clear the states manually this.options.states = []; + // add id to options + if(id != null){ + this.options.id = id; + } + // storage between state functions this.storage = {}; @@ -164,18 +167,25 @@ L.Control.EasyButton = L.Control.extend({ _buildButton: function(){ - this.button = L.DomUtil.create('button', ''); + this.button = L.DomUtil.create(this.options.tagName, ''); + + // the next three if statements should be collapsed into the options + // when it's time for breaking changes. + if (this.tagName === 'button') { + this.button.type = 'button'; + } if (this.options.id ){ this.button.id = this.options.id; } if (this.options.leafletClasses){ - L.DomUtil.addClass(this.button, 'easy-button-button leaflet-bar-part'); + L.DomUtil.addClass(this.button, 'easy-button-button leaflet-bar-part leaflet-interactive'); } - // don't let double clicks get to the map + // don't let double clicks and mousedown get to the map L.DomEvent.addListener(this.button, 'dblclick', L.DomEvent.stop); + L.DomEvent.addListener(this.button, 'mousedown', L.DomEvent.stop); // take care of normal clicks L.DomEvent.addListener(this.button,'click', function(e){ @@ -309,7 +319,7 @@ L.Control.EasyButton = L.Control.extend({ }); L.easyButton = function(/* args will pass automatically */){ - var args = Array.prototype.concat.apply([L.Control.EasyButton],arguments) + var args = Array.prototype.concat.apply([L.Control.EasyButton],arguments); return new (Function.prototype.bind.apply(L.Control.EasyButton, args)); }; diff --git a/worldmap/worldmap.appcache b/worldmap/worldmap.appcache index 83d230e..b45fb3b 100644 --- a/worldmap/worldmap.appcache +++ b/worldmap/worldmap.appcache @@ -1,10 +1,11 @@ CACHE MANIFEST -# date: Oct 3rd 2018 - v1.4.6 +# date: Oct 12th 2018 - v1.5.0 CACHE: index.html favicon.ico images/node-red.png +images/world-50m-flat.json css/map.css leaflet/L.Terminator.js leaflet/Leaflet.fullscreen.min.js