Skip to content

Instantly share code, notes, and snippets.

@hungryzi
Last active November 17, 2016 22:33
Show Gist options
  • Save hungryzi/33c6aa7cdc6ad67c1c8f to your computer and use it in GitHub Desktop.
Save hungryzi/33c6aa7cdc6ad67c1c8f to your computer and use it in GitHub Desktop.
Vietname population density by provinces/cities

Visualizing Vietname population density by provinces/cities.

<!DOCTYPE html>
<html>
<head>
<title>Vietnam Population by Provinces</title>
<meta charset="utf-8">
<style>
.boundary {
fill: none;
stroke: #777;
stroke-dasharray: 2,2;
stroke-linejoin: round;
}
path {
stroke: white;
stroke-width: 0.1px;
}
.background {
fill: none;
pointer-events: all;
}
</style>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
</head>
<body>
<script src="population_density_map.js"></script>
</body>
</html>
var width = 960,
height = 1160,
centered;
var densityById = d3.map();
var scale = d3.scale
.linear()
.domain([0,3731])
.range([0,1]);
var svg = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height);
queue()
.defer(d3.json,"vietnam_adm2.json")
.defer(d3.csv,
"vietnam_population_by_province.csv",
function(d){
densityById.set(d.id,d.density);
}
)
.await(ready);
function ready(error, topojsonFile, data) {
svg.append("rect")
.attr("class","background")
.attr("width",width)
.attr("height",height)
.on("click", clicked);
var projection = d3.geo.mercator()
.center([107,11])
.scale(2490)
.translate([width/2,height/2]);
var path = d3.geo.path().projection(projection);
var provinces = topojson.feature(topojsonFile, topojsonFile.objects.VNM_adm2).features;
var g = svg.append("g");
g.append("g")
.selectAll("path")
.data(provinces)
.enter()
.append("path")
.attr("fill", function(d) { console.log(d); return "rgba(0, 0, 255, " + scale(densityById.get(d.id)) + ")"; })
.attr("id",function(d) { return d.id;})
.attr("d",path)
.on("click",clicked);
function clicked(d) {
var x, y, k;
if ( d && centered !== d) {
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 9;
centered = d;
}
else {
x = width/2;
y = height/2;
k = 1;
centered = null;
}
g.selectAll("path")
.classed("active", centered && function(d) { return d === centered; });
g.transition()
.duration(750)
.attr("transform","translate(" + width/2 + "," + height/2 + ")scale(" + k + ")translate("+ -x +"," + -y + ")")
.style("stroke-width", 1.5/k + "px");
}
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"VNM_adm2":{"type":"GeometryCollection","bbox":[102.14499664306652,8.563331604003906,109.46942901611357,23.392730712890618],"geometries":[{"type":"Polygon","id":"Dong Thap","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","id":"An Giang","arcs":[[-5,6,7,8]]},{"type":"Polygon","id":"Bac Lieu","arcs":[[9,10,11,12,13]]},{"type":"MultiPolygon","id":"Ben Tre","arcs":[[[14]],[[15]],[[16]],[[17]],[[18]],[[19,20,21,22]]]},{"type":"Polygon","id":"Can Tho","arcs":[[-4,23,24,25,-7]]},{"type":"MultiPolygon","id":"Ca Mau","arcs":[[[26]],[[27]],[[28]],[[29]],[[30]],[[-13,31,32]]]},{"type":"Polygon","id":"Hau Giang","arcs":[[33,34,-10,35,-25]]},{"type":"MultiPolygon","id":"Kien Giang","arcs":[[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[-86]],[[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]],[[-114]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[-130]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[-8,-26,-36,-14,-33,145]]]},{"type":"Polygon","id":"Long An","arcs":[[146,147,148,-1,149]]},{"type":"Polygon","id":"Soc Trang","arcs":[[150,151,-11,-35,152]]},{"type":"Polygon","id":"Tien Giang","arcs":[[153,154,-23,155,-2,-149]]},{"type":"MultiPolygon","id":"Tra Vinh","arcs":[[[156]],[[157]],[[158]],[[-21,159,-151,160]]]},{"type":"Polygon","id":"Vinh Long","arcs":[[-161,-153,-34,-24,-3,-156,-22]]},{"type":"Polygon","id":"Bac Ninh","arcs":[[161,162,163,164]]},{"type":"Polygon","id":"Hai Duong","arcs":[[165,166,167,168,-162,169]]},{"type":"MultiPolygon","id":"Hai Phong City|Haiphong","arcs":[[[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,-167,240]]]},{"type":"Polygon","id":"Hung Yen","arcs":[[-169,241,242,243,244,-163]]},{"type":"Polygon","id":"Ha Noi City|Hanoi","arcs":[[245,-164,-245,246,247,248]]},{"type":"Polygon","id":"Ha Nam","arcs":[[249,250,251,252,253,-243]]},{"type":"Polygon","id":"Ha Tay","arcs":[[254,-247,-244,-254,255,256]]},{"type":"MultiPolygon","id":"Nam Dinh","arcs":[[[257]],[[258]],[[259]],[[260,261,262,-251]]]},{"type":"MultiPolygon","id":"Ninh Binh","arcs":[[[263]],[[-252,-263,264,265,266]]]},{"type":"MultiPolygon","id":"Thai Binh","arcs":[[[267]],[[268]],[[269]],[[270]],[[271]],[[-240,272,-261,-250,-242,-168]]]},{"type":"Polygon","id":"Vinh Phuc","arcs":[[-248,-255,273,274,275]]},{"type":"Polygon","id":"Bac Giang","arcs":[[276,277,-170,-165,-246,278]]},{"type":"Polygon","id":"Bac Kan|Bac Can","arcs":[[279,280,281,282]]},{"type":"Polygon","id":"Cao Bang","arcs":[[283,-283,284,285,286]]},{"type":"Polygon","id":"Ha Giang","arcs":[[-286,287,288,289,290]]},{"type":"Polygon","id":"Lang Son","arcs":[[291,292,-277,293,-280,-284]]},{"type":"Polygon","id":"Lao Cai","arcs":[[-290,294,295,296]]},{"type":"Polygon","id":"Phu Tho","arcs":[[-274,-257,297,298,299,300]]},{"type":"MultiPolygon","id":"Quang Ninh","arcs":[[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[-453]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[-479]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[921]],[[922]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[-241,-166,-278,-293,960]]]},{"type":"Polygon","id":"Thai Nguyen","arcs":[[-294,-279,-249,-276,961,-281]]},{"type":"Polygon","id":"Tuyen Quang","arcs":[[-285,-282,-962,-275,-301,962,-288]]},{"type":"Polygon","id":"Yen Bai","arcs":[[-963,-300,963,964,-295,-289]]},{"type":"MultiPolygon","id":"Dong Nai","arcs":[[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971,972,973,974,975,976,977,978,979]]]},{"type":"MultiPolygon","id":"Ba Ria - VTau|Ba Ria-Vung Tau","arcs":[[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012,1013,-973]]]},{"type":"Polygon","id":"Binh Duong","arcs":[[1014,1015,-978,1016,1017,1018]]},{"type":"MultiPolygon","id":"Binh Phuoc","arcs":[[[-1015]],[[-1019,1019,1020,1021,1022,1023,1024,-979,-1016]]]},{"type":"MultiPolygon","id":"Binh Thuan","arcs":[[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036,-1013,-972,1037,1038]]]},{"type":"MultiPolygon","id":"Ho Chi Minh City|Ho Chi Minh","arcs":[[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049,-975]],[[1050]],[[1051]],[[-977,1052,-154,-148,1053,-1017]]]},{"type":"MultiPolygon","id":"Ninh Thuan","arcs":[[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059,-1039,1060,1061]]]},{"type":"MultiPolygon","id":"Tay Ninh","arcs":[[[1062,-1022]],[[-1020,-1018,-1054,-147,1063]]]},{"type":"MultiPolygon","id":"Ha Tinh","arcs":[[[1064]],[[1065]],[[1066]],[[1067,1068,1069,1070]]]},{"type":"MultiPolygon","id":"Nghe An","arcs":[[[1071]],[[1072]],[[1073,1074,-1070,1075,1076,1077]],[[-1079,-1080]]]},{"type":"MultiPolygon","id":"Quang Binh","arcs":[[[1080]],[[1081]],[[1082]],[[1083]],[[1084,1085,1086,-1068]]]},{"type":"MultiPolygon","id":"Quang Tri","arcs":[[[-1088]],[[1088,1089,-1086,1090]],[[1091]]]},{"type":"MultiPolygon","id":"Thua Thien - Hue","arcs":[[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103,1104,1105,-1089,1106]]]},{"type":"MultiPolygon","id":"Thanh Hoa","arcs":[[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117,-1077]],[[-266,1118,-1074,-1079,1119,1120,1121]]]},{"type":"MultiPolygon","id":"Da Nang City|Da Nang","arcs":[[[1122]],[[1123,1124,-1104]],[[1125]]]},{"type":"MultiPolygon","id":"Binh Dinh","arcs":[[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141,1142,1143,1144]]]},{"type":"MultiPolygon","id":"Khanh Hoa","arcs":[[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198,-1062,1199,1200,1201]]]},{"type":"MultiPolygon","id":"Phu Yen","arcs":[[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216,-1202,1217,1218,-1143]]]},{"type":"MultiPolygon","id":"Quang Nam","arcs":[[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[-1125,1227,1228,1229,1230,-1105]]]},{"type":"MultiPolygon","id":"Quang Ngai","arcs":[[[1231]],[[-1145,1232,1233,-1229,1234]],[[1235]]]},{"type":"Polygon","id":"Dien Bien","arcs":[[1236,1237,1238]]},{"type":"Polygon","id":"Hoa Binh","arcs":[[-256,-253,-267,-1122,1239,-298]]},{"type":"Polygon","id":"Lai Chau","arcs":[[-296,-965,1240,-1239,1241]]},{"type":"Polygon","id":"Son La","arcs":[[-964,-299,-1240,-1121,1242,-1237,-1241]]},{"type":"Polygon","id":"Dak Lak|Dac Lac","arcs":[[-1218,-1201,1243,1244,1245,1246]]},{"type":"Polygon","id":"Dac Nong","arcs":[[1247,-1024,1248,-1245]]},{"type":"Polygon","id":"Gia Lai","arcs":[[-1233,-1144,-1219,-1247,1249,1250]]},{"type":"Polygon","id":"Kon Tum","arcs":[[-1234,-1251,1251,-1230]]},{"type":"Polygon","id":"Lam Dong","arcs":[[-1061,-1038,-980,-1025,-1248,-1244,-1200]]}]}},"arcs":[[[4577,1612],[1,-1],[2,-1],[3,-2],[2,-2],[1,-1],[3,-3],[2,-2],[2,-2],[2,-1],[2,-2],[1,-1],[1,-1],[0,-1],[0,-1],[2,0],[3,-1],[1,0],[8,-2],[7,-2],[7,-1],[7,-2],[3,0],[6,-2],[3,0],[6,-2],[15,-3],[8,-2],[11,-2],[6,-2],[1,0],[1,-1],[2,-2],[2,-2],[2,-2],[3,-3],[3,-3],[4,-4],[6,-6],[8,-9],[6,-6],[1,0],[0,-1],[0,-1],[1,-1],[-7,0],[-4,0],[-10,0],[4,-2],[7,-3],[3,-2],[4,-1],[6,-3],[7,-3],[7,-3],[6,-4],[6,-2],[1,-1],[3,-1],[4,-2],[2,-1],[5,-2],[2,-1],[4,-2],[1,0],[3,-2],[3,-1],[1,-1],[6,-2],[2,-1],[4,-2],[7,-3],[2,-1],[6,-3],[6,-3],[3,-1],[3,-1],[4,-2],[3,-2],[4,-1],[3,-2],[6,-3],[4,-2],[4,-1],[3,-2],[4,-1],[3,-2],[3,-1],[6,-3],[4,-2],[13,-6],[1,0],[5,-3],[5,-2],[11,-5],[6,-3],[4,-2],[21,-9],[2,-1],[1,0],[7,-4],[7,-3],[7,-1],[13,-1],[13,-1],[8,-2],[10,-3],[10,-3],[3,-1],[8,-2],[3,-1],[1,-1],[4,-3],[3,-2],[7,-4],[7,-5],[6,-4],[1,0],[6,-5],[4,-2],[4,-2],[6,-5],[1,0],[6,-4],[7,-4],[7,-5],[7,-4],[7,-5],[3,-2],[4,-2],[7,-4],[4,-3],[3,0],[5,0],[1,-1],[1,0],[8,0],[4,0],[14,0],[2,0],[3,-1],[2,0]],[[5183,1330],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[-5,-2],[-6,-4],[-6,-3],[-6,-3],[-5,-2],[-5,-3],[-6,-3],[-5,-3],[-6,-2],[-6,-4],[-5,-3],[-6,-3],[-6,-3],[-6,-3],[-3,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-4,-2],[-5,-2],[-5,-4],[-6,-3],[-5,-2],[-3,-1],[-3,-4],[-1,-2],[-3,-4],[-3,-4],[-2,-3],[-2,-3],[-3,-4],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-4,1],[-7,2],[-14,0],[-7,0],[-6,0],[0,-2],[0,-2],[1,-5],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[2,0],[3,-1],[3,0],[2,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-4,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[4,0],[4,-1],[2,0],[2,0],[4,0],[4,-1],[4,0],[3,0],[1,0],[4,-1],[4,0],[4,-1],[4,0],[4,-1],[2,0],[5,-2],[2,-1],[3,-1],[2,-1],[6,-3],[3,-1],[5,-1]],[[5118,1155],[-8,-4],[-7,-3],[-3,-1],[-2,0],[-2,0],[-1,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[2,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[3,0],[3,1],[2,0],[2,0],[3,0],[-1,-3],[0,-2],[0,-2],[0,-1],[3,-1],[2,0],[2,-1],[4,-1],[2,-1],[2,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,-1],[1,-1],[2,-2],[2,-2],[1,0],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,0],[-1,-1],[-1,0],[-7,0],[-9,0],[-2,-1],[0,-1],[-1,0],[-3,-2],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-3,0],[-4,0],[-1,0],[0,-1],[0,-2],[1,0],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-3,-3],[-1,-1],[-1,-1],[0,-1],[6,-1],[-1,0],[-4,-7],[-1,-1],[-3,1],[-1,-2],[-3,0],[-4,1],[-1,0],[-14,4],[0,-1],[-2,-3],[-1,-2],[0,-1],[-8,0],[-4,0],[-7,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-6,0],[-3,0],[-2,2],[-1,0],[-10,2],[-4,0],[-2,0],[-3,1],[-1,-1],[-1,1],[-3,2],[-7,5],[-2,1],[-6,3],[0,1],[-3,2],[-4,2],[-2,1],[-3,2],[-5,3],[-1,0],[-5,-3],[-3,-1],[-5,-3],[-6,2],[-1,1],[-2,1],[-2,2],[-3,1],[-2,2],[-3,2],[-4,2],[0,-1],[-26,6],[-1,0],[-4,1],[3,-1],[-2,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-3,-2],[-3,-2],[-2,-2],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-3,-2],[-4,-3],[-1,-1],[-2,-1],[2,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[-3,-2]],[[4829,1059],[-7,3],[-5,1],[-2,1],[-2,0],[-5,2],[-5,1],[-4,2],[-3,1],[-1,1],[-1,0],[-5,3],[-2,1],[-2,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-2,1],[-7,3],[-1,0],[-4,2],[-1,0],[-4,2],[-4,2],[-4,2],[-4,1],[-1,1],[-2,3],[-2,4],[-1,3],[-2,3],[-1,2],[-3,2],[0,1],[-3,2],[-2,2],[-3,3],[-2,1],[-1,1],[-3,2],[-2,2],[-2,1],[-3,2],[-2,1],[-3,2],[-5,2],[-5,2],[-6,3],[-3,2],[-6,2],[-2,2],[-4,2],[-4,2],[-5,2],[-4,2],[-5,2],[-4,2],[-3,1],[-2,1],[-5,2],[-7,3],[-5,2],[-8,3],[-3,1],[-2,0],[-6,2],[-6,2],[-4,1],[-2,0],[-3,0],[-3,0],[-2,1],[-3,1],[-1,1],[-8,4],[-6,2],[-2,2],[-3,1],[-2,1]],[[4573,1188],[-3,2],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[1,1],[2,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[2,0],[2,0],[1,1],[1,0],[1,1],[1,1],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[3,0],[3,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[5,0],[4,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[1,1],[0,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-2,2],[-3,2],[-2,3],[-2,2],[-1,2],[-1,1],[0,1],[-1,0],[-1,2],[-2,1],[-2,3],[-1,1],[-1,1],[-3,2],[-3,3],[-2,1],[-2,1],[-4,3],[-4,1],[-3,2],[-2,1],[-1,0],[-3,1],[-1,1],[-4,1],[-2,1],[-4,1],[-4,1],[-2,0],[-4,1],[-2,1],[-3,0],[-3,1],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-3,0],[-2,-1],[-7,-1],[-3,0],[-1,0],[-3,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-3,1],[-2,0],[-2,1],[-3,0],[-3,0],[-4,1],[-7,3],[-8,2],[-7,2],[-5,1],[-1,0],[-2,1],[-1,0],[-3,0],[-4,-1],[-9,0],[-11,-1],[-3,0],[-4,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-3,0],[-3,1],[-3,1],[-2,1],[-1,1],[-3,0],[-1,1],[-1,1],[-6,3],[-3,1],[-1,1],[-3,0],[-3,1],[-4,1],[-2,1],[-3,0],[-3,0],[-2,1],[-3,0],[-4,0],[-1,0],[-2,1],[-4,0],[-3,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-4,4],[-1,1],[-4,5],[-2,1],[-3,4],[-2,2],[-4,3],[-1,2],[-3,3],[-2,3],[-2,2],[-1,2],[-1,1],[0,1],[-2,3],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,2],[0,2],[0,3],[-1,2],[0,2],[0,2],[1,2],[0,1],[-1,1],[0,2],[0,1],[1,4],[1,2],[1,2],[2,4],[1,1],[0,1],[1,2],[1,2],[0,1],[1,2],[0,2],[1,4],[0,1],[-1,1],[-2,1],[-1,1],[-6,2],[-3,0],[-6,0],[-8,0],[-6,0],[-5,-1],[-5,-1],[-7,-1],[-1,0],[-5,0],[-4,-1],[-4,0],[-8,0],[-3,0],[-4,0],[-6,1],[-6,2],[-3,0],[-3,1],[-2,2],[-2,1],[0,1],[1,1],[1,1],[3,2],[5,2],[3,1],[6,1],[7,3],[4,1],[3,0],[3,1],[2,2],[0,1],[1,2],[0,2],[-1,1],[-1,0],[-3,1],[-2,1],[-5,0],[-5,1],[-7,0],[-6,0],[-6,0],[-6,0],[-2,0],[-4,1],[-1,1],[-1,0],[-2,1],[-2,0],[-2,1],[-2,1],[-1,0],[-2,2],[-1,2],[-1,3],[0,1],[1,1],[1,1],[2,2],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[-4,0],[-14,0],[-3,0],[-7,0],[-4,1],[-1,0],[-1,0],[-1,1],[-2,3],[-2,3],[-3,4],[-1,3],[-1,0],[-3,4],[0,1],[-3,2],[-1,1],[-2,2],[-1,1],[-2,2],[-1,0],[-2,2],[-3,2],[-2,2],[-1,1],[-3,1],[-3,2],[-1,0],[-2,1],[-3,1],[-5,2],[-2,1],[-2,1],[-4,3],[0,1],[1,1],[0,3],[0,2],[1,2],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[-1,1],[0,1],[0,3],[0,2]],[[4153,1583],[1,0],[2,0],[3,0],[2,0],[4,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,-1],[2,-1],[1,0],[1,0],[1,-1],[2,0],[4,-1],[3,-1],[4,-1],[3,-1],[4,-1],[5,0],[4,-1],[4,-1],[3,0],[1,0],[2,-1],[2,0],[2,0],[2,0],[4,0],[2,0],[2,0],[3,1],[4,0],[4,0],[6,1],[9,0],[0,-1],[1,0],[3,-1],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[2,0],[3,-1],[3,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,-1],[2,-1],[2,-1],[4,-1],[2,0],[2,-1],[3,0],[1,-1],[2,0],[4,-1],[4,-1],[3,-1],[2,0],[1,0],[3,-1],[3,-1],[4,-1],[3,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-1],[2,0],[3,-1],[2,-1],[3,0],[2,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[2,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[-1,2],[-1,1],[1,0],[0,1],[3,0],[4,0],[3,0],[2,0],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[2,1],[0,1],[0,1],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[1,2],[2,1],[2,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[2,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,1],[3,1],[2,1],[1,0],[1,0],[2,1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1]],[[4573,1188],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-4,-1],[-6,0],[-2,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,1],[-3,0],[-1,0],[-4,0],[-9,-1],[-3,0],[-2,-1],[-5,0],[1,0],[1,-2],[2,-2],[1,-2],[2,-1],[2,-2],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[1,-1],[1,0],[1,-1],[1,-2],[2,-1],[-2,-1],[-4,-1],[-3,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-4,-1],[-2,-1],[-1,0],[-3,0],[-7,-2],[-10,-1],[-2,-1],[-1,0],[-3,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[-3,-1],[-1,0],[-3,0],[-8,-2],[-6,0],[-4,-1],[-1,0],[-6,-1],[-2,0],[-4,-1],[-3,0],[-4,-1],[-2,0],[-6,-1],[-4,-1],[-2,0],[-6,-1],[-6,-1],[-2,0],[-13,-2],[-2,1],[-3,3],[-2,1],[-3,2],[-3,3],[-2,2],[-2,1],[-2,2],[-1,1],[-3,2],[-2,2],[-3,2],[0,1],[-2,1],[-2,2],[-8,-3],[-1,0],[-6,5],[-1,1],[0,-1],[-1,0],[-4,-2],[-2,-1],[-6,-3],[0,-1],[-6,-2],[1,-1],[2,-1],[-2,0],[0,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-6,-3],[-4,-2],[-4,2],[-5,3],[-1,-1],[-5,-3],[-2,-1],[-2,-1],[-4,-2],[-1,0],[-1,-1],[-2,-1],[-1,-2],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-2,-1],[0,-1],[-5,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0]],[[4213,1110],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-2,-1],[-5,-3],[-1,-1],[-3,-2],[-4,-3],[-6,-4],[-2,-1],[-3,-2],[-1,-1],[-1,0],[-2,-2],[-1,1],[-1,0],[-3,2],[-5,2],[-5,2],[-4,2],[-5,2],[-5,2],[-1,0],[-3,2],[-5,2],[-1,0],[-4,2],[-4,2],[-5,1],[-1,1],[-2,1],[-1,1],[-5,2],[-5,2],[-5,2],[-1,0],[-4,2],[-2,1],[-3,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-3,2],[-2,1],[-2,1],[-1,0],[-1,1],[-2,1],[-2,1],[-3,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-3,0],[-3,1],[-3,1],[-2,1],[-4,1],[-4,1],[-2,1],[-2,0],[-1,0],[-1,1],[-13,4],[-3,0],[-1,1],[-1,0],[-4,1],[-1,0],[-5,2],[-6,1],[-3,1],[-2,1],[-6,1],[-4,2],[-1,0],[-1,0],[-4,1],[-4,2],[-3,0],[-4,2],[-1,0],[-2,0],[-7,2],[-5,2],[-4,1],[-3,1],[-7,2],[-11,3],[-3,1],[-8,2],[-2,1],[-3,1],[1,0],[1,1],[-2,0],[-3,1],[-9,1],[-2,1],[-5,0],[-4,1],[-5,0],[-12,1],[-7,1],[-5,1],[-1,0],[-12,1],[-7,1],[-8,1],[-4,0],[-2,1],[-7,0],[-7,1],[-5,1],[-40,4],[-11,2],[-13,1],[-9,1],[-13,2],[-12,1],[-2,0],[-3,1],[-1,1],[-5,3],[-9,6],[-7,4],[-7,5],[-7,4],[-8,5],[-1,1],[-9,5],[1,1],[3,1],[-3,2],[-5,4],[-5,4],[-7,6],[-5,5],[-3,2],[-5,5],[-9,11],[-1,1],[-7,4],[-10,5],[-1,0],[-8,4],[5,8],[1,3],[-1,2],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3595,1318],[5,0],[0,1],[3,0],[8,0],[1,-1],[3,1],[10,0],[10,0],[1,0],[4,0],[22,0],[10,1],[8,0],[14,0],[16,0],[7,0],[24,11],[10,4],[6,3],[1,1],[1,0],[0,1],[2,2],[2,1],[4,3],[4,4],[2,1],[2,2],[4,4],[4,3],[3,2],[2,2],[1,1],[4,3],[3,2],[3,3],[3,2],[0,1],[3,2],[2,2],[3,2],[2,2],[1,0],[2,1],[3,2],[5,3],[1,0],[3,2],[2,1],[1,1],[5,3],[1,0],[1,1],[1,1],[2,0],[3,1],[4,2],[5,1],[5,1],[6,2],[4,2],[2,0],[6,2],[7,2],[2,1],[4,1],[2,1],[1,0],[1,0],[2,1],[19,5],[7,2],[4,1],[2,1],[3,0],[0,1],[2,0],[2,1],[28,8],[2,0],[11,4],[18,4],[3,1],[2,1],[2,1],[2,0],[2,1],[2,0],[1,1],[2,0],[2,1],[2,0],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[-5,16],[-1,3],[-1,2],[0,1],[0,1],[-1,0],[-2,1],[-1,2],[-1,0],[-1,1],[-5,2],[-3,3],[-2,1],[-2,1],[-2,2],[-4,1],[-6,2],[-2,0],[-1,0],[-4,0],[-2,1],[-2,2],[0,1],[-1,7],[-2,1],[-2,1],[-3,1],[-1,1],[-1,1],[1,2],[1,2],[1,2],[0,1],[0,4],[-1,1],[-2,2],[-1,1],[-1,1],[-5,5],[-2,1],[-1,2],[-1,1],[-2,2],[-2,2],[-3,3],[-4,4],[-1,2],[-3,3],[-3,3],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[-2,4],[-1,1],[0,1],[2,0],[3,1],[3,1],[2,0],[1,1],[0,1],[1,0],[4,0],[1,0],[4,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[2,1],[4,2],[7,0],[2,1],[1,0],[-1,0],[0,1],[0,2],[1,0],[-2,1],[-2,1],[0,1],[1,1],[5,3],[2,0],[1,1],[7,2],[4,0],[1,1],[3,0],[1,1],[2,0],[2,0],[3,0],[1,0],[5,-2],[1,0],[1,1],[-1,3],[0,1],[2,3],[1,3],[0,1],[2,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[1,0],[10,0],[3,1],[4,0],[4,1],[4,1],[2,1],[4,0],[2,0],[1,0],[2,0],[3,0],[2,-1],[0,-1],[0,-1],[1,-3],[0,-2],[0,-2],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,-2],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[1,0],[4,-1],[0,-1],[2,0],[1,0],[4,1],[4,0],[7,0],[2,0],[3,0],[6,1],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,1],[4,0],[5,0],[4,0],[3,0],[5,0],[2,0],[1,0],[2,0],[3,0],[3,-1],[2,0],[3,-1],[2,-1],[5,-1],[4,0],[1,-1],[6,-1],[4,-1],[2,0],[0,-1],[1,0],[1,0],[2,1],[1,0],[2,-1],[2,0]],[[4407,697],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-2],[0,-1],[1,-1],[4,-1],[4,1],[3,0],[3,2],[2,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,1],[0,1],[1,0],[1,1],[2,0],[1,1],[-1,1],[-1,1],[1,1],[2,0],[4,0],[4,0],[4,-1],[2,1],[2,0],[2,1],[1,1],[1,0],[2,0],[1,-1],[1,-1],[-2,-2],[0,-1],[1,-1],[2,0],[2,1],[2,1],[2,0],[3,0],[4,0],[1,0],[1,0],[0,1],[-1,2],[1,0],[1,0],[1,0],[2,-1],[2,0],[3,-1],[3,0],[3,-2],[1,0],[2,1],[2,0],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[2,1],[3,1],[2,0],[2,0],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[2,1],[2,1],[2,0],[2,1],[1,1],[0,1],[0,1],[1,1],[2,0],[1,-1],[4,-1],[2,-1],[1,0],[1,-1],[1,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[2,-1],[3,1],[3,0],[1,0],[1,0],[2,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,1],[2,2],[1,0],[0,1],[-1,0],[-1,1],[1,1],[1,0],[1,0],[2,-1],[3,0],[3,0],[4,1],[1,0],[1,0],[1,0],[0,-1],[-2,-1],[0,-1],[1,0],[3,-1],[5,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[3,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[5,0],[4,0],[2,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[4,-1],[1,0],[2,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,1]],[[4642,690],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[-2,-7],[-1,0],[-2,-9],[-2,-8],[0,-2],[0,-1],[-1,-3],[-1,-3],[-1,-4],[-1,-4],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[1,-1],[0,-1],[0,-2],[1,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[3,-1],[4,-2],[4,-2],[2,-2],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[3,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,1],[1,1],[1,1],[1,0],[1,1],[3,3],[1,1],[1,1],[1,1],[1,0],[3,-1],[4,-1],[1,-1],[3,0],[1,1],[2,1],[1,0],[2,-1],[2,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[2,0],[1,0],[1,-1],[1,-2],[2,1],[1,-2],[3,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[4,-1],[4,0],[4,-1],[0,-1],[3,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[-1,0],[2,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[4,0],[2,-1],[1,0],[1,0],[1,-1],[2,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,1],[2,0],[4,0],[2,0],[1,0],[1,0],[3,1],[3,-2],[1,-1],[2,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[2,1],[4,0],[2,1],[1,0],[0,-1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-2,0],[-1,1],[3,0],[2,0],[1,1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,1],[1,0],[3,-1],[1,1],[2,0],[2,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,2],[1,-1],[2,-1],[2,-2],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-3,-1],[-1,0],[-2,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-1,0],[0,-1],[2,-3],[1,0],[4,-10],[2,-3],[1,-3],[1,-3],[1,-2],[2,-4],[0,-1],[0,-2],[2,-4],[2,-3],[1,-3],[-2,0],[-1,-1],[-3,-1],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[2,-3],[2,-3],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1]],[[5027,459],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[0,-1],[-1,0],[-1,1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-5,-2],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-3,-1],[-1,0],[-3,-2],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-3,-2],[-3,-1],[0,-1],[-4,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-2],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0]],[[4466,312],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,2],[-1,1],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[4,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-4,0],[-1,-1],[-1,0],[-4,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-12,13],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,1],[-2,1],[-1,0],[-2,0],[-1,0],[1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[-2,1],[-1,0],[-3,2],[-4,2],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[0,1],[-1,0],[-1,0],[-3,2],[-2,1],[-2,0],[-2,1],[-2,1],[-2,0],[-2,1],[-3,1],[-3,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-3,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[2,1],[1,0],[1,0],[10,5],[9,5],[8,4],[10,5],[9,5],[8,4],[2,1],[1,0],[-2,1]],[[4300,556],[1,0],[0,1],[3,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[3,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0]],[[6134,847],[-1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0]],[[6142,849],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[-2,-2]],[[6153,851],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1]],[[6151,854],[-2,1],[1,1],[1,0],[1,0],[0,-1],[-1,-1]],[[6243,999],[1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[6266,1103],[0,-1],[-7,-4],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[0,1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-1],[2,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[1,0],[-3,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,1],[0,1],[0,1],[3,1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,-1],[0,-1],[1,0],[0,-1],[-2,-1],[2,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[0,-1],[-6,-3],[-1,-1],[-4,-2],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-2,0],[-5,-3],[-1,-1],[-8,-4],[-1,0],[-2,-1],[-1,0],[-1,0],[-4,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[2,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[2,1],[1,0],[1,0],[0,1],[2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-3,-1],[0,-1],[-1,0],[-3,-2],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[2,1],[0,2],[3,1],[1,1],[2,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[1,-1],[2,0],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[3,-1],[0,-1],[0,-2],[2,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-2,-1],[-1,0],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-6,-4],[-1,-1],[-6,-5],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[3,-1],[1,-1],[2,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[3,-2],[1,0],[3,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[3,0],[1,0],[1,0],[2,-1],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,-2],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,-1],[3,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-2],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[0,-1],[1,0],[2,-1],[1,0],[1,-2],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-3,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[1,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-5,-3],[1,0],[1,0],[1,0],[2,-1],[0,-1],[-2,0],[0,-1],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[-2,-1],[1,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[1,0],[1,-1],[1,0],[-1,0],[-1,0],[-2,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,1],[1,0],[2,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-2,0],[-1,0],[-1,0],[-5,2],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,0],[-4,2],[-1,1],[1,0],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[-2,0],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-4,2],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-3,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-2,1],[-4,2],[0,1],[-2,0],[0,1],[-1,0],[-1,1],[-2,1],[-3,2],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-4,3],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-5,2],[-1,0],[-2,1],[0,1],[-1,0],[-2,1],[-6,3],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-3,2],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,-1],[-3,-1],[-2,0]],[[5897,923],[-5,1],[-4,1],[-13,2],[-4,1],[-4,1],[-3,1],[-5,1],[-4,1],[-3,0],[-4,1],[-4,1],[-1,1],[-5,1],[-4,1],[-4,1],[-4,1],[-2,1],[-3,1],[-1,1],[-3,1],[-4,1],[-4,2],[-1,0],[-1,1],[-6,2],[-9,2],[-4,1],[-6,2],[-2,0],[-2,0],[-1,1],[-1,0],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-4,2],[-6,3],[-2,2],[-2,1],[-1,0],[-3,1],[-2,1],[-2,0],[-3,1],[-7,1],[-9,2],[-4,1],[-6,1],[-9,2],[-5,2],[-7,2],[-10,5],[-13,7],[-2,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,2]],[[5658,1002],[-1,0],[-6,6],[-4,3],[-4,3],[-3,3],[-1,1],[-2,1],[-5,4],[-2,2],[-3,2],[-2,2],[-2,1],[-6,3],[-1,0],[-4,3],[-3,1],[-3,2],[-7,5],[-6,4],[-2,2],[-2,1],[-1,1],[-1,1],[-9,7],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-2,1],[-1,1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,0],[-1,0],[-3,2],[-3,1],[-2,2],[-3,1],[-3,2],[-2,1],[-2,1],[-2,1],[-1,0],[-2,1],[-5,2],[-3,1],[-5,2],[-3,1],[-2,1],[-1,0],[-4,-1],[-2,-1],[-2,0],[-3,0],[-1,0],[-2,1],[-1,0],[-3,1],[-1,1],[-1,1],[-2,2],[-2,1],[-2,1],[-4,2],[-4,1],[-4,1],[-2,0],[-1,1],[-5,1],[-2,1],[-3,1],[-3,1],[-4,2],[-1,0],[-2,6],[-1,2],[-9,3],[-1,1],[-2,1],[-2,1],[-3,1],[-3,1],[-2,1],[-5,2],[-18,4],[-2,1],[-5,1],[-1,0],[-7,0],[-4,1],[-6,0],[-6,1],[-7,0],[-8,0],[-8,0],[-8,0],[-1,0],[-6,0],[-3,0],[-4,1],[-4,0],[-4,0],[-2,1],[-4,0],[-3,1],[-3,1],[-1,1],[-2,1],[-2,2],[-1,1],[0,1],[1,0],[4,0],[-2,3],[-1,2],[0,1],[0,3],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[0,1],[1,1],[2,1],[2,2]],[[5309,1170],[2,0],[36,-9],[3,-1],[2,0],[6,-1],[1,0],[8,-2],[1,-1],[4,0],[3,0],[6,0],[1,0],[5,0],[3,0],[3,1],[1,0],[2,1],[6,1],[1,1],[1,0],[1,0],[3,0],[3,0],[11,1],[3,0],[6,-1],[3,0],[1,0],[3,0],[6,-1],[5,0],[4,1],[4,0],[1,0],[4,1],[5,1],[37,9],[1,0],[12,3],[4,1],[5,1],[9,3],[2,1],[1,0],[4,0],[1,0],[0,1],[1,0],[2,0],[13,1],[6,1],[2,0],[7,1],[21,1],[7,0],[2,0],[4,0],[2,1],[1,0],[7,0],[13,2],[12,1],[9,1],[1,0],[6,-2],[9,-4],[2,0],[2,0],[2,0],[2,0],[2,0],[3,0],[7,1],[6,2],[5,0],[3,1],[4,0],[7,1],[10,1],[8,1],[1,0],[1,1],[1,1],[1,0],[26,4],[1,0],[4,1],[2,0],[1,0],[2,0],[3,0],[2,0],[1,0],[2,0],[4,-1],[5,0],[2,0],[8,-1],[4,0],[1,-1],[3,0],[1,0],[1,0],[2,-1],[2,0],[2,-1],[1,0],[4,-1],[1,0],[3,-1],[2,-1],[2,0],[2,-1],[2,-1],[3,-1],[3,-1],[4,-1],[3,-1],[3,-1],[1,0],[2,-1],[2,-1],[1,0],[2,-1],[2,0],[2,-1],[5,-1],[3,0],[1,0],[0,-1],[2,0],[3,-1],[1,-1],[2,1],[1,0],[2,0],[2,0],[4,0],[2,0],[1,0],[3,0],[4,0],[6,0],[8,-1],[1,0],[1,0],[1,0],[5,-2],[1,0],[2,0],[0,-1],[5,-1],[6,-2],[3,-1],[10,-3],[6,-2],[13,-2],[2,-1],[6,-1],[2,-1],[2,0],[0,-1],[2,-1],[2,-1],[3,-1],[3,-2],[4,-1],[4,-1],[1,-1],[3,0],[5,-1],[1,0],[5,-1],[5,0],[6,-1],[4,-1],[4,0],[7,-1],[7,-1],[4,-1],[8,-1],[4,-1],[7,-1],[5,-1],[5,-1],[4,0],[2,0],[6,-1],[5,0],[6,0],[3,0],[6,-1],[5,-1],[5,0],[4,-1],[7,-1],[5,-1],[5,0],[3,-1],[4,0],[3,-1],[4,-1],[13,-2],[7,-1],[9,-2],[4,-1],[7,-2],[10,-2],[10,-2],[7,-1],[6,-2],[5,-1],[2,0],[2,-1],[1,0],[2,-1],[1,0],[29,-7]],[[4829,1059],[11,-2],[2,-1],[8,-2],[14,-5],[1,0],[3,-2],[5,-1],[1,-1],[2,-1],[5,-2],[9,-4],[3,-1],[3,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[3,-1],[4,-1],[4,-1],[6,-2],[2,0],[6,-2],[4,-1],[3,-2],[1,0],[3,-2],[2,-1],[2,0],[9,-2],[5,-2],[6,-2],[1,0],[1,0],[4,-2],[3,-2],[6,-3],[0,-1],[3,-1],[3,-2],[2,-2],[1,0],[2,-1],[0,-1],[5,-3],[2,-1],[1,-1],[5,-3],[2,-2],[3,-1],[3,-3],[1,-1],[2,-2],[2,-2],[1,-2],[3,-2],[2,-1],[3,-3],[2,-1],[2,-2],[2,-1],[8,-4],[2,-2],[6,-4],[3,-2],[1,0]],[[5050,958],[0,-1],[-2,-1],[-4,-1],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-3,-1],[-3,-1],[-1,0],[-1,0],[-1,-1],[-4,-2],[-21,-2],[-3,0],[-16,-1],[-16,-2],[-1,-1],[-1,-1],[-3,0],[-1,1],[-4,0],[-5,1],[-3,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-11,3],[-2,0],[-3,1],[-2,0],[-3,1],[-3,1],[0,1],[-5,1],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[-2,0],[0,-1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[-4,0],[-4,0],[-1,0],[-3,0],[-1,0],[-1,0],[1,-1],[-9,-1],[-2,-1],[-1,0],[-3,0],[-6,-2],[2,-2],[-3,0],[0,-1],[-2,1],[-1,0],[-1,0],[-4,-2],[-3,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[5,2],[4,2],[8,3],[3,3],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-3,0],[-1,0],[-1,0],[0,1],[1,2],[-2,1],[-2,0],[-2,1],[-3,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[-1,0],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-6,-2],[-3,0],[-2,1],[-6,3],[-1,1],[-3,2],[-5,2],[-5,3],[-5,3],[-2,1],[-3,1],[-2,1],[-3,2],[-2,1],[-4,2],[-5,2],[0,1],[0,1],[3,2],[-4,1],[-5,1],[-5,1],[-2,1],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-5,1],[-4,1],[-4,-4],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-2,-3],[-2,-2],[7,-1],[-1,-1],[-7,-3],[1,-1],[-2,-3],[-3,-2],[-2,-3],[-5,1],[-2,-2],[-1,-1],[-2,-2],[0,-1],[-2,-2],[-1,-1],[-1,-2],[-3,-2],[-1,-2]],[[4624,914],[-10,5],[-6,3],[-3,1],[-8,4],[-1,0],[-10,5],[-10,4],[-5,3],[-20,8],[-1,1],[-1,0],[-23,11],[-6,2],[-17,8],[-14,7],[-17,8],[-4,2],[-5,2],[-16,7],[-1,1],[-4,1],[-9,4],[-3,1],[-6,3],[-15,7],[-1,1],[-1,0],[-3,1],[-5,3],[-4,1],[-2,1],[-1,1],[-1,1],[-4,2],[-2,1],[-1,0],[0,1],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-25,14],[-23,13],[-9,-4],[-6,3],[-4,3],[-8,-4],[-7,4],[-4,2],[-7,3],[-3,2],[-3,1],[-4,2],[-4,2],[-3,1],[-3,1],[-1,1],[-2,0],[-1,1],[-3,1],[-3,1],[-19,8],[-8,3],[-5,2],[-10,4],[-8,4],[7,5]],[[3677,95],[1,0],[3,-1],[1,-1],[2,-1],[2,0],[1,-1],[2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-3,1],[-2,1],[-2,1],[-2,2],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[1,1],[-1,0],[-1,1],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[5,-3],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[2,-1]],[[3648,112],[1,-1],[1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,-1]],[[4164,135],[1,0],[2,0],[2,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-2,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,-2],[0,-1],[-1,-1],[-1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-3,0],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[-3,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-3,-1],[0,-1],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[2,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-1,0],[-7,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-6,-1],[-1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[2,1],[1,2],[1,1],[1,1],[4,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[3,0],[2,1],[1,1],[3,1],[2,0],[3,1],[1,1],[2,1],[0,1],[1,1],[1,1],[2,0],[2,1],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-3,-1],[-2,0],[-2,-1],[-2,-1],[0,-1],[-1,-1],[-2,-1],[-4,-1],[-2,-1],[-3,-1],[-3,-1],[-4,-1],[-1,-1],[-2,0],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-3,0],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[-3,1],[-2,0],[-2,0],[-4,0],[-2,0],[-4,0],[-3,0],[-3,0],[-3,-1],[-3,0],[-2,0],[-1,0],[-3,-1],[-5,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-5,-1],[-5,0],[-1,0],[-5,-1],[-5,0],[-4,-1],[-3,0],[-6,0],[-1,0],[-4,-1],[-2,0],[-3,0],[-1,0],[-1,0],[-4,-1],[-1,0],[-3,0],[-4,0],[-3,-1],[-1,0],[-4,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-5,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-2,0],[-2,0],[-1,1],[-3,0],[-2,0],[-3,0],[-1,0],[-1,1],[-1,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,1],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,2],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[2,0],[1,1],[1,0],[1,0],[2,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[2,0],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[2,-1],[1,0],[3,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[3,-1],[4,-2],[1,-1],[1,-1],[0,-1],[1,-2],[1,0],[1,0],[1,0],[1,1],[2,0],[2,0],[1,0],[1,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,-1],[1,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[2,0],[3,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[0,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-3,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-6,3],[1,1],[2,0],[1,0],[0,1],[-1,1],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-2,-1],[0,-1],[-3,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[1,1],[5,2],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[3,-1],[1,-1],[2,-1],[2,-1],[2,-1],[3,-1],[1,-1],[2,-1],[1,0],[1,0],[3,-1],[2,-1],[1,-1],[2,-1],[1,0],[1,0],[1,-2],[2,0],[3,-2],[3,-1],[2,0],[1,-1],[3,0],[2,-1],[2,0],[3,0],[3,0],[2,-1],[4,0],[3,0],[1,0],[2,1],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,1],[3,0],[2,0],[2,0],[3,0],[3,0],[3,-1],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[2,0],[3,0],[1,0],[2,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[3,1],[3,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[4,2],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,1],[2,0],[1,1],[2,0],[1,0],[2,1],[1,0],[2,0],[1,1],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,1],[2,1],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[1,1],[1,0],[1,0],[4,2],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[2,1],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[2,-1],[3,-1],[5,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[3,-1],[3,-1],[2,0],[2,-1],[2,0],[3,0],[4,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[3,0],[2,-1],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[2,0],[2,2],[2,1],[1,0],[2,1],[1,1],[1,1],[2,0],[1,1],[2,0],[1,1],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[3,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0]],[[4263,183],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,2],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[4,0],[2,0],[1,0],[5,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-4,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-3,-2],[-1,0],[0,-1],[1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,-2],[-1,0],[-2,-1],[-2,-1],[0,-1],[-4,-1],[0,-1],[-4,-2],[-2,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-4,-1],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0]],[[3625,416],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,0],[0,1],[1,0],[1,0]],[[4466,312],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-5,-2],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[0,1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-3,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-3,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-2,-1],[-3,-1],[0,-1],[-1,0],[-1,-1],[-3,-2],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,2],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,-3],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,1],[-1,0],[-3,1],[-2,0],[-1,0],[-2,1],[-2,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-4,0],[-3,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-4,0],[-2,0],[-3,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-5,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,-1],[1,0],[3,0],[2,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[0,1],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[3,0],[1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[-3,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[2,0],[2,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[-1,1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[-1,1],[1,0],[3,2],[-1,1],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-4,2],[-2,1],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[-1,1],[1,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[1,2],[1,2],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,2],[1,1],[0,1],[1,0],[0,1],[1,1],[2,1],[1,1],[2,0],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,2],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,2],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,2],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[-1,0],[0,1],[0,1],[0,2],[1,0],[0,3],[0,2],[1,2],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,3],[0,2],[0,1],[0,1],[0,1],[1,1],[0,2],[0,3],[1,0],[0,4],[0,4],[0,1],[0,4],[1,0],[0,3],[-1,0],[1,0],[0,1],[0,2],[1,1],[0,1],[0,2],[-1,0],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,2],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,0],[1,0],[1,0],[4,0],[2,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[1,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,3],[0,2],[0,5],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,2],[-1,1],[1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0]],[[3671,653],[1,0],[1,0],[1,0],[1,0],[0,1],[2,-1],[4,0],[3,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,-2],[2,-1],[2,-1],[1,0],[2,-2],[1,-1],[2,-1],[3,-1],[7,-3],[3,-1],[8,-3],[3,-1],[3,-2],[3,-1],[1,-1],[3,-1],[2,1],[10,10],[3,3],[5,4],[9,9],[4,4],[5,4],[9,9],[1,1],[6,-3],[3,-1],[10,-5],[3,-1],[7,-4],[11,-5],[2,0],[0,1],[5,3],[2,1],[4,3],[3,2],[3,2],[1,0],[0,1],[3,2],[1,0],[6,-3],[4,-2],[3,-1],[7,-2],[2,0],[6,-1],[6,-1],[3,0],[2,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,1],[4,2],[2,4],[4,5],[4,-1],[17,-5],[8,-3],[1,0],[2,-1],[5,-1],[1,0],[2,-1],[2,0],[1,-1],[8,-2],[10,-3],[11,-3],[2,-1],[17,-5],[8,-3],[7,-2],[7,-2],[15,-4],[3,0],[10,-3],[6,-2],[19,-6],[16,-5],[1,0],[8,-3],[11,-3],[9,-3],[44,-13],[11,-4],[10,-3],[3,-1],[8,-3],[8,-2],[2,-1],[8,-2],[1,-1],[11,-3],[9,-3],[12,-4],[1,0],[11,-3],[3,-1],[2,-1],[2,0],[3,0],[2,-1],[3,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[3,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[2,0],[2,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0]],[[5050,958],[5,-3],[1,-1],[2,-1],[8,-4],[2,-1],[3,-1],[7,-3],[1,-1],[4,-1],[6,-4],[4,-1],[3,-1],[6,-2],[9,-3],[8,-3],[2,-1]],[[5121,927],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[1,-2],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[4,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-2,1],[0,-1],[-1,-2],[1,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-4],[-1,-2],[0,-1],[0,-1],[-2,-3],[0,-2],[-3,1],[-1,-1],[-3,-4],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-4],[0,-1],[-1,-3],[-1,-3],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[2,-1],[3,0],[3,0],[1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-5],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-3],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-2,-2],[-1,-3],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-3],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-3,-2],[-2,0],[-3,-1],[-1,0],[-2,-1],[-3,-1],[-3,-1],[-5,-1],[-5,-2],[-8,-2],[-4,-2],[-3,-1],[-1,0],[-1,0],[-4,-1],[-1,0],[-3,-1],[-5,-2],[-1,0],[-5,-2],[-5,-1],[-3,-1],[-2,0],[-2,-1],[-2,-1],[-5,-1],[-2,-1],[-3,0],[-2,0],[-6,-2],[-6,-2],[-2,0],[-5,-2],[-3,-1],[-3,-1],[-1,0],[-3,-1],[-3,-1],[-3,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-3,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-7,-2],[-5,-2],[-1,0],[-2,-1],[-5,-3],[-7,-3],[-5,-2],[-8,-4],[-5,-2],[-5,-3],[0,1],[-1,0],[-2,3],[0,1],[1,0],[-1,1],[-3,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,-1],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[-2,-1],[-1,0],[-1,0],[-3,1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-1],[-2,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-3,2],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-3,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-3,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-3,-1],[-1,0],[-2,0],[-4,2],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,-1],[-1,-1],[1,-2],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-3,1],[-2,0],[-1,0],[-3,0],[-3,0],[0,-1],[2,-2],[1,0],[0,-1],[-2,-1],[-2,-2],[-1,0]],[[4407,697],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[2,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,1],[-4,2],[-3,1],[-2,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-3,1],[-3,0],[-3,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,1],[3,1],[2,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,-1],[-4,-1],[-4,0],[-3,0],[-3,0],[-1,0],[-1,0],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-3,0],[-3,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[3,1],[2,0],[2,1],[2,0],[3,1],[2,1],[1,0],[3,1],[2,0],[5,1],[2,0],[1,1],[2,1],[2,1],[2,0],[2,2],[1,0],[1,1],[1,1],[2,1],[4,3],[2,0],[2,2],[2,0],[1,0],[2,1],[4,0],[1,1],[1,0],[1,0],[2,0],[7,1],[2,0],[2,0],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[2,0],[2,0],[3,1],[1,0],[1,1],[3,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,1],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,3],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[4,1],[2,0],[7,1],[4,0],[4,1],[1,0],[1,0],[1,1],[2,1],[4,1],[4,1],[1,1],[4,0],[3,1],[6,1],[3,0],[7,2],[14,4],[6,1],[2,1],[5,2],[13,4],[13,4],[-3,2],[-1,0],[-2,0],[2,3],[1,0],[2,2],[0,1],[4,4],[3,3],[1,1],[1,1],[0,1],[1,0],[2,3],[3,2],[3,4],[2,2],[1,1],[1,1],[0,1],[1,0],[1,1],[2,3],[-5,2],[-1,1],[-3,1]],[[1808,466],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[1,-1],[0,-1]],[[1831,481],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[-1,0]],[[1828,511],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[0,-1],[0,-1],[-2,0],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1889,516],[1,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1]],[[1907,517],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,1],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2043,553],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0]],[[3088,725],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[-1,0],[0,-1]],[[3032,726],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[3025,729],[-1,0],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[3030,735],[1,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[3067,737],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0]],[[3083,749],[1,0],[1,0],[1,0],[1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,-1],[1,0],[1,-1],[1,0]],[[3061,753],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[3082,753],[-1,0],[0,1],[2,1],[1,-1],[-1,-1],[-1,0]],[[3063,754],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[3059,772],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[3023,761],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-2,0],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[3031,773],[-1,0],[0,1],[1,1],[1,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,0]],[[3003,767],[-1,0],[0,1],[-1,0],[1,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[3016,779],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[3026,791],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[1,1],[1,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[3402,849],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-3,1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2594,847],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[2662,863],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[2523,904],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[-2,1],[0,1],[1,0],[1,0]],[[2562,905],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0]],[[2557,910],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[-1,0]],[[2519,911],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[2566,911],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[2508,915],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[-1,0]],[[2536,916],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-2,2],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1]],[[2559,920],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[2551,948],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[3214,949],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,-1]],[[3700,954],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-2,0],[-3,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2556,959],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[2582,967],[1,0],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[2543,970],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0]],[[2572,973],[2,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0]],[[3279,974],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,-1],[-1,0]],[[3173,981],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1]],[[3267,994],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0]],[[3290,994],[1,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[2,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[-1,-1]],[[3175,1017],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0]],[[3226,1028],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[3231,1030],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0]],[[3235,1040],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0]],[[3220,1040],[-2,0],[-1,0],[-2,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[2,1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[-1,-1],[-1,0],[-1,0]],[[3268,1048],[0,-1],[-1,-1],[-1,0],[-1,1],[1,1],[1,0],[1,0]],[[3249,1049],[1,0],[-1,0]],[[3218,1049],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,-1],[1,0]],[[3220,1053],[1,0],[0,-2],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0]],[[3253,1052],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[3212,1053],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[-1,0]],[[3291,1059],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[-1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1]],[[3405,1060],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,-1]],[[3211,1060],[-1,-1],[-1,0],[-1,0],[-2,1],[1,0],[0,1],[1,0],[1,0],[2,-1]],[[3276,1055],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[3277,1063],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[3213,1061],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[3260,1063],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1]],[[3209,1065],[1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0]],[[3244,1063],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1]],[[3261,1065],[-1,0],[-1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0]],[[3258,1066],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1]],[[3284,1067],[1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0]],[[3076,1066],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1]],[[3222,1072],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[1,0]],[[3284,1072],[1,0],[1,0],[3,-2],[2,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-3,2],[0,1],[1,0],[1,0]],[[3340,1073],[1,0],[1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[3322,1075],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[4,0]],[[3245,1070],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[2,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0]],[[3250,1078],[-1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0]],[[3257,1077],[-1,-1],[-1,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0]],[[3323,1083],[-1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0]],[[3222,1084],[-1,0],[0,1],[1,0],[0,-1]],[[3322,1084],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[3219,1087],[-1,0],[1,0]],[[3313,1088],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0]],[[3342,1090],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,1],[1,0]],[[3253,1096],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,-1],[-1,0],[1,-1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-3,1],[-2,1],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[1,1],[2,1],[1,0],[1,0]],[[3223,1092],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[2857,1109],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[3247,1133],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1]],[[2956,1142],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[3,0]],[[2952,1142],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[3253,1152],[0,1],[-1,0],[1,1],[1,0],[0,-1],[0,-1],[-1,0]],[[2964,1158],[1,0],[1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[2987,1163],[1,0],[2,-1],[0,-1],[-1,0],[-5,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[2964,1166],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[2999,1170],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[3010,1172],[1,0],[0,-1],[1,0],[2,-1],[-1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0]],[[2971,1174],[-1,-1],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[2974,1176],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[1,0]],[[2973,1181],[1,0],[0,-1],[0,-1],[-2,-1],[-2,0],[-1,1],[1,0],[1,1],[1,0],[0,1],[1,0]],[[2978,1184],[1,0],[1,0],[1,0],[1,0],[1,0],[3,1],[0,1],[1,0],[1,0],[1,0],[1,0],[3,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[2971,1212],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[1,0]],[[2954,1213],[-3,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[-1,-1],[-1,0]],[[2975,1230],[-1,0],[-1,1],[1,0],[2,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2991,1240],[-1,-1],[-1,0],[-1,1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[2,1],[1,0],[0,-1],[1,0]],[[2255,1241],[-1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0]],[[2616,1241],[-1,-1],[-1,0],[-2,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[2,-1]],[[2984,1242],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0]],[[3218,1233],[-1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[3237,1246],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[3002,1254],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0]],[[2975,1267],[2,0],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1]],[[2529,1273],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[3,-2],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[3,-2],[2,0],[0,-1],[5,-2],[2,-1],[1,0],[1,0],[0,-1],[1,0],[4,0],[1,0],[0,1],[1,0],[-1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[5,-3],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[4,-2],[1,0],[2,-1],[2,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[3,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[0,-2],[1,0],[-1,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-3],[0,-3],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[3,-2],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-2],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[4,-2],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[3,-1],[0,-1],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[3,-1],[2,-1],[2,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-3,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-4,2],[-1,0],[-2,1],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-2,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[1,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,0],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[2989,1273],[-2,-1],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1]],[[3671,653],[1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,3],[0,1],[1,0],[0,1],[0,2],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[2,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,3],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[2,1],[-1,1],[2,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,1],[2,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[3,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[4,0],[0,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,1],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,0],[4,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[3,0],[2,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[3,1],[1,1],[1,0],[1,0],[2,2],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[4,2],[2,0],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[3,0],[1,0],[1,1],[3,0],[-1,1],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-3,1],[0,1],[-4,1],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-3,2],[-1,1],[-3,1],[-4,2],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-4,2],[-4,2],[-4,2],[-3,2],[-1,0],[-4,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[0,1],[-5,2],[-3,2],[-1,0],[-1,1],[-4,1],[-4,3],[-3,1],[-1,1],[-1,0],[-1,0],[0,1],[-6,2],[-6,3],[0,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[0,1],[-1,1],[-1,0],[-2,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,-1],[-3,0],[-1,0],[-3,0],[0,1],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-6,0],[0,1],[-1,0],[-3,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-3,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-5,2],[-3,2],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-3,1],[0,1],[-1,0],[-3,2],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[-1,1],[0,1],[-2,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-3,1],[-1,1],[0,1],[1,0],[1,1],[-2,1],[-3,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[-3,2],[-1,0],[-1,1],[-2,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-3,2],[-2,1],[-3,2],[-3,1],[0,1],[-4,2],[-1,0],[-1,0],[-4,2],[-1,1],[-6,2],[-2,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-4,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-3,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,-1],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,1],[2,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-3,1],[0,1],[-1,0],[0,1],[-2,0],[-1,-1],[-1,0],[-3,0],[0,1],[2,1],[1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,2],[-1,0],[1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-2,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[-1,1],[1,0],[1,1],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-3,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-3,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[2,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,2],[-1,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,0],[-1,1],[-2,1],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-4,2],[-3,2],[-1,0],[-5,3],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-3,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[0,1],[-2,1],[-1,0],[0,1],[0,1],[1,0],[0,2],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[4,0],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-5,-3],[-1,0],[-1,0],[-1,0],[0,2],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[2,0],[1,1],[2,1],[1,0],[1,1],[2,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,-2],[-2,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,1],[-3,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-3,0],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[2,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,1],[-2,1],[1,0],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[1,0],[-1,0],[2,0],[1,0],[2,0],[2,1],[4,0],[2,0],[3,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[3,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[4,0],[1,0],[12,1],[2,-1],[1,0],[1,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[3,-3],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[2,-1],[2,-2],[1,1],[2,0],[9,4],[6,3],[6,2],[4,3],[1,0],[2,1],[1,2],[1,1],[1,1],[1,1],[0,1],[0,2],[1,1],[4,2],[1,1],[0,1],[0,1],[2,0],[3,0],[2,0],[3,0],[3,0],[2,0],[3,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,1],[3,1],[2,1],[2,1],[1,1],[2,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[2,1],[3,0],[4,1],[3,0],[1,0],[2,1],[2,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[1,0],[2,1],[2,0],[2,0],[2,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[3,0],[2,0],[2,0],[2,-1],[1,0],[1,0],[1,0],[2,-1],[2,0],[2,-1],[1,-1],[2,0],[1,0],[3,0],[3,0],[4,0],[4,1],[3,0],[3,0],[3,0],[2,0],[2,0],[1,0],[1,1],[2,0],[1,0],[2,-1],[2,0],[1,0],[3,0],[1,0],[-1,1],[1,1],[0,1],[0,2],[0,1],[0,1],[2,0],[3,0],[1,0],[2,0],[3,0],[4,0],[3,0],[4,0],[4,0],[6,0],[5,-1],[4,0],[4,0],[3,0],[3,0],[2,0],[3,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[2,-1],[2,0],[3,0],[3,-1],[4,-1],[3,0],[2,0],[25,-4],[20,-3],[1,-1],[1,0],[1,0],[3,-1],[3,0],[1,0],[2,0],[2,0],[8,0],[14,0],[9,0]],[[5486,1628],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[2,-2],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[2,0],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[3,1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,1],[2,0],[2,1],[1,1],[1,0],[1,0],[2,1],[3,0],[2,0],[1,0],[2,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,1],[2,0],[1,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[3,1],[2,0],[1,1],[1,0],[1,0],[1,0],[3,0],[2,0],[4,0],[4,0],[2,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[3,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[2,1],[5,1],[3,1],[2,0],[2,1],[2,1],[2,2],[1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-3,1],[-4,2],[-6,1],[-2,1],[-1,1],[0,1],[2,2],[1,2],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,-2],[10,-1],[10,-2],[9,-2],[7,-2],[7,-3],[9,-3],[2,-1],[3,-2],[-2,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,1],[1,0],[2,0],[2,1],[3,-2],[3,-2],[1,-1]],[[5749,1637],[8,-4],[2,-2],[1,0],[4,-3],[5,-4],[2,-1],[1,0],[0,-1],[6,1],[12,0],[7,1],[1,0],[7,0],[7,1],[11,0],[1,0],[1,0],[5,-2],[4,-1],[2,-1],[3,-1],[5,-2],[5,-2],[5,-2],[5,-2],[3,-1],[1,0],[5,-2],[5,-2],[4,-2],[4,-1],[1,0],[4,-1],[3,-1],[7,-2],[4,-1],[6,-1],[4,-1],[7,-2],[5,-1],[4,-1],[2,0],[1,-1],[1,0],[4,-1],[6,-1],[5,-2],[5,-1],[2,-1],[8,-2],[7,-1],[4,-1],[1,-1],[7,-2],[4,-1],[3,-1],[4,-1],[-1,-2],[-2,-4],[-3,-4],[-1,-3],[-2,-3],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-2,-4],[-1,-1],[-1,-2],[-2,-3],[0,-1],[-1,-3],[-2,-2],[-2,-5],[-1,-1],[0,-2],[-3,-4],[-1,-2],[-2,-4],[0,-1],[-2,-4],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-3,-2],[-1,0],[-2,-1],[-3,-1],[-3,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-6,-2],[-4,-2],[-3,-1],[-1,-1],[-3,-1],[-3,-1],[-1,0],[-11,-4],[3,-2],[2,-1],[4,-3],[3,-2],[1,1],[1,0],[4,-3],[1,0],[3,-2],[1,0],[1,-1],[1,-1],[1,0],[2,-2],[1,0],[2,-1],[1,-1],[3,1],[6,-2],[1,0],[1,0],[1,0],[3,-1],[1,-1],[1,0],[2,0],[1,1],[2,-2],[1,0],[7,-5],[2,1],[11,3],[2,1],[4,-2],[4,-1],[5,-1],[-1,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,-3],[2,-2],[0,-1],[1,0],[2,-3],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,1],[0,1],[1,0],[2,0],[2,0],[1,-1],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,-1],[5,-1],[4,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[0,1],[-1,1],[-1,0],[1,0],[0,1],[1,0],[1,1],[2,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,1],[2,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[1,-2],[1,-2],[0,-1],[4,-10],[3,-9],[0,-1],[-1,-2],[0,-1],[-1,-1],[-2,-2],[-2,-1],[-3,-2],[-2,-2],[-1,-2],[0,1],[0,-1],[-1,0],[-2,-2],[-1,-1],[-1,-1],[-1,-1]],[[6266,1304],[-2,-1],[-5,-2],[-7,-2],[-3,-2],[-4,-1],[-2,-2],[-3,-1],[-3,-1],[-7,-3],[-4,-2],[-1,0],[-4,-3],[-4,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-3,-3],[-3,-2],[-2,-1],[-1,-1],[-3,-1],[-4,-2],[-4,0],[-3,0],[0,-1],[-3,0],[-2,1],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,1],[-2,1],[-2,2],[-1,2],[0,1],[0,2],[0,3],[0,1],[1,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,2],[-2,2],[-3,2],[-2,1],[-3,1],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-3,-1],[-2,0],[-3,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-3,-1],[-2,-1],[-3,-1],[-1,0],[-1,-1],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,-1],[-3,2],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-2,0],[-2,0],[-3,4],[-2,-1],[-2,0],[-1,-1],[-2,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[8,3],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[-2,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-3,1],[-3,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-4,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,1],[1,2],[5,-1],[0,1],[1,1],[1,1],[1,1],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,2],[1,0],[0,1],[0,1],[-2,0],[-2,0],[-2,1],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,-5],[-3,0],[-2,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,0],[-2,1],[2,2],[3,2],[-4,1],[-3,1],[-1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[-1,0],[-3,1],[-3,2],[-1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-2,1],[-4,1],[-2,1],[-1,0],[-1,0],[0,-1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-8,-3],[-2,1],[-6,2],[-2,1],[-4,1],[-2,1],[-1,1],[-1,0],[-3,2],[-2,1],[-2,1],[-2,1],[-3,1],[-3,2],[-2,0],[-9,-1],[-5,0],[-3,0],[-3,-1],[-2,0],[-4,0],[-5,0],[-4,0],[-3,0],[-7,-1],[-4,0],[-4,0],[-2,0],[-3,-1],[-5,0],[-1,0],[-4,0],[-4,0],[-1,0],[-4,0],[-7,-1],[-3,0],[-7,0],[-8,-1],[-7,0],[-1,0],[-3,0],[-5,1],[-1,0],[-5,0],[-6,-1],[-6,0],[-1,0],[-8,0],[-8,0],[-8,0],[-3,0],[-10,0],[-8,0],[-9,-1],[-8,0],[-4,0],[-2,0],[-2,0],[-15,0],[-4,0],[-10,-1],[-8,0],[-5,0],[-1,0],[-3,0],[3,0],[0,-4],[0,-4],[0,-9],[1,-6],[0,-2],[0,-4],[0,-6],[0,-1],[-10,0],[-4,1],[-3,0],[-6,0],[-14,1],[-20,1],[-1,0],[-13,0],[-5,1],[-8,0],[-14,1],[-1,0],[-5,0],[-10,0],[-3,1],[-13,0],[-4,0],[-4,1],[-6,0],[-6,0],[-49,2],[-7,0],[-13,0]],[[4577,1612],[1,0],[1,0],[2,0],[7,-3],[3,0],[10,0],[6,0],[1,0],[1,0],[3,0],[2,1],[10,0],[5,1],[0,-1],[2,1],[2,0],[4,1],[3,1],[3,1],[4,0],[3,1],[4,0],[4,1],[4,0],[4,1],[1,0],[2,0],[4,0],[4,0],[3,0],[4,1],[3,0],[4,1],[1,0],[2,0],[2,0],[4,1],[3,0],[4,1],[5,1],[4,0],[2,1],[3,0],[4,1],[6,0],[3,1],[1,0],[4,1],[5,0],[5,1],[5,1],[3,0],[2,0],[1,1],[4,0],[2,0],[3,1],[3,0],[5,1],[4,0],[4,0],[5,1],[5,0],[6,1],[3,1],[4,0],[5,2],[4,1],[4,1],[4,1],[5,1],[3,1],[1,0],[4,1],[1,0],[3,1],[4,1],[2,1],[2,1],[1,1],[1,1],[2,1],[1,0],[2,1],[1,0],[1,1],[2,1],[2,1],[2,0],[1,0],[1,1],[2,1],[2,0],[2,1],[3,1],[2,0],[4,1],[3,1],[2,0],[1,0],[1,0],[2,1],[3,0],[3,0],[4,1],[3,0],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[3,-4],[13,-14],[0,-1],[3,-3],[5,-3],[1,-2],[2,-1],[2,-2],[2,-2],[1,-1],[1,0],[1,-1],[1,-2],[3,-2],[0,-1],[1,0],[2,-1],[3,-2],[2,-1],[3,-2],[3,-1],[2,-2],[2,-1],[3,-2],[3,-1],[1,-1],[2,-1],[3,-2],[2,-1],[2,-1],[4,-3],[1,0],[4,-3],[1,0],[1,-1],[5,-3],[5,-4],[5,-3],[5,-3],[2,-2],[3,-3],[8,-5],[-17,-17],[-3,-3],[-2,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[7,-2],[6,-1],[5,-1],[8,-1],[5,-1],[4,-1],[8,-1],[8,-2],[3,0],[2,-1],[3,0],[1,0],[4,-1],[1,0],[2,0],[9,-1],[6,0],[7,-1],[5,0],[1,0],[7,-1],[1,0],[3,0],[4,0],[4,-1],[1,1],[1,0],[0,1],[0,2],[0,1],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[2,0],[0,1],[-1,1],[0,1],[-2,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[3,0],[1,0],[1,0],[1,0],[2,1],[0,1],[1,0],[1,0],[2,0],[-1,1],[1,1],[2,0],[1,0],[1,1],[2,-1],[2,1],[1,0],[1,1],[2,0],[1,1],[1,2],[2,1],[2,0],[1,0],[2,1],[1,1],[0,1],[-4,1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[0,2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,2],[-2,1],[-1,1],[0,1],[0,1],[-2,2],[-1,1],[2,0],[1,0],[1,0],[6,-2],[1,-1],[3,-1],[3,-1],[2,-1],[1,-1],[5,-2],[4,-1],[9,-4],[3,-2],[1,0],[5,-2],[1,-1],[7,-3],[7,-3],[7,-4],[4,-2],[2,-1],[2,-1],[1,-1],[2,-1],[2,-1],[4,-1],[0,-1],[1,0],[5,-2],[2,-1],[1,-1],[5,-2],[7,-2],[7,-2],[9,-4],[1,0],[6,-2],[1,0],[0,-1],[1,0],[2,0],[3,-2],[1,0],[3,-1],[4,-1],[10,-4],[3,-1],[6,-2],[4,-2],[9,-3],[2,0],[5,0],[3,-1],[5,0],[4,0],[3,-1],[2,0],[6,0],[2,-1],[2,0],[1,0],[1,0],[1,0],[3,0],[3,0],[2,0],[1,1],[5,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[4,0],[1,0],[3,0],[4,0],[4,0],[3,0],[5,1],[4,0],[4,0],[5,0],[4,0],[5,0],[1,0],[4,0],[4,1],[4,0],[4,0],[1,0],[1,-1],[3,-1],[11,-5],[1,0],[7,-3],[1,-1],[4,-1],[1,-1],[6,-2],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,4],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,2],[0,2],[0,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-3,3],[-1,1],[-1,0],[0,1],[-6,4],[-3,3],[-2,1],[-2,2],[-4,3],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-3,1],[-1,1],[-3,1],[-2,1],[0,1],[-2,1],[-3,1],[-1,1],[-2,1],[-2,1],[-2,2],[-5,3],[-5,2],[-1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[2,2],[1,1],[1,1],[2,1],[0,1],[3,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,2],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[2,0],[1,1],[3,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[2,0],[2,0],[2,-1]],[[5238,890],[1,-2],[3,-1],[2,-2],[5,-2],[4,-3],[2,-1],[1,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[3,-2],[1,0],[1,-1],[2,-2],[4,-1],[4,-3],[3,-2],[2,-1],[2,0],[1,-1],[5,-2],[4,-3],[5,-2],[3,-1],[1,-1],[1,0],[5,-2],[7,-3],[7,-4],[4,-1],[1,-1],[2,-1],[4,-2],[4,-3],[3,-2],[2,-1],[1,0],[3,-2],[3,-3],[4,-3],[2,0],[4,-2],[1,0],[4,-2],[3,0],[2,-1],[2,0],[3,-1],[4,-1],[6,-1],[2,-1],[1,0],[8,-3],[8,-3],[2,0],[6,-3],[3,-1],[2,-2],[3,-1],[0,-1],[5,-3],[4,-2],[5,-3],[8,-4],[5,-2],[11,-5],[4,-2],[6,-3],[3,-2],[7,-4],[3,-2],[6,-3],[1,0],[8,-5],[6,-3],[7,-3],[5,-2],[7,-3],[4,-1],[2,-2],[3,-1],[4,-2],[4,-2],[7,-4],[2,0],[2,-1],[2,-1],[3,-1],[4,-1],[13,-6],[8,-4],[8,-3],[4,-2],[4,-2],[3,-1],[1,-1],[2,0],[1,-1],[4,-1],[3,-1],[2,-1],[1,0],[5,-1],[6,-2],[5,-1],[4,-1],[4,-1],[3,-1],[2,-1]],[[5643,698],[-2,-1],[0,-1],[-4,-2],[-2,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,-2],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-7,-4],[-6,-3],[-1,0],[-1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-5,-3],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,-3],[0,-1],[1,0],[1,1],[1,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[5,-3],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,-2],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0]],[[5121,927],[4,-1],[5,-2],[3,-1],[2,0],[1,0],[3,-1],[2,0],[2,0],[2,0],[3,0],[2,0],[3,0],[3,0],[2,-1],[1,-1],[2,-1],[8,-3],[2,-1],[4,-1],[2,-1],[3,-1],[2,-1],[2,-1],[4,-1],[6,-2],[6,-2],[1,0],[2,-1],[3,-1],[3,0],[1,-1],[2,-1],[3,-1],[1,0],[1,-1],[2,-2],[2,-1],[2,-1],[2,-2],[2,0],[3,-2],[3,-1],[5,0]],[[6266,1304],[4,-3],[2,-2],[2,-1],[4,-3],[3,-3],[2,-2],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[3,-2],[3,-3],[1,-1],[4,-3],[15,-10],[6,-3],[6,-4],[8,-4],[1,0]],[[6337,1254],[-12,-6],[3,-1],[1,0],[0,-1],[2,-1],[2,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-4,-2],[-1,0],[-1,-1],[-4,-2],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,-4],[-2,-2],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[5,-2],[1,0],[2,0],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-2],[1,0],[2,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[3,-2],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-7,-4]],[[5309,1170],[-3,1],[-5,2],[-1,0],[-5,2],[-4,2],[-6,2],[-4,2],[-2,1],[-8,2],[-7,3],[-4,1],[-5,2],[-3,1],[-2,1],[-1,0],[-5,-1],[-10,-1],[-4,-1],[-9,-4],[-11,-5],[-5,-2],[-9,-4],[-7,-2],[-4,-2],[-7,-2],[-3,-1],[-8,-5],[-3,-1],[-1,-1],[-2,0],[-3,-1],[-9,-1],[-4,-1],[-2,0],[-6,-2],[-7,-1],[-3,0],[0,-1],[0,1],[-2,-1],[-2,0],[-1,1],[-4,1]],[[5816,661],[1,0],[1,-1],[1,0],[2,-1],[-1,0],[-3,0],[-1,0],[-1,1],[1,1]],[[5935,867],[2,0],[0,-1],[1,0],[1,0],[5,-2],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,2],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[2,0]],[[5886,899],[1,0],[1,-1],[1,0],[3,-1],[1,0],[1,-1],[1,0],[2,-1],[3,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[4,-2],[1,0],[1,-1],[1,-1],[1,0],[4,-2],[1,0],[0,-1],[3,-1],[0,-1],[4,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[1,-1],[5,-2],[4,-2],[1,0],[1,-1],[4,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-7,4],[-5,2],[-7,4],[-1,0],[-1,0],[-4,2],[-1,1],[-1,0],[-3,1],[-1,0],[-2,2],[-4,2],[-1,0],[-4,2],[-2,0],[-7,4],[-1,0],[0,1],[-6,3],[-6,3],[0,1],[1,0]],[[5897,923],[0,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,-1],[2,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[3,-2],[5,-2],[0,-1],[4,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[3,-2],[1,-1],[2,-1],[1,-1],[1,-1],[3,-1],[2,-2],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[4,-2],[1,0],[3,-2],[2,-1],[1,0],[3,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[4,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,-1],[-2,0],[0,-1],[1,0],[-3,-2],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,2],[-2,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,2],[-5,2],[-9,5],[-1,1],[-1,0],[-1,0],[0,1],[-3,1],[-3,1],[-4,3],[-1,0],[-2,1],[-1,1],[-1,0],[-5,2],[-2,1],[-6,3],[-1,0],[-3,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-3,1],[-1,0],[-3,1],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-3,-1],[-2,-1],[-1,0],[-3,-2],[1,0],[1,-1],[2,0],[0,-1],[1,0],[3,-1],[0,-1],[1,0],[3,-2],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[3,-2],[1,0],[5,-3],[5,-2],[4,-2],[1,0],[3,-2],[2,-1],[2,-1],[0,-1],[1,0],[5,-2],[2,-1],[1,-1],[2,-1],[0,-1],[2,0],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[-1,0],[1,-1],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[5,-2],[0,-1],[5,-3],[1,0],[2,-1],[2,-1],[1,-1],[1,0],[-1,0],[0,-1],[2,-1],[-1,0],[1,-1],[1,0],[3,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,0],[1,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[4,-2],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[4,-2],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[1,0],[1,0],[2,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,-1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-2],[1,0],[2,-1],[1,-1],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[2,-1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-3,-2],[-2,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,-1],[-1,0],[-3,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[2,1],[0,1],[2,0],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[-1,-1],[0,-1],[-2,-1],[-6,-3],[-1,0],[-1,0],[-1,1],[-3,2],[0,1],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-4,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[3,2],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[-2,1],[-3,2],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-12,-6]],[[5238,890],[-1,2],[-3,2],[-1,1],[-3,2],[-1,1],[-3,1],[-4,3],[-4,2],[-5,2],[-3,2],[-4,3],[-1,1],[-5,3],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[3,-1],[1,-1],[2,-1],[2,0],[2,-1],[2,-1],[3,-1],[4,-2],[3,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,2],[3,1],[1,0],[2,1],[4,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[2,1],[3,1],[1,0],[1,1],[1,2],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[3,1],[3,0],[1,1],[2,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[2,-1],[4,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,2],[2,2],[2,1],[2,2],[3,2],[2,1],[1,0],[4,-1],[2,-1],[4,-1],[2,-1],[4,-1],[4,-1],[2,-1],[2,-1],[3,-2],[1,0],[3,-1],[1,-2],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[2,1],[2,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,4],[0,2],[0,1],[0,3],[0,1],[0,1],[1,1],[2,-1],[4,-1],[9,-1],[6,-2],[8,1],[5,1],[4,0],[2,0],[2,1],[1,0],[1,0],[3,0],[1,0],[2,1],[1,0],[3,0],[3,0],[1,0],[2,1],[3,0],[3,0],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-2],[2,-2],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[2,1],[8,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[2,0],[2,0],[2,1],[1,0],[1,1],[2,0],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,3],[0,1],[0,1],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-6,1],[5,3],[1,0],[-2,5],[-1,1],[5,1],[1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[-2,2],[1,0],[-1,1],[1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[1,0],[2,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[9,3],[4,-1],[8,-2],[2,0],[2,0],[1,-1],[3,0],[2,-1],[2,0],[2,-1],[2,-1],[2,0],[3,-2],[6,-3],[8,-3],[4,-2],[4,-2],[3,0],[7,-3],[1,0]],[[5670,8468],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[2,-3],[1,-1],[1,-2],[2,-2],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[3,-2],[2,-2],[1,-1],[2,-1],[1,-1],[1,-1],[-3,-1],[-3,-2],[-5,-2],[-6,-3],[-2,-1],[-3,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,-2],[1,-1],[1,-2],[0,-2],[1,-1],[-1,-1],[-1,-1],[-2,-1],[-4,-1],[-3,-1],[-3,-1],[-7,-3],[-1,0],[-1,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[1,1],[4,2],[1,2],[1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,2],[-8,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1]],[[5436,8375],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[1,1],[1,1],[0,1],[0,1],[0,2],[-4,1],[-1,0],[-1,0],[-2,1],[-1,1],[-6,-1],[-3,-1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-3,0],[0,1],[1,0],[-1,0],[-2,1],[-1,1],[-1,-1],[-3,1],[-2,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[-2,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-5,1],[-2,0],[-3,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-2,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[-3,1],[-2,-1],[1,-2],[-1,0],[-1,0],[-1,0],[-1,1],[-6,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-2,0],[0,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-3,2],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-3,0]],[[5263,8386],[-1,1],[0,1],[-1,1],[-1,1],[3,0],[1,1],[2,0],[2,0],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[3,2],[-3,0],[0,1],[-1,1],[1,1],[0,1],[3,1],[4,0],[0,1],[-4,2],[1,0],[6,1],[1,0],[3,2],[2,1],[2,2],[1,0],[0,1],[-1,0],[1,1],[2,0],[0,1],[0,2],[0,2],[-2,0],[-3,1],[-2,1],[-1,0],[1,1],[-2,1],[0,1],[-3,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[-2,1],[-3,-1],[0,1],[-3,1],[-2,2],[-1,1],[-1,0],[-1,2],[-2,1],[-3,-2],[-4,-2],[-10,1],[-1,0],[-8,0],[-2,0],[-2,0],[-7,1],[-5,0],[1,1],[-3,2],[-4,1],[-2,0],[-3,8],[-3,1],[-6,-1],[-10,-3],[-3,0],[-5,-1],[0,3],[1,0],[-2,3],[-2,-1],[-3,3],[0,1],[0,1],[1,2],[-2,0],[-1,1],[1,0],[-2,1],[2,0],[-1,1],[-1,1],[-3,1],[1,1],[-1,0],[-1,1],[-1,0],[-3,1],[-1,-1],[-3,1],[1,1],[-1,0],[-2,1],[-2,0],[-1,0],[1,1],[1,1],[2,1],[-1,0],[-2,1],[0,-1],[0,-1],[-8,0],[-1,1],[0,1],[-1,0],[0,1],[-2,1],[1,1],[1,-1],[3,2],[2,0],[2,1],[-2,2],[1,0],[3,1],[1,1],[2,-2],[2,1],[-1,0],[2,0],[0,2],[-2,1],[3,1],[-1,1],[1,1],[0,1],[-1,1],[1,1],[-3,0],[-1,0],[-1,1],[-1,2],[-1,1],[-1,0],[-1,1],[1,1],[0,1],[1,1],[1,1],[2,1],[-1,0],[0,1],[-3,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[4,0],[0,1],[1,1],[-2,1],[1,1],[3,2],[1,0],[-7,2],[-5,1],[1,1],[-3,1],[0,1],[-9,0],[0,1],[-1,1],[1,1],[1,2],[2,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[-1,0],[1,1],[1,0],[-1,0],[0,1],[-1,0],[1,1],[3,0],[2,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[2,0],[1,1],[2,1],[1,0],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[3,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[5177,8550],[-2,-2],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[3,-1],[1,-1],[2,0],[1,0],[1,0],[3,0],[3,1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,2],[1,0],[3,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[3,0],[4,-1],[3,0],[1,0],[1,1],[1,0],[0,1],[1,2],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[4,1],[3,0],[2,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[2,1],[2,2],[1,1],[2,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[2,0],[4,0],[5,1],[2,-1],[4,0],[5,-1],[5,-1],[4,-1],[3,-1],[2,-1],[2,0],[1,-1],[2,-1],[3,-1],[2,0],[1,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-2],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[2,-3],[2,-2],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[3,2],[3,1],[1,1],[1,1],[1,1],[1,1],[2,0],[1,1],[1,0],[1,0],[2,0],[3,0],[6,-1],[4,-1],[3,-1],[2,0],[1,0],[2,-2],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,1],[3,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[3,-1],[3,0],[6,-1],[6,-1],[3,0],[2,0],[3,0],[4,-1],[1,0],[3,0],[2,0],[1,0],[4,-1],[2,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,2],[-1,2],[1,1],[0,1],[2,1],[3,1],[3,1],[1,1],[1,0],[1,0],[3,0],[2,-1],[6,-1],[2,0],[6,-1],[3,-1],[4,-1],[1,-1],[2,-1],[3,-2],[4,-3],[2,-2],[3,-2],[2,-1],[2,-1],[2,-1],[1,-2],[1,0],[2,-2],[1,-1],[1,-1],[2,0],[4,-1],[2,-1],[2,0],[2,-1],[2,0],[2,0],[2,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,1],[3,0],[4,0],[3,0],[1,0],[3,0],[5,-2],[5,-1],[4,0],[2,-1],[1,0],[5,1],[3,0],[2,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-2,-1],[-4,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[3,0],[4,0],[4,0],[3,0],[3,0],[5,1],[4,2],[5,2],[5,1],[7,2],[4,0],[3,0],[2,0],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[3,0],[4,-1],[2,-1],[2,-1],[1,0],[2,-1],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[4,1],[3,0],[3,-1],[3,0],[4,-1],[3,0],[3,-2],[3,-1],[2,-1],[1,-1]],[[5947,8537],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-2,0],[-2,-1],[-1,0],[1,-4],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-3,0],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-3,-2],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,-1],[1,0],[1,0],[2,-1],[3,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[3,0],[2,0],[3,0],[3,0],[1,1],[2,0],[2,0],[3,1],[3,0],[3,0],[1,1],[2,-1],[6,0],[3,0],[2,0],[3,0],[1,-1],[1,0],[6,-2],[4,-1],[2,-1],[2,-1],[1,-1],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,1],[4,1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[-1,-2],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,1],[4,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0]],[[6096,8400],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[3,-1],[2,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[2,0],[2,1],[2,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-2,1],[-3,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-2,-1],[-2,-1],[1,-1],[1,0],[-1,-2],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,2],[1,1],[0,1],[0,1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-6,-3],[3,-1],[3,-2],[1,0],[0,-1],[2,-1],[2,-1],[2,0],[3,-1],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-2,-1],[-3,-2],[-3,-2],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[2,-1],[1,0],[4,0],[4,1],[3,0],[2,0],[3,0],[4,1],[3,0],[3,0],[2,0],[2,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-3,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-3,-2],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[-3,-1],[-1,-1],[-2,-1],[-4,-2],[-1,0],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,0],[-3,0],[-2,1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[5818,8203],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,0],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,-2],[2,-1],[0,-2],[-2,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,1],[-1,2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-3,-1],[-5,-1],[-3,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[5630,8173],[-3,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-3,1],[-2,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[1,0],[1,1],[2,-1],[2,0],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[1,1],[1,0],[2,2],[1,0],[0,1],[0,2],[0,1],[2,0],[-1,2],[-1,0],[-1,1],[-2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,1],[0,1],[0,1],[0,1],[2,1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[-2,2],[1,1],[-1,1],[1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,1],[0,1],[-1,1],[2,1],[1,2],[1,0],[3,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-2,-1],[1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[-2,0],[-2,2],[1,0]],[[5670,8468],[5,2],[4,1],[2,1],[2,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[5,3],[4,4],[0,1],[3,3],[0,1],[1,1],[0,1],[0,1],[-1,1],[-2,3],[-1,1],[-3,2],[-2,2],[-2,1],[-2,1],[-2,2],[-2,3],[-1,1],[-1,1],[0,2],[0,2],[1,1],[1,1],[2,2],[1,1],[1,0],[1,0],[3,0],[4,-1],[3,0],[2,0],[2,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[3,-1],[3,-3],[1,0],[-1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[2,1],[2,-1],[1,0],[2,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[3,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,0],[3,-1],[2,0],[1,0],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,2],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[2,0]],[[7640,7811],[0,-3],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-4,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[0,1],[-2,0],[0,-1],[-4,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[2,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0]],[[6914,8126],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-2,0]],[[6832,8128],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-3,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[6859,8128],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[2,0]],[[6914,8126],[0,-1],[-1,0],[-2,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[2,0],[0,-1],[0,-1],[1,0],[3,0]],[[6806,8128],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0]],[[6171,8129],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[6812,8135],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[2,0]],[[6842,8136],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0]],[[6809,8151],[0,-1],[-2,0],[0,1],[1,0],[1,0]],[[6226,8160],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[0,1],[2,0],[2,0],[0,1],[-1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,-1],[-1,-1]],[[6379,8162],[1,0],[1,0],[0,-1],[-3,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[2,1],[2,0],[1,0],[2,0]],[[6721,8182],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6691,8185],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[6688,8186],[1,0],[1,0],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[1,0]],[[6727,8187],[1,0],[0,-1],[2,0],[2,0],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0]],[[6691,8189],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[2,0]],[[6678,8190],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[6719,8195],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[2,0]],[[6652,8196],[0,-1],[1,0],[2,0],[0,-1],[3,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[2,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[6727,8197],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[6669,8198],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[6642,8201],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[4,0]],[[6714,8201],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[6742,8203],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6738,8205],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[2,0]],[[6738,8208],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[2,0]],[[6731,8213],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6725,8223],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,0],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[2,0],[0,1],[-1,0],[0,1]],[[6699,8224],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[2,0]],[[6703,8224],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6735,8224],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0]],[[6716,8225],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[-2,0],[-2,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0]],[[6727,8227],[0,-1],[1,0],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1]],[[6707,8227],[0,-1],[1,0],[2,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[6734,8227],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6700,8227],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[2,0]],[[6738,8228],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[2,0],[-1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[-3,0],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6732,8230],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-3,0],[0,-1],[-2,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0]],[[6771,8232],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1]],[[6733,8233],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0]],[[6745,8232],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-2,0],[3,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[2,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,1]],[[6713,8234],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6409,8229],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0]],[[6729,8235],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,1],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[6745,8232],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1]],[[6712,8235],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6771,8244],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1]],[[6771,8244],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0]],[[6509,8242],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,-1],[-2,-1],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[-3,2],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[2,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0]],[[6711,8260],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1]],[[6765,8260],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[2,0]],[[6724,8267],[1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1]],[[6724,8267],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[4,0],[0,1],[2,0],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0]],[[6719,8272],[0,-1],[1,0],[3,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[1,0]],[[6452,8272],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[3,-1],[1,-1],[1,0],[1,-1],[0,-2],[1,0],[2,-1],[1,0],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0]],[[6717,8277],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[1,0]],[[6697,8280],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[2,0]],[[6557,8285],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,-1]],[[6556,8288],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1]],[[6608,8295],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[2,0],[1,0],[0,-1],[1,0],[1,0]],[[6598,8298],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1]],[[6557,8298],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[-1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1]],[[6575,8303],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,-1],[1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0]],[[6558,8303],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,-1],[1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[3,0],[1,0],[0,1],[0,1],[2,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[2,0],[2,0],[0,-1],[0,-1],[-1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,2],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[2,0],[-1,0],[0,1],[2,0],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-3,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-3,0],[0,-1],[-1,0],[0,1],[-1,-1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[5,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-2],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[2,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[2,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-3,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[0,-1],[-2,0],[-2,0],[-2,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[3,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-2,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[2,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[2,0],[1,0],[-1,-1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-2,0],[-1,0],[0,2],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[0,1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[3,0],[2,0],[1,0],[0,1],[1,0],[-2,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[3,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[3,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,2],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[-2,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,1],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,1],[0,1],[0,1],[2,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-2,2],[-1,0],[1,0],[2,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[2,0],[5,3],[2,1],[1,1],[1,0],[2,1],[0,1],[1,0],[0,1],[1,0],[1,0],[4,2],[1,1],[2,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,1],[0,-1],[2,1],[1,0],[1,1],[1,0],[1,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-3,0],[-1,0],[-2,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1]],[[6582,8305],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[2,0],[1,0],[1,0]],[[6241,8308],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[2,0],[3,0],[1,0],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1]],[[6259,8384],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-2,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[6236,8385],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[4,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[4,-2],[3,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-3,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-2,0],[-1,1],[-1,2],[-1,0],[-1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[1,0],[0,-1],[1,0],[2,0],[3,0],[2,1],[2,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[3,-1],[1,-1],[1,0],[1,0],[3,-2],[1,-1],[1,0],[2,0],[5,-3],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[14,-8],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,-2],[0,1],[2,0],[1,0],[1,0],[4,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,-1],[2,0],[1,0],[2,0],[3,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-2,0],[-1,1],[-1,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[-2,0],[-2,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,-1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-3,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[3,-2],[2,-1],[3,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-3,-1],[0,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-2,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[-1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,1],[2,0],[3,-2],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[2,0],[0,-1],[1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[-2,1],[0,1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[1,0],[1,-1],[1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,-1],[0,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[3,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-4,-2],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[0,1],[2,0],[1,0],[1,0],[1,0],[3,2],[1,0],[1,0],[0,1],[2,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[2,-2],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,-1],[0,-1],[1,-1],[-3,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-3,-2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[6144,8129],[-1,0],[-4,2],[-2,1],[-4,1],[-3,1],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,-1],[-3,0],[-2,0],[-3,1],[-2,0],[-2,0],[-1,1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-3,-1],[-1,0],[-3,0],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-3,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-3,1],[-1,1],[-3,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,1],[2,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[-3,4],[5,0],[-1,2],[1,1],[1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1]],[[6096,8400],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[1,-1],[2,0],[2,0],[2,-1],[1,0],[2,0],[1,-1],[3,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[2,-1],[3,0],[2,-1],[3,0],[3,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[3,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,-1],[1,0],[3,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[3,0]],[[5630,8173],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-5,0],[-3,-1],[-4,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-5,0],[-3,0],[-4,0],[-1,1],[-1,0],[-1,0],[-2,1],[-3,0],[-1,1],[-3,1],[-4,1],[-2,1],[-2,0],[-5,2],[-3,1],[-2,0],[-3,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-3,1],[-1,0],[-1,1],[-3,1],[-3,2],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[5,1],[1,0],[2,-1],[2,-1],[3,-1],[2,-1],[3,-1],[1,-1],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-4,-2],[-1,0],[-1,0],[-1,-1],[-1,0]],[[5427,8128],[-10,0],[-4,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-3,0],[-6,-1],[-4,-1],[-4,0],[-4,-2],[-6,-1],[-2,-2],[-4,-1],[-2,-1],[-2,0],[-1,-1],[-3,0],[-4,0],[-4,0],[-4,1],[-3,0],[-2,1],[-3,0],[-3,1],[-3,1],[-2,0],[-2,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,2],[-2,1],[-1,1],[-1,1],[-2,1],[-2,2],[-1,1],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,1],[0,2],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-4,1],[-3,0],[-4,1],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0]],[[5266,8186],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[2,1],[2,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-2,1],[-2,1],[-2,1],[-1,0],[-3,1],[-3,0],[-5,1],[-1,0],[-1,0],[-5,1],[-3,0],[-6,0],[-3,1],[-3,0],[-4,0],[-4,1],[-3,1],[-1,0],[-1,0],[-2,1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[-3,1],[-1,2],[-2,2],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-3,4],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,1],[1,1],[1,1],[1,1],[2,2],[1,0],[3,1],[3,1],[2,1],[3,0],[3,1],[2,1],[4,0],[0,1],[1,0],[2,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-3,1],[-2,0],[-1,0],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-3,1],[-4,1],[-1,1],[-4,1],[-3,0],[-2,1],[-3,0],[-4,1],[-3,1],[-3,1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1]],[[5124,8322],[4,1],[1,1],[3,0],[2,1],[2,1],[3,2],[2,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[2,2],[2,1],[1,1],[1,1],[3,2],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-2,1],[-2,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,2],[1,1],[1,1],[2,2],[2,1],[0,1],[1,0],[0,1],[3,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,1],[1,0],[0,-1],[3,0],[1,0],[0,1],[3,0],[0,-1],[1,0],[2,-1],[3,0],[1,-1],[1,0],[2,1],[6,-3],[1,0],[1,0],[1,-1],[3,0],[1,0],[1,0],[3,1],[2,0],[4,0],[0,-1],[-1,0],[1,0],[1,0],[3,0],[1,0],[1,1],[2,0],[1,0],[0,-1],[-1,-1],[1,0],[1,1],[1,0],[-1,-1],[2,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,2],[-1,1],[0,1],[0,1],[1,1],[-4,1],[1,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[2,0],[1,1],[1,0],[-1,0],[-1,1],[-2,1],[-1,1],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[3,-2],[2,0],[1,0],[2,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,-1],[2,1],[1,0],[2,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,-1],[2,2],[1,0],[3,0],[0,1],[2,-1],[3,0],[2,-1],[0,1],[2,0]],[[5115,8606],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[0,-1],[1,-1],[3,-1],[3,-1],[3,-1],[2,0],[1,0],[1,0],[2,0],[2,1],[1,0],[3,1],[2,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[4,0],[1,0],[1,0],[1,0],[3,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[0,-1],[-1,-2],[0,-4],[0,-1],[0,-3],[1,-1],[1,-1],[1,-1],[1,0],[3,-2],[1,-1],[1,0],[1,-1],[1,-2],[2,-1],[2,-2],[3,-2],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1]],[[5124,8322],[-2,1],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-2,0],[-2,0],[1,1],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[0,-1],[1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[1,-1],[0,-1],[1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[1,1],[0,1],[1,1],[0,2],[-2,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,1],[-2,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[2,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,1],[0,2],[-2,0],[-1,1],[-1,1],[-2,0],[-6,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-3,1],[-3,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[2,0],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,1],[-1,0],[-1,-1],[-2,1],[-2,0],[-2,-1],[-1,0],[-1,1],[-3,0],[0,1],[-2,0],[0,1],[5,0],[0,1],[3,3],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[2,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[-5,1],[-1,1],[-4,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[-2,0],[2,2],[-1,0],[-1,1],[-1,0],[-1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,1],[1,0],[1,0],[2,0],[1,0],[4,1],[-1,0],[-1,1],[-1,1],[-2,0],[-2,1],[0,1],[1,1],[1,0],[-1,1],[1,0],[-1,1],[1,0],[0,1],[-2,-1],[1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[0,1],[1,-1],[3,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-3,0],[-2,1],[-3,1],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,-1],[-2,0],[-1,1],[-2,-1],[-2,2],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[1,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[2,0],[1,1],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[1,2],[-1,1],[-1,0],[1,1],[1,0],[2,2],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-2,1],[-3,1],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[2,1],[-1,0],[2,1],[0,-1],[1,0],[0,-1],[2,1],[3,1],[-1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[3,1],[6,2],[4,1],[-1,1],[-3,1],[-5,1],[0,1],[0,1],[-3,3],[-1,2]],[[4896,8468],[5,0],[-1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[2,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[2,0],[0,1],[1,0],[1,1],[3,0],[1,0],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,2],[-1,4],[-1,3],[1,0],[0,1],[-1,1],[1,1],[-1,1],[1,2],[1,2],[3,0],[2,0],[4,0],[1,0],[2,-1],[0,1],[2,0],[2,-1],[1,1],[1,0],[2,1],[2,0],[2,0],[1,0],[1,1],[0,1],[-2,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[-2,0],[0,1],[1,0],[0,1],[0,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-3,1],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[2,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[0,1],[2,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[2,0],[1,0],[0,1],[0,1],[-1,1],[1,1],[1,0],[0,1],[2,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,-1],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[5,5],[0,1],[1,1],[1,2],[1,1],[2,1],[2,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[-1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,3],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[4968,8628],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[2,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[2,0],[2,0],[2,0],[3,0],[3,0],[2,0],[1,0],[1,-1],[3,0],[2,-1],[1,0],[2,0],[1,0],[0,1],[1,0]],[[5427,8128],[1,-1],[1,0],[1,0],[0,-1],[1,0],[2,-1],[3,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[4,0],[1,0],[2,-1],[6,0],[3,0],[3,0],[2,0],[3,-1],[2,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[3,-2],[2,-1],[1,0],[1,-2],[1,-1],[2,-2],[1,-2],[2,-3],[1,-1],[1,-2],[0,-2],[1,-1],[1,-3],[1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1]],[[5512,8038],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,2],[-1,0],[-7,0],[-1,0],[-1,1],[-4,2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[1,-1],[-1,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,0],[-3,0],[1,-3],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-2,0],[0,2],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-2,0],[-5,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-2,-1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-2,-1],[0,-1],[1,-1],[0,-2],[-2,0],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-3,-1],[-2,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-2,-1],[-2,-1],[-3,-1],[-3,-1],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[-2,-1],[-1,0],[-3,0],[-4,0],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[5173,7960],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,-2],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0]],[[5074,7994],[-1,0],[0,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,3],[0,1],[0,1],[0,2],[0,2],[1,2],[0,2],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,2],[-4,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-4,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,2],[-6,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1]],[[4946,8093],[0,-1],[3,0],[8,0],[1,0],[2,1],[1,0],[3,-1],[1,1],[1,0],[2,0],[1,0],[2,0],[4,0],[1,1],[2,0],[3,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[2,1],[2,2],[1,1],[1,0],[1,-1],[0,-1],[1,0],[1,1],[-2,1],[2,2],[2,0],[0,1],[1,-1],[2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[2,1],[2,0],[3,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[3,3],[7,3],[2,0],[4,1],[1,0],[1,1],[3,1],[3,0],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[-2,1],[-2,0],[-3,1],[-1,0],[-2,1],[-3,1],[-1,1],[-1,1],[-1,0],[-1,1],[-3,1],[4,1],[0,2],[8,-1],[1,0],[0,-1],[3,0],[0,-1],[4,0],[1,0],[7,-1],[1,-1],[0,-1],[3,-1],[1,1],[2,-1],[1,0],[3,-2],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[2,0],[3,-1],[2,0],[3,0],[2,0],[2,0],[2,1],[2,0],[3,0],[1,1],[2,0],[1,0],[2,1],[2,0],[2,1],[2,1],[2,1],[1,0],[0,1],[0,2],[0,1],[0,3],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[0,2],[3,0],[2,1],[3,1],[5,1],[3,1],[1,0],[1,1],[1,0],[4,1],[11,2],[2,0],[4,0],[5,0],[1,1],[3,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[0,-6],[0,-1],[-1,0],[-2,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[4,0],[6,-1],[7,-1],[-1,1],[-1,2],[0,1],[1,1],[1,1],[3,1],[4,2],[3,0],[5,1],[4,0],[7,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[-4,-2],[4,-1],[5,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[9,2],[0,1],[-1,1],[-2,2],[9,3],[1,1]],[[4502,8564],[1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[2,-2],[1,0],[2,-3],[2,-1],[1,-2],[3,-1],[1,-1],[0,-1],[1,-1],[1,-3],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[2,0],[0,-2],[-1,0],[1,-1],[1,-1],[1,0],[2,0],[2,-8],[0,-2],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[1,0],[2,-1],[1,-1],[3,-1],[1,0],[2,-1],[8,-3],[2,-1],[4,-1],[7,-2],[3,0],[3,-1],[3,0],[2,0],[3,0],[1,-1],[2,0],[3,0],[1,0],[4,0],[7,-1],[2,0],[3,0],[3,0],[9,0],[9,0],[5,0],[11,0],[10,1],[6,0],[9,1],[4,0],[5,1],[3,1],[1,-1],[2,1],[1,1],[2,1],[3,0],[3,0],[3,1],[8,1],[7,0],[7,1],[1,0],[2,1],[10,1],[2,1],[2,0],[3,0],[3,0],[3,1],[2,0],[3,0],[5,-1],[2,-1],[1,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-3],[2,-1],[2,0],[3,0],[9,-2],[11,-1],[2,-1],[4,0],[4,-1],[3,-1],[2,0],[2,0],[3,0],[2,0],[2,0],[5,-1],[4,0],[4,0],[3,0],[3,0],[2,-1],[1,0],[1,0],[3,0],[2,-1],[2,0],[3,0],[3,-1],[3,0],[4,-1],[2,0],[2,0],[1,-1],[3,-1],[4,-1],[4,0],[7,-2],[2,-1],[0,1],[1,0],[3,0],[2,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[3,-1],[1,-1],[0,-1],[2,-1]],[[4946,8093],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-4,1],[-1,1],[-2,1],[-5,2],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-5,0],[-4,1],[-2,0],[-1,1],[-1,0],[0,1],[-3,1],[-1,1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-3,-1],[-3,-1],[-3,0],[-2,0],[-3,1],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[-3,2],[-1,1],[-2,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-3,0],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[-2,1],[-3,2],[3,1],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[5,2],[-1,2],[2,1],[2,1],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[2,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[-1,0],[-1,0],[-4,1],[1,1],[-2,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,-1],[1,1],[-1,1],[-1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,1],[2,0],[1,0],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[0,1],[1,1],[0,1],[1,0],[-1,1],[-1,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-3,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,2],[-1,1],[-2,2],[-1,1],[-3,2],[-1,1],[-1,0],[-3,0],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-2,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[8,1],[-2,3],[2,0],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-2,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,3],[-13,0],[-2,0],[-1,0],[-1,1],[-3,-1],[-3,0],[-1,0],[0,1],[1,0],[2,1],[-1,0],[0,1],[-2,0],[1,1],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,2],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,0],[-1,0],[-2,1],[-2,-1],[-2,0],[-3,2],[1,0],[1,2],[-1,0],[-2,1],[-2,-1],[0,1],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[2,0],[11,3],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,1],[-1,0],[0,1],[2,0],[1,1],[2,1],[2,0],[2,1],[1,0],[4,0],[3,1],[5,1],[1,0],[1,1],[2,-1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[3,0],[1,0],[1,0],[1,0],[2,1],[-1,0],[-1,1],[-3,1],[0,2],[-1,0],[-2,1],[-3,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-4,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-2,1],[-2,-1],[0,1],[-1,0],[-1,0],[-1,-1],[-7,-3],[-1,1],[-3,1],[-2,0],[-1,1],[-3,1],[-3,-2],[-3,-1],[-2,0],[-3,-1],[-4,-1],[-3,-1],[-3,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-2,0],[-2,1],[-2,1],[-1,0],[-1,1],[-4,2],[1,0],[2,-1],[4,2],[3,1],[3,1],[2,1],[1,1],[1,0],[1,1],[1,1],[1,2],[1,0],[0,-1],[0,2],[0,1],[-2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[-3,1],[-3,2],[-1,0],[-3,1],[-2,2],[-2,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-4,2],[4,0],[-1,0],[0,1],[-2,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[0,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-3,1],[-2,1],[-3,2],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,1],[-3,0],[-1,0],[-1,0],[-2,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,2],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-3,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,1],[-2,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-3,-1],[-3,-1],[-3,-1],[-1,-1],[-3,-1],[0,-1],[-2,-1],[-2,0],[-2,0],[-2,-1],[-5,0],[-1,0],[-2,0],[-3,-1],[-3,0],[-5,-2],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,2],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,2],[-1,-1],[1,-2],[-2,-1],[-1,0],[-3,-1]],[[4330,8394],[-1,0],[-1,1],[-1,1],[-2,1],[-1,0],[-4,1],[-4,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,0],[-1,1],[-3,2],[-1,1],[-1,1],[-1,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,2],[0,3],[0,1],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[0,1],[2,1],[0,1],[1,1],[2,1],[2,1],[1,1],[1,1],[2,1],[2,2],[2,1],[3,2],[2,1],[1,1],[1,0],[2,3],[1,1],[1,1],[0,1],[1,2],[1,3],[1,2],[0,2],[-1,1],[-1,2],[-1,1],[-2,1],[-2,1],[-2,2],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,1],[-2,1],[-4,2],[-3,1],[-6,3],[-2,2],[-5,3],[-2,1],[-1,1],[-1,2],[-1,1],[-2,3],[0,2],[1,0],[2,2],[4,1],[1,1],[3,2],[3,3],[8,7],[0,1],[5,1],[7,2],[5,1],[9,3],[6,0],[5,1],[2,-1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[2,1],[2,1],[2,1],[1,1],[-1,0],[-6,1],[5,5],[2,2],[1,0],[0,1],[1,0],[1,2],[1,1],[1,1],[2,2],[2,4],[2,4],[1,1],[0,2],[3,3],[-1,5],[0,4],[0,2],[1,4],[1,3],[0,2],[1,2],[2,3],[0,1],[-1,0],[-2,2],[-1,0],[0,1],[0,2],[0,3],[0,1],[1,0],[3,2],[1,0],[2,1],[2,1],[3,1],[3,1],[2,1],[1,0],[1,0],[1,-3],[1,-2],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-3],[0,-1],[4,0],[3,1],[1,0],[1,1],[2,1],[3,0],[3,1],[2,1],[3,1],[2,0],[2,0],[1,0],[1,0],[2,1],[2,0],[2,0],[3,-1],[3,0],[5,-1],[6,-2],[3,0],[3,-1],[2,-1],[6,-1],[7,-1],[6,-2],[1,0],[4,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[2,-2],[1,-3],[1,-1],[0,-1],[2,-3],[0,-2]],[[5934,7842],[1,0],[1,-1],[1,0],[1,0],[3,0],[1,0],[1,1],[0,-1],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[1,1],[1,-1],[0,1],[1,0],[1,-1]],[[6011,7855],[1,0],[1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[6035,7896],[1,0],[1,0],[3,-2],[2,-1],[8,-3],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-3,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[2,1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-9,-5],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,1],[1,0],[1,1],[1,0],[-2,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-2,1],[0,1],[1,0],[0,1],[-2,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[2,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0]],[[5512,8038],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[4,0],[4,0],[4,0],[2,0],[2,0],[3,0],[2,-1],[2,0],[4,-1],[4,-1],[3,-1],[2,0],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[-1,-2],[-1,0],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[2,0],[1,0],[4,0],[4,0],[2,-1],[3,0],[5,0],[3,0],[3,0],[8,0],[3,0],[2,0],[4,0],[3,0],[3,0],[2,0],[1,0],[2,0],[1,-1],[3,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-3,0],[-5,-2],[-2,-1],[-5,-2],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[2,-1],[0,-1],[1,0],[1,-2],[2,-1],[1,0],[1,-1],[3,-1],[2,0],[1,-1],[2,0],[1,0],[2,0],[2,0],[3,0],[2,0],[5,1],[3,1],[1,0],[3,1],[3,0],[3,1],[1,1],[6,2],[3,1],[4,1],[1,0],[2,1],[2,1],[1,1],[2,1],[2,0],[1,1],[3,2],[2,0],[0,1],[2,1],[3,1],[3,1],[4,1],[3,1],[1,0],[3,1],[1,1],[1,0],[2,1],[1,0],[0,1],[1,0],[1,1],[2,1],[1,1],[1,0],[2,1],[1,1],[1,0],[3,1],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[2,-2],[1,0],[0,-1],[1,0],[1,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[3,0],[1,-1],[1,0],[2,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[2,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[4,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[3,-1],[2,-3],[3,-2],[3,-2],[4,-2],[3,-2],[2,-1],[3,-2],[3,-2],[3,-2],[3,-1],[2,-1],[1,0],[1,0],[2,-1],[3,-1],[2,-1],[4,-1],[2,0],[4,-1],[2,0],[2,0],[1,-1],[1,0],[1,0],[3,0],[6,0],[4,-1],[6,0],[4,1],[3,0],[4,1],[3,0],[6,1],[2,1],[2,0],[1,0],[2,1],[1,1],[1,0],[1,1],[3,1],[2,2],[1,0],[2,1],[1,1],[2,1],[1,0],[2,0],[1,1],[1,0],[1,0],[2,0],[5,0],[2,-1],[2,0],[3,1],[3,0],[3,1],[4,1],[4,1],[2,1],[3,1],[1,0],[2,0],[1,0],[1,-1],[3,-1],[2,-1],[1,-1],[1,-1],[3,-2],[1,0],[1,-1],[4,-2],[2,0],[1,-1],[6,-2],[3,-1],[1,0],[3,-2],[6,-3],[5,-3]],[[6026,7903],[-1,-1],[1,0],[1,-1],[1,-1],[3,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-2,-1],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[5,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-6,0],[-2,0],[-3,-1],[-4,0],[-1,0],[-1,0],[-6,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-7,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-3,-1],[0,-1],[-1,0],[-2,-1],[-5,-2],[0,-1],[-7,-3],[0,-1],[-1,0],[0,-1],[-9,-4],[-1,0],[-2,-2],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-7,-3],[-4,-2],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-2,-1],[-5,-2],[-2,-2],[-2,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-8,-4],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-4,-1],[0,-1],[-2,0],[0,-1],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-4,-2],[-2,-1],[-1,-1],[-6,-3],[-1,-1],[-1,0],[-1,0],[0,-1],[-4,-2],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-4,-2],[-3,-2],[-3,-1],[-1,-1],[-1,-1],[-5,-2],[0,-1],[-1,0],[0,-1],[-5,-2],[-2,-1],[-4,-2],[-3,-2],[-1,0],[0,-1],[-4,-2],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-4,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-3,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-3,-1],[-3,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-4,0],[-1,0],[-1,1],[-4,-1],[-3,0],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[0,-1],[0,-1],[-3,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[0,1],[-1,1],[1,1],[1,-1],[4,0],[2,0],[-1,-1],[2,-1],[0,-2],[0,-1],[1,-1],[1,0],[2,0],[2,0],[1,1],[1,0],[1,1],[0,1],[1,1],[2,0],[1,0],[2,0],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-4,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-3,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,1],[-1,0],[-3,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-3,0]],[[5392,7652],[0,1],[1,0],[5,5],[3,4],[0,1],[0,1],[1,2],[0,1],[0,2],[-1,2],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,2],[0,1],[0,1],[1,1],[1,2],[3,4],[1,2],[4,5],[1,0],[1,2],[1,2],[1,1],[2,1],[1,3],[1,1],[2,3],[0,1],[1,2],[0,1],[0,3],[1,1],[0,1],[0,2],[0,1],[1,2],[0,2],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[2,0],[1,1],[2,0],[1,1],[1,0],[1,0],[2,0],[1,0],[2,1],[3,0],[1,0],[2,1],[2,0],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,1],[1,0],[1,1],[1,2],[1,0],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,2],[0,1],[1,1],[2,2],[3,2],[0,1],[1,1],[2,1],[2,2],[1,1],[1,1],[1,0],[1,0],[1,1],[2,1],[2,0],[3,2],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-2,2],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-6,-1],[-4,-1],[-2,0],[-4,-1],[-2,0],[-1,-1],[-5,0],[-3,-1],[-7,-1],[-1,0],[-4,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-2,3],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,2],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-4,-2],[-3,-1],[-1,0],[-2,-1],[-1,0],[-4,-1],[-3,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,1],[-2,0],[-2,1],[-3,1],[-3,1],[-1,0],[-2,2],[-3,1],[-2,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[4,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-2,1],[-2,1],[-2,0],[-2,1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-3,0],[-2,0],[-2,-1],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-1,0],[-1,0],[-3,1],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-3,1],[-3,0],[-2,1],[-1,0],[-3,0],[-2,1],[-2,1],[-4,1],[-1,1],[-2,0],[-2,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[1,2],[2,3],[0,1],[0,2],[0,2],[-2,1],[-1,2],[-1,1],[-2,2],[-2,1],[-1,1],[-4,1],[-2,2],[-1,0],[-2,1],[-3,2],[-3,1],[-1,0],[0,1],[-2,0],[-1,1],[-3,1],[-3,0],[-4,2],[-3,0],[-4,1],[-4,1],[-3,1],[-3,0],[-4,1],[-2,0],[-3,1],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,1],[2,0],[2,0],[3,1],[1,0],[1,1],[1,0],[2,1],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[1,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-6,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,3],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[5280,7652],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[5392,7652],[-2,0],[-3,0],[-1,1],[-2,0],[-1,0],[-4,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,2],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[-1,1],[1,1],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0]],[[5297,7684],[-1,3],[0,4],[-1,2],[0,2],[0,2],[0,1],[0,1],[-1,0],[1,2],[1,3],[1,1],[1,1],[1,1],[2,1],[1,1],[3,1],[2,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[-4,3],[-6,-1],[-4,0],[-8,-1],[-6,0],[-3,0],[-7,-1],[-4,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-3,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-3,-1],[-5,0],[-4,0],[-5,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-1,0],[-3,1],[-2,0],[-2,2],[-2,1],[-2,0],[-2,1],[0,1],[-2,0],[-3,0],[-2,0],[-1,0],[-5,3],[-2,3],[-6,1],[-3,1],[-4,2],[-2,0],[-1,1],[-2,2],[-2,3],[-3,2],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,0],[-2,2],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,1],[-2,0],[-2,1],[-2,0],[-3,-1],[-1,1],[-1,0],[-3,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-2,1],[-2,1],[-2,0],[-1,1],[-1,0],[-4,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,-1],[-2,1],[-2,0],[-1,0],[-1,1],[-2,1],[0,1],[0,1],[-2,1],[-1,1],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,1],[-2,0],[-2,0],[-3,1],[-1,0],[-1,1],[-5,1],[-1,1],[-2,0],[-1,0],[-2,0],[-2,1],[-2,1],[-4,0],[-2,1],[-2,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,1],[-2,0],[-3,0],[-3,1],[-3,1],[-4,0],[0,1],[-1,0],[2,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,-1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-2,0],[-3,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[-3,1],[-3,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-2,0],[3,2],[1,0],[-1,1],[-1,0],[0,1],[-1,2],[-1,0],[-2,1],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-2,0],[-1,1],[-1,1],[1,2],[-1,1],[-2,0],[-3,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[-3,2],[-1,1],[-3,1],[-4,2],[-4,2],[-2,1],[-2,1],[-1,0],[-2,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-3,1],[-2,1],[-2,1],[-1,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-2,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,1],[-4,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[2,1],[0,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-1,0],[0,3],[1,4],[1,1],[-3,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[-1,2],[-1,2]],[[4637,7956],[5,0],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[2,-1],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[4,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,2],[2,1],[1,1],[4,2],[1,1],[1,0],[1,0],[3,-1],[3,-1],[7,-1],[2,0],[5,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[4,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[2,0],[1,-1],[1,-1],[2,0],[3,-2],[1,0],[1,-1],[1,0],[6,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[3,-1],[7,-1],[0,-1],[2,0],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[3,0],[1,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,0],[2,-1],[1,0],[1,-1],[2,0],[3,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[9,-1],[3,0],[1,0],[1,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[0,1],[1,1],[1,1],[3,2],[1,0],[0,1],[1,0],[1,0],[2,0],[3,1],[5,1],[1,0],[2,0],[1,1],[2,0],[3,0],[2,1],[1,0],[1,0],[1,0],[4,1],[3,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-2,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,2],[-1,0],[-1,1],[1,1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[2,0],[2,0],[3,0],[3,0],[2,-1],[3,0],[2,0],[1,0],[3,1],[1,0],[1,0],[3,-1],[1,0],[1,-1],[2,0],[2,0],[7,0],[1,-1],[3,-1],[2,-1],[3,-1],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[3,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[2,0],[3,0],[1,0],[3,-1],[2,1],[3,0],[2,-1],[3,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,0],[7,0],[7,0],[0,1],[-1,1],[1,0],[0,1],[1,2],[1,1],[2,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[2,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[1,0],[1,1],[0,1],[-1,1],[0,1],[1,0],[2,0],[2,0],[1,0],[3,0],[0,2],[-3,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,1],[1,0],[3,0],[3,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,0],[4,0],[1,1],[1,0],[2,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[3,-1],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,-1],[3,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[3,1],[1,0],[1,0],[2,0],[2,-1],[2,-1],[1,0],[3,0],[1,-1],[2,0],[2,1],[3,0],[1,0]],[[6091,7898],[-1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1]],[[6082,7923],[1,0],[-1,-1],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[1,0],[1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[3,-1],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[1,1],[-1,0],[-1,1],[1,0],[1,1],[1,-1],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[-1,-1],[1,-1],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[-2,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[0,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[3,2],[2,1],[1,1],[2,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[6083,8003],[-2,0],[0,2],[1,0],[1,0],[0,-1],[0,-1]],[[6095,8001],[-1,-1],[0,-1],[-4,-1],[-4,-3],[-4,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,1],[-1,0],[0,1],[3,2],[2,1],[1,1],[1,0],[0,1],[1,0],[2,1],[1,0],[1,-1],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1]],[[6091,8011],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0]],[[6144,8129],[-1,0],[-1,0],[2,-1],[0,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[1,-1],[2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-3,-2],[-1,0],[-1,0],[-2,-1],[-2,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-7,4],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[2,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[3,-2],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[1,-1],[1,-1],[0,-1],[1,0],[2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,1],[-2,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[6,-3],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-3,1],[1,0],[0,1],[1,1],[1,0],[-1,0],[-1,1],[-2,1],[0,1],[0,1],[1,0],[-2,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,-1],[0,-2],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-2,-1],[-1,0],[0,-1],[3,0],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[2,-1],[1,0],[2,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,-1],[-1,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-3,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-4,2],[-1,0],[-4,2],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0]],[[4502,8564],[3,0],[4,0],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[2,1],[2,1],[2,1],[1,1],[0,1],[0,1],[0,1],[-2,1],[-1,1],[-2,1],[-3,2],[-2,1],[-1,1],[0,1],[-2,1],[-3,2],[-1,0],[-2,1],[-3,1],[-4,1],[-3,1],[-1,0],[-1,1],[-1,0],[-2,1],[-3,0],[-4,1],[-3,1],[-2,0],[-1,0],[-1,1],[-2,0],[-2,0],[-4,1],[-3,1],[-3,1],[-4,1],[-1,0],[-2,1],[-2,0],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,2],[1,1],[1,1],[0,1],[1,1],[1,2],[0,2],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0],[-2,1],[-3,1],[-3,1],[-3,1],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-3,0],[-2,-1],[-5,-2],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,1],[1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-2,2],[-1,0],[-1,1],[0,1],[0,1],[0,1],[2,2],[1,1],[0,1],[0,1]],[[4340,8728],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[4,1],[1,0],[1,1],[2,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[0,1],[2,2],[2,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[2,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[3,0],[1,0],[3,0],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[2,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[2,0],[2,0],[1,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[2,1]],[[4637,8773],[1,0],[1,-1],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[1,0],[3,0],[1,-1],[2,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-2],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[2,-1],[4,-3],[2,-1],[1,0],[3,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[2,-1],[2,0],[2,0],[3,0],[3,0],[3,0],[2,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[1,0],[3,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[2,0],[3,0],[1,0],[1,0],[3,-1],[1,-1],[1,0],[3,0],[2,0],[2,-1],[1,0],[2,0],[1,-1],[-1,0],[-2,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[4,-1],[3,-1],[3,-1],[3,-1],[1,-1],[1,0],[1,-1],[0,-2],[1,-1],[2,0],[2,-1],[2,-2],[1,-1],[1,0],[1,0],[4,1],[5,0],[6,1],[3,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[3,-2],[2,-1],[3,-2],[3,-2],[1,-1],[2,0],[2,0],[3,-1],[2,0],[4,-1],[1,0],[1,0],[4,1],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,-2],[1,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[4,1],[3,0],[3,1],[2,0],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,-1],[-2,0],[0,-1],[1,-1],[1,0],[1,-1],[3,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,1],[1,1],[2,1],[2,0],[2,1],[4,0],[4,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[2,0],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0]],[[5514,8793],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,-1],[4,-1],[3,0],[4,0],[2,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,1],[1,0],[5,0],[5,0],[5,-1],[1,0],[2,-2],[1,-2],[1,-1],[1,0],[2,-1],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,1],[1,0],[3,2],[4,1],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[-2,0],[-2,1],[-1,1],[-2,2],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-2,0],[0,1],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[3,1],[1,1],[1,0],[1,1],[2,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,1],[2,1],[2,1],[1,2],[1,2],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,3],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[4,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[2,1],[2,0],[1,0],[1,1],[0,1],[1,0],[2,0],[2,0],[1,0],[2,0],[2,1],[2,0],[3,1],[3,1],[1,1],[1,1],[0,1],[3,0],[5,-1],[5,0],[3,0],[2,-1],[2,0],[2,0],[2,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[5,0],[1,1],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[2,0],[3,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[3,-1],[3,0],[2,0],[3,-1],[1,0],[0,-1],[0,-1],[1,0],[2,0],[3,0],[4,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[2,-1],[3,0],[2,-1],[1,0],[1,-1],[2,1],[2,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[3,1],[1,1],[2,0],[3,-1],[3,-2],[4,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[3,-1],[3,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[4,-1],[2,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[4,-1],[1,0],[0,-2],[0,-1],[1,0],[1,0],[1,0],[3,-1],[2,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[3,-1],[1,0],[1,0],[2,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,-1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,1],[1,1],[0,1],[1,1],[1,1],[3,1],[3,1],[3,1],[1,0],[1,0],[1,0],[3,0],[3,-1],[2,0],[2,0],[1,1],[3,0],[4,1],[6,1],[4,1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[3,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,1],[4,0],[2,1],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[2,0],[2,-1],[1,1],[1,1],[1,0],[2,0],[2,-1],[4,0],[2,-1],[2,0],[2,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[1,0],[0,1],[3,1],[4,2],[0,-2],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[3,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,0],[2,0],[3,-1],[2,0],[3,0],[5,-1],[4,-1],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-2],[0,-1],[1,0],[4,-1],[5,-1],[2,-1],[1,0],[1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-2],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[2,-1],[1,0],[2,-1],[0,-2],[1,0],[1,-1],[2,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[3,1],[2,2],[1,1],[1,0],[2,1],[2,0],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[3,0],[1,1],[2,1],[1,1],[1,0],[3,1],[2,1],[1,0],[1,1],[1,0],[2,0],[3,0],[1,0],[1,-1],[1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-2],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,1],[4,0],[2,1],[2,1],[4,3],[3,2],[1,0],[1,1],[2,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,1],[2,0],[1,1],[1,0],[3,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-2],[1,0],[1,0],[1,0],[0,-1],[2,0],[2,-1],[2,0],[1,-1],[3,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-4,-2],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[1,-3],[0,-1],[1,-2],[2,-1],[0,-1],[-1,0],[0,-1],[2,-1],[2,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[-2,-2],[0,-3],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[2,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[3,-1],[2,0],[1,-1],[2,0]],[[6671,8605],[1,-1],[1,-1],[0,-2],[0,-1],[0,-2],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,-1],[-3,-2],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[3,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-2,-1],[0,-1],[2,-1],[1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-4,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-3,1],[-2,0],[-3,1],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-5,2],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-4,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[-5,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-4,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-3,-2],[-1,-1],[-1,0],[-3,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-4,0],[-2,1],[-5,0],[-3,0],[-3,0],[-3,0],[-1,1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-4,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,1],[-3,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-2,-1],[-1,0],[-2,0],[-2,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[1,0],[2,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0]],[[5115,8606],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[0,1],[1,0],[0,1],[2,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[3,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,1],[3,0],[1,0],[1,1],[1,0],[2,1],[1,1],[2,1],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[0,1],[1,1],[2,2],[1,0],[1,1],[0,1],[0,1],[1,0],[1,2],[1,0],[1,2],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[3,2],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[4,0],[4,0],[3,1],[3,0],[1,0],[0,-1],[1,0],[1,0],[3,-1],[2,-1],[1,0],[1,0],[3,1],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[0,-1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[2,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[2,0],[0,1],[-1,3],[-1,1],[-1,0],[0,1],[-1,2],[-1,3],[-1,1],[-1,1],[-2,1],[-2,1],[-1,1],[1,0],[0,1],[1,0],[2,1],[3,1],[2,1],[3,1],[2,0],[1,0],[2,-1],[1,0],[1,0],[0,1],[2,1],[1,0],[3,0],[1,0],[2,0],[2,0],[1,0],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[0,2],[1,0],[-1,1],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-2,2],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[2,1],[1,1],[-1,1],[-1,0],[-1,1],[-2,1],[-2,1],[-3,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[2,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-2,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[2,1],[1,1],[2,1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[3,0],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[2,0],[1,1],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[2,0],[3,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,1],[0,-1],[0,1],[1,0],[1,0],[2,0],[1,1],[2,0],[1,-1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[2,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,-1],[2,0],[2,-1],[2,0]],[[5516,9322],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,-2],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-3,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,-1],[-3,0],[-3,1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[5396,9018],[-1,1],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-3,0],[-3,1],[-2,0],[-2,1],[-1,0],[-1,1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-3,0],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-2,1],[-3,1],[-1,0],[-2,1],[-2,0],[-6,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,-1],[-2,0],[-1,0],[-3,-1],[-3,0],[-3,-1],[-4,-1],[-3,0],[-2,-1],[-3,0],[-2,1],[-4,0],[-2,0],[-5,0],[-4,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,-2],[0,-1],[-3,0],[-1,-1],[-4,-2],[-1,0],[-1,-2],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-3,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-2,0],[-3,0],[-2,0],[-2,-1],[-3,0],[-3,-1],[-3,-1],[-2,-2],[-3,-2],[-2,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-7,0],[-8,0],[-3,1],[-2,2],[-2,0],[-1,1],[-2,0],[0,1],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[2,0],[3,1],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[1,0],[0,1],[2,1],[2,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[2,1],[1,0],[0,1],[-2,3],[0,1],[-1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,1],[1,0],[3,0],[1,0],[1,1],[1,0],[1,0],[2,0],[2,0],[-2,1],[-6,2],[-3,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,2],[-1,0],[-1,1],[-2,1],[-4,1],[-2,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[1,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-3,0],[-3,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,1],[-2,1],[-2,0],[-2,1],[-2,0],[-1,-1],[-2,0],[-3,-1],[-1,0],[-3,0],[-5,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-3,1],[-3,1],[-2,1],[0,1],[0,1],[-1,1],[-1,1],[-2,1],[-2,1],[-3,0],[-3,1],[-4,0],[-3,1],[-4,1],[-2,0],[-2,0],[-1,1],[-2,1],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,-4],[-1,-2],[-4,0],[-1,0],[-1,0],[-3,-2],[-2,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[1,0],[1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-2,-1],[-4,1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-4,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[-4,-1],[-4,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[4655,9031],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-3,0],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,2],[-1,0],[-4,1],[-2,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[1,1],[1,1],[2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,3],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-2,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[3,2],[2,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,1],[0,1],[2,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[2,0],[2,1],[2,0],[2,0],[1,0],[1,0],[1,1],[2,0],[2,1],[2,0],[3,1],[1,1],[2,0],[1,0],[2,0],[1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-2,0],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,2],[1,1],[1,1],[1,1],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[-5,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[-1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[2,1],[2,0],[3,1],[2,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[2,1],[1,1],[-1,1],[-2,1],[-2,1],[-1,1],[2,0],[1,2],[0,2],[1,0],[2,1],[1,0],[1,1],[0,1],[0,1],[1,1],[-2,1],[-2,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[-2,2],[-2,1],[0,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[0,2],[-2,0],[-2,0],[-1,1],[-3,2],[-3,1],[-2,1],[-2,0],[-2,1],[-2,0],[-2,0],[-6,0],[-2,0],[-2,0],[1,1],[0,1],[-2,1],[-2,1],[-1,2],[-2,1],[-1,1],[-3,0],[-2,1],[-1,0],[-2,0],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[2,1],[0,1],[0,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-2,1],[-2,1],[-2,0],[-1,1],[0,1],[-1,1],[-2,0],[-2,0],[-1,1],[1,0],[1,1],[0,1],[0,1],[0,3],[2,1],[0,1],[0,1]],[[4622,9487],[3,1],[4,0],[4,1],[2,0],[1,1],[0,1],[0,2],[-1,3],[0,2],[0,1],[1,1],[2,1],[5,2],[5,1],[5,1],[8,1],[6,1],[5,1],[2,1],[3,0],[3,0],[4,0],[5,-1],[1,0],[1,0],[1,1],[2,2],[2,3],[1,1],[1,1],[2,-1],[6,-2],[6,-1],[4,-1],[3,0],[1,0],[3,0],[1,1],[1,0],[0,1],[-1,1],[-2,3],[0,3],[-2,3],[1,1],[4,1],[3,2],[2,0],[3,1],[4,0],[2,0],[3,0],[1,1],[0,1],[0,1],[1,0],[3,0],[3,0],[4,0],[4,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[5,-1],[2,0],[4,0],[1,0],[2,0],[4,0],[1,0],[0,1],[-1,1],[4,3],[4,3],[3,2],[4,2],[3,1],[2,0],[1,1],[0,1],[0,1],[1,1],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,1],[1,0],[3,1],[1,0],[1,0],[2,-1],[5,-2],[3,0],[5,-1],[3,-1],[1,0],[3,0],[3,0],[1,1],[1,1],[0,1],[0,1],[3,3],[1,1],[1,-2],[3,-2],[3,-2],[1,0],[4,3],[2,1],[2,1],[2,0],[2,2],[1,1],[1,0],[1,0],[2,0],[5,-1],[4,0],[1,0],[2,0],[3,1],[0,2],[0,1],[3,1],[2,0],[4,1],[2,0],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[1,0],[4,-2],[3,-1],[0,-1],[1,-2],[1,-1],[2,-1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[3,1],[2,0],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-4,-2],[-2,-1],[-2,-1],[-1,0],[1,-1],[2,-3],[2,-2],[3,-3],[2,-1],[3,-1],[3,0],[3,-1],[2,0],[2,-1],[2,0],[2,0],[3,0],[2,-1],[3,0],[-1,-1],[-2,-2],[-1,0],[-1,-2],[-2,-1],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-5,-1],[-2,-1],[-2,-1],[-2,-2],[-1,0],[-4,-1],[-1,0],[-1,-1],[-1,0],[-3,-1],[-2,-3],[-1,-2],[-2,-1],[-1,-1],[-3,-1],[-4,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-3,1],[-2,-1],[-1,0],[-4,-2],[-1,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[1,0],[2,0],[3,0],[3,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,-1],[3,0],[2,-1],[2,-1],[1,-1],[4,-2],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[-1,-1],[1,-1],[2,1],[2,-1],[1,0],[2,0],[1,1],[1,0],[1,0],[2,-1],[1,0],[1,1],[1,1],[2,0],[2,0],[0,-1],[1,-1],[3,-1],[2,0],[2,-1],[2,-2],[5,-1],[1,-1],[0,-1],[-1,-1],[2,0],[1,0],[0,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[0,-1],[1,0],[2,0],[3,-1],[1,0],[1,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[3,-2],[1,-2],[1,0],[0,-1],[2,0],[1,-1],[4,-1],[1,0],[6,-1],[5,0],[3,-1],[4,0],[3,1],[6,1],[3,1],[1,1],[2,0],[1,0],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[2,0],[2,0],[3,0],[2,0],[3,0],[3,0],[3,1],[2,0],[3,1],[2,0],[2,1],[11,0],[4,1],[3,0],[4,0],[3,-1],[2,-1],[1,-1],[0,-1],[2,-1],[6,0],[6,-1],[4,-1],[7,-1],[5,-1],[3,-1],[3,-3],[4,-3],[2,-2],[3,0],[7,0],[2,1],[2,0],[3,3],[1,1],[3,2],[3,3],[1,1],[2,1],[0,1],[1,2],[0,2],[1,1],[2,0],[2,1],[3,2],[1,0],[2,1],[4,0],[4,0],[4,0],[3,0],[3,0],[2,0],[1,0],[3,-2],[3,-1],[2,0],[3,0],[3,1],[2,0],[2,2],[2,0],[2,0],[3,0],[1,1],[2,2],[2,2],[1,1],[2,0],[4,0],[3,0],[2,0],[2,1],[2,1],[5,2],[1,1],[1,0],[2,0],[4,0],[2,0],[1,0],[4,1],[6,1],[4,1],[1,0],[0,1],[0,1],[2,1],[0,1],[1,0],[1,0],[4,1],[6,1],[3,1],[4,1],[4,0],[2,0],[2,-1],[3,-1],[1,0],[4,1],[0,1],[1,0],[2,0],[5,1],[4,1],[4,1],[3,2],[2,2],[2,3],[0,1],[0,1],[1,0],[2,0],[4,-2],[5,-2],[4,-1],[3,0],[4,0],[1,0],[2,-1],[2,0],[2,1],[3,1],[3,1],[2,-1],[3,1],[2,0],[2,0],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[-3,-1],[-6,-3],[-2,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[2,0],[6,1],[3,0],[2,0],[1,0],[2,-1],[2,-2],[1,0],[3,0],[3,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,0],[2,0],[4,1],[1,0],[0,-1],[0,-1],[-1,0],[-3,0],[-2,0],[-1,-1],[-1,-1],[1,-1],[2,-1],[4,-2],[3,0],[0,-1],[0,-1],[-2,-2],[0,-1],[1,0],[3,0],[4,0],[1,-1],[3,0],[6,-1],[2,-1],[3,0],[1,0],[1,-1],[1,0],[-1,-2],[-2,-1],[1,-2],[0,-2],[-3,-4],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,-2],[2,-1],[2,-3],[0,-1],[-3,-1],[-6,-2],[-1,-2],[-2,-1],[-3,-2],[-3,-3],[-3,-2],[-2,0],[-4,-2],[-4,-2],[-2,0],[-1,-1],[0,-1],[0,-1],[1,-1],[3,0],[2,-1],[3,-3],[-1,-2],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-3],[0,-2],[3,-1],[3,-1],[1,-1],[0,-1],[0,-3],[0,-1],[2,-1],[3,0],[1,-1],[1,0],[3,1],[6,1],[3,0],[2,1],[1,0],[1,-1],[0,-1],[1,0],[6,0],[3,0],[2,0],[2,-1],[2,-2],[1,0],[2,0],[4,-1],[2,1],[3,1],[4,2],[3,1],[2,0],[2,1],[4,1],[2,2],[1,1],[1,1],[2,0],[2,-1],[6,-1],[2,0],[3,0],[-1,-2],[1,-1],[3,0],[3,0],[4,0],[3,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[4,0],[3,0],[2,-1]],[[6028,9345],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[4,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[2,-1],[3,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-3,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,0],[1,-1],[1,-1],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-3,0],[-1,0],[-3,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,-1],[-2,-1],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-3,-1],[-5,0],[-1,0],[-3,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-3,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-3,-1],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-3,0],[-2,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[1,1],[0,1],[1,1],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-3,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-2,1],[-3,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[4622,9487],[-3,0],[-1,0],[-2,1],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,1],[-4,0],[-4,0],[-1,-1],[-3,0],[-2,0],[-3,0],[-3,0],[-5,-1]],[[4577,9487],[0,1],[0,1],[-1,2],[-2,2],[-1,2],[-1,2],[-1,2],[1,2],[2,1],[0,1],[-1,1],[-4,3],[-3,1],[-1,2],[-3,4],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,2],[1,1],[1,1],[1,1],[1,1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,1],[0,1],[0,1],[-2,0],[-5,2],[-5,3],[-3,1],[0,1],[-2,0],[-1,3],[-1,2],[0,1],[-1,1],[-2,2],[-1,2],[-4,2],[-2,2],[0,1],[0,1],[0,1],[-1,3],[-1,1],[-1,1],[-2,4],[-2,3],[0,2],[-8,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-2,1],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-3,1],[-1,0],[-1,0],[-1,1],[-2,2],[-4,2],[-1,1],[0,2],[-2,0],[-1,1],[-4,1],[-3,1],[-3,0],[-2,0],[-4,1],[-3,0],[-3,1],[-2,0],[-2,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-4,0],[-3,0],[-2,1],[-2,0],[-3,2],[-3,1],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-3,2],[-9,7],[-2,1],[-3,1],[-2,1],[-3,0],[-1,0],[-3,0],[-4,0],[-1,0],[-1,0],[-3,0],[-3,1],[-1,0],[-3,1],[-6,1],[-2,0],[-1,1],[-5,0],[-5,0],[-1,0],[-1,0],[-4,-1],[-2,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,2],[0,2],[0,1],[-1,1],[-1,1],[-2,0],[-3,1],[-2,0],[-3,1],[-3,0],[-2,0],[0,1],[-1,0],[-2,1],[-4,1],[-8,2],[-2,0],[-1,1],[-3,1],[-4,4],[-3,2],[-2,0],[-1,1],[-3,0],[-2,0],[-3,1],[-3,1],[-3,0],[-1,0],[-5,0],[-2,0],[-9,0],[-2,0],[-5,2],[-2,0],[-8,2],[-1,1],[-2,0],[0,1],[0,2],[1,2],[0,2],[0,2],[1,1],[1,0],[1,0],[2,0],[5,0],[4,-1],[3,0],[3,1],[4,0],[4,-1],[2,0],[2,-1],[4,-1],[2,0],[1,0],[5,1],[1,0],[2,0],[1,0],[0,1],[-1,1],[0,1],[0,2],[0,3],[1,2],[0,1],[-1,2],[-1,1],[1,2],[0,1],[1,1],[2,2],[4,2],[1,1],[0,1],[-1,1],[0,1],[1,0],[3,1],[3,0],[4,0],[4,0],[1,0],[2,1],[1,1],[1,1],[1,1],[0,1],[1,0],[2,0],[2,1],[1,0],[3,2],[2,2],[1,1],[0,1],[1,0],[3,0],[6,0],[7,1],[8,1],[4,0],[3,0],[4,2],[3,1],[1,0],[0,1],[-2,1],[-2,1],[-2,2],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[2,1],[1,3],[0,1],[-1,1],[-5,2],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[7,2],[4,1],[2,0],[2,1],[1,2],[1,0],[1,1],[1,0],[2,0],[2,-1],[5,0],[3,0],[6,1],[4,1],[3,0],[4,0],[2,-1],[1,1],[3,0],[3,1],[2,1],[3,0],[3,0],[3,0],[2,0],[2,1],[4,3],[1,0],[3,0],[5,-1],[3,-1],[1,0],[2,1],[2,0],[2,1],[3,0],[1,1],[3,0],[3,0],[2,0],[2,0],[5,-1],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[2,1],[2,0],[3,1],[1,0],[2,1],[1,-1],[1,0],[2,0],[1,0],[2,0],[3,1],[1,1],[1,1],[1,0],[2,0],[3,-1],[2,0],[2,1],[6,0],[6,0],[4,1],[2,0],[1,2],[1,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,0],[1,1],[2,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[3,1],[3,0],[1,1],[1,1],[0,2],[1,1],[1,1],[1,1],[2,0],[1,1],[0,1],[-1,2],[0,1],[0,1],[1,1],[2,1],[2,1],[1,0],[1,2],[1,1],[1,1],[3,1],[3,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[2,1],[1,1],[1,2],[2,1],[1,2],[1,1],[1,1],[0,1],[0,1],[2,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[2,1],[1,0],[3,0],[4,-1],[4,0],[3,0],[4,0],[6,1],[3,0],[2,1],[1,0],[1,2],[1,0],[0,1],[1,0],[2,1],[1,0],[2,0],[3,1],[4,0]],[[4668,9814],[0,-1],[1,-2],[1,-1],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[2,-1],[2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-3,-1],[-2,0],[0,-1],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[-2,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[5,-1],[1,-1],[2,0],[4,0],[1,0],[1,0],[2,0],[1,0],[4,1],[2,1],[2,0],[1,0],[0,1],[-1,1],[1,0],[4,1],[2,0],[4,0],[3,0],[1,0],[3,0],[2,0],[2,0],[1,0],[2,-2],[2,-1],[1,-1],[4,0],[2,-1],[2,0],[2,-1],[1,0],[2,1],[1,0],[3,1],[1,0],[1,0],[0,1],[2,0],[2,1],[1,1],[3,3],[1,0],[2,0],[7,1],[4,0],[2,0],[1,1],[3,-1],[2,0],[4,-1],[0,-1],[1,-1],[1,0],[0,-1],[3,0],[1,-1],[1,1],[4,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,0],[2,0],[1,-1],[3,0],[0,-1],[5,-2],[1,-1],[3,-1],[1,0],[1,0],[3,1],[1,0],[3,-1],[2,0],[4,0],[2,-1],[1,0],[8,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[2,0],[3,0],[3,0],[3,0],[1,-1],[1,0],[1,0],[-1,2],[-1,1],[-1,2],[1,1],[1,0],[1,-1],[1,0],[1,-1],[2,-2],[2,0],[3,0],[2,0],[3,-1],[1,0],[2,1],[1,0],[1,-1],[2,0],[2,-1],[2,0],[3,1],[1,0],[2,-1],[1,-2],[0,-1],[-2,-1],[-2,-1],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[1,0],[1,-1],[1,0],[2,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,-1],[2,0],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[2,1],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[2,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-2],[1,-1],[3,-3],[1,-1],[2,-1],[4,-2],[1,-1],[1,0],[1,-1],[4,-1],[4,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[3,-1],[1,0],[3,1],[1,0],[1,1],[3,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,1],[3,0],[1,1],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[3,-1],[3,-1],[4,-2],[1,0],[1,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,-1],[-1,-1],[1,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,-2],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,-1],[3,-1],[1,-1],[2,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[2,0],[4,1],[1,1],[2,0],[3,1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[-1,1],[1,1],[1,1],[2,1],[3,0],[2,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[3,1],[1,0],[2,0],[4,0],[3,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[2,1],[3,2],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[3,-1],[1,0],[0,-1],[0,-2],[1,0],[1,0],[2,0],[2,0],[2,1],[1,0],[1,-1],[3,0],[2,0],[1,0],[1,0],[1,0],[5,0],[1,0],[0,1],[0,1],[1,2],[0,1],[-1,1],[1,0],[0,2],[1,0],[1,0],[2,-1],[1,0],[2,0],[2,1],[2,-1],[2,0],[3,0],[3,-1],[2,0],[1,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,-2],[2,0],[1,0],[1,-1],[1,0],[3,-1],[2,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[2,0],[0,2],[1,3],[-1,1],[-2,1],[-1,1],[0,1],[2,1],[1,-1],[1,1],[1,0],[0,1],[1,0],[3,0],[1,1],[2,2],[-2,2],[-4,2],[1,1],[-1,1],[-2,0],[-1,1],[-2,1],[2,2],[0,1],[1,0],[0,2],[0,1],[-1,1],[0,1],[0,1],[1,0],[4,0],[2,-1],[1,0],[2,0],[3,1],[2,0],[1,0],[2,0],[3,-1],[1,0],[1,0],[4,1],[2,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[3,1],[1,0],[1,0],[1,0],[0,-2],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,2],[1,1],[3,1],[1,0],[1,-1],[1,0],[2,0],[2,0],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[2,0],[1,0],[0,1],[2,0],[2,-1],[1,0],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1],[4,1],[1,0],[1,1],[1,0],[1,0],[4,0],[2,0],[2,0],[0,1],[1,0],[1,0],[2,0],[1,0],[3,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[3,-1],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[3,0],[2,0],[1,0],[0,1],[-1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,1],[2,0],[2,0],[1,1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[2,0],[3,0],[2,-1],[3,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[3,1],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[0,1],[1,0],[2,0],[1,0],[1,1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[1,0],[3,-1],[0,-1],[0,-1],[3,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[3,-1],[2,0],[1,-1],[1,0],[2,0],[1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[1,-1],[1,0],[2,-1],[6,-3],[2,1],[1,-1],[1,0],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[2,-1],[2,0],[0,-1],[1,-1],[2,-1],[1,-2],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,-1],[1,-1],[-1,-1],[-1,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-2,0],[0,-1],[-2,-1],[0,-2],[1,0],[2,-2],[2,0],[1,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-1,-3],[0,-1],[2,-1],[1,0],[0,-1],[2,0],[1,0],[1,-1],[1,-1],[1,0],[2,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[-1,1],[-1,0],[1,1],[2,1],[1,0],[1,0],[1,0],[3,-1],[3,0],[2,0],[2,-1],[2,-1],[4,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,1],[5,2],[2,0],[3,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[2,0],[1,0],[1,-1],[3,-1],[2,-1],[2,-1],[1,0],[2,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[3,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[2,1],[0,1],[1,0],[2,1],[1,0],[0,1],[2,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[2,1],[1,1],[-1,1],[0,1],[1,1],[2,0],[1,1],[2,0],[1,1],[1,1],[1,0],[1,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[2,1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,0],[2,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[3,1],[1,1],[1,0],[1,0],[3,1],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,1],[1,0],[2,0],[1,0],[2,0],[3,0],[1,0],[3,1],[0,1],[2,1],[-1,1],[-1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[0,-1],[1,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,1],[-1,2],[1,1],[1,0],[1,0],[4,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[2,1],[1,1],[1,0],[2,0],[1,1],[0,-1],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[2,0],[1,1],[1,0],[2,0],[1,1],[2,0],[3,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[2,0],[1,0],[1,1],[2,1],[1,2],[-1,1],[-1,0],[1,1],[1,0],[1,0],[2,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[1,0],[1,1],[1,1],[2,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,2],[1,1],[-1,0],[-1,1],[0,1],[2,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[2,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,1],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[2,-1],[1,-1],[0,-1],[2,-1],[1,0],[2,0],[2,0],[1,0],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[-1,0],[1,-1],[2,0],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,1],[1,1],[3,1],[2,1],[1,0],[4,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,1],[2,1],[2,1],[1,0],[1,0],[3,1],[1,0],[1,0],[2,0],[1,0],[3,0],[2,0],[1,0],[2,-2],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[2,0],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[3,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[-1,0],[-2,0],[0,-1],[-1,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[3,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-2],[-1,0],[-2,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,-1],[0,-1],[3,-2],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[2,1],[1,0],[1,1],[2,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[2,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[3,2],[1,0],[1,1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,1],[2,-1],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,1],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[2,1],[2,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[0,-2],[1,-1],[2,0],[2,-1],[1,0],[0,-1],[1,-1],[1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[0,-1],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[1,0],[3,-1],[3,-1],[3,-1],[4,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[4,-1],[1,0],[3,-1],[1,-1],[1,-1],[1,0],[2,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,-1],[3,0],[2,0],[2,-1],[1,0],[1,-1],[0,-1],[-2,-1],[1,-2],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[2,-1],[1,1],[1,0],[2,1],[1,0],[2,1],[0,1],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,-1],[1,0],[2,-1],[1,1],[1,1],[3,0],[3,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[2,0],[3,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[4,0],[4,0],[5,0],[2,-1],[1,0],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,1],[2,0],[2,0],[1,0],[0,-2],[2,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[2,0],[2,0],[0,-1],[1,0],[2,-1],[1,-2],[1,-1],[-3,-1],[-2,-1],[1,-1],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-2,0],[-4,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[2,-2],[0,-1],[-3,-1],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-4,-1],[-1,0],[-1,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[-3,0],[-1,-1],[-1,0],[1,-2],[0,-1],[-1,-1],[-1,0],[-3,0],[-2,-1],[-1,1],[-2,0],[-1,0],[-3,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,-2],[-1,0],[0,-1],[1,0],[3,-1],[1,0],[1,-1],[-1,-1],[-3,-1],[-2,-1],[-1,0],[0,-1],[1,-1],[2,-2],[1,-1],[2,-1],[2,-1],[-1,-2],[-1,-2],[0,-1],[1,0],[1,0],[2,0],[5,-2],[2,-1],[2,0],[1,-1],[1,0],[1,-2],[-2,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,-1],[-3,0],[-2,-1],[-3,0],[-4,-2],[-3,0],[0,-1],[0,-1],[-1,-1],[-2,0],[-4,1],[-2,0],[-1,-1],[-1,-1],[1,-1],[2,0],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[1,0],[2,-1],[0,-1],[-1,-1],[1,0],[-2,-1],[-1,-1],[0,-1],[-1,-2],[-2,-1],[-1,0],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-3,1],[-1,0],[-4,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-2],[-2,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[2,-2],[2,0],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,-2],[-1,-1],[0,-1],[-1,-1],[-2,-1],[1,-2],[1,-1],[4,-1],[1,0],[0,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[0,-1],[-1,1],[-1,0],[-1,0],[-3,-1],[-4,-1],[-3,-1],[-2,-1],[-1,0],[-1,0],[-3,-1],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-4,1],[-1,0],[-3,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,-1],[0,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-3,1],[-1,0],[-2,0],[-2,1],[-2,1],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-1,1],[-3,2],[0,1],[-3,0],[-3,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,2],[0,1],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[1,1],[1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-2,-2],[-2,-2],[-1,0],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-4,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,0],[0,-3],[-1,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-3,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[-2,-1],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-4,-2],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[1,-2],[1,-1],[-1,-2],[1,-1],[1,-3],[-1,-2],[2,-1],[0,-2],[0,-1],[0,-1],[-2,-1],[-2,0],[-2,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-3,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[-1,0],[-1,0],[-4,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[2,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-2],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[-1,-1],[-1,-1],[-1,0],[-3,-4],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0]],[[4577,9487],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,0],[-2,0],[-3,-2],[-5,-2],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,0],[-3,-1],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[-2,0],[-4,0],[-4,-1],[0,1],[-2,0],[-3,1],[-4,0],[-7,1],[0,1],[0,1],[-1,0],[-1,1],[-2,1],[-2,0],[-1,2],[-1,1],[-1,1],[-2,1],[-1,0],[-3,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-3,0],[-6,-1],[-4,-1],[-1,0],[-2,1],[-2,1],[-6,1],[-2,0],[-2,1],[-3,0],[-3,1],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,1],[-2,-1],[-1,0],[-1,1],[-1,0],[-4,-1],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,1],[-2,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[1,-1],[0,-3],[-1,-1],[-2,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-2],[0,-2],[0,-1],[-3,-3],[0,-1],[1,-1],[2,0],[2,-2],[0,-1],[-2,0],[-1,0],[-2,1],[-2,1],[-2,1],[0,1],[0,2],[1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[-1,1],[-2,1],[-2,1],[-2,1],[-3,1],[-2,0],[-4,2],[-2,0],[-3,0],[-5,0],[-6,1],[-5,1],[-6,1],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[-2,1],[-2,1],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-3,1],[-4,1],[-2,1],[1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[2,0],[1,-1],[2,0],[1,-1],[0,-1],[2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[2,0],[2,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,-3],[-1,-2],[-1,-1],[1,-1],[1,0],[2,-1],[2,-2],[1,0],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,-2],[0,-1],[1,-1],[1,0],[5,-2],[2,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-4,0],[-3,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[3,-1],[3,-1],[1,0],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-4,-2],[-1,-1],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,1],[-2,0],[-2,1],[-5,0],[-3,0],[-3,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-3,1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[1,-1],[2,0],[2,0],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[2,0],[2,-1],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-2,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-4,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-3,-1],[-2,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-3,-1],[-3,0],[-1,2],[-2,4],[-1,1],[1,3],[-1,0],[-1,1],[-3,0],[0,1],[1,1],[1,1],[3,2],[0,3],[-2,2],[0,1],[-4,1],[-3,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[0,1],[-2,0],[0,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-3,-1],[-4,-1],[-2,-1],[-1,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,0],[-3,0],[-1,0],[-3,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,1],[-3,1],[-1,0],[-1,1],[-1,1],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-3,0],[-1,0],[-3,-1],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[0,1],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-3,-1],[-7,0],[0,-1],[1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[1,0],[3,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[2,0],[1,0],[2,-1],[4,-1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[3,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[0,-1],[1,0],[2,-1],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-3,0],[-2,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[5,-1],[3,-1],[1,-1],[7,-2],[2,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[4,-1],[3,0],[2,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-2],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-2,-1],[1,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1],[1,0],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-4,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-1,0]],[[3690,9185],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-3,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,-1],[0,-1],[1,-2],[-3,0],[-3,0],[-1,0],[-2,0],[-3,1],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,1],[-2,1],[-2,1],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[-2,2],[-1,0],[-1,0],[-3,0],[-3,0],[-1,1],[-1,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-3,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[1,1],[0,1],[-2,0],[0,1],[-1,1],[-1,1],[-1,1],[1,1],[1,1],[2,0],[2,1],[2,1],[2,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-1,0],[-2,-1],[-2,0],[-4,0],[-1,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,2],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-3,-1],[-2,0],[-2,1],[-2,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[2,-1],[0,-1]],[[3333,9228],[-3,1],[-6,1],[-1,0],[-1,-1],[-2,-1],[-2,-2],[-1,-1],[-3,0],[-7,-1],[-6,-1],[-7,1],[-8,2],[-5,2],[-1,1],[1,2],[1,1],[-1,2],[0,2],[0,3],[-1,2],[-3,2],[-3,1],[0,2],[0,1],[4,2],[10,3],[4,-1],[2,0],[2,1],[5,2],[3,1],[1,1],[1,2],[4,2],[3,1],[7,2],[3,1],[1,2],[0,3],[0,2],[-1,2],[-3,1],[-3,1],[-3,2],[0,2],[-3,2],[-5,1],[-2,1],[0,1],[2,1],[7,3],[3,2],[1,0],[5,1],[3,1],[1,2],[0,1],[-2,1],[-7,2],[-7,1],[-2,0],[0,1],[-8,-1],[-3,-1],[-5,0],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[0,2],[2,2],[6,4],[1,0],[0,1],[-3,2],[-1,1],[0,1],[-1,0],[-4,2],[-15,3],[-6,1],[-3,1],[-5,1],[-3,1],[-4,2],[-4,0],[-6,2],[-5,2],[-4,2],[-5,0],[-5,-1],[-3,0],[-2,1],[-2,2],[-3,2],[-2,2],[0,1],[0,1],[0,1],[-2,1],[-9,0],[-7,1],[-9,1],[-5,1],[-1,1],[-2,2],[-3,3],[-3,1],[-4,2],[-4,2],[-3,3],[-2,3],[0,1],[-2,2],[-2,1],[-1,2],[0,1],[1,1],[2,1],[4,1],[8,1],[7,3],[1,1],[1,0],[0,1],[0,2],[0,1],[3,1],[4,2],[2,1],[1,0],[0,1],[-3,2],[-4,1],[-6,2],[-5,1],[-6,1],[-4,0],[-3,1],[-2,2],[-4,0],[-2,1],[-2,1],[-2,3],[-3,2],[-4,2],[-2,3],[-1,2],[-2,1],[-5,0],[-5,1],[-5,1],[-5,1],[-6,2],[0,1],[1,1],[3,3],[3,2],[2,1],[2,1],[1,3],[0,2],[0,5],[1,3],[2,5],[0,1],[0,1],[1,1],[5,0],[9,0],[9,1],[4,0],[6,-2],[8,-2],[2,0],[1,0],[3,1],[4,0],[2,2],[1,1],[1,4],[0,3],[-1,3],[-1,2],[-2,5],[-1,2],[0,5],[0,1],[-2,0],[-2,0],[-8,2],[-12,2],[-7,0],[-5,1],[-3,1],[-8,3],[-8,3],[-7,5],[-2,2],[-1,2],[-1,2],[-4,2],[-2,2],[-1,1],[0,1],[1,1],[1,2],[0,1],[-2,2],[-3,2],[-4,3],[-4,3],[-4,1],[0,1],[-1,0],[-2,0],[-2,0],[-3,0],[-3,-1],[-4,1],[-1,0],[-2,-1],[-3,-1],[-6,-1],[-4,0],[-6,-1],[-4,0],[-4,0],[-2,-1],[-3,1],[-5,0],[-7,2],[-4,2],[-5,1],[-6,3],[-2,1],[-4,1],[-2,0],[-1,1],[0,1],[2,2],[0,1],[0,1],[1,0],[3,2],[2,2],[0,2],[1,2]],[[2998,9538],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[0,-1],[1,-1],[1,-1],[3,-2],[0,-1],[1,-1],[2,0],[2,-1],[1,0],[1,0],[2,1],[3,0],[3,-1],[1,0],[1,1],[1,0],[3,1],[5,1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[3,0],[2,1],[0,1],[1,0],[2,1],[6,4],[1,0],[1,1],[1,0],[6,0],[2,0],[4,-1],[1,-1],[2,0],[1,0],[1,1],[0,2],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[-1,0],[1,1],[2,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[3,1],[3,2],[3,1],[2,1],[0,1],[2,0],[1,1],[5,0],[3,1],[3,1],[2,1],[2,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[8,2],[4,0],[4,1],[3,1],[3,1],[2,0],[2,0],[4,1],[4,1],[5,1],[1,1],[2,1],[1,0],[1,1],[1,0],[5,2],[3,1],[2,1],[1,1],[1,0],[1,1],[3,0],[1,1],[2,1],[1,1],[2,1],[2,1],[1,0],[2,1],[2,0],[1,0],[1,0],[2,2],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[2,0],[3,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[2,1],[1,1],[1,0],[-1,1],[-1,0],[-2,1],[1,1],[2,0],[2,0],[2,0],[2,1],[0,2],[0,1],[1,0],[1,1],[1,2],[1,1],[2,1],[1,0],[3,1],[2,0],[1,1],[1,0],[2,2],[0,1],[1,0],[1,0],[1,0],[2,0],[3,-1],[1,0],[1,1],[0,1],[0,1],[2,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[4,0],[6,2],[4,1],[8,1],[1,0],[2,0],[2,0],[3,1],[5,1],[2,1],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[2,0],[4,0],[2,0],[2,1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[3,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[2,0],[2,1],[3,1],[3,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,1],[0,1],[0,2],[3,-1],[1,0],[1,1],[1,1],[2,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,2],[1,2],[1,1],[1,1],[2,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,-1],[0,-1],[1,-1],[1,-2],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[2,0],[1,0],[1,0],[1,1],[4,1],[2,-1],[3,0],[3,0],[4,0],[2,0],[1,-1],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[3,-2],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[2,1],[2,0],[1,0],[2,1],[3,0],[3,0],[2,0],[6,1],[1,1],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[1,0],[1,0],[1,0],[3,1],[2,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[4,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[5,-1],[2,0],[1,0],[2,0],[1,1],[1,0],[2,0],[4,1],[1,0],[1,1],[1,1],[1,0],[1,2],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[-1,0],[-1,1],[-1,0],[-3,1],[-1,1],[-3,1],[0,1],[1,1],[5,2],[4,2],[1,0],[4,0],[2,1],[2,0],[6,0],[2,0],[2,0],[1,0],[1,0],[5,-1],[1,0],[3,0],[1,1],[1,0],[2,1],[1,1],[1,1],[2,1],[0,1],[1,0],[0,1],[2,1],[2,0],[0,1],[-2,0],[0,1],[2,0],[1,0],[0,1],[-1,2],[2,3],[1,1],[-1,1],[0,1],[1,0],[3,1],[1,1],[1,1],[0,1],[0,2],[1,1],[4,2],[1,0],[0,2],[2,0],[1,0],[0,1],[1,1],[2,0],[3,1],[2,0],[3,-1],[2,0],[4,0],[3,1],[1,0],[2,1],[2,1],[1,1],[1,0],[1,0],[4,0],[2,1],[1,0],[3,1],[0,1],[3,-1],[1,1],[1,0],[0,1],[1,1],[2,0],[2,1],[2,1],[4,0],[1,0],[3,1],[3,1],[2,0],[1,0],[6,0],[1,0],[2,0],[1,0],[1,0],[3,0],[6,-2],[2,0],[1,1],[0,1],[1,1],[3,2],[2,1],[5,3],[7,4],[10,4],[1,1],[1,0],[-2,0],[-4,2],[-1,1],[1,1],[-1,1],[-2,-1],[0,1],[-1,1],[0,1],[-4,3],[-2,1],[0,1],[1,0],[1,1],[0,1],[-2,0],[-3,1],[-1,0],[-1,0],[-3,2],[-1,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,1],[-1,0],[-2,2],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[2,0],[0,1],[-1,1],[1,0],[2,1],[2,0],[3,3],[1,0],[0,1],[-4,1],[-2,1],[-1,0],[-2,1],[0,1],[2,2],[0,1],[0,1],[-1,2],[-1,1],[0,1],[0,3],[-2,2],[0,2],[0,1],[1,1],[-1,0],[-1,1],[-2,1],[0,1],[0,1],[-1,1],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,5],[-1,1],[0,1],[1,0],[0,1],[-2,1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,1],[1,1],[1,0],[-1,0],[-1,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[3,1],[3,0],[1,1],[-2,1],[0,1],[1,0],[0,1],[-1,0],[-3,0],[-6,1],[-2,0],[-2,1],[-1,1],[1,1],[0,1],[-2,1],[1,2],[0,1],[-1,4],[-1,1],[-2,2],[-1,2],[0,3],[-1,2],[0,1],[-2,0],[0,1],[-3,0],[0,1],[3,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-3,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,1],[2,0],[1,0],[3,0],[3,1],[1,1],[9,1],[1,0],[1,0],[7,0],[1,0],[3,0],[1,-1],[1,0],[3,-1],[1,0],[1,0],[1,0],[2,-1],[2,0],[7,1],[2,0],[1,0],[2,0],[1,0],[3,0],[2,1],[1,-1],[3,-1],[4,0],[1,0],[0,-1],[0,-2],[1,0],[1,-1],[1,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,-1],[1,0],[1,0],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,1],[-1,0],[0,1],[0,1],[2,2],[3,3],[2,2],[0,1],[-1,1],[-1,0],[-1,1],[1,1],[0,1],[1,0],[2,1],[0,1],[0,3],[-1,1],[-1,0],[0,3],[2,1],[2,0],[1,0],[1,1],[1,0],[3,2],[1,2],[3,1],[2,0],[3,1],[3,1],[2,0],[1,0],[1,0],[2,0],[4,0],[3,0],[4,2],[1,0],[4,1],[4,1],[2,0],[1,0],[4,-1],[3,-1],[3,0],[1,0],[1,0],[5,-2],[2,0],[2,0],[2,0],[1,0],[1,0],[3,-1],[2,-1],[1,0],[0,-1],[1,0],[3,-2],[2,0],[3,0],[2,1],[2,0],[1,1],[2,1],[4,4],[1,0],[2,3],[0,1],[-1,2],[0,1],[1,2],[1,1],[0,3],[0,1],[0,1],[1,0],[1,0],[3,0],[1,0],[1,0],[5,1],[4,0],[6,1],[9,1],[4,1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[1,-1],[1,0],[3,0],[2,0],[2,0],[4,1],[2,1],[1,0],[1,2],[0,1],[1,3],[2,1],[1,0],[2,1],[3,1],[2,0],[6,0],[4,0],[1,0],[5,0],[6,1],[2,0],[3,2],[3,1],[1,2],[2,1],[5,2],[3,1],[2,1],[1,0],[2,0],[1,0],[2,1],[1,1],[1,0],[1,1],[2,1],[1,0],[0,1],[0,1],[1,1],[1,0],[2,1],[1,1],[1,1],[3,1],[2,0],[2,0],[0,-1],[2,0],[1,0],[1,1],[0,3],[1,1],[1,0],[3,0],[1,0],[1,0],[2,0],[2,1],[1,0],[1,0],[0,1],[2,1],[2,0],[3,1],[1,0],[1,0],[1,1],[1,1],[1,0],[2,0],[1,1],[3,1],[2,0],[3,1],[1,0],[2,0],[1,-1],[2,-1],[1,0],[4,0],[2,0],[2,-1],[1,-1],[-1,0],[-1,-1],[1,-1],[1,0],[2,0],[2,-1],[1,0],[-1,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[1,-1],[2,0],[1,0],[3,1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[2,1],[6,1],[1,0],[1,0],[1,0],[4,2],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[4,-1],[4,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[3,1],[3,0],[1,0],[1,0],[2,0],[1,0],[2,1],[4,2],[1,0],[4,0],[2,0],[0,1],[1,1],[1,0],[1,1],[2,1],[2,0],[1,0],[2,1],[4,3],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,1],[-1,1],[1,1],[5,0],[4,0],[2,0],[2,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-2],[1,0],[1,0],[2,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[3,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[4,2],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[7,2],[4,1],[1,0],[1,0],[-1,0],[0,1],[0,4],[0,3],[1,0],[2,0],[1,0],[3,1],[3,1],[0,1],[1,0],[1,3],[-1,1],[-2,0],[-1,1],[-1,0],[0,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[-1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,0],[1,-1],[2,0],[3,0],[1,0],[2,0],[3,0],[1,0],[2,-1],[2,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[3,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[2,0],[3,1],[1,0],[1,1],[4,1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,2],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[4,1],[1,0],[2,1],[1,0],[2,0],[3,1],[1,0],[3,0],[1,0],[0,-1],[2,0],[2,0],[2,-1],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[2,0],[3,2],[6,3],[2,1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[2,-1],[2,-1],[2,0],[3,-1],[1,-1],[1,0],[3,-1],[1,-1],[3,-1],[2,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[1,-1],[2,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[2,-2],[2,-1],[3,-1],[3,-2],[1,-1],[1,0],[1,-2],[1,-1],[1,0],[2,-1],[2,0],[2,0],[4,-2],[2,-1],[3,2],[2,0],[0,1],[1,0],[1,-1],[5,-2],[2,-1],[2,-1],[4,-2],[8,-5],[6,-4],[4,-2],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,1],[6,1],[0,1],[5,1],[1,0],[5,1],[1,0],[1,0],[1,1],[0,1],[1,2],[1,0],[2,1],[5,0],[2,0],[1,0],[1,0],[3,0],[3,-1],[4,-2],[4,-3],[1,-1],[0,-1],[0,-2],[0,-1],[3,-1],[3,-3],[0,-2],[1,0],[1,-1],[8,-3],[5,-2],[0,-1],[2,-1],[2,-1],[3,-2],[1,-1],[2,0],[1,0],[8,0],[6,0],[1,0],[2,-2],[1,-1],[0,-1],[-1,0],[0,-1],[-3,-1],[-4,-2],[0,-1],[1,0],[2,0],[1,-1],[1,-1],[5,-1],[3,-1],[2,0],[1,-2],[1,0],[1,-1],[2,-2],[-1,-2],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-2],[1,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[3,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[3,-1],[2,-1],[1,0],[2,0],[2,1],[2,0],[6,0],[1,0],[3,0],[4,0],[1,1],[1,0],[1,0],[1,0],[3,0],[1,0],[5,-2],[1,-1],[1,0],[1,0],[1,-1],[3,0],[2,-1],[3,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[7,-2],[1,0],[1,0],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[2,0],[2,0],[2,0],[3,0],[1,0],[2,0],[2,-1],[2,-1],[1,0],[0,-3],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[3,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-3,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,0],[-2,-1],[-1,-1],[-1,0],[-3,-1]],[[6028,9345],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-2],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[3,-1],[2,-1],[1,0],[0,-1],[1,0],[2,-1],[3,-1],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-2],[1,0],[-1,-1],[1,0],[1,-1],[0,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-2,-2],[-2,0],[1,-1],[3,0],[4,-2],[3,-1],[3,-1],[1,-1],[1,1],[1,1],[1,0],[2,1],[1,1],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[3,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[3,1],[1,0],[2,1],[3,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[2,1],[1,0],[1,1],[1,-1],[3,0],[1,0],[4,0],[1,0],[1,0],[2,0],[2,0],[1,0],[3,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-1,0],[1,-1],[1,-1],[1,-2],[2,-2],[3,-2],[2,-1],[5,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[1,-1],[1,-1],[3,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[-3,-1],[-3,-1],[-1,-1],[-1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[3,0],[2,0],[2,1],[2,1],[1,0],[0,1],[1,0],[1,0],[2,0],[2,-1],[2,-1],[1,-1],[1,0],[0,-2],[1,0],[1,-1],[2,0],[1,-1],[2,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-2,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,-1],[1,0],[2,-3],[2,0],[1,-1],[2,0],[1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[2,-1],[1,-1],[1,0],[0,-2],[0,-1],[1,-1],[2,-1],[1,-2],[1,-1],[1,-1],[1,0],[3,-2],[2,-1],[2,-2],[1,-1],[0,-1],[-1,-3],[-1,0],[-3,0],[-1,-1],[-1,-2],[-1,0],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-3,-1],[-4,-2],[-1,0],[-4,0],[-3,0],[-2,0],[-2,1],[-2,0],[-1,0],[1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-2],[-1,0],[-3,-1],[-3,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[2,0],[1,-1],[0,-1],[1,-1],[2,0],[1,-1],[0,-1],[0,-2],[5,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[1,-1],[1,0],[2,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[1,1],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-3,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-2,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[2,1],[1,0],[1,-1],[1,0],[0,-2],[4,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[0,-2],[-1,-1],[1,-1],[0,-2],[-2,-3],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-7,-2],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[2,0],[2,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[2,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-3,-2],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-4,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-2],[1,0],[0,-2],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[2,-1],[2,0],[2,-1],[1,-2],[2,0],[1,0],[1,0],[1,0],[0,-1],[3,0],[0,-1],[0,-1],[1,0],[2,-1],[3,-1],[1,0],[0,1],[3,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,-1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[0,1],[2,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[2,1],[3,2],[0,1],[1,0],[1,1],[1,1],[2,1],[-1,2],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[4,0],[3,0],[3,1],[3,1],[2,0],[2,1],[1,0],[3,-1],[1,0],[2,0],[2,1],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[2,0],[2,1],[1,0],[1,0],[1,0],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[3,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[2,0],[3,2],[1,0],[1,0],[2,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[2,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[2,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[4,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,1],[2,0],[3,1],[2,1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[1,-1],[3,0],[2,0],[3,0],[4,0],[1,0],[1,1],[2,0],[1,0],[3,0],[4,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,0],[3,0],[1,0],[2,0],[2,0],[1,0],[4,1],[2,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[1,0],[1,1],[2,1],[1,0],[1,0],[1,1],[-1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[-1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[2,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[1,0],[1,0],[3,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[3,0],[1,1],[2,0],[1,0],[1,0],[4,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[0,-1],[1,0],[1,-2],[1,0],[1,-1],[0,-1],[1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-3,1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[2,-1],[3,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[-3,-2],[-2,-1],[-2,-2],[-2,-1],[-4,-2],[-2,-2],[-1,0],[-2,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[4,-2],[0,-1],[1,0],[0,-1],[3,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,0],[3,0],[6,0],[2,0],[1,-1],[2,0],[3,0],[1,-1],[1,0],[3,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[3,0],[3,0],[3,0],[4,0],[3,-1],[0,1],[1,0],[2,1],[2,0],[3,-1],[2,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,0],[2,-1],[0,-1],[1,0],[0,-1],[3,0],[3,-1],[1,0],[1,0],[3,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[2,1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-2],[1,0],[5,-2],[3,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[-1,-1],[1,-1],[2,0],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[3,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[2,-1],[3,-1],[1,0],[3,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[2,0],[2,0],[5,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[3,-1],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-2],[3,-2],[3,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[3,0],[1,0],[2,0],[0,-1],[2,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[1,0],[1,0],[3,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[4,0],[1,0],[1,0],[2,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[2,0],[1,1],[2,0],[1,0],[2,0],[0,-1],[1,0],[5,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,1],[1,0],[2,1],[3,0],[1,0],[1,1],[1,0],[2,0],[0,1],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[3,1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-2],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,-1],[1,0],[1,0],[-1,-1],[2,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[3,-2],[1,0],[3,0],[2,-1],[2,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[0,-1],[-1,-1],[2,-1],[2,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,0],[0,-1],[0,-2],[0,-1],[0,-1],[2,-2],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,-1],[-3,0],[-1,-1],[2,-1],[-1,-1],[1,-2],[1,-1],[2,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1]],[[7122,8790],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-4,-1],[-3,-1],[-2,-1],[-1,1],[-1,1],[-2,0],[0,2],[-1,1],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[2,0],[1,0],[2,1],[1,0],[2,1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[2,-2],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-2],[-1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[1,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-4,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-3,-1],[-4,-1],[-3,0],[-1,0],[-1,0]],[[5514,8793],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[3333,9228],[-1,-1],[-1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[1,0],[2,-1],[2,-1],[0,-1],[-2,-1],[0,-1],[1,0],[2,-1],[2,-1],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,1],[2,0],[1,1],[3,-1],[1,0],[1,1],[2,0],[1,0],[1,1],[4,1],[2,0],[1,0],[4,0],[3,-1],[3,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[3,0],[-2,-1],[-3,-2],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-3,0],[1,-2],[1,0],[-1,0],[-2,-1],[-1,-1],[0,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[-1,-2],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-2],[2,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-3,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-4,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[0,-1],[1,-2],[0,-2],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-3,1],[-1,0],[-2,1],[-3,0],[-2,0],[-2,1],[-2,0],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[-2,1],[-2,1],[-2,1],[-3,1],[-1,0],[-1,2],[0,1],[0,2],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,2],[1,1],[-3,0],[-2,0],[-1,0],[-3,1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,2],[-3,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-4,2],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,-1],[-2,-1],[-2,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[3,0],[2,-1],[3,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[1,-2],[1,-1],[1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-4,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-6,0],[-3,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-4,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-3,1],[-2,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,1],[-1,0],[-2,1],[-2,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,1],[-2,0],[-2,1],[-3,1],[-3,0],[-3,0],[-2,1],[-3,0],[-1,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-2,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-2,0],[-5,2],[-1,0],[-3,1],[-1,1],[-1,2],[0,1],[-1,1],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,1],[3,1],[3,1],[1,1],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,0],[-1,1],[-2,2],[-2,1],[-3,1],[-2,0],[-1,1],[-1,0]],[[2511,9038],[-3,3],[-2,1],[-3,0],[-2,1],[-2,0],[-1,1],[-1,1],[0,1],[0,2],[-4,2],[-4,3],[-6,3],[-5,2],[-3,1],[0,1],[1,1],[3,1],[4,3],[3,2],[0,1],[0,1],[-1,1],[-6,3],[-6,2],[-3,2],[0,1],[0,1],[3,2],[1,1],[0,3],[0,4],[0,1],[1,3],[-1,1],[-3,3],[0,3],[-2,2],[-3,3],[-3,3],[-6,2],[-1,1],[0,1],[-1,1],[-2,1],[-4,1],[1,1],[0,1],[0,1],[0,1],[1,1],[6,4],[1,1],[-1,2],[-1,2],[1,1],[1,1],[0,1],[-1,2],[-4,2],[-4,3],[-2,2],[0,1],[0,1],[3,1],[0,1],[0,1],[-1,1],[1,4],[0,2],[-1,1],[-3,1],[-6,0],[-5,0],[-4,1],[-5,-1],[-3,1],[-4,1],[-3,0],[-3,3],[-4,3],[-3,2],[-5,0],[-4,0],[-2,1],[-2,2],[-3,2],[-3,3],[-2,1],[-6,2],[-9,1],[-10,1],[-4,0],[-2,1],[-2,1],[-2,1],[0,1],[0,1],[1,0],[5,2],[2,1],[1,1],[0,2],[0,2],[0,1],[0,1],[-2,1],[-3,1],[-1,0],[-1,1],[-6,0],[-5,1],[-2,1],[-1,0],[0,1],[-1,1],[-1,1],[-3,2],[-1,3],[-1,1],[-2,1],[-6,1],[-3,1],[-2,1],[-1,2],[0,1],[0,1],[2,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-3,1],[-3,1],[-1,0],[-2,2],[-2,1],[-2,2],[-2,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-5,2],[-4,3],[-3,2],[-2,1],[-3,1],[-1,0],[-3,2],[-2,0],[-4,1],[-1,0],[-1,0],[-3,1],[-4,2],[-7,3],[-4,2],[-4,2],[-3,0],[-2,1],[-1,0],[-3,-1],[-2,0],[-4,1],[-1,0],[-4,0],[1,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,1],[5,2],[2,1],[0,1],[2,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[4,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-3,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[1,2],[0,1],[0,1],[0,3],[-1,1],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-6,2],[-5,2],[-2,1],[-1,0],[-1,1],[-1,1],[-4,2],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-3,1],[-1,0],[-1,1],[-1,0],[-3,0],[-2,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-3,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-2,0],[-5,0],[-2,0],[-10,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-3,0],[-5,1],[-1,1],[-2,0],[-2,1],[-7,2],[-5,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-2,0],[-2,1],[-2,0],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[3,1],[0,1],[1,0],[1,1],[1,0],[1,1],[3,2],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[3,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,2],[4,3],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[4,3],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,3],[-1,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-3,2],[-2,2],[0,1],[-2,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[2,1],[1,0],[-1,0],[-2,0],[-2,0],[-2,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-2,2],[-2,2]],[[1893,9461],[2,1],[2,1],[2,2],[2,1],[3,1],[1,1],[0,1],[3,1],[1,1],[1,0],[3,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[2,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,2],[-1,1],[1,1],[2,0],[2,0],[1,1],[2,0],[2,0],[1,0],[1,0],[6,2],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[2,0],[0,1],[0,1],[1,1],[2,1],[1,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-2,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[2,3],[0,1],[0,1],[-1,1],[-1,1],[1,1],[0,1],[1,2],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,2],[1,0],[1,1],[0,1],[1,1],[2,1],[1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,1],[-1,0],[-1,1],[0,1],[1,0],[3,1],[0,1],[1,1],[2,1],[2,0],[4,1],[2,1],[1,2],[1,1],[2,0],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[3,1],[2,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-2,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[2,1],[1,1],[1,0],[5,0],[1,0],[1,1],[1,0],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[3,1],[0,1],[1,0],[1,0],[2,1],[1,0],[1,-1],[2,0],[1,0],[3,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[3,0],[1,0],[1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[2,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-2],[2,-2],[0,-2],[0,-2],[2,-2],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[2,-1],[2,0],[3,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[4,-1],[1,0],[3,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,-1],[3,-1],[3,-2],[2,-1],[2,-1],[1,0],[6,-3],[5,-2],[4,-1],[5,-2],[1,-1],[1,-1],[3,-2],[5,-2],[4,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[0,-2],[-1,-1],[1,0],[2,-1],[1,-1],[1,0],[3,0],[1,0],[1,0],[1,-1],[2,0],[3,-1],[1,-1],[1,-1],[-1,-1],[1,-1],[0,-1],[4,0],[3,-1],[2,0],[3,0],[3,1],[2,0],[3,1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[2,-1],[2,-1],[4,-4],[5,-2],[1,-1],[2,-1],[1,-1],[2,0],[2,-1],[1,0],[4,-1],[0,-1],[2,-1],[3,-1],[3,-2],[1,0],[1,-1],[2,-1],[1,0],[1,0],[0,-1],[0,-2],[1,-1],[1,0],[1,0],[3,-2],[2,0],[2,-1],[2,-1],[3,-3],[2,-2],[2,-1],[1,-2],[2,-2],[2,-1],[0,-1],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[2,0],[1,-1],[5,-1],[2,-1],[1,0],[1,0],[3,-1],[5,-3],[5,-2],[2,-3],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[3,-1],[2,0],[5,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,-1],[3,-1],[8,-6],[3,-2],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[3,-1],[1,0],[1,-1],[4,0],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[3,-1],[4,-1],[3,-2],[3,-1],[6,-4],[4,-2],[4,-2],[3,-1],[2,-1],[3,-2],[2,-1],[0,-1],[-1,-1],[-2,-2],[1,-1],[2,-1],[2,0],[1,0],[2,0],[2,0],[2,2],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-2],[2,-2],[1,-1],[1,-1],[1,0],[4,-1],[2,0],[1,0],[2,0],[2,0],[4,-1],[2,0],[2,-1],[2,-1],[2,-1],[1,-2],[1,-1],[0,-1],[1,-1],[3,-1],[1,0],[4,-2],[2,0],[5,-1],[1,0],[1,0],[1,0],[1,1],[2,0],[2,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[3,0],[3,0],[2,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[3,0],[1,0],[2,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[3,0],[2,0],[1,-1],[3,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,1],[1,0],[1,0],[1,0],[0,1],[2,0],[2,1],[2,0],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-3,2],[-2,0],[0,1],[1,1],[1,1],[2,1],[1,1],[1,0],[1,0],[0,-1],[2,0],[1,0],[2,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[2,1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[2,-1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,1],[0,1],[-1,1],[3,2],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,1],[1,2],[0,1],[1,1],[3,5],[1,1],[0,1],[0,1],[0,1],[1,0],[2,1],[0,1],[1,2],[-1,1],[0,2],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[-4,1],[-1,0],[-4,1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[2,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-3,1],[-1,1],[1,0],[2,3],[2,1],[4,0],[1,1],[2,0],[1,0],[1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[2,1],[0,1],[1,0],[1,2],[1,1],[0,1],[1,1],[0,1],[1,2],[1,1],[2,2],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[2,1],[3,2],[2,0],[0,1],[1,1],[1,1],[2,1],[3,1],[1,0],[1,0],[1,0],[0,1],[0,1],[2,1],[2,1],[2,2],[2,1],[2,0],[2,1],[3,3],[3,2],[1,0],[4,1],[3,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[2,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,1],[2,0],[2,1],[1,0],[2,0],[0,1],[1,0],[1,2],[1,0],[0,1],[1,2],[1,1],[0,2],[2,1],[0,1],[1,1],[0,1],[2,1],[6,2],[0,1],[1,0],[1,1],[0,1],[3,1],[1,1],[2,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[2,2],[0,1],[1,0],[3,0],[1,0],[2,0],[6,1],[1,0],[2,0],[3,0],[2,-1],[1,0],[2,-1],[2,-2],[1,-1],[4,0],[4,0],[7,2],[3,1],[2,0],[2,0],[1,0],[3,0],[1,0],[1,1],[1,0],[0,1],[0,1],[2,0],[4,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[4,0],[1,0],[1,0],[0,-1],[4,1],[1,0],[2,0],[1,0],[2,0],[0,1],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[3,1],[2,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,0],[3,0],[1,0],[3,0],[3,1],[3,0],[6,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[4,2],[3,1],[1,0],[3,2],[1,0],[3,2],[1,0],[1,1],[3,0],[1,1],[2,0],[1,1],[1,1],[1,0],[1,0],[1,0],[3,-1],[2,0],[1,-1],[2,0],[2,-1],[1,-1],[2,1],[1,1],[2,1],[2,1],[1,0],[1,0],[2,0],[1,-1],[3,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[3,-2],[1,0],[1,0],[2,0],[3,0],[1,0],[0,1],[3,0],[2,0],[-2,-1],[-2,-2],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[1,-2],[1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-3],[-1,-1],[-1,-1],[-2,-2],[0,-2],[-3,-2],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-3],[1,-1],[2,-2],[2,-1],[4,-2],[1,0],[3,-2],[1,0],[2,-2],[0,-1],[1,-2],[-1,-2],[0,-1],[1,-1],[0,-1],[2,0],[3,0],[5,0],[1,0],[2,0],[1,0],[1,-1],[6,-1],[1,0],[2,-1],[3,0],[1,-1],[2,0],[2,-1],[3,-1],[3,-1],[3,0],[1,-1],[2,0],[2,0],[2,0],[2,0],[1,0],[4,1],[1,0],[4,0],[2,0],[5,0],[3,0],[2,0],[2,-1],[2,0],[1,0],[0,-1],[1,-1],[3,0],[2,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,0]],[[4330,8394],[1,-1],[3,-2],[4,-2],[2,-2],[1,-1],[0,-1],[6,-7],[2,-2],[6,-9],[1,0],[1,-2],[1,-1],[1,-2],[1,-3],[1,-1],[2,-3],[1,-1],[0,-1],[2,-3],[1,-2],[0,-2],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-3,0],[-2,0],[-2,-1],[-1,-1],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-3,-2],[-2,0],[-4,0],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,-1],[-5,1],[-2,1],[-2,0],[-1,1],[-4,3],[-15,-5],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-2,2],[-2,2],[-1,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[-3,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,1],[0,1],[-1,1],[-1,1],[-2,0],[-2,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[2,0],[2,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-3,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-3,0],[-2,1],[-1,0],[-2,0],[-2,0],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-3,1],[-2,0],[-2,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,-1],[-3,-1],[-1,-1],[-2,0],[0,2],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-2,0],[-2,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-3,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,1],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-4,0],[-4,-1],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[3,1],[1,0],[1,0],[3,0],[3,0],[1,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[2,1],[1,0],[1,1],[-1,0],[-1,1],[-1,1],[0,1],[-2,0],[-1,1],[-4,1],[-1,0],[-1,0],[0,1],[-2,2],[-1,1],[-2,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-2,1],[-1,1],[1,1]],[[3776,8461],[1,0],[2,-1],[0,1],[1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-3,0],[-2,0],[-4,1],[-2,1],[-6,2],[-3,1],[-1,1],[0,1],[-1,1],[-7,1],[-10,2],[-4,0],[-2,1],[-2,1],[-2,1],[-2,0],[-2,1],[-2,1],[-1,1],[-2,1],[-2,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,1],[-4,2],[-1,1],[0,1],[0,2],[1,2],[1,2],[1,1],[2,1],[2,1],[1,4],[0,1],[0,1],[-1,0],[-2,1],[-2,0],[-3,1],[-2,0],[0,1],[1,1],[3,1],[4,2],[1,2],[2,3],[1,2],[2,3],[3,2],[0,2],[0,1],[-1,1],[-3,2],[-2,2],[-3,1],[-2,2],[-3,1],[-5,1],[-2,0],[-4,1],[-1,1],[1,1],[2,0],[3,1],[0,1],[-1,1],[1,0],[1,1],[2,0],[1,0],[1,0],[2,-1],[1,0],[0,1],[0,1],[-3,2],[-3,3],[-2,3],[-1,2],[0,1],[2,1],[0,1],[0,1],[0,1],[-2,0],[-4,1],[-4,1],[-2,1],[0,1],[0,2],[0,2],[2,2],[0,1],[-1,2],[0,1],[-1,3],[0,3],[0,3],[1,3],[1,2],[0,4],[0,2],[0,1],[0,1],[-1,1],[-3,1],[-4,1],[-6,0],[-4,0],[-3,1],[-3,1],[-4,2],[-5,2],[-3,1],[-1,2],[0,1],[-2,2],[2,2]],[[3646,8611],[1,2],[3,1],[3,0],[5,0],[4,0],[7,-1],[4,0],[3,0],[2,0],[2,0],[4,0],[4,1],[3,0],[1,1],[-2,1],[-2,1],[-1,1],[-1,2],[0,1],[-2,1],[1,1],[3,0],[2,0],[3,0],[2,0],[2,0],[1,1],[0,1],[-1,1],[-1,1],[1,1],[1,1],[1,1],[2,1],[3,1],[2,0],[3,0],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,-1],[2,-1],[1,-1],[1,0],[2,-1],[2,-1],[2,0],[3,-1],[1,0],[2,-1],[2,-1],[2,0],[2,1],[3,0],[3,0],[3,0],[2,1],[3,0],[1,0],[1,1],[2,1],[1,1],[1,1],[0,1],[-1,2],[-3,1],[-1,1],[-1,2],[-1,0],[-2,0],[-1,1],[0,1],[0,1],[-1,0],[-5,2],[-3,1],[-3,1],[-1,1],[0,1],[0,2],[1,1],[0,1],[-2,1],[-2,1],[0,1],[1,0],[2,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,1],[2,0],[3,1],[4,0],[4,0],[2,0],[2,2],[4,2],[0,1],[1,1],[-1,1],[2,1],[2,2],[2,1],[3,1],[2,1],[1,1],[0,2],[0,2],[-2,2],[-1,2],[0,1],[1,1],[1,1],[4,0],[1,1],[1,1],[1,2],[0,2],[0,2],[-1,2],[-1,2],[-2,2],[-4,3],[-1,1],[-2,2],[-1,1],[-3,1],[-3,2],[-3,2],[-1,1],[1,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,2],[0,1],[1,1],[0,1],[-1,1],[-2,2],[-4,3],[-2,2],[-1,1],[-1,2],[-2,1],[0,1],[0,2],[-2,1],[-1,2],[0,1],[1,1],[0,2],[0,2],[0,1],[2,1],[1,0],[0,1],[-2,1],[-2,1],[0,2],[-1,1],[-2,2],[-2,1],[-1,1],[-7,2],[-3,1],[-3,1],[-1,1],[0,2],[0,1],[1,2],[1,1],[2,1],[2,1],[1,1],[2,0],[1,0],[3,0],[2,0],[2,1],[2,0],[1,1],[1,-1],[3,0],[2,-1],[2,1],[3,1],[7,2],[4,1],[-1,2],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[-1,1],[0,1],[0,3],[0,1],[-1,1],[-1,0],[-1,1],[0,2],[-2,1],[-1,1],[0,1],[1,1],[0,1],[-2,2],[0,1],[1,1],[1,1],[0,1],[0,1],[-2,0],[-2,2],[-4,1],[0,2],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[5,0],[4,1],[3,0],[2,0],[3,-1],[1,0],[1,0],[0,1],[-1,1],[-1,2],[-1,2],[0,2],[0,1],[0,1],[0,2],[1,1],[2,2],[3,1],[2,1],[2,1],[2,1],[4,1],[2,1],[3,1],[4,0],[4,0],[3,0],[4,0],[3,0],[2,1],[3,1],[2,1],[0,1],[0,1],[0,1],[0,1],[3,0],[1,1],[3,0],[3,1],[1,1],[1,0],[2,0],[2,-1],[1,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[-1,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[3,-1],[2,-1],[1,0],[0,1],[1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,1],[2,0],[3,0],[2,0],[2,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,-1],[1,0],[2,0],[1,0],[3,1],[3,0],[1,1],[1,1],[0,1],[-4,1],[0,1],[1,0],[1,1],[1,0],[2,0],[3,0],[1,0],[2,0],[4,0],[3,0],[4,0],[2,0],[2,0],[2,0],[0,1],[0,1],[1,0],[1,1],[1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,1],[2,0],[1,1],[0,1],[1,1],[2,0],[3,-1],[2,-1],[3,-1],[2,0],[2,-1],[-1,-1],[1,0],[2,-1],[1,-1],[1,-1],[2,0],[3,0],[2,-1],[1,0],[4,0],[1,-1],[3,-1],[4,0],[1,0],[1,2],[2,1],[2,0],[2,-2],[2,-1],[3,-1],[3,0],[2,-1],[1,0],[3,0],[2,-1],[2,0],[2,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[-2,1],[-1,1],[0,2],[-1,2],[-1,0],[-1,0],[-5,0],[-4,1],[-2,0],[-1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[2,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,1]],[[4014,8870],[3,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[3,1],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[4,-2],[4,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,-2],[2,-2],[1,-1],[1,-2],[1,-1],[-1,-2],[-2,-2],[-5,-3],[-1,-1],[-3,-1],[-3,-1],[-4,-2],[3,-2],[1,0],[2,-2],[4,-3],[1,-1],[2,0],[3,0],[3,0],[6,-1],[4,0],[2,-1],[1,-1],[2,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[2,0],[1,-1],[1,-1],[0,-1],[0,-2],[1,-2],[0,-1],[2,-1],[3,-2],[1,-1],[5,-3],[5,-3],[-1,0],[0,-1],[1,0],[2,-1],[1,-1],[2,0],[1,0],[3,0],[2,-1],[2,0],[2,-1],[1,0],[0,-1],[1,-1],[1,-1],[-1,-1],[-3,-1],[0,-1],[1,0],[0,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,0],[4,-2],[-1,0],[3,0],[4,0],[2,0],[2,0],[2,0],[4,-1],[2,-1],[5,0],[2,-1],[3,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[-2,-2],[-1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[2,-1],[3,-2],[4,-1],[2,0],[4,0],[2,0],[4,1],[2,1],[3,0],[3,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0]],[[6834,8209],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[2,0],[1,0],[0,1]],[[7274,8211],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-7,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[4,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0]],[[6843,8213],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[1,0],[2,0],[1,0]],[[6832,8214],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[1,0],[-2,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-2],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[6892,8216],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[2,0]],[[6826,8217],[0,-1],[1,0],[2,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[1,0],[1,0]],[[7145,8219],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[6884,8222],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,2],[1,0],[1,0]],[[7168,8224],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-3,0],[-2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[2,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[6889,8225],[2,0],[1,0],[-1,0],[0,-1],[-2,0],[-2,0],[0,1],[2,0]],[[6832,8226],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-2,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1]],[[6835,8227],[0,-1],[1,0],[1,0],[3,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1]],[[6824,8233],[2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[2,0],[2,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[2,0],[0,1],[0,-1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-2,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[3,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[3,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,0]],[[6819,8234],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-3,0],[-1,0],[0,1],[1,0],[1,0]],[[6866,8235],[1,0],[0,-1],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[2,0]],[[6895,8235],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[6876,8236],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-4,0],[0,1],[-2,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7300,8236],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[1,0],[4,0]],[[6864,8237],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[1,0],[0,2],[1,0],[0,1],[3,0],[1,0]],[[6870,8238],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[6885,8242],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0]],[[6890,8243],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7089,8245],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,2],[1,0],[0,1],[2,0]],[[7151,8245],[1,0],[0,-1],[2,0],[2,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1]],[[6817,8245],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[1,0],[0,1],[1,0]],[[7215,8246],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[1,0]],[[6904,8249],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6878,8251],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[2,0]],[[6868,8253],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[-2,0],[0,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,2],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0]],[[7286,8253],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[3,0]],[[6880,8254],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,2],[4,0]],[[6814,8254],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,0]],[[6806,8255],[0,-1],[-1,0],[0,1],[1,0]],[[6779,8256],[0,-1],[-2,0],[0,1],[1,0],[1,0]],[[7184,8257],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[3,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,3],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0]],[[6893,8257],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0]],[[6880,8258],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7083,8260],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[3,0]],[[6994,8261],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[2,0]],[[6804,8262],[0,-1],[1,0],[0,-1],[-1,0],[2,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6869,8263],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[-2,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-3,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6797,8263],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[0,1],[1,0],[2,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[6981,8263],[0,-1],[1,0],[-1,0],[-2,0],[1,0],[0,1],[1,0]],[[6930,8264],[0,-1],[-2,0],[-1,0],[0,1],[2,0],[0,-1],[1,0],[0,1]],[[6941,8264],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[6757,8265],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6813,8265],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[6916,8265],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0]],[[6988,8265],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[2,0]],[[6856,8265],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-3,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6924,8265],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6947,8266],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[2,0]],[[6935,8266],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[3,0]],[[6981,8266],[2,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6801,8267],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[3,0]],[[6853,8267],[-2,0],[2,0]],[[6866,8267],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[6978,8268],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[3,0]],[[6982,8268],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[6822,8269],[0,-1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[2,0]],[[6920,8269],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0],[0,1],[2,0]],[[7009,8267],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[2,0],[0,-2]],[[6768,8269],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[7030,8269],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0]],[[6937,8270],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[7006,8270],[1,0],[0,-1],[-1,0],[0,1]],[[6868,8271],[0,-1],[3,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1]],[[6994,8271],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[7003,8271],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0]],[[7012,8271],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[2,0]],[[6782,8271],[1,0],[1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0]],[[6917,8273],[0,-1],[1,0],[-1,0],[-2,0],[0,1],[2,0]],[[6883,8273],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0]],[[7021,8273],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0]],[[6911,8273],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0]],[[6931,8273],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7056,8273],[1,0],[0,-1],[-3,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[6,0]],[[6899,8274],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[2,0]],[[6819,8274],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-3,0],[0,2],[0,1],[1,0],[-1,0],[0,1],[1,0],[2,0]],[[6964,8274],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[6975,8274],[0,-1],[-1,0],[0,1],[1,0],[1,0],[-1,0]],[[6870,8275],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[2,0]],[[7077,8275],[0,-1],[-2,0],[0,1],[1,0],[1,0]],[[7051,8275],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[1,0]],[[6930,8276],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[5,0]],[[6777,8277],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0]],[[6736,8278],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[2,0]],[[6978,8278],[2,0],[2,0],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[1,0],[3,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7049,8279],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6777,8280],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[1,0],[0,1],[1,0],[0,1],[2,0]],[[6787,8280],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[6893,8280],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-4,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0]],[[6909,8280],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[0,1],[-1,0],[1,0]],[[6720,8280],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[7042,8280],[1,0],[1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[2,0]],[[7079,8280],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6796,8281],[0,-1],[-2,0],[-2,0],[0,1],[1,0],[1,0],[2,0]],[[6913,8281],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[6918,8281],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7051,8281],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[2,0]],[[6853,8282],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-2,0],[-3,0],[-2,0],[0,1],[0,1],[2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[2,0],[2,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[2,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[-2,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0]],[[6835,8282],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[7071,8283],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[2,0]],[[7158,8283],[2,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0]],[[6785,8283],[1,0],[0,-1],[-2,0],[0,1],[-2,0],[-1,0],[2,0],[1,0],[1,0]],[[6735,8284],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[6854,8284],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[7036,8284],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[6987,8285],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[6842,8285],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[2,0]],[[6744,8285],[1,0],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[-2,0],[0,1],[1,0],[1,0]],[[6795,8285],[1,0],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6730,8286],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[4,0]],[[6724,8285],[-3,0],[0,1],[3,0],[0,-1]],[[6712,8286],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[6973,8286],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[-2,0],[0,1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-2,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,3],[1,0],[1,0],[1,0],[3,0]],[[7027,8286],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0]],[[6740,8287],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[2,0]],[[6853,8287],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[-2,0],[0,1],[-1,0],[1,0],[1,0],[3,0]],[[6865,8288],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[3,0],[1,0],[0,-2],[-1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[0,1],[-1,0],[0,1],[3,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,0]],[[7030,8288],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[6994,8288],[1,0],[0,-1],[2,0],[2,0],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[3,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,2],[1,0],[1,0]],[[7054,8289],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7097,8289],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[4,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[2,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[3,0],[1,0],[2,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-3,0],[-3,0],[-4,0],[-4,0],[-5,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,3],[0,2],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6881,8289],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[2,0]],[[7196,8289],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-4,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0]],[[6726,8290],[0,-1],[1,0],[-1,0],[-2,0],[1,0],[0,1],[1,0]],[[6776,8290],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,-1],[-1,0],[-2,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0]],[[6969,8290],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0]],[[6690,8290],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[1,0],[-1,0],[0,1],[0,1],[3,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0]],[[6888,8290],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[6996,8291],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[6738,8291],[0,-1],[-1,0],[-1,0],[0,1],[2,0]],[[7020,8291],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[0,1],[2,0],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-2,0],[0,-1],[-3,0],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-2,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[4,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[0,2],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[3,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0]],[[6520,8291],[1,0],[1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[2,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[4,2],[1,0],[1,0],[1,0],[1,0],[1,0]],[[7032,8291],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,0]],[[6972,8292],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[2,0],[0,1]],[[6876,8292],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0]],[[6743,8292],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6697,8293],[2,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[1,0]],[[6755,8294],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[0,1],[0,-1],[0,-1],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,1],[-3,0],[1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,2],[1,0],[1,0],[3,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,2],[1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0]],[[6808,8294],[0,-1],[4,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[0,1],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-2,0],[1,0],[0,1],[-1,0],[-1,1],[1,0],[2,0],[0,1],[4,0]],[[6842,8295],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[7058,8295],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[2,0]],[[6868,8295],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[2,0]],[[6947,8296],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[2,0]],[[6678,8296],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-2,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6725,8296],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0]],[[6815,8296],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6966,8296],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0]],[[7040,8296],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[1,0],[2,0]],[[6796,8296],[1,0],[-1,0],[-1,0],[1,0]],[[7067,8296],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[6624,8296],[0,-1],[1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[6695,8297],[1,0],[0,-1],[0,-1],[-3,0],[1,0],[0,1],[0,1],[1,0]],[[6743,8297],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6854,8297],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[0,-1],[0,1],[1,0],[0,-1],[2,0],[0,1],[-1,0],[0,1],[1,0]],[[7063,8298],[0,-1],[-1,0],[-1,0],[0,1],[2,0]],[[6704,8298],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[7011,8298],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-2,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0]],[[6896,8299],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[2,0],[0,-1],[1,0],[2,0],[1,0],[0,-2],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[6464,8298],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,1],[-1,1],[-1,1],[2,1],[2,-1],[1,0]],[[6932,8299],[0,-1],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[0,1],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[2,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-2,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[2,0]],[[6975,8299],[2,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[2,0],[0,1]],[[6796,8299],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6673,8299],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-4,0],[1,0],[-1,0],[0,1],[2,0],[1,0],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[6843,8300],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[6984,8301],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-2,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-7,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-4,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0]],[[6666,8301],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[2,0]],[[6478,8301],[1,0],[1,0],[3,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-4,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[2,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[2,1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0]],[[7005,8302],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[2,0]],[[7260,8302],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-3,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[5,0]],[[6970,8302],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7053,8302],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0]],[[6788,8302],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0]],[[6593,8302],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6782,8302],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,2],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[6988,8302],[-2,0],[1,0],[1,0]],[[7022,8302],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0]],[[6935,8303],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[6709,8303],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0]],[[7035,8303],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[0,1],[1,0],[0,1],[1,0],[0,1],[3,0]],[[6597,8303],[0,-1],[-1,0],[1,0],[-1,-1],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6637,8304],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0],[1,0],[0,1],[1,0]],[[6815,8304],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[6642,8304],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,1],[3,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-3,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0]],[[6947,8304],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0]],[[6627,8302],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[6779,8304],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[2,0]],[[6806,8304],[2,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[6,0]],[[6918,8304],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7012,8304],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[0,1],[1,0],[-1,0],[1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[3,0],[1,0]],[[6966,8304],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0]],[[6544,8304],[-1,-1],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[2,1],[2,1],[1,0],[1,1],[3,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1]],[[6785,8305],[0,-1],[-2,0],[0,1],[2,0]],[[7029,8305],[1,0],[0,-1],[-3,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[6585,8306],[0,-1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[2,0]],[[6620,8305],[0,-1],[1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0]],[[6802,8306],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6925,8306],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[-3,0],[0,1],[-1,0],[-2,0],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[2,0]],[[6846,8306],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6638,8305],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[6666,8307],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[6647,8307],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7171,8307],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6818,8307],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0]],[[6947,8307],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0]],[[6969,8308],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6858,8308],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[0,1],[-2,0],[-1,0],[1,0],[0,1],[2,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[3,0],[0,1],[1,0],[-1,0],[0,1],[-2,0],[0,1],[1,0],[-1,0],[0,1],[1,0]],[[6873,8308],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[6876,8308],[0,-1],[-1,0],[0,1],[1,0]],[[6590,8307],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-2,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[-1,0],[1,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1]],[[6673,8299],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[-2,0],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[2,0],[2,0],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0]],[[6617,8306],[-1,0],[-1,1],[-1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0]],[[6852,8309],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[2,0]],[[6865,8309],[2,0],[0,-2],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[2,0]],[[6914,8309],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0]],[[6660,8310],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[2,0]],[[7171,8310],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0]],[[6815,8310],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0]],[[7162,8310],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[2,0],[-1,0]],[[6857,8311],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0]],[[6872,8311],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0]],[[6564,8311],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[6653,8312],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1]],[[6876,8308],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[0,-2],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-2],[1,0],[0,1],[1,0],[0,-1],[2,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[0,1],[0,1],[1,0],[3,0],[-4,0],[-1,0],[-1,0],[-1,0],[0,-2],[1,0],[1,0],[2,0],[0,-1],[0,-1],[0,-1],[1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,0],[-1,0],[1,0],[0,-2],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-3,0],[-3,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-2,0],[0,1],[0,1],[3,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0]],[[6794,8312],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6887,8312],[1,0],[0,-1],[1,0],[2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[7160,8312],[0,-1],[1,0],[-2,0],[-1,0],[0,1],[2,0]],[[6567,8311],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[1,0],[-1,-1],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[1,0]],[[6788,8313],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6868,8313],[0,-1],[-1,0],[-1,0],[0,1],[2,0]],[[6627,8313],[-1,0],[0,-1],[1,0],[0,-1],[-2,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-3,1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[-1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[0,-1],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-2,1],[1,0],[-1,1],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,-1]],[[6860,8314],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[4,0]],[[6624,8314],[-1,-1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[1,0]],[[6801,8315],[0,-1],[3,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0]],[[6593,8314],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,-1]],[[7116,8315],[0,-1],[-1,0],[0,1],[1,0]],[[7162,8315],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6641,8316],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0]],[[6582,8315],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,-1]],[[6804,8316],[2,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[6834,8316],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[2,0]],[[7190,8316],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[2,0],[1,0],[1,0]],[[6775,8317],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[1,0],[0,1],[1,0]],[[6840,8317],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[2,0],[0,-1],[0,-1],[1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1]],[[6796,8317],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1]],[[7263,8317],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[1,0],[1,0],[2,0]],[[6655,8317],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0]],[[7094,8318],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[2,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[2,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,2],[1,0],[0,1],[0,1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[3,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[6636,8319],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1]],[[6796,8317],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[7074,8319],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[1,0]],[[6765,8318],[-2,0],[0,1],[1,0],[1,0],[0,-1]],[[7083,8319],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0]],[[7146,8319],[-1,0],[-1,0],[-1,0],[1,0],[2,0]],[[6664,8320],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[1,0]],[[6865,8320],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,0]],[[6648,8320],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[7104,8320],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,0]],[[6818,8320],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6823,8320],[1,0],[0,-1],[-3,0],[0,1],[1,0],[1,0]],[[7046,8321],[0,-1],[-2,0],[0,1],[2,0]],[[6589,8320],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,0],[1,-1]],[[6855,8321],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-4,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,2],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-2,0],[1,0],[0,1],[1,0],[2,0]],[[7079,8321],[1,0],[0,-2],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6835,8322],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[1,0],[0,1],[3,0]],[[7021,8322],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[2,0],[2,0]],[[7093,8322],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[-6,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[3,0]],[[6320,8323],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,0],[2,-1],[2,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-3,2],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[2,1],[1,0]],[[6642,8324],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1]],[[7066,8324],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-3,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[6798,8325],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[6455,8322],[0,1],[1,0],[-1,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0]],[[6820,8326],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[2,0]],[[6777,8326],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[3,0]],[[7032,8326],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[2,0],[1,0]],[[6783,8327],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[6803,8328],[0,-2],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[6982,8328],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[6769,8328],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6795,8328],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0]],[[6653,8328],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,2],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[7335,8328],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[3,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[6784,8329],[0,-1],[1,0],[-2,0],[-1,0],[1,0],[0,1],[1,0]],[[7135,8330],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[0,1],[-3,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[2,0],[7,0],[1,0],[0,1],[2,0],[2,0]],[[6787,8331],[1,0],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6834,8331],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0]],[[6762,8331],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[6325,8331],[1,0],[1,-1],[2,-1],[5,-2],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7043,8332],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0]],[[6845,8332],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[2,0]],[[7047,8332],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-2],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-4],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[6778,8334],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0]],[[6855,8334],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,0]],[[6457,8329],[-1,0],[-1,1],[1,0],[-1,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[6462,8333],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1]],[[6767,8335],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[6875,8335],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[-2,0],[-2,0],[0,1],[1,0],[0,1],[1,0]],[[6755,8335],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6829,8335],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[2,0]],[[6793,8336],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6885,8336],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6746,8336],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[2,0]],[[6799,8336],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[7065,8337],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[2,0],[3,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-6,0],[-3,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-4,0],[-3,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[5,0]],[[7172,8337],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-2,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[2,0]],[[6470,8338],[1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0]],[[6788,8338],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[1,0]],[[6741,8338],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[2,0],[1,0]],[[7013,8338],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[7223,8338],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[2,0]],[[6349,8340],[1,0],[3,0],[8,0],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[2,-1],[2,-1],[-1,0],[2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[1,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,2],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-5,3],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[2,1],[3,2],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-3,2],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[0,2],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,1],[1,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[7229,8341],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6775,8341],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0]],[[6812,8341],[2,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[2,0],[0,-2],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1]],[[7167,8341],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0]],[[6904,8342],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[0,1],[1,0]],[[6769,8343],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,0],[2,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1]],[[7155,8343],[0,-1],[0,-1],[-1,0],[0,2],[1,0]],[[6780,8343],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0]],[[6738,8344],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1]],[[6766,8344],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[2,0],[1,0],[-1,0],[1,0]],[[6617,8345],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[-2,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,1],[1,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0]],[[6734,8345],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6763,8346],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1]],[[6737,8346],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[1,0],[-1,0],[0,1],[1,0],[1,0]],[[6758,8347],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1]],[[6746,8347],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0]],[[6662,8347],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,2],[1,0]],[[6999,8348],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[-2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[6758,8347],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0]],[[7024,8350],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[1,0],[0,1],[-3,0],[-1,0],[-2,0],[0,-1],[0,-1],[0,-1],[-2,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,3],[-1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1]],[[6743,8350],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[1,0]],[[6990,8351],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7195,8352],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6559,8352],[1,0],[1,0],[1,-1],[1,0],[3,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[0,1],[3,0],[1,0],[1,0],[3,0]],[[7164,8352],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0]],[[7159,8352],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-4,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[5,0],[0,2],[1,0]],[[6997,8352],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[1,0],[0,1],[1,0],[3,0]],[[7000,8352],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[7075,8353],[1,0],[0,-1],[3,0],[1,0],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-12,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0]],[[6984,8353],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[-3,0],[-2,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[2,0],[0,1],[3,0],[1,0],[1,0]],[[6947,8354],[0,-1],[2,0],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6496,8355],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[3,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[-1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[2,0],[1,0],[2,-1],[0,-1],[-1,0],[0,-2],[1,0],[1,1],[2,0],[0,1],[0,2],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-3,0],[0,-1],[-3,0],[-1,0],[-1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,2],[-1,0],[-1,0],[-2,0],[-2,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[1,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[6928,8355],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[2,0]],[[7080,8355],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[3,0]],[[6532,8355],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,1],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[2,0],[2,0]],[[6947,8355],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0]],[[6964,8355],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,-1],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[2,0],[0,-1],[1,0],[3,0],[1,0],[0,1],[0,1],[-1,0],[1,0]],[[7160,8355],[0,-1],[-1,0],[-2,0],[0,1],[1,0],[2,0]],[[7165,8356],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-4,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[2,0]],[[6960,8356],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6951,8357],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[0,1],[2,0]],[[7110,8357],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0]],[[6945,8357],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[7037,8357],[1,0],[3,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[7087,8358],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0]],[[7025,8358],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[3,0],[0,1],[3,0],[1,0],[0,1],[1,0]],[[7028,8358],[1,0],[0,-1],[1,0],[1,0],[0,-2],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[6522,8354],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1]],[[6952,8360],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[0,1],[1,0]],[[7131,8362],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[7135,8362],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[6936,8363],[0,-1],[-2,0],[0,1],[2,0]],[[7104,8363],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7157,8363],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[0,1],[-2,0],[-5,0],[-1,0],[-1,0],[-1,0],[0,1],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[3,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[2,0],[0,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[2,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[2,0],[0,1],[2,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[2,0],[1,0],[0,2],[2,0],[3,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0]],[[7129,8363],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[7223,8363],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0]],[[6930,8364],[0,-1],[-2,0],[0,1],[2,0]],[[6988,8365],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[2,0]],[[7388,8365],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-4],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[0,1],[1,0],[1,0],[3,0],[0,-1],[0,-1],[1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[3,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-5,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[7,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[3,0],[1,0],[0,-1],[5,0],[0,1],[12,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[2,0],[3,0],[1,0],[0,1],[1,0],[1,0],[0,2],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[7135,8365],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[6479,8365],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[6,0],[1,0],[1,0],[7,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[6945,8366],[0,-1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[7244,8366],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-5,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[7,0],[3,0],[2,0],[1,0],[0,1],[3,0],[2,0],[1,0],[2,0],[0,1],[3,0],[1,0],[1,0],[1,0],[2,0],[3,0],[0,1],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[2,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[6,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7047,8366],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-2],[-1,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-2,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-4,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7265,8366],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,0]],[[7228,8367],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[7121,8367],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-3,0],[-1,0],[0,1],[1,0],[3,0],[0,1],[2,0]],[[6459,8366],[2,-1],[1,0],[1,0],[1,0],[2,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[1,0],[-1,1],[1,0],[1,0],[0,-1]],[[7239,8368],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[6994,8368],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[7019,8368],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[3,0]],[[7171,8368],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[7242,8368],[0,-1],[-1,0],[-1,0],[0,1],[2,0]],[[7072,8369],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,0],[1,0],[0,1]],[[6469,8369],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0]],[[6937,8369],[4,0],[2,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1]],[[6955,8369],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,-1],[1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[7052,8369],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7220,8369],[1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[3,0]],[[6986,8370],[0,-1],[-2,0],[0,1],[2,0]],[[6946,8370],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0]],[[7278,8371],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[3,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[2,0],[0,1],[0,1],[1,0],[0,1],[3,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[7144,8371],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0]],[[6454,8371],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[0,-1],[-1,0],[-1,0],[2,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,1],[0,1],[1,0]],[[7195,8372],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[2,0]],[[7199,8372],[0,-1],[1,0],[-2,0],[0,1],[1,0]],[[7707,8372],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[3,0],[0,-1],[2,0],[0,1],[-1,0],[1,0],[0,1],[2,0]],[[7014,8372],[1,0],[0,-1],[1,0],[4,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0]],[[7032,8373],[0,-1],[1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[5,0]],[[6726,8373],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[4,0]],[[6964,8373],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1]],[[7003,8374],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6990,8374],[1,0],[1,0],[0,-1],[2,0],[0,1],[4,0],[0,-1],[-1,0],[0,-1],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[7050,8374],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[7183,8374],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[3,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[2,0]],[[7194,8374],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7151,8375],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7063,8375],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-3,0],[0,1],[-1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[7225,8375],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7272,8375],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[2,0]],[[7097,8376],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[7056,8377],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0],[0,1],[2,0]],[[7008,8377],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-5,0],[1,0],[0,1],[1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[4,0]],[[7105,8377],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[0,2],[1,0]],[[7113,8377],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[1,0]],[[7093,8377],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1]],[[6966,8377],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[3,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-3,0],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[1,0],[1,0]],[[7160,8378],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,0]],[[7722,8378],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[3,0]],[[7189,8378],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,2],[1,0]],[[7101,8378],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[6974,8379],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6963,8379],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[2,0]],[[7195,8379],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[3,0]],[[6978,8380],[1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[2,0]],[[7119,8380],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-3,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0]],[[7098,8381],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-2,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0]],[[7112,8381],[1,0],[0,-3],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[7049,8381],[0,-1],[2,0],[0,1],[1,0],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-3,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7173,8381],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[7166,8382],[0,-1],[-1,0],[-1,0],[0,1],[2,0]],[[7178,8382],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0]],[[7041,8383],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-2,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[-1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,1],[2,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[2,0],[0,1],[2,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[7106,8384],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0]],[[7146,8384],[1,0],[3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[3,0]],[[6335,8379],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[7122,8385],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[6323,8383],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0]],[[7130,8386],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7189,8386],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[2,0]],[[7163,8386],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[1,0],[1,0]],[[7180,8386],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7208,8386],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[2,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0]],[[7129,8387],[0,-1],[-1,0],[-1,0],[-2,0],[1,0],[0,1],[1,0],[2,0]],[[6291,8389],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[0,-1]],[[7185,8390],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[6321,8390],[2,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-3,2],[0,1]],[[6299,8391],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0]],[[7154,8392],[2,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[-2,0],[-2,0],[-1,0],[0,-1],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[2,0],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[6290,8393],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0]],[[7381,8394],[0,-1],[0,-1],[2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[2,0]],[[7199,8394],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[7181,8394],[1,0],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[7202,8395],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0]],[[6284,8393],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[7186,8396],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[2,0]],[[7280,8396],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[6290,8397],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[1,0],[1,0]],[[7253,8397],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0]],[[6288,8399],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[2,1],[1,0]],[[7279,8399],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[2,0]],[[6299,8399],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[7254,8400],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0]],[[7190,8401],[0,-1],[0,-1],[2,0],[0,1],[1,0],[1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[7281,8401],[0,-2],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[6291,8401],[1,0],[1,-1],[0,-1],[-2,0],[-3,1],[1,0],[1,0],[1,1]],[[7309,8401],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[7207,8402],[0,-2],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7196,8402],[0,-1],[-2,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[7650,8402],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[5,0],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[3,0],[3,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[5,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-3,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[3,0],[2,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[0,1],[1,0],[3,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7289,8402],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[2,0]],[[7218,8404],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7277,8403],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[2,0],[0,-1],[-1,0]],[[7293,8404],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[7236,8404],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[2,0],[0,-1],[-1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[3,0],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[2,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[7258,8404],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[2,0],[0,1],[-1,0],[0,1],[-1,0],[2,0]],[[7240,8406],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0]],[[7250,8406],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0]],[[7190,8407],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7201,8407],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0]],[[7327,8408],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[7287,8408],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[7181,8409],[1,0],[0,-1],[0,-1],[-3,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[3,0]],[[7224,8410],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7299,8410],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[0,1],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,2],[0,1],[2,0],[0,-1],[1,0],[0,1],[1,0]],[[7714,8410],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7211,8410],[0,-1],[2,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7214,8410],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[7220,8410],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[7396,8411],[0,-1],[-2,0],[0,1],[2,0]],[[7336,8411],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[7749,8412],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[2,0],[0,1],[1,0]],[[7199,8413],[0,-1],[-1,0],[-2,0],[0,1],[1,0],[2,0]],[[7296,8413],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[7190,8413],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7399,8414],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[7138,8414],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[2,0],[1,0]],[[7202,8416],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7389,8416],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-4,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-8,0],[-1,0],[-2,0],[-6,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-5,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-5,0],[-5,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-5,0],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[3,0],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-3,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[3,0],[3,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[3,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[3,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,3],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[-1,0],[0,2],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,2],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[0,2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-2],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[7288,8417],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7795,8417],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-3,0],[-2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[3,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[0,1],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[2,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7225,8418],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[3,0],[-1,0]],[[7207,8419],[0,-1],[1,0],[-1,0],[0,-2],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7197,8419],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,0],[1,0]],[[7236,8419],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[7384,8419],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[2,0]],[[7692,8420],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[2,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0]],[[7211,8420],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0]],[[7791,8421],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7256,8422],[0,-1],[-2,0],[0,1],[-1,0],[3,0]],[[7269,8422],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[1,0],[1,0]],[[7206,8422],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0]],[[7237,8422],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7661,8422],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[7138,8414],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[7231,8423],[1,0],[0,-2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0]],[[7216,8424],[-1,0],[0,-1],[-3,0],[0,1],[4,0]],[[7269,8424],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0]],[[7226,8425],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0]],[[7306,8425],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[0,1],[1,0]],[[7260,8425],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7365,8425],[1,0],[0,-1],[0,-2],[1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[2,0]],[[7221,8426],[-1,0],[0,-1],[-3,0],[0,1],[1,0],[1,0],[2,0]],[[7210,8427],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,2],[3,0]],[[7265,8427],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7317,8427],[1,0],[0,-1],[0,-1],[-1,0],[2,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[2,0],[0,1],[2,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[7322,8427],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[0,1],[1,0],[1,0]],[[7809,8427],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-3,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[1,0],[1,0],[2,0]],[[7369,8428],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1]],[[7376,8428],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,2],[1,0],[1,0]],[[7217,8429],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[7404,8431],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1]],[[7300,8431],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0]],[[7331,8431],[2,0],[1,0],[0,-3],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[0,1],[0,-1],[3,0],[3,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7278,8431],[1,0],[1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[7376,8432],[2,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[7407,8433],[1,0],[0,-1],[-1,0],[1,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,2],[-1,0],[1,0],[0,1],[0,1]],[[7237,8433],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[7390,8433],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-3,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7251,8434],[1,0],[1,0],[-1,0],[0,-1],[-2,0],[0,1],[1,0]],[[7227,8434],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-3,0],[-1,0],[2,0],[1,0]],[[7409,8435],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[7246,8436],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[3,0]],[[7323,8436],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[3,0],[1,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[0,2],[1,0],[2,0],[1,0],[1,0],[0,1],[2,0],[0,-1]],[[7686,8437],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[2,0],[1,0]],[[7250,8438],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[2,0]],[[7310,8439],[0,-1],[1,0],[-1,0],[-2,0],[0,1],[1,0],[1,0]],[[7144,8441],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[2,0]],[[7285,8441],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[7324,8441],[0,-1],[-1,0],[0,1],[1,0]],[[7248,8445],[0,-1],[1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1]],[[7332,8445],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[7299,8446],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[7314,8450],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[7430,8454],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,-1],[-2,0],[0,-1],[0,-1],[-2,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[2,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[3,0]],[[7757,8456],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7153,8460],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[7362,8460],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0]],[[7372,8460],[0,-1],[-1,0],[0,1],[1,0]],[[7338,8461],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[7448,8462],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[3,0]],[[7167,8462],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,2],[1,0],[0,1],[1,0]],[[7467,8462],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0]],[[7164,8464],[0,-1],[1,0],[2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0]],[[7346,8464],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[2,0]],[[7744,8464],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[2,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[0,1],[0,1],[1,0],[3,0]],[[7370,8465],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[2,0]],[[7474,8469],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[7162,8469],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[2,0]],[[7424,8470],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,0],[5,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[4,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[4,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[3,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[4,0],[0,1],[1,0],[3,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7490,8470],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,3],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0]],[[7460,8472],[2,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0]],[[7713,8474],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[0,1],[2,0],[1,0]],[[7722,8474],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7802,8475],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[2,0]],[[7436,8475],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[3,0],[1,0]],[[7469,8476],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[2,0],[-1,0]],[[7716,8476],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0]],[[7420,8480],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[-2,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[0,-1],[3,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0]],[[7787,8481],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[1,0],[3,0]],[[7516,8481],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[7811,8486],[0,-1],[1,0],[1,0],[3,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[2,0],[0,1],[1,0]],[[7782,8486],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[3,0],[0,1],[1,0],[1,0]],[[7434,8491],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7161,8493],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[1,0],[0,1],[0,1],[1,0]],[[7813,8499],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7480,8508],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7183,8508],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-4],[0,-2],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-4,0],[-1,0],[-2,0],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[1,0],[1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,3],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,2],[0,1],[1,0],[2,0],[4,0],[1,0],[1,0],[1,0]],[[7484,8516],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[2,0]],[[7193,8517],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[7187,8517],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[8016,8518],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[2,0]],[[7201,8520],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[1,0],[1,0],[0,1],[1,0],[0,1]],[[8013,8525],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[4,0]],[[7196,8526],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[2,0],[-1,0],[1,0]],[[7224,8531],[-1,0],[1,0],[-1,0],[0,-1],[-2,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7556,8531],[1,0],[1,0],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[1,0],[0,2],[-1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[1,0],[0,3],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0]],[[7430,8532],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-5,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[3,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[2,0]],[[7472,8542],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7445,8543],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-5,0],[0,1],[0,1],[1,0],[1,0],[0,1],[2,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[3,0],[1,0]],[[7578,8544],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0]],[[7434,8547],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[7502,8550],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7958,8555],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[4,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[2,0],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[2,0],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,0],[1,0],[0,-1],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[2,0],[0,1],[1,0]],[[7363,8559],[1,0],[1,0],[0,-1],[2,0],[2,0],[3,0],[1,0],[0,-1],[1,0],[0,-1],[-4,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[3,0]],[[7379,8560],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7556,8562],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[2,0]],[[7500,8562],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[4,0],[0,1],[1,0],[3,0],[1,0],[0,1],[1,0],[2,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-5,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[4,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[4,0],[0,-1],[1,0],[0,1],[3,0],[1,0],[4,0],[1,0],[0,1],[2,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7357,8564],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7168,8567],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[2,0]],[[7577,8569],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[2,0],[7,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0]],[[7512,8571],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-4,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[7222,8571],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7162,8571],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[7256,8572],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[0,1],[2,0],[0,-1],[2,0],[0,1],[3,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[3,0],[1,0],[2,0],[0,-2],[0,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[2,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[2,0],[3,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[0,1],[1,0],[3,0],[1,0],[1,0],[1,0],[0,1],[-2,0],[1,0],[1,0],[1,0],[0,1],[2,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[0,1],[0,1],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[3,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-3,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[1,0],[0,-1],[-1,0],[-2,0],[-4,0],[-1,0],[-4,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[3,0],[0,1],[1,0],[2,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,2],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,2],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[3,0],[8,0],[2,0],[0,1],[-2,0],[-1,0],[-1,0],[0,-1],[0,1],[-2,0],[-4,0],[-3,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,3],[0,1],[1,0],[0,1],[0,5],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[3,0],[2,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-3],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,3],[1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,1],[3,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,0],[0,1],[3,0],[1,0],[1,0],[0,-1],[6,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[4,0],[0,-1],[1,0],[2,0],[0,1],[-1,0],[-2,0],[-3,0],[-5,0],[0,1],[-2,0],[1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,3],[1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7167,8572],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[7404,8573],[1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-4,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,1],[0,-1],[-2,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-4,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[0,1],[-2,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-3,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[2,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[2,0],[3,0],[0,1],[1,0],[0,-1],[0,1],[4,0],[1,0],[1,0],[2,0],[2,0],[0,1],[2,0]],[[7158,8573],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[3,0]],[[7305,8574],[0,-1],[1,0],[2,0],[1,0],[0,-1],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1]],[[7593,8574],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0]],[[7173,8576],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-6,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[-1,0],[-1,0],[0,1],[1,0]],[[7470,8576],[1,0],[2,0],[1,0],[0,-1],[-1,0],[-3,0],[-2,0],[0,-1],[-2,0],[0,1],[0,1],[1,0],[3,0]],[[7534,8578],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[7355,8578],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[4,0],[2,0],[2,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[3,0],[1,0]],[[7318,8579],[0,-1],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[4,0]],[[7323,8580],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[2,0],[4,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[7486,8581],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[2,0]],[[7380,8587],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[7707,8587],[0,-1],[3,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[-3,0],[-4,0],[-1,0],[-3,0],[-2,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[2,0]],[[7585,8589],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[3,0],[0,1],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7477,8590],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[4,0]],[[7171,8591],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[3,0]],[[7530,8593],[0,-1],[3,0],[1,0],[0,-1],[1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[2,0]],[[7524,8595],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0]],[[7737,8599],[1,0],[2,0],[0,-1],[-5,0],[0,1],[1,0],[1,0]],[[7727,8600],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[1,1],[1,0]],[[7567,8610],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0]],[[7570,8617],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[-1,0]],[[7552,8619],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7575,8622],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[2,0],[0,1],[1,0],[2,0]],[[7620,8623],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[7574,8624],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,0]],[[7620,8626],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0]],[[7742,8627],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-4,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[1,0],[0,-1],[-3,0],[-2,0],[0,-1],[-2,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[2,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[4,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1],[4,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[3,0],[1,0],[0,1],[1,0],[4,0],[3,0],[0,1],[1,0],[1,0],[3,0]],[[7660,8637],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[7676,8649],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[0,1]],[[7999,8655],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-2,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-9,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-2,0],[-1,0],[-4,0],[-2,0],[-3,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-5,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-5,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[5,0],[0,-1],[2,0],[2,0],[1,0],[0,1],[1,0],[0,1],[2,0],[2,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[2,0],[2,0],[1,0],[3,0],[3,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,0],[5,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[4,0],[1,0],[0,1],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[3,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,1],[1,0],[3,0],[1,0],[1,0],[1,0],[0,1],[2,0],[4,0],[3,0],[2,0],[2,0],[0,1],[2,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[3,0],[3,0],[5,0],[1,0],[0,1],[3,0],[4,0],[1,0],[2,0],[3,0],[3,0],[2,0],[2,0],[1,0],[5,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[4,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[3,0]],[[7857,8668],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0]],[[7878,8683],[3,0],[2,0],[1,0],[0,-1],[5,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[3,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[7926,8684],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[2,0]],[[8084,8712],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,0]],[[8055,8731],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[2,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[8021,8733],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[2,0],[1,0],[0,-1],[2,0],[0,1],[2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0]],[[8053,8733],[2,0],[0,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[3,0],[0,1],[1,0],[2,0]],[[7851,8735],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[0,1]],[[8044,8753],[2,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-6,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[7122,8790],[0,-1],[1,1],[1,0],[1,0],[1,-1],[21,-2],[3,0],[1,1],[1,1],[2,1],[3,1],[2,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[3,1],[1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[2,1],[1,0],[2,0],[3,1],[3,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[3,1],[2,0],[2,1],[1,0],[2,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[5,1],[3,1],[7,3],[1,0],[2,1],[2,1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[2,1],[2,0],[2,0],[1,0],[1,0],[1,1],[1,0],[5,1],[2,1],[2,0],[4,1],[1,0],[2,1],[1,0],[1,0],[1,-1],[2,0],[2,0],[6,-1],[1,0],[2,0],[0,-1],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[4,-1],[2,0],[1,-1],[0,-1],[-1,-2],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,0],[1,-1],[0,-2],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-7,-3],[0,-1],[1,0],[1,0],[1,-1],[2,0],[3,-1],[1,0],[2,-1],[3,0],[2,0],[4,0],[2,0],[1,1],[1,0],[1,0],[1,1],[3,-1],[3,0],[2,0],[2,0],[1,0],[0,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[3,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[3,0],[0,1],[3,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,1],[2,1],[1,2],[3,2],[6,5],[3,1],[1,2],[1,1],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[3,0],[2,0],[1,1],[2,1],[2,1],[1,0],[1,0],[2,1],[2,0],[2,0],[3,0],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[5,-2],[1,0],[1,0],[2,0],[2,-1],[4,0],[3,0],[2,0],[3,0],[1,0],[1,0],[4,0],[2,1],[2,0],[2,0],[2,1],[4,-1],[1,1],[3,-1],[2,0],[4,0],[2,0],[4,0],[3,0],[3,0],[4,0],[6,0],[3,0],[1,0],[7,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[1,1],[2,0],[2,0],[3,0],[1,0],[2,1],[3,2],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,0],[4,0],[4,1],[3,0],[3,0],[2,1],[3,1],[6,1],[2,0],[2,0],[1,0],[1,0],[3,1],[1,0],[3,0],[0,1],[1,0],[3,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[2,1],[1,0],[2,2],[2,1],[4,1],[1,0],[1,0],[5,0],[4,0],[2,1],[1,0],[1,1],[4,1],[7,3],[2,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,1],[1,0],[1,0],[3,0],[1,0],[1,0],[2,-1],[4,0],[3,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[3,0],[4,0],[1,1],[-1,1],[1,0],[2,1],[4,0],[3,0],[1,0],[1,0],[0,1],[0,2],[0,1],[1,0],[1,1],[3,-1],[4,0],[3,0],[5,0],[3,0],[2,0],[3,0],[1,0],[3,0],[2,1],[5,1],[1,0],[1,1],[2,-1],[1,0],[1,0],[3,0],[1,1],[2,-1],[2,0],[2,-1],[2,-1],[1,0],[3,-1],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,-2],[1,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,0],[2,0],[3,-1],[1,0],[1,0],[2,0],[2,0],[1,1],[1,1],[0,1],[-1,1],[1,1],[1,0],[1,1],[2,0],[2,0],[2,0],[3,1],[2,1],[2,0],[1,1],[2,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,0],[3,0],[3,0],[2,0],[2,-1],[1,-2],[0,-1],[1,0],[2,-1],[3,0],[1,0],[2,0],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[3,0],[3,-1],[2,0],[1,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[0,-1],[1,0],[1,-1],[2,0],[2,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-3,0],[-3,-1],[-1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[2,-1],[3,0],[2,0],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,-1],[2,0],[0,-1],[1,0],[3,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[3,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[3,0],[1,-1],[2,-1],[1,-1],[3,-1],[3,-1],[3,-1],[4,-1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-2],[0,-1],[3,-4],[2,-3],[1,-1],[3,-4],[2,-2],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[2,0],[3,-1],[1,0],[2,0],[2,2],[2,1],[2,0],[1,0],[3,0],[2,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[4,0],[3,0],[4,1],[3,0],[3,0],[1,1],[10,1],[29,2],[5,2],[2,1],[12,0],[7,0],[10,-1],[0,-2],[11,-8],[5,-1],[11,0],[1,-3],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-3,0],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[0,1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[0,1],[-2,0],[-3,0],[-1,0],[-1,0],[-3,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[2,0],[1,0],[3,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[0,-1],[-1,0],[-5,0],[-2,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[2,0],[0,1],[5,0],[0,-1],[1,0],[8,0],[3,0],[0,1],[2,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[2,0],[0,1],[3,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[1,0],[3,0],[1,0],[2,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,-1],[3,0],[0,1],[1,0],[3,0],[2,0],[1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[2,0],[3,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[3,0],[1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-4,0],[0,1],[-2,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-4,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[0,-1],[-3,0],[-3,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,-1],[0,1],[-2,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,2],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,3],[1,0],[0,2],[1,0],[0,1],[-3,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[-1,0],[0,2],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[3,0],[1,0],[0,1],[2,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[3,0],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,2],[1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[0,1],[0,1],[-2,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,2],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-3,0],[3,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[-2,0],[0,-1],[0,1],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[1,0],[4,0],[1,0],[1,0],[0,-1],[2,0],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[3,0],[0,-1],[-2,0],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,3],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-2,0],[-1,0],[-1,0],[1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-2,0],[-1,0],[0,-2],[0,-1],[0,-2],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[3,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-2],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-3,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[0,-1],[-5,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[1,0],[-2,0],[0,-1],[-1,0],[0,-4],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[2,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,2],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,1],[-2,0],[1,0],[0,-1],[-1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-2],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-2],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[-3,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-3,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[-5,0],[-1,0],[-5,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,1],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-4,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[3,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-4,0],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-2,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-2,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-2,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-3,0],[-4,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[0,1],[-1,0],[-4,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[3,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[3,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-3,0],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[3,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,0],[0,1],[-2,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[3,0],[2,0],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-2],[0,-2],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,3],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-4],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,0],[1,0],[0,-1],[2,0],[0,1],[2,0],[1,0],[2,0],[2,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[2,0],[3,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[3,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[0,-1],[-2,0],[0,-1],[-1,0],[-2,0],[-3,0],[-1,0],[0,-1],[-2,0],[3,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[0,-1],[-2,0],[0,1],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[8,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-4],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[2,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[2,0],[1,0],[0,-1],[0,-1],[2,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-2],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[2,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[0,-3],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-4,0],[-1,0],[-2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-3,0],[0,1],[-11,0],[-4,0],[-2,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-3,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[0,-1],[0,-1],[-4,0],[-3,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-4,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-3,0],[0,1],[-3,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-2,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,1],[-2,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[3,0],[0,-1],[2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-3,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,-1],[2,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-3,0],[-1,0],[-4,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-5,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-2,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[-5,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-3,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[1,0],[-3,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,3],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,2],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[5,0],[3,0],[2,0],[1,0],[3,0],[2,0],[2,0],[0,1],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[-2,0],[-1,0],[0,2],[-1,0],[0,3],[1,0],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,3],[1,0],[0,2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-4,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[0,-1],[-3,0],[0,1],[-2,0],[-1,0],[1,0],[0,1],[2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,2],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,2],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[3,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-2,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[7,0],[4,0],[4,0],[1,0],[2,0],[1,0],[3,0],[0,1],[5,0],[3,0],[1,0],[3,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[3,0],[0,-1],[4,0],[6,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[2,0],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[8,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[3,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-2,0],[-5,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-4,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[-1,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-3,0],[0,-1],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[0,-2],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,3],[0,1],[1,0],[1,1],[1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,-1],[1,0],[1,-1],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,-1],[1,0],[0,-1],[1,0],[2,0],[2,0],[4,0],[1,0],[3,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,-1],[-2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,-1],[0,-1],[-1,0],[-2,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[3,0],[2,-1],[-2,-1],[-1,0],[-1,1],[-1,0],[-4,2],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[-1,0],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[-2,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[2,-1],[4,-2],[-1,0],[2,-1],[1,-1],[2,0],[2,-1],[-1,0],[2,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,-2],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[-1,1],[0,1],[1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-3,2],[-1,0],[-1,0],[0,1],[-2,0],[-2,1],[-2,0],[-1,1],[-1,0],[-3,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,1],[-1,1],[-1,0],[0,1],[1,0],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,-1],[1,1],[1,0],[1,-1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,3],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[1,1],[0,1],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[2,1],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[3,-2],[1,0],[1,1],[1,-1],[0,-3],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-2,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[1,0],[1,0],[0,1],[2,1],[-1,0],[-2,-1],[-2,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[3,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,1],[2,-1],[0,-2],[1,0],[1,0],[3,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-1],[2,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,-1],[-2,-1],[-1,1],[-1,0],[2,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[2,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[2,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-4,2],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[2,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[-1,1],[-2,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[2,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[-4,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0]],[[4637,8773],[-1,0],[0,1],[-2,1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-3,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,1],[-2,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[2,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[2,0],[2,0],[2,0],[0,1],[1,2],[1,2],[0,1],[-1,1],[-1,1],[-2,0],[-2,1],[-2,1],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[3,1],[3,1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,2],[0,1],[2,1],[3,2],[2,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,2],[1,1],[3,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[2,1],[1,0],[0,1],[1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,3],[-1,1],[1,0],[2,0],[1,1],[1,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,2],[2,0],[2,1],[1,1],[1,0],[0,1],[1,1],[0,1],[-2,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-3,0],[-3,1],[-3,1],[-1,1],[-1,1],[-1,2],[0,1],[1,0],[1,1],[1,2],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[2,1],[2,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,1],[2,1],[1,0],[0,1],[1,0],[2,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[-2,1],[-2,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[2,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,1],[0,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-2,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0]],[[4014,8870],[-2,3],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[-2,1],[-1,1],[1,1],[2,1],[1,1],[0,1],[-1,1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[1,0],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[3,1],[1,1],[1,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[-3,1],[-2,0],[-2,1],[0,1],[1,1],[2,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,2],[0,1],[1,1],[1,1],[2,2],[1,1],[1,0],[1,1],[4,1],[3,0],[2,1],[4,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,1],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,2],[-2,1],[-1,0],[-2,1],[-2,0],[-4,0],[-3,0],[-2,0],[-1,0],[-1,1],[-2,0],[-2,2],[-5,3],[-3,1],[-2,1],[-2,2],[-3,2],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-3,1],[-3,1],[-2,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[-1,0],[-1,1],[0,1],[1,1],[-1,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-3,1],[-2,0],[-2,-1],[-3,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[2,1],[0,2],[0,1],[-1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,1],[2,1],[1,1],[0,1],[-1,1],[0,1],[2,2],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-3,1],[-3,0],[-3,1],[0,1],[-1,1],[-2,1],[-1,0],[1,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[2,0],[1,1],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[1,1],[2,2],[0,1],[1,1],[3,2],[1,1],[0,1],[2,1],[0,1],[-2,2],[-2,1],[-2,1],[-1,0],[-2,0],[-3,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,2],[2,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[-1,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,1],[0,2],[1,1],[1,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[0,1],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,1],[-3,0],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,0],[-2,1],[-1,1],[-1,0],[-1,0],[-3,1],[-3,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-4,0],[-1,-1],[-2,0],[-1,0],[-3,2],[-1,0],[-2,2],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-3,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-3,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[0,1],[1,1],[-2,1],[-1,1],[0,1],[1,1],[-1,1]],[[3646,8611],[-3,-1],[-3,0],[-4,1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-3,0],[-3,1],[-3,1],[-2,1],[-2,-1],[-3,0],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-2,0],[-2,0],[-3,-1],[-3,-1],[-2,0],[-2,0],[-4,1],[-1,0],[-3,1],[-2,0],[-1,0],[-1,2],[0,2],[0,1],[0,2],[1,1],[1,1],[-1,1],[-1,1],[-2,0],[-3,0],[-4,0],[-2,0],[-2,1],[-2,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[-2,-1],[-2,0],[-4,-1],[-1,0],[-2,1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[1,1],[0,1],[0,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[-3,1],[-1,1],[-2,1],[-2,1],[0,2],[-1,2],[-1,2],[0,1],[0,1],[1,2],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-4,-1],[-6,0],[-5,0],[-3,0],[-1,1],[-1,0],[-2,2],[-2,1],[-2,0],[-1,0],[-2,-1],[-3,-1],[-3,-1],[-1,-1],[-3,0],[-2,0],[-3,1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[2,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,0],[-2,0],[-3,0],[-1,-1],[-2,0],[-1,0],[-3,0],[-2,0],[-4,0],[-2,1],[-3,1],[-4,1],[-4,0],[-6,1],[-3,1],[-2,1],[-1,1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-3,0],[-2,0],[-3,1],[-2,2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,2],[-6,2],[-3,1],[-1,0],[-3,0],[-2,0],[-1,1],[-3,1],[-2,1],[-1,1],[-1,1],[-1,0],[-3,0],[-1,0],[-2,1],[-2,1],[-1,0],[-1,1],[-1,2],[-2,2],[-2,1],[-1,1],[-2,1],[-5,1],[-3,0],[-2,1],[-3,0],[-3,0],[-2,1],[-2,1],[-2,0],[-3,-1],[-3,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-1,0],[-1,0],[-2,1],[-4,1],[-1,0],[-4,0],[-3,1],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-3,-2],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-2,-1],[-3,0],[-3,-1],[-3,-1],[-5,-2],[-5,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-4,0],[-3,0],[-2,0],[-3,1],[-6,1],[-3,0],[-3,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-3,-1],[-1,0],[-1,0],[-2,1],[-2,0],[-2,1],[-2,0],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[1,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,2],[-1,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-2,1],[-4,1],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-3,1],[-2,1],[-1,0],[-4,1],[-3,0],[-2,0],[-2,0],[-1,0],[-3,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-4,0],[-3,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-2,0],[-2,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-3,0],[-1,0],[-2,0],[-2,0],[-4,0],[0,1],[-2,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,0],[-1,1],[-2,0],[-2,1],[-2,0],[-3,0],[-2,0],[-1,0],[-2,1],[-3,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[2,1],[2,1],[2,1],[2,1],[1,1],[0,2],[0,1],[1,1],[2,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,2],[0,1],[1,1],[0,1],[-1,1],[-3,2],[-2,1],[-3,2],[-4,1],[-2,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[-2,1],[0,1],[3,1],[2,1],[2,2],[1,0],[0,1],[2,1],[3,2],[0,1],[1,1],[3,1],[3,1],[3,1],[6,0],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[-3,3],[0,1],[-1,0],[0,1],[-1,3],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[2,1],[1,1],[4,0],[2,0],[3,1],[3,0],[1,1],[5,2],[1,0],[3,0],[1,0],[1,2],[2,2],[2,0],[4,1],[1,0],[6,3],[2,2],[1,0],[1,2],[1,1],[2,1],[3,0],[2,0],[1,1],[1,0],[2,4],[1,1],[4,0],[2,0],[6,2],[1,2],[-1,2],[0,1],[0,3],[-1,0],[-2,1],[-5,0],[-4,0],[-4,0],[-4,0],[-1,0],[-7,0],[-2,1],[-2,0],[-1,0],[-6,0],[-4,-1],[-7,-1],[-2,0],[-4,0],[-3,0],[-2,1],[-3,2],[-3,2],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,0],[-3,1],[-1,0],[-3,1],[-2,0],[-2,0],[-8,-1],[-4,0],[-2,0],[-5,1],[-2,1],[1,1],[0,1],[-1,1],[-2,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-4,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,1],[-3,0],[-1,1],[-1,0],[-1,0],[-2,1],[-3,0],[-2,0],[-1,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-3,0],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-2,-1],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,1],[-1,0],[-2,0],[-1,1],[-3,0],[-2,0],[-2,0],[-2,1],[-1,0],[-3,0],[-2,0],[-3,1],[-2,0],[-1,1],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,-1],[-2,1],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-5,2],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-2,1],[-4,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0]],[[2426,8857],[0,1],[-1,0],[0,2],[0,1],[0,2],[-1,1],[-1,0],[-3,0],[-2,1],[-2,1],[-6,2],[7,4],[2,5],[-1,3],[-2,3],[0,2],[4,0],[8,1],[6,0],[4,1],[4,-1],[4,-2],[3,1],[3,2],[1,0],[5,0],[3,0],[2,0],[5,-1],[0,2],[-2,4],[-1,1],[0,1],[2,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,2],[2,2],[1,1],[1,3],[1,1],[-1,0],[-3,1],[-5,2],[-2,1],[-3,4],[-1,2],[-4,1],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[-2,1],[-2,0],[-2,0],[-7,2],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,0],[-1,0],[-3,1],[-2,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[1,0],[1,0],[1,0],[0,2],[0,1],[-1,1],[-1,1],[-3,1],[-5,2],[-3,2],[-4,1],[-1,1],[-2,0],[-4,2],[-3,1],[-4,2],[-2,1],[-3,1],[-4,2],[-2,1],[0,1],[1,3],[-1,1],[0,3],[0,1],[-1,2],[0,4],[-1,2],[-1,1],[0,1],[1,2],[1,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[2,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,1],[2,1],[2,2],[2,0],[2,-1],[4,0],[3,1],[3,0],[2,0],[2,0],[1,1],[2,0],[1,0],[2,1],[1,1],[1,0],[1,1],[2,1],[1,1],[3,1],[1,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[1,-1],[1,-2],[1,-1],[1,-1],[2,0],[2,0],[2,0],[1,0],[2,0],[0,-1],[0,-1],[1,0],[2,-1],[3,0],[2,0],[1,0],[1,0],[1,0],[3,1],[2,1],[3,1],[3,2],[1,1],[2,1],[2,1],[2,1],[1,0],[3,2],[1,1],[2,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[0,1],[2,2],[1,1],[2,0],[1,1],[1,1],[1,1],[2,2],[1,0],[2,2],[4,0],[2,0],[2,0],[1,1],[2,1],[1,0],[2,1],[4,1],[1,1]],[[6589,1378],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[1,-1],[0,-1]],[[6551,1386],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[1,-1],[6,-3],[4,-2],[1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-9,4],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[4,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-1,1],[-4,2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[-1,0],[-1,0],[-3,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-5,3],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0]],[[6599,1390],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-3],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,3],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-2,2],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[-1,1],[-1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[6592,1402],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[-1,0],[1,-1],[-1,0],[-2,0],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[2,1],[1,0],[1,-1]],[[6606,1424],[-1,0],[0,-1],[-1,0],[-1,0],[2,1],[1,0],[1,0],[-1,0]],[[6593,1435],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0]],[[7369,1887],[-2,-7],[-1,-2],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-3,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[3,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[3,1],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[-1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,1],[2,0],[2,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[3,-4],[5,-7],[6,-6],[1,-1],[4,-5],[3,-4],[2,-1],[0,-1],[0,-1],[0,-6],[0,-1],[1,-5],[0,-1],[0,-5],[0,-1],[0,-1],[0,-5],[0,-2],[0,-4],[0,-1],[0,-2],[-1,-3],[0,-3],[0,-3],[0,-1],[0,-1],[1,-1],[6,-4],[4,-3],[4,-3],[2,-1],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-2],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-2],[-6,-2],[-3,-2],[-4,-2],[-4,-1],[-6,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-4,-2],[-6,-2],[-9,-2],[-5,-2],[-2,0],[-3,-1],[-4,0],[-5,0],[-9,0]],[[7319,1490],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-2,1],[-2,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[2,0],[2,1],[2,0],[1,1],[-1,1],[2,1],[3,1],[1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,2],[1,2],[2,1],[2,2],[1,0],[0,1],[-1,0],[-3,2],[-3,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,-1],[1,0],[1,-1],[1,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,2],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[-1,0],[-5,1],[1,1],[0,2],[1,0],[-1,0],[-3,0],[-3,0],[-4,0],[-2,0],[-4,1],[-5,0],[-3,0],[-1,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-5,0],[-1,0],[-6,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-8,0],[1,2],[-1,1],[-2,-1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-6,0],[-7,0],[0,1],[0,4],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[6,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-2,1],[-2,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-2,1],[0,-4],[1,-1],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-5],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-3,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-24,-5]],[[6649,1403],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[2,0],[0,1],[2,1],[1,2],[0,1],[-1,1],[-2,0],[-1,0],[-3,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-3,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[3,2],[1,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[2,-1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[1,-1],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[2,0],[1,0],[1,0],[3,2],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[-2,-1],[-2,0],[-3,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-3],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[-3,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-2],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[6638,1381],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1]],[[6610,1371],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[2,2],[1,1],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,2],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[-3,2],[-1,0],[-1,1],[0,1],[0,1],[2,1],[2,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[1,0],[-3,-2],[-2,0],[-1,0],[-1,0],[-6,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,3],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-3,0],[0,1],[-2,0],[1,1],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,1],[-1,-1],[2,-1],[1,1],[1,0],[1,0],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,1],[2,1],[4,0],[1,0],[1,0],[2,0],[4,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[2,0],[3,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-1],[0,-2],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[2,1],[-1,0],[-3,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[5,-2],[0,-1],[1,0],[0,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-4,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-3,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-4,2],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,0],[-1,0],[-2,0],[-1,1],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-4,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-2],[-1,1],[-1,-1],[-2,0],[-1,0],[-7,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-2,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-5,3],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-3,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,-2]],[[6327,1423],[-1,0],[-4,1],[-3,1],[-1,0],[-1,1],[-7,3],[-2,1],[-5,2],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,0],[-2,2],[-1,1],[-1,2],[-1,2],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[1,2],[2,1],[13,8],[1,1],[2,1],[1,1],[1,0],[1,1],[1,0],[2,1],[2,1],[2,1],[4,1],[9,2],[2,0],[5,1],[3,1],[3,1],[5,1],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,2],[1,1],[0,1],[1,0],[1,1],[4,2],[1,0],[3,2],[2,1],[3,0],[2,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,1],[6,3],[1,1],[2,1],[2,0],[2,1],[1,0],[2,1],[1,0],[2,0],[2,1],[3,0],[3,-1],[2,0],[1,0],[1,0],[0,-1],[6,-3],[4,-1],[2,-1],[2,0],[2,-1],[2,0],[2,0],[1,0],[2,1],[1,0],[2,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-2,2],[-1,1],[-1,0],[-3,2],[-3,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[4,2],[10,3],[4,3],[3,1],[1,2],[0,1],[0,1],[-1,2],[-2,2],[-2,2],[-1,0],[-2,2],[-5,2],[-2,1],[-1,0],[-7,4],[-1,1],[-1,1],[-5,2],[-2,1],[-2,1],[-2,1],[-1,1],[-1,0],[-1,2],[-1,2],[-2,2],[-3,3],[-3,3],[0,1],[0,1],[1,1],[1,1],[2,2],[1,2],[1,1],[0,1],[-1,0],[-1,1],[-3,1],[-1,1],[-3,1],[-1,1],[0,1],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[-1,0]],[[6409,1575],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-9,-1],[1,0],[2,1],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-2,0],[-1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[3,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[3,0],[4,1],[4,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[-3,1],[-6,3],[-5,2],[-5,2],[-3,3],[-2,2],[-3,3],[-1,0],[-1,2],[0,2],[0,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,0],[3,1],[2,1],[0,1],[1,1],[0,1],[1,0],[1,0],[2,1],[1,0],[1,0],[2,1],[2,1],[1,0],[1,0],[4,1],[6,1],[3,0],[2,0],[3,0],[3,1],[2,0],[1,1],[1,1],[2,1],[0,1],[0,1],[0,2],[-1,1],[-3,3],[-1,1],[-4,3],[-4,1],[-5,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[3,0],[3,1],[5,0],[9,2],[1,0],[4,0],[3,1],[4,0],[3,0],[1,0],[1,0],[2,-1],[0,-1],[3,-3],[1,-2],[4,-3],[2,-2],[1,-1],[1,-1],[1,-1],[0,-1],[2,-1],[2,-1],[2,0],[2,-1],[3,-1],[2,0],[5,-1],[4,0],[2,0],[3,-1],[4,-2],[2,-1],[5,-3],[3,-1],[3,-1],[3,0],[1,0],[1,0],[3,0],[6,2],[8,1],[5,1],[5,1],[3,0],[2,-1],[3,0],[5,-2],[3,-1],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[0,1],[1,2],[0,3],[0,2],[0,2],[1,1],[1,0],[1,1],[1,0],[1,0],[6,2],[3,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,2],[-1,1],[0,1],[1,0],[5,1],[2,1],[1,1],[1,1],[2,1],[1,1],[2,0],[1,0],[1,0],[2,-1],[2,0],[1,-2],[2,-2],[2,0],[1,-1],[1,0],[2,1],[2,0],[1,0],[1,0],[1,1],[1,1],[0,2],[0,1],[0,1],[1,0],[2,2],[1,0],[1,1],[0,1],[0,1],[-3,0],[-5,1],[-1,1],[-1,0],[0,1],[0,1],[2,1],[1,2],[0,1],[-1,1],[0,1],[1,0],[0,1],[3,1],[1,1],[1,1],[2,2],[1,0],[1,0],[5,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[2,0],[4,0],[1,0],[1,0],[1,1],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[-2,1],[-2,0],[-1,1],[-3,2],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[2,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[-1,1],[-2,1],[0,1],[1,1],[2,0],[2,0],[4,0],[4,0],[2,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[-4,1],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,2],[-1,0],[0,1],[-2,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[2,1],[1,1],[3,1],[0,1],[0,1],[0,1],[-1,0],[-4,0],[-1,0],[-3,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,2],[-1,0],[-2,1],[-2,0],[-3,1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[2,0],[3,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[0,1],[1,0],[1,2],[0,1],[0,1],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[1,0],[1,0],[-2,0],[-4,0],[-2,0],[-1,0],[0,1],[2,0],[0,1],[-2,0],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,-1],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[0,1],[-2,1],[-3,0],[-1,0],[-1,0],[1,1],[1,0],[0,1],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[-1,0],[-2,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[-1,1],[1,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[-1,0],[-1,1],[1,0],[1,0],[-1,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[2,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[2,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[1,1],[0,1],[-1,-1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[1,1]],[[6543,1850],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,1],[2,0],[2,-2],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[2,0],[1,-1],[1,-1],[2,0],[2,0],[1,1],[1,0],[2,-1],[1,0],[-2,2],[0,1],[2,0],[2,0],[1,0],[-1,1],[-2,1],[-1,0],[1,1],[2,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,-1],[1,0],[0,1],[-2,1],[0,1],[1,-1],[1,0],[1,0],[2,0],[2,1],[1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[0,-1],[-1,0],[1,0],[1,-1],[2,0],[0,1],[-2,1],[1,0],[1,0],[1,1],[2,1],[0,1],[-2,0],[-1,0],[0,1],[3,1],[0,1],[-1,0],[-2,0],[-2,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[2,0],[1,1],[1,-1],[1,-1],[1,1],[1,0],[2,0],[2,0],[1,0],[-2,-1],[0,-1],[1,0],[2,1],[3,1],[2,0],[2,0],[1,0],[-1,-1],[-1,-1],[1,-1],[3,-1],[0,1],[0,1],[1,0],[2,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[-1,0],[0,1],[-2,1],[0,1],[1,0],[1,0],[2,-1],[1,0],[1,1],[-1,1],[1,1],[1,0],[-1,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[3,2],[3,1],[1,0],[1,0],[1,0],[2,0],[0,1],[0,1],[-1,0],[-2,-1],[-1,0],[0,1],[0,1],[-2,0],[0,1],[1,0],[1,0],[0,1],[2,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[2,-1],[2,0],[1,0],[-1,1],[-1,0],[-3,1],[-2,0],[-1,0],[-1,1],[1,0],[2,1],[1,0],[1,0],[0,1],[1,-1],[3,0],[1,0],[0,1],[-1,0],[1,1],[-2,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,1],[-1,0],[0,1],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[2,1],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[2,0],[1,0],[2,1],[2,0],[1,1],[3,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[2,1],[1,0],[-1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,1],[-2,1],[-1,0],[1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[-1,1],[0,2],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[3,2],[1,0],[0,1],[-1,0],[-1,0],[3,2],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[0,1],[1,1],[-1,0],[-1,0],[0,1],[1,0],[2,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[3,1],[1,0],[2,1],[1,0],[0,1],[2,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[3,1],[1,1],[1,0],[1,-1],[0,1],[-1,0],[0,1],[2,0],[2,-1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[3,0],[1,1],[2,0],[1,1],[1,0],[1,1],[2,1],[1,1],[1,0],[4,1],[5,1],[21,2],[8,1],[15,1],[9,1],[2,0],[11,1],[9,2],[13,1],[4,0],[17,2],[8,1],[15,2],[5,0],[16,2],[22,2],[21,2],[17,2],[11,1],[11,2],[13,1],[13,1],[6,3]],[[7087,2011],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[2,0],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0],[3,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,2],[0,1],[0,1],[-1,1],[-1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[-1,-1],[-2,0],[-2,0],[-2,-1],[-1,0],[0,-1],[0,-1],[2,0],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[0,-1],[1,0],[2,-1],[2,-1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,0],[1,0],[2,0],[3,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[3,0],[2,-1],[2,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[3,-1],[3,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[3,1],[3,2],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[2,0],[1,0],[1,1],[1,0],[2,1],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[2,-1],[3,-1],[2,-1],[1,0],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-2],[3,-1],[3,-2],[1,-1],[2,-1],[3,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-4,-1],[-3,-1],[-4,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,1],[-2,0],[1,-2],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[4,1],[4,2],[1,0],[2,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-2,-1],[-2,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,1],[2,0],[2,0],[1,0],[1,-1],[1,-1],[0,-2],[2,-1],[0,-2],[1,-1],[1,-1],[3,-1],[1,0],[2,0],[2,0],[2,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[5,-3],[1,-1],[1,0],[1,1],[3,0],[4,2],[2,1],[0,1]],[[5461,29],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,-1],[0,-1]],[[6106,48],[-1,0],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[6131,49],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,1],[2,1],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[-1,-1]],[[6185,58],[-1,0],[-2,1],[1,0],[1,1],[1,0],[0,-1],[0,-1]],[[6173,80],[2,0],[2,0],[2,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[2,0],[3,0],[2,1],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[2,0],[1,0],[3,0],[2,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[0,1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,1],[-1,1],[-1,2],[-1,0],[-2,2],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,1],[2,0],[2,1],[1,0],[1,0],[3,0]],[[6322,93],[0,-5],[-43,-3],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[2,1],[0,1],[1,0],[0,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[43,5]],[[6014,98],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[0,2],[1,0],[0,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,1],[1,-1],[2,0],[4,0],[2,1],[1,0],[0,1],[1,0],[0,-1],[-1,-1]],[[6054,100],[-27,-17],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[1,1],[2,1],[1,0],[1,0],[1,0],[11,7],[7,5],[7,4],[0,1],[3,-1],[0,-1]],[[6066,118],[1,0],[1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[1,0],[0,1],[2,0],[2,0],[1,0]],[[6169,133],[1,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-3,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,-1],[-2,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,-1],[0,-1],[-2,0],[0,-1],[-2,-2],[-1,-2],[-1,-2],[0,-1],[0,-1],[1,-2],[1,0],[1,-1],[1,1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[0,-1],[2,-1],[2,-1],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,0],[-2,0],[-2,-1],[-3,-1],[-2,0],[-1,-1],[-2,-1],[-3,-1],[-4,-1],[-2,-1],[-3,0],[-1,0],[-2,-1],[0,-1],[-1,-1],[-3,-1],[-1,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[2,-2],[2,-1],[2,-1],[1,-1],[2,-1],[0,-1],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-2,0],[-4,0],[-3,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-4,1],[-1,0],[-3,0],[-2,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-5,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,2],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-5,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[3,0],[1,0],[2,0],[2,-1],[1,-1],[1,0],[2,1],[0,2],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[-3,1],[0,1],[0,1],[-1,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[2,0],[2,1],[1,1],[2,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[0,2],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,2],[-1,2],[0,2],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[2,1],[2,0],[2,1],[1,1],[1,0],[0,1],[1,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[2,0],[3,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0]],[[6759,1235],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[6768,1244],[-1,0],[-1,0],[-2,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[2,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[6894,1265],[0,-1],[-2,0],[-1,0],[0,1],[0,1],[1,0],[1,-1],[1,0]],[[6894,1265],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[-3,-2]],[[6842,1274],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[0,-1]],[[6853,1281],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,-1],[-2,-1],[-1,0],[0,-2],[1,0],[1,0],[1,-1],[2,0],[2,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[3,-1],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,1],[2,1],[1,0],[1,0],[1,1],[2,1],[1,0],[1,0],[2,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[3,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[3,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[-1,1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-3,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[0,1],[1,1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-3,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-4,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-3,-2],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-3,-2],[-1,0],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-3,-2],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[3,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-2,2],[-3,1],[-2,1],[-1,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[4,-2],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,1],[-3,1],[-1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,-1],[1,1],[1,0],[1,1],[3,1],[0,1],[1,0],[2,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[3,-1],[0,-1],[1,1],[0,1],[-1,0],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,-1],[-1,0],[0,-1],[1,-1],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[3,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,1],[3,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[1,0],[0,3],[2,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,0]],[[7118,1282],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0]],[[6827,1282],[1,0],[1,0],[1,0],[-1,-1],[1,0],[2,0],[0,1],[1,0],[2,0],[0,-1],[-1,0],[0,-2],[1,0],[2,-1],[1,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[4,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[2,0],[1,-1],[1,0],[-2,-1],[-1,1],[-1,-1],[-1,0],[1,0],[1,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-4,0],[-4,1],[-3,-1],[-2,0],[-2,0],[-2,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,1],[2,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[0,-1],[3,0],[1,0],[1,0],[3,0],[0,1],[1,0],[1,0],[2,0],[1,0],[-1,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[2,1],[-1,0],[1,1],[3,1],[0,1],[1,0],[0,1],[-1,1],[0,2],[0,1],[1,0],[1,0],[1,0]],[[7111,1282],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0]],[[6852,1288],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[2,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,2],[1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[3,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,0]],[[6758,1288],[1,0],[1,0],[1,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0]],[[6796,1294],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-2,1],[1,1],[1,0]],[[6726,1292],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[2,0],[2,2],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[3,-2],[2,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[-3,2],[0,1],[0,1],[1,0],[0,1],[3,1],[5,2],[0,1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-2],[1,-1],[0,-1],[-3,-2],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-3,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,1],[0,1],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[2,1],[1,0],[1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-4,2],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-3,1],[-3,2],[-1,0],[0,1],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-4,2],[-1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[2,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,1],[1,1],[3,-2],[1,-1]],[[6646,1301],[1,0],[2,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,1],[-2,2],[-2,0],[-4,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[2,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0]],[[6698,1314],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[1,0],[1,0],[3,0]],[[6677,1323],[1,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[3,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-2],[-3,-1],[-1,0],[-1,0],[0,-1],[-4,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-3,1],[-1,0],[-1,0],[-2,1],[-2,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[4,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[2,2],[1,1],[1,0],[1,1],[-1,0],[-3,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[6,3],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[3,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[6652,1378],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[-1,0],[-1,-1]],[[6653,1382],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[1,-1]],[[6638,1384],[-1,1],[-1,0],[1,1],[1,0],[1,0],[0,-1],[-1,-1]],[[6645,1386],[-1,-1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1]],[[6633,1387],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[-1,-1]],[[6640,1389],[2,-1],[0,-1],[-2,-1],[1,0],[-1,-1],[-2,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[7319,1490],[0,-1],[-1,-2],[-1,-3],[-1,-4],[-1,-2],[-2,-5],[0,-1],[1,-1],[1,0],[3,1],[2,0],[0,-1],[3,0],[2,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[2,-1],[1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[7420,1357],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-4,-2],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-1,0],[0,1],[-1,0],[-2,0],[-3,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-4,-2],[-1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,-2],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[-2,-2],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,0],[-2,-2],[-1,-1],[-2,0],[0,-1],[-1,0],[-2,-1],[-2,1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-4,-2],[-3,-2],[-2,-1],[-3,-2],[-2,-2],[-2,-1],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-4,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-3,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[1,0],[1,0],[3,2],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[4,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-4,-2],[-3,-2],[-9,-4],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-5,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-2,0],[-1,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-3,1],[-2,0],[-1,0],[-1,0],[-4,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-4,0],[-2,1],[0,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,2],[0,1],[1,0],[1,0],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[3,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[2,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,1],[0,1],[0,1],[-3,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,1],[0,1],[-1,0],[1,0],[1,1],[0,1],[-2,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[0,-2],[-2,1],[0,1],[-1,1],[-4,2],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[1,0],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[-1,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,-1],[2,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[-4,2],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[4,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,1],[1,0],[2,-2],[0,-1],[-2,0],[-2,0],[-1,0],[0,1],[-2,1],[-2,0],[-1,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,-1],[-2,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[2,1],[1,0],[1,0],[0,1],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,2],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,-2],[-2,-1],[2,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[-1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[-1,0],[-1,0],[-3,0],[-4,-2],[-2,-1],[-2,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[-4,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[-1,1],[1,0],[0,1],[1,0],[2,1],[1,0],[2,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[2,1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-2],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[-4,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[2,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-2,-1],[1,0],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-2,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,-1],[1,0],[-2,-1],[-1,1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[3,1],[0,1],[1,0],[2,1],[1,0],[2,1],[0,1],[2,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[0,-1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[3,1],[1,1],[2,1],[1,1],[1,1],[2,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-1,1],[-3,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[1,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[-1,1],[1,0],[1,0],[1,0],[2,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[2,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,2],[0,1]],[[6248,1927],[0,0]],[[6248,1927],[1,0],[4,0],[1,0],[0,1],[1,1],[-1,1],[0,1],[-1,1],[1,0],[1,1],[1,0],[2,1],[2,-1],[4,0],[3,0],[4,0],[1,0],[2,0],[1,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[3,1],[3,0],[4,1],[5,2],[2,1],[1,0],[2,1],[0,1],[0,1],[-2,1],[-2,0],[-1,1],[0,1],[-1,0],[0,3],[-1,2],[-1,1],[-1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[2,0],[3,0],[2,1],[2,0],[2,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,1],[2,0],[1,0],[0,-1],[1,0],[2,1],[2,0],[3,1],[2,0],[1,1],[1,1],[2,0],[2,1],[3,0],[2,0],[2,1],[2,0],[2,1],[1,0],[4,-1],[4,0],[1,-1],[2,-1],[4,-2],[1,-1],[-1,-1],[0,-2],[1,-3],[2,-4],[2,-2],[2,-2],[0,-1],[-2,-2],[0,-2],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-5,-2],[-3,-2],[-4,-2],[-4,-3],[-3,-1],[-1,-1],[-1,0],[-4,-1],[-5,-2],[-3,0],[-4,-1],[-3,1],[-2,-1],[-2,-1],[-2,-4],[0,-5],[0,-2],[0,-2],[5,-3],[2,-1],[3,0],[5,0],[4,0],[2,0],[1,-1],[0,-4],[-1,-2],[0,-4],[0,-1],[1,-1],[9,0],[2,0],[2,-1],[2,1],[1,0],[1,1],[1,0],[4,-1],[8,-1],[2,-1],[2,-1],[2,0],[4,1],[5,2],[5,1],[3,1],[1,0],[1,-1],[1,-1],[4,0],[4,0],[2,0],[2,0],[3,-2],[2,-1],[2,-1],[5,1],[7,0],[5,1],[3,-1],[2,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-3,0],[0,-1],[2,-1],[-1,-2],[0,-1],[1,-1],[2,0],[0,-1],[3,0],[1,0],[-1,-1],[-4,0],[-1,0],[0,-1],[1,-1],[1,0],[3,0],[2,-1],[1,0],[1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-2],[-2,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[1,-1],[5,1],[6,0],[1,0],[-2,-2],[1,0],[2,1],[1,-1],[3,-1],[3,0],[4,-1],[0,2],[-3,2],[-1,2],[-1,1],[-3,1],[0,1],[4,3],[2,2],[3,1],[2,1],[3,2],[6,3],[2,1],[5,0],[8,0],[5,0],[1,-1],[2,1],[3,0],[0,3],[1,1],[2,2],[3,2],[1,1],[3,0],[3,1],[1,0],[3,0],[2,0],[1,0],[0,-1],[1,-1],[2,0],[5,1],[2,0],[11,-1],[8,-1],[4,-2],[5,-4],[1,-1],[2,-1],[2,0],[1,-1],[0,-2],[1,-1],[2,-2],[1,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[-2,0],[0,-1],[1,0],[1,0]],[[6409,1575],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-2,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-4,-2],[-1,1],[-1,0],[-1,0],[-2,-2],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[3,0],[1,0],[1,1],[-1,1],[-1,1],[-1,0],[-1,-1],[0,1],[-2,-1],[-1,0],[0,1],[-3,1],[1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,-1],[-1,1],[2,0],[1,2],[2,1],[0,1],[-4,-1],[-5,0],[0,1],[1,1],[1,2],[-2,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,0],[-5,2],[-1,0],[-2,-1],[0,-1],[-1,0],[-3,-2],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,1],[2,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-5,0],[-4,1],[-2,0],[-2,1],[-2,1],[-1,0],[-1,0],[-2,2],[-2,1],[-4,3],[-1,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[2,2],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,2],[-3,3],[-2,3],[-1,1],[-2,2],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-7,-1],[-2,0],[-2,0],[-3,0],[-4,1],[-6,1],[-2,1],[-3,1],[-3,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,2],[1,1],[1,3],[0,2],[0,1],[0,1],[-1,1],[-2,3],[-1,2],[-1,2],[0,1],[0,1],[0,2],[1,1],[1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-3,-1],[-2,0],[-1,0],[-4,0],[-3,0],[-1,0],[-3,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,2],[-4,1],[-2,1],[-2,0],[-1,1],[0,1],[1,1],[0,1],[1,1],[2,1],[2,2],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-4,1],[-2,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-2,2],[0,1],[-1,1],[1,2],[0,1],[1,0],[0,1],[4,2],[2,1],[3,2],[1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-1,0],[-1,1],[-1,1],[-3,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-4,1],[-1,0],[-1,0],[-4,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-3,1],[-3,0],[-6,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,2],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,1],[1,2],[2,1],[2,1],[3,2],[3,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,1],[3,0],[1,0],[2,1],[0,1],[1,2],[0,2],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,1],[-2,1],[-2,1],[-3,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,1],[-2,0],[-3,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[-5,1],[-3,0],[-2,0],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[2,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-3,-2],[-1,0],[-1,0],[-2,0],[-1,0]],[[5873,1734],[-4,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-3,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,2],[-3,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,-1],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[2,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,2],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-3,1],[-1,1],[-1,0],[-3,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,2],[0,1],[1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[2,0],[1,0],[-1,0],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[2,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[2,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[2,1],[1,0],[2,2],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[2,0],[2,0],[2,0],[2,0],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1]],[[5842,1976],[3,1],[3,0],[2,1],[2,1],[1,1],[1,0],[2,1],[2,0],[6,-1],[4,0],[4,0],[4,0],[4,0],[5,0],[3,0],[6,0],[2,0],[2,-1],[2,0],[3,-1],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,1],[1,1],[2,0],[2,0],[1,1],[1,0],[1,0],[2,0],[4,0],[2,0],[1,0],[0,-1],[2,-1],[3,-1],[4,0],[2,0],[1,-1],[1,0],[2,-3],[2,-1],[3,-1],[4,-1],[2,0],[4,-2],[3,-2],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[3,-1],[3,0],[1,-1],[2,-1],[2,-1],[2,-1],[3,-1],[3,0],[3,-2],[2,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[2,1],[1,1],[2,1],[1,1],[1,1],[1,0],[2,1],[1,1],[3,-2],[3,-3],[2,-1],[4,-2],[4,-2],[2,-1],[4,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[-4,-1],[-2,-2],[-2,0],[-2,-1],[-2,-1],[-3,-1],[-1,0],[-3,0],[-2,-1],[-2,-1],[-4,0],[-1,0],[-2,-2],[-2,-1],[-2,-2],[-4,-2],[-2,-1],[0,-1],[0,-1],[1,0],[3,-2],[2,-1],[1,0],[0,-1],[2,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[0,-1],[1,0],[4,-2],[1,0],[1,-1],[3,0],[1,-1],[2,-2],[4,-2],[2,-1],[3,-1],[3,0],[1,0],[3,-1],[3,0],[3,0],[2,0],[1,1],[4,1],[2,2],[1,0],[3,0],[1,0],[1,1],[1,0],[2,0],[4,1],[2,0],[3,1],[3,0],[3,1],[2,-1],[2,0],[4,1],[7,2],[1,0],[1,1],[3,0],[7,0],[4,0],[-1,-3],[0,-2],[1,-2],[1,-2],[2,-3],[0,-1],[1,-2],[1,0],[0,-1],[4,0],[4,-1],[5,-1],[4,0],[3,0],[3,0],[2,-1],[2,0],[3,1],[4,0],[3,0],[3,-1],[4,1],[5,0],[2,-1],[2,-1],[2,0],[2,0],[4,-1],[3,0],[4,-1],[3,0],[1,0],[3,0],[2,0],[2,0],[0,1],[2,3],[1,2],[1,1],[1,2],[0,1],[0,2],[0,1],[1,2],[1,1],[-1,1],[-3,1],[-1,0],[5,2],[-6,8],[-2,3],[0,1],[4,0],[1,-1],[2,-2],[1,0],[5,1],[2,0],[2,-1],[1,-1],[1,0],[3,0],[1,0],[3,2],[2,1],[3,0],[2,0],[2,-1],[5,-2],[1,0],[2,0],[-1,0],[1,1],[4,1],[2,0],[1,1],[1,0],[0,1],[-1,1],[-1,1],[1,1],[2,1],[4,1],[3,1],[1,1],[2,1],[1,1],[-1,1],[-1,2],[0,1],[1,1],[1,0],[2,0],[1,0]],[[5842,1976],[0,1],[-1,1],[-1,1],[0,1],[3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[4,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,2],[1,1],[1,2],[0,1],[0,1],[2,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[3,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[2,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[3,1],[1,2],[2,1],[1,1],[1,0],[0,1],[0,1],[0,1],[2,1],[2,0],[1,1],[2,0],[0,1],[0,1],[-2,0],[-1,2],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[-2,0],[-3,0],[0,1],[1,0],[1,1],[1,1],[0,1],[-2,1],[-2,1],[-2,1],[-2,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[1,1],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[5876,2095],[1,0],[1,0],[0,1]],[[5878,2096],[0,0]],[[5878,2096],[2,1],[0,1],[-1,1],[0,1],[0,1],[1,2],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,-1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,2],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-2,2],[0,1],[-1,0],[-1,0],[1,0],[-1,1],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[2,1],[1,0],[1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[2,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,1],[3,2],[0,1],[1,0],[1,1],[1,1],[2,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[1,0],[2,0],[0,1],[0,1],[2,1],[4,2],[0,1],[0,1],[1,0],[2,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,2],[2,1],[4,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,-1],[2,1],[1,0],[1,-1],[1,0],[1,0],[2,0],[3,0],[3,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[-1,1],[-1,0],[-31,30],[-2,2],[-40,38],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[4,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[2,-1],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[0,1],[-1,1],[0,1],[2,0],[0,1],[1,0],[1,0],[2,1],[1,1],[1,1],[2,0],[2,1],[1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[2,-1],[1,0],[1,1],[1,0],[2,0],[2,1],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[3,0],[3,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[7,-1],[2,0],[2,0],[1,0],[1,0],[1,-1],[4,-1],[1,0],[3,0],[2,1],[5,1],[2,2],[2,0],[1,0],[2,0],[2,0],[0,1],[1,0],[1,0],[3,0],[1,1],[1,1],[1,0],[1,1],[1,-1],[2,0],[1,0],[4,1],[1,0],[3,0],[2,0],[3,-1],[2,0],[1,-1],[3,0],[1,-1],[2,0],[2,0],[1,1],[1,0],[1,0],[3,-2],[1,0],[-1,0],[-5,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[2,0],[16,0],[3,0],[39,1],[9,1],[56,1],[3,0],[1,0],[2,0],[2,1],[1,0],[0,-1],[1,-1],[3,0],[1,0],[0,-2],[-2,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,2],[1,0],[1,0],[1,0],[-1,1],[1,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,1],[0,1],[-1,0],[0,1],[-2,1],[-4,1],[-1,0],[1,1],[1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[3,0],[1,1],[1,0],[0,1],[0,2],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[0,-1],[2,1],[2,-1],[1,0],[0,-1],[3,-1],[3,0],[2,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-2],[0,-1],[2,-1],[1,0],[0,-1],[3,-2],[2,0],[0,-1],[1,-1],[1,0],[0,1],[3,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[2,0],[1,0],[1,0],[0,1],[3,1],[1,1],[5,0],[0,-1],[1,-1],[1,0],[2,1],[2,0],[0,1],[1,0],[1,0],[2,0],[1,-1],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[2,-1],[0,-1],[1,-1],[1,0],[0,1],[1,1],[1,0],[-1,1],[0,1],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[2,1],[2,2],[2,0],[0,1],[4,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[2,1],[1,1],[1,0],[1,0],[0,2],[-1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[2,0],[1,0],[0,1],[1,2],[2,0],[0,1],[0,2],[1,1],[-1,1],[0,2],[-1,2],[1,0],[1,0],[1,0],[1,0],[3,0],[1,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[2,1],[1,0],[-1,1],[2,1],[1,0],[2,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[2,1],[0,1],[-1,0],[2,2],[1,0],[1,0],[0,1],[2,0],[1,1],[1,1],[0,1],[2,1],[2,0],[2,1],[2,2],[2,1],[1,1],[-2,1],[0,1],[1,2],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[2,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,-1],[4,-2],[2,0],[2,0],[2,0],[4,1],[4,-1],[1,0],[1,1],[0,1],[2,1],[1,0],[1,-1],[3,1],[2,0],[1,0],[1,0],[3,-1],[3,0],[3,-2],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[3,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,1],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,1],[2,-1],[1,0],[1,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[6,1],[1,0],[1,0],[1,0],[3,-1],[1,0],[2,0],[1,1],[7,2],[1,0],[4,0],[2,1],[1,0],[2,-1],[3,0],[2,0],[1,0],[1,2],[1,1],[2,0],[3,2],[2,0],[4,0],[2,0],[2,1],[4,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[15,2],[13,2],[5,0],[-1,0],[0,1],[1,1],[2,0],[1,-1],[2,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[2,0],[3,0],[1,0],[3,0],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,1],[-2,1],[2,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,1],[0,1],[-1,0],[-1,1],[-4,0],[-1,0],[-1,2],[1,0],[2,-1],[3,0],[3,0],[3,1],[2,1],[1,1],[0,1],[-2,0],[-1,0],[-1,1],[-3,-1],[-3,0],[-2,0],[-1,1],[1,1],[3,-1],[1,1],[1,0],[1,1],[1,0],[2,1],[4,1],[2,0],[0,1],[1,-1],[-1,-1],[0,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,1],[0,1],[-3,1],[1,1],[3,1],[1,0],[-1,-1],[1,-1],[1,-1],[1,0],[3,-1],[2,1],[0,2],[1,0],[0,1],[2,0],[2,0],[2,1],[2,1],[2,1],[1,0],[0,1],[2,0],[1,0],[3,0],[1,0],[1,0],[2,0],[2,0],[0,1],[2,0],[1,0],[2,1],[-1,1],[-2,1],[2,1],[0,1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,1],[-1,1],[-1,1],[-2,1],[1,1],[1,-1],[2,-1],[1,1],[-1,1],[1,2],[4,1],[1,1],[-3,1],[-1,0],[3,0],[1,1],[0,2],[1,0],[1,0],[0,-1],[0,-1],[2,-1],[1,0],[2,1],[1,1],[2,0],[0,1],[2,-1],[2,0],[2,1],[2,1],[2,1],[2,-1],[2,-1],[1,0],[1,1],[1,0],[0,1],[-1,1],[-1,0],[1,1],[2,1],[0,1],[-3,1],[-3,0],[-1,2],[-1,0],[-1,1],[-4,0],[0,1],[3,1],[2,0],[-1,1],[-2,0],[1,1],[3,2],[-1,1],[0,1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[2,0],[1,1],[6,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[3,1],[2,-1],[2,-1],[2,1],[2,3],[3,1],[0,1],[-1,1],[0,1],[3,0],[0,2],[-1,1],[1,1],[0,1],[2,0],[1,1],[2,1],[1,0],[0,2],[-1,0],[0,1],[1,1],[1,0],[4,1],[1,0],[1,1],[0,2],[1,0],[2,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[2,-1],[2,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,1],[0,1],[-1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[-1,1],[-1,1],[-1,0],[-2,0],[1,0],[1,0],[2,1],[0,1],[-1,1],[-2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[2,1],[2,-1],[1,1],[-1,0],[-1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[-1,0],[-1,1],[-1,1],[-2,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[2,-1],[0,1],[0,2],[0,1],[1,0],[1,1],[-1,0],[-2,0],[0,1],[0,1],[1,0],[1,0],[2,-1],[0,1],[1,0],[0,1],[2,0],[1,0],[1,1],[1,0],[2,0],[2,0],[3,-1],[1,0],[2,0],[0,1],[2,-1],[1,1],[1,0],[1,1],[2,0],[2,0],[3,0],[1,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[-1,1],[1,0],[1,-1],[2,0],[1,1],[1,1],[1,-1],[1,0],[0,1],[-1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,1],[2,1],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,0]],[[6909,2517],[0,-1],[4,-14],[8,-25],[8,-26],[3,-13],[4,-13],[1,-4],[1,-3],[0,-5],[0,-4],[0,-1],[-1,-1],[-1,-2],[-6,-2],[0,-1],[4,-1],[3,-1],[0,-2],[1,-3],[14,0],[2,0],[1,-1],[-1,-1],[-2,-3],[-2,-3],[-3,-2],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-2],[0,-6],[1,-3],[2,-4],[0,-1],[-1,-2],[0,-3],[-1,-2],[1,-1],[1,-2],[2,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[2,-1],[0,-1],[-1,-2],[0,-3],[1,0],[1,1],[1,0],[0,1],[0,1],[2,3],[2,1],[1,0],[1,0],[1,0],[0,-2],[1,0],[1,0],[1,1],[0,2],[1,0],[1,0],[1,0],[2,-2],[0,-1],[0,-1],[-1,-1],[-3,-3],[0,-1],[1,0],[2,1],[1,0],[1,0],[2,0],[2,0],[1,0],[0,-2],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[0,-1],[2,0],[3,0],[2,0],[0,-2],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[3,-1],[2,-1],[2,0],[1,0],[-1,2],[1,1],[1,0],[1,0],[1,0],[1,-3],[0,-1],[1,0],[1,1],[3,3],[1,0],[1,0],[3,-1],[2,0],[2,0],[1,0],[-1,0],[-1,1],[0,1],[0,1],[3,0],[1,0],[-1,-1],[0,-1],[2,0],[2,-1],[2,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[3,0],[1,1],[1,1],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,0],[1,0],[1,0],[3,-1],[1,-1],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[2,0],[2,-1],[5,-1],[5,-2],[3,-1],[4,-3],[5,-5],[1,-1],[1,-1],[0,-3],[3,-2],[3,-1],[3,0],[0,-1],[-1,0],[0,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[2,0],[3,-1],[1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[3,-1],[1,-1],[0,-1],[2,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[3,-1],[4,-1],[5,-2],[5,0],[3,-1],[1,0],[1,0],[1,-2],[2,0],[5,-1],[1,-1],[1,-1],[3,0],[5,-1],[3,-2],[1,-1],[0,-2],[1,-1],[4,-3],[7,-6],[6,-4],[7,-3],[-1,-2],[0,-2],[2,-1],[1,-1],[2,0],[0,-1],[1,-2],[0,-2],[1,-3],[0,-1],[1,0],[2,-1],[1,0],[2,0],[3,0],[3,0],[4,0],[1,0],[2,0],[5,-2],[2,-1],[1,-1],[0,-1],[1,-3],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-3,0],[-1,1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-4,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-2,0],[-3,-1],[-3,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,0],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[3,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[0,-1],[-1,-1],[-2,-1],[-4,-1]],[[7161,2160],[-1,0],[-2,1],[-1,0],[0,1],[1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-4,-1],[-4,-1],[-1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-3,0],[-1,0],[-1,0],[-4,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-4,-2],[-4,-2],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-3,-1],[-2,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-4,-2],[-2,-1],[0,-1],[1,0],[3,-1],[4,-1],[1,-1],[-1,0],[0,-1],[-3,-1],[-4,-1],[-2,0],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-3,-2],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[2,0],[0,-1],[2,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[2,0],[2,0],[1,0],[3,-1],[4,0],[1,-1],[2,0],[1,0],[2,-1],[2,-1],[2,-1],[4,-1],[2,-1],[3,-1],[3,-1],[3,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[2,-1],[3,-2],[1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[2,0],[2,-1],[3,0],[2,-1],[3,-1],[2,0],[0,-1],[1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[2,-1],[2,-2],[3,-3],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[4,0],[5,0],[5,0],[3,0],[2,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1]],[[9475,949],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[1,0]],[[9218,1006],[1,0],[0,-1],[-1,0],[-1,0],[-1,1],[1,1],[0,-1],[1,0]],[[9312,1304],[1,0],[1,-1],[1,0],[2,-1],[-1,0],[-1,0],[0,-1],[1,-1],[-3,-1],[-1,0],[-2,-1],[1,-1],[1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-2,1],[-1,1],[1,1],[2,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[1,1],[3,0]],[[9283,1342],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[-2,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[2,1],[1,0],[1,1],[2,1],[1,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[0,-1]],[[9301,1341],[-1,-1],[-1,1],[2,1],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[9295,1344],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,0]],[[7723,1407],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[7984,1437],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0]],[[8403,1581],[-1,1],[-1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[-1,-1],[-1,0]],[[8758,1761],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[-1,0],[1,0],[1,0],[2,0],[0,-1],[1,-1],[0,-1]],[[9132,1797],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[9176,1868],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[2,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-4,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-5,0],[-1,0],[-1,0],[0,1],[-5,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-2,1],[-1,0],[-2,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,1],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,0],[0,1],[0,1],[1,0],[-1,1],[-1,1],[0,2],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,-1],[1,0],[2,-1],[2,-1],[-1,-1],[-1,0],[2,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-4,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[0,1],[-2,1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-3,-2],[-4,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-7,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,-3],[-3,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-3],[-2,-2],[0,-1],[-1,-1],[0,-2],[-2,-3],[-1,-2],[-1,-2],[0,-1],[-1,-3],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-2],[-3,-3],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,-1],[-3,0],[-5,-1],[-1,-1],[-3,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-4,0],[-1,-1],[-3,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-5,-6],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-3,-4],[-2,-4],[-1,-3],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[0,-1],[0,-1],[-2,-2],[-1,-3],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-3,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[-2,-2],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-3,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-8,0],[-2,0],[-1,0],[-4,0],[-3,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,0],[2,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,1],[-3,0],[-3,1],[-4,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-3,-2],[-5,-3],[-3,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-5,-3],[-1,0],[0,-1],[-2,-1],[-3,-1],[-1,0],[-4,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-3,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-2,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1]],[[7369,1887],[0,1],[0,1],[1,1],[4,1],[4,0],[3,1],[4,1],[3,1],[5,1],[3,2],[4,2],[2,1],[2,0],[5,0],[5,0],[1,0],[3,-3],[3,-2],[3,-2],[2,-1],[3,-1],[3,-2],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[2,-2],[4,-1],[2,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[2,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,0],[2,-1],[4,0],[1,-1],[1,0],[3,0],[3,-1],[4,0],[2,-1],[1,0],[1,0],[2,0],[5,-1],[5,0],[1,0],[3,0],[3,0],[2,0],[3,0],[3,1],[3,-1],[10,-3],[1,0],[11,-4],[1,0],[2,-1],[2,0],[3,-1],[4,0],[4,0],[1,0],[3,0],[2,0],[2,0],[3,0],[4,0],[4,1],[2,1],[1,0],[1,0],[2,1],[4,1],[7,1],[1,1],[3,0],[4,1],[2,0],[2,1],[1,0],[3,1],[3,2],[3,1],[1,2],[2,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[3,3],[2,3],[1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,2],[1,0],[0,1],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[3,1],[2,0],[2,0],[6,0],[7,1],[3,0],[5,0],[3,0],[3,0],[7,1],[1,0],[4,0],[4,0],[6,0],[4,0],[2,0],[3,1],[3,0],[3,-1],[5,0],[3,0],[2,0],[6,0],[5,0],[4,-1],[6,0],[6,0],[4,0],[4,0],[5,0],[5,-1],[6,0],[3,0],[8,0],[5,0],[10,-1],[2,0],[9,0],[4,0],[2,0],[5,0],[5,0],[4,-1],[8,0],[5,0],[6,-1],[6,0],[3,0],[7,-1],[1,0],[3,0],[3,0],[5,-1],[4,0],[4,-1],[6,-1],[1,0],[1,0],[2,0],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[2,-1],[3,0],[3,0],[2,0],[4,1],[4,0],[1,0],[2,1],[1,0],[3,1],[3,0],[1,0],[7,-2],[3,-1],[3,0],[3,-1],[3,-1],[2,0],[2,0],[1,0],[3,-1],[4,-1],[2,0],[1,0],[1,0],[1,-1],[2,0],[3,1],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[14,-2],[14,-1],[2,-1],[1,0],[2,0],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[3,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[2,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[4,-2],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[2,0],[1,-1],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[1,0],[1,0],[1,1],[2,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[1,1],[0,1],[-1,3],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[2,0],[0,1],[1,0],[2,1],[5,1],[7,2],[3,2],[4,1],[2,1],[1,1],[3,1],[3,2],[2,2],[1,0],[2,0],[0,1],[1,0],[1,1],[1,0],[1,0],[4,0],[4,0],[2,-1],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,1],[4,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[2,1],[2,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[2,2],[2,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,0],[3,1],[2,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[2,0],[3,1],[1,0],[1,0],[1,1],[1,0],[2,0],[3,1],[4,0],[4,1],[4,1],[2,1],[1,0],[1,0],[2,0],[1,0],[2,0],[2,1],[3,0],[4,0],[4,0],[3,0],[2,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,1],[3,0],[2,0],[1,0],[4,0],[2,1],[2,0],[1,1],[1,1],[2,1],[2,1],[1,1],[1,1],[1,0],[2,0],[1,1],[1,0],[0,1],[1,1],[0,2],[1,0],[1,0],[2,1],[2,0],[5,1],[3,1],[3,1],[1,0],[2,1],[4,0],[3,1],[2,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[6,3],[2,1],[3,1],[7,3],[3,1],[1,0],[3,1],[5,1],[6,2],[1,0],[1,1],[1,0],[3,0],[1,0],[1,0],[1,0],[5,2],[3,2],[2,1],[2,2],[3,2],[3,1],[1,1],[2,1],[2,1],[2,1],[2,1],[4,1],[0,2],[0,3],[1,1],[1,1],[2,1],[2,0],[2,0],[3,1],[2,0],[2,0],[3,1],[2,1],[11,4],[4,3],[4,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,2],[-2,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,2],[-1,1],[-1,1],[-3,4],[-3,3],[-2,3],[0,1],[0,1],[1,0],[1,1],[5,2],[8,3],[2,1],[1,1],[-1,1],[-1,1],[-3,1],[-2,2],[-1,0],[1,1],[0,1],[1,0],[2,2],[1,0],[3,1],[1,1],[1,0],[1,1],[0,1],[2,1],[1,0],[1,1],[2,2],[1,1],[3,0],[3,-1],[4,0],[3,0],[3,0],[2,0],[3,0],[2,1],[2,0],[3,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[2,1],[2,0],[1,1],[1,0],[2,0],[2,0],[2,0],[1,0],[0,1],[1,0],[2,1],[3,1],[1,0],[1,1],[2,0],[1,0],[2,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[3,1],[3,1],[3,1],[1,0],[2,0],[1,0],[3,-3],[1,-1],[1,0],[1,-1],[1,0],[2,1],[1,0],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,-1],[4,0],[3,-1],[1,0],[4,1],[4,1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,3],[1,1],[1,1],[2,1],[1,1],[2,2],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,-1],[6,-2],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[3,0],[2,1],[2,0],[3,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[3,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[4,1],[3,0],[1,0],[3,0],[1,0],[1,0],[3,2],[2,0],[3,-1],[3,0],[2,0],[2,0],[2,0],[2,1],[1,0],[1,0],[2,0],[4,-1],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[0,1],[0,2],[1,0],[1,1],[2,0],[1,0],[3,0],[4,0],[3,0],[2,0],[1,0],[1,0],[2,1],[1,1],[2,0],[1,1],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,-1],[3,-1],[2,0],[2,-1],[2,-1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[4,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[2,0],[2,0],[3,-1],[3,0],[3,0],[2,0],[2,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[2,0],[3,0],[3,0],[3,1],[3,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,2],[0,1],[0,1],[1,0],[1,0],[2,0],[1,1],[1,1],[1,1],[0,3],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[2,1],[1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[2,0],[2,1],[2,1],[2,0],[3,0],[2,1]],[[8787,2018],[1,0],[4,0],[17,-1],[14,-1],[19,-1],[10,-1],[12,0],[7,0],[2,-2],[2,-4],[4,-5],[3,-4],[2,-2],[1,-1],[0,-2],[1,-1],[1,-3],[3,-2],[1,-4],[2,-1],[2,-1],[3,-1],[1,-1],[1,-1],[1,-1],[1,-2],[5,-3],[1,-1],[3,-3],[3,-2],[4,-4],[1,-1],[5,0],[5,-1],[6,-1],[5,-1],[7,-1],[5,-1],[4,-1],[2,-1],[1,0],[2,0],[3,0],[2,0],[3,0],[3,0],[5,2],[3,2],[2,0],[1,1],[4,0],[5,0],[10,0],[6,0],[11,1],[4,0],[3,0],[3,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,-4],[0,-4],[0,-5],[-1,-4],[-1,-5],[-1,-3],[0,-1],[-1,-4],[0,-4],[-1,-2],[0,-1],[3,0],[8,-3],[5,-2],[8,-2],[7,-2],[5,-2],[1,-1],[1,0],[0,-2],[1,-1],[2,-1],[5,-1],[5,0],[6,-1],[6,-1],[1,0],[6,0],[2,-1],[3,0],[8,0],[5,0],[7,-1],[6,0],[9,-1],[6,0],[3,-1],[1,0],[0,-2],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[3,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[4,-1],[4,-1],[2,0],[3,-1],[1,0],[0,1],[1,0],[3,1],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[0,-2],[0,-1],[0,-3],[-1,-2],[0,-1],[-2,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[6589,1274],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1]],[[6597,1286],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[3,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1]],[[6607,1297],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1]],[[6614,1309],[1,0],[1,-1],[1,-1],[1,0],[-1,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[6391,1305],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[4,2],[1,1],[1,0],[1,0],[1,1],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[3,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,2],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-3,1],[0,1],[-1,0],[0,1],[1,1],[2,0],[1,0],[3,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-3,2],[-2,0],[0,1],[2,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1],[0,1],[1,0],[1,1],[1,0],[0,2],[0,1],[1,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1]],[[6518,1325],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-2],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-3,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-2,-1],[-3,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,1],[1,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[0,-1],[0,-1],[2,0],[1,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[0,-1],[-1,0],[-7,0],[-2,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[1,1],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[3,0],[2,0],[1,0],[0,1],[2,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-3,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[2,0],[2,-2],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-4,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[2,-1],[1,0],[1,1],[2,0],[2,0],[2,0],[2,-1],[0,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[1,-1],[1,0],[3,-1],[2,0],[2,0],[1,0],[0,1],[3,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[2,0],[0,-1],[1,-1],[2,0],[1,0],[1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[2,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[0,-1],[3,0],[1,1],[1,0],[1,0],[0,1],[2,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-1,0],[-1,1],[-2,0],[-2,0],[0,1],[-3,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[2,0],[0,1],[0,1],[2,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[4,-2],[2,-1],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[3,-2],[2,0],[0,1],[2,1],[1,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[-2,0],[0,-1],[1,0],[1,0],[2,-1],[0,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[0,-1],[-1,0],[-2,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[3,1],[1,0],[1,1],[2,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-2,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[2,0],[0,1],[2,1],[1,0],[2,1],[1,1],[3,2],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,3],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-3,0],[-2,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,1],[0,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,1],[2,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0]],[[6548,1364],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[10,-4],[1,-1],[3,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[-7,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[3,0],[1,0],[1,0],[1,-1],[0,1],[2,0],[0,-1],[4,0],[0,1],[4,0],[2,-1],[2,-1],[2,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[4,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[3,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,1],[1,0],[2,0],[2,0],[1,0],[1,0],[3,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-6,-3],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[2,-2],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-2,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[2,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[2,-1],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-5,-2],[0,-1],[-3,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[2,-1],[-1,0],[-1,-1],[1,0],[1,0],[2,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-3,2],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[3,2],[1,0],[1,0],[2,1],[1,1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[2,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-3,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[0,1],[-7,0],[-1,0],[-1,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[2,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,0],[1,0]],[[6441,1369],[1,0],[1,0],[1,0],[0,-1],[1,0],[3,-1],[0,-1],[1,-1],[3,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[3,-2],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[3,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-5,3],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-3,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[0,4],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[3,0],[2,0],[1,0],[4,0],[0,-1],[1,1],[1,0],[3,0],[3,0],[1,0],[3,0],[1,0],[2,0],[1,1],[3,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0]],[[6466,1371],[2,0],[0,-1],[1,0],[3,0],[7,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-3,2],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[2,1],[2,1],[2,1],[2,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0]],[[6544,1372],[1,-1],[1,0],[1,0],[1,0],[0,-1],[3,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,1],[1,-1],[1,1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[0,1],[-1,0],[0,4],[0,1],[0,1],[-1,0],[0,1],[-4,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-4,2],[-2,2],[-1,0],[-4,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[1,0],[2,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1]],[[6638,1381],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-4,-2],[0,-1],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[3,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-5,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[2,1],[1,0],[0,1],[0,1],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[2,0],[2,0],[1,0],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-5,-1],[-1,-1],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[6482,1397],[1,0],[2,-1],[0,-1],[-2,0],[-2,1],[-1,1],[1,0],[1,0]],[[6463,1405],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[3,-2],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[3,0],[1,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[3,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,0],[-2,-2],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[2,0],[1,1],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[5,0],[2,0],[3,-2],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-3,-2],[-4,-2],[-3,-1],[-1,0],[-3,-2],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,4],[-1,1],[-1,0],[0,1],[-3,2],[-2,0],[-3,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[2,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[2,1],[1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-6,0],[-2,0],[-1,1],[-1,0],[-4,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-4,-2],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[0,1],[-1,0],[0,-1],[-2,1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[0,2],[1,0],[0,1],[0,2],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[3,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[0,1],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[2,0],[3,0]],[[6327,1423],[-1,-3],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[2,-1],[3,-1],[0,-1],[4,-1],[1,-1],[1,0],[1,0],[1,-1],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[4,0],[2,0],[3,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[0,1],[3,0],[2,0],[1,0],[1,0],[2,0],[1,1],[0,-1],[2,0],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-7,-3],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-4,0],[-1,0],[-4,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[0,1],[-4,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-2],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[4,-2],[3,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[7,-4],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-5,-2],[0,-1],[0,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[0,-1],[-3,-2],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-4,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-2,-1],[0,-1],[-3,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-4,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-4,2],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-2,1],[-3,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,4],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[2,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-3,2],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[0,-2],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[3,2],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-3,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[0,1],[0,2],[1,0],[0,1],[3,1],[1,0],[1,1],[4,0],[1,-1],[1,0],[1,0],[3,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[4,-2],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[0,-1],[4,-2],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[3,-2],[3,-2],[7,-3],[0,-1],[0,-1],[-1,0],[-3,0],[-1,0],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[1,-1],[1,0],[2,-2],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[2,1],[2,0],[0,-1],[2,0],[1,0],[1,0],[2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[7,0],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-2],[-1,0],[1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-3,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[1,0],[-3,2],[-2,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-3,1],[-1,1],[-1,0],[0,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-11,-5],[-3,-1]],[[5749,1637],[2,1],[2,1],[1,0],[0,1],[1,0],[2,1],[2,0],[2,0],[3,1],[5,0],[2,0],[2,0],[4,1],[2,-1],[1,0],[1,0],[1,-1],[3,1],[3,0],[2,0],[2,0],[2,0],[2,0],[6,2],[7,1],[4,1],[4,0],[0,1],[2,0],[1,1],[2,0],[3,1],[1,0],[1,0],[-7,4],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,2],[0,1],[1,0],[0,1],[1,1],[3,1],[3,0],[3,0],[2,1],[1,0],[1,2],[0,1],[1,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[2,0],[0,1],[-1,0],[-2,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,2],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[0,3],[0,4],[4,0],[1,0],[0,1],[1,3],[1,0],[1,1],[1,0],[1,0],[2,4],[2,2],[0,1],[1,0],[1,1],[1,1],[2,0],[0,1],[1,0],[1,0],[0,1],[0,1],[2,2],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,1],[3,1],[-1,1],[1,1],[0,2]],[[9559,2033],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1]],[[9598,2079],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0]],[[9664,2163],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[9656,2171],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[9635,2193],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1]],[[9625,2190],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-2,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[-2,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-6,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,1],[-1,1],[-1,0],[1,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,-4],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[2,0],[2,0],[2,0],[1,-1],[1,0],[0,-1],[-1,0],[1,-1],[-1,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-4,0],[-1,0],[0,-1],[2,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,-1],[-3,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[8787,2018],[1,1],[0,1],[-1,0],[-3,2],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[-1,2],[-2,1],[-2,1],[-8,5],[-4,3],[1,1],[1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,2],[1,2],[0,1],[-1,2],[0,3],[0,1],[0,1],[0,1],[1,0],[2,1],[2,0],[1,0],[2,1],[1,1],[3,2],[1,2],[3,0],[3,0],[3,-1],[3,-1],[2,0],[1,0],[1,0],[2,0],[2,0],[1,1],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,1],[3,1],[3,2],[3,0],[2,1],[2,0],[2,0],[2,0],[3,0],[3,0],[1,0],[1,0],[1,0],[1,1],[2,0],[2,0],[2,0],[2,0],[4,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[2,0],[2,1],[5,0],[4,1],[6,1],[6,2],[2,0],[1,0],[0,1],[1,0],[4,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[1,1],[3,1],[2,0],[1,1],[3,0],[1,0],[1,1],[1,1],[1,1],[1,1],[2,1],[1,0],[1,0],[2,2],[2,2],[1,1],[0,2],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,0],[3,1],[2,0],[2,0],[2,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,3],[0,1],[-1,1],[-2,2],[-1,1],[-2,1],[-1,2],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-2,1],[-3,0],[-3,1],[-4,1],[-3,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[2,1],[3,3],[1,0],[1,1],[4,4],[0,1],[1,1],[0,1],[0,1],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,1],[-2,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,0],[-3,0],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-3,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,1],[-3,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[2,0],[3,1],[2,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[1,2],[0,1],[0,1],[0,1],[1,1],[1,1],[4,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[2,1],[1,1],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[-1,1],[0,1],[-2,3],[-1,1],[-1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[0,1],[0,2],[2,3],[1,2],[1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[3,1],[2,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[-2,3],[-1,1],[-1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[3,3],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,1],[-4,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,1],[2,1],[-1,1],[0,1],[0,1],[1,1],[2,1],[1,1],[1,1],[5,3],[5,2],[7,4],[2,1],[1,1],[1,0],[0,1],[1,2],[2,2],[1,3],[0,1],[0,1],[0,1],[-1,1],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[2,1],[1,0],[0,1],[1,0],[0,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,1],[2,1],[1,1],[1,1],[1,2],[1,1],[0,1],[0,1],[1,2],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[-3,0],[-2,1],[-2,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[4,1],[1,0],[0,1],[2,0],[2,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[3,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[2,2],[0,1],[-1,1],[-2,1],[-1,1],[0,1],[1,0],[2,0],[2,1],[2,0],[2,1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[2,0],[2,0],[4,0],[2,1],[3,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,1],[1,0],[0,1],[1,1],[1,1],[4,0]],[[8992,2426],[2,-1],[3,-1],[3,-1],[6,0],[3,-1],[4,0],[2,0],[1,0],[5,0],[3,0],[2,0],[3,0],[3,1],[3,1],[1,0],[3,-1],[1,0],[2,-1],[2,-2],[2,1],[2,1],[1,1],[0,1],[0,1],[1,1],[2,1],[2,1],[2,0],[3,0],[2,0],[3,-1],[1,-1],[1,-1],[1,-1],[2,0],[3,0],[2,0],[2,1],[-2,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[3,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-2],[1,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,-2],[1,0],[-3,-2],[-3,-3],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,-1],[-2,-2],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[4,0],[4,-1],[4,0],[0,-1],[1,-1],[0,-1],[2,-2],[2,-1],[1,0],[3,-1],[2,-1],[4,-2],[4,-1],[1,0],[2,-1],[1,0],[4,-1],[4,0],[2,0],[5,-1],[3,0],[2,0],[2,0],[1,-1],[1,0],[2,0],[-1,-1],[0,-1],[1,-2],[2,-2],[1,-1],[0,-2],[1,-3],[0,-3],[-1,-1],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-3,-1],[-2,-2],[1,-1],[2,-2],[1,0],[1,-1],[-1,-1],[0,-2],[0,-2],[1,-1],[2,-1],[1,0],[1,0],[2,0],[3,1],[5,0],[4,1],[3,0],[1,0],[1,0],[2,-1],[0,-1],[1,0],[2,0],[1,-1],[2,-2],[1,-1],[1,0],[2,0],[2,2],[1,0],[3,-1],[1,0],[0,-1],[1,-1],[2,0],[3,-2],[3,0],[1,-1],[1,0],[1,-2],[2,-1],[1,-1],[1,0],[2,0],[4,1],[2,1],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[0,-1],[1,0],[1,1],[2,1],[1,0],[1,0],[2,0],[2,1],[1,0],[1,0],[2,-1],[3,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,-1],[1,0],[1,-1],[2,0],[2,0],[1,0],[2,0],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,-1],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[2,0],[3,0],[1,0],[3,0],[1,-1],[1,-1],[2,0],[4,-2],[2,0],[4,-1],[3,0],[3,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[4,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,1],[1,1],[3,0],[4,1],[5,2],[4,0],[1,1],[1,-1],[1,0],[5,-3],[7,-3],[7,-2],[1,-1],[3,0],[4,0],[6,1],[3,0],[3,-1],[2,0],[4,-2],[4,-2],[3,-2],[2,-1],[2,0],[1,0],[0,-1],[2,-2],[2,-2],[3,-4],[1,-1],[2,-5],[2,-3],[0,-1],[2,-4],[1,-2],[0,-1],[1,0],[1,-2],[2,-1],[2,-1],[3,-3],[4,-2],[3,-2],[0,-1],[2,-1],[2,-2],[3,-2],[2,-1],[2,-1],[3,-1],[4,-1],[5,-1],[3,-1],[0,-1],[1,0],[3,-5],[1,-1],[1,0],[1,0],[12,-3],[5,-1],[1,-2],[1,0],[1,1],[10,-2],[3,0],[2,0],[2,0],[10,-1],[6,0],[6,1],[7,0],[13,1],[12,1],[12,1],[9,1],[8,0],[8,0],[5,0],[3,0]],[[5878,2096],[0,0]],[[5486,1628],[1,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,2],[1,1],[1,0],[2,0],[2,-1],[2,0],[1,0],[4,0],[11,-2],[2,0],[2,0],[2,-1],[4,1],[4,1],[5,1],[2,0],[2,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[-1,2],[-1,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,2],[-1,2],[0,3],[0,1],[-1,2],[-2,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-3,2],[-5,3],[-4,2],[0,1],[-2,1],[-2,1],[-3,3],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-4,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-3,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,1],[1,1],[1,2],[0,1],[0,1],[0,1],[-2,1],[-3,1],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,2],[-1,1],[-2,2],[-2,2],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-2,0],[0,1],[-3,1],[-4,1],[-2,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,1],[-2,0],[-1,0],[-1,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-4,1],[-2,0],[-3,1],[-4,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,2],[-2,2],[-2,1],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[0,2],[0,1],[-1,1],[0,2],[0,2],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-14,0],[-2,0],[-4,0],[-3,1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-2,0],[-2,1],[-2,0],[-3,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-3,0],[-3,1],[-2,1],[-4,0],[-1,1],[-3,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-3,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[1,0],[0,1],[1,1],[2,1],[2,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[2,2],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-3,1],[-2,0],[-1,0],[-1,1],[-2,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,2],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[5,2],[0,1],[0,1],[-1,0],[1,0],[1,1],[2,1],[6,1],[3,0],[2,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-5,-1],[-3,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[0,1],[-1,-2],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[1,2],[1,1],[0,1],[3,0],[1,0],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[0,2],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[2,1],[-1,2],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,2],[0,2],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,2],[-1,1],[-1,0],[-2,1],[0,1],[2,1],[-2,1],[-1,2],[-2,1],[-1,0],[1,1],[0,1],[-2,0],[-1,1],[-1,1],[-1,0],[-3,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[-3,0],[-2,0],[1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-2,0],[0,1],[0,1],[0,1],[-2,0],[-1,0],[-2,0],[0,-1],[-1,1],[-1,0],[-1,0],[1,-1],[-2,0],[-2,0],[-2,0],[-1,0],[1,-1],[1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[1,1],[1,1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-2,1],[-1,1],[-1,0],[-2,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,1],[0,1],[0,-1],[2,1],[1,1],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-2,1],[-1,0],[1,1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[2,0],[1,1],[1,-1],[1,0],[1,0],[2,0],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[2,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,2],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[5,1],[2,0],[2,1],[1,1],[2,2],[1,0],[2,2],[1,0],[1,1],[1,1],[2,0],[2,1],[3,1],[4,1],[1,0],[1,0],[3,1],[3,1],[2,0],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[2,0],[1,1],[1,0],[1,0],[4,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[3,-2],[3,-1],[2,-1],[3,-1],[1,-1],[2,-1],[3,-1],[4,-2],[3,-1],[3,-1],[3,0],[0,-1],[4,0],[2,-1],[2,-1],[1,0],[1,-1],[3,-1],[2,0],[1,-1],[1,0],[2,0],[1,-1],[3,0],[3,-1],[3,0],[1,0],[1,-1],[2,0],[2,0],[1,0],[1,-1],[2,0],[3,0],[1,-1],[4,0],[3,-1],[2,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[3,2],[2,0],[0,1],[1,0],[0,1],[1,1],[2,1],[3,1],[2,0],[1,1],[2,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,1],[2,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[2,1],[2,1],[1,0],[2,1],[1,0],[4,2],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,0],[1,0],[2,1],[1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[2,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,-1],[2,1],[1,0],[1,-1],[2,0],[1,1],[2,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,-1],[1,0],[3,-1],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,1],[1,0],[1,0],[1,1],[3,1],[3,1],[0,1],[1,0],[2,1],[2,1],[1,1],[1,0],[1,1],[1,0],[2,0],[2,0],[1,0],[3,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[2,1],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[3,-2],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,-1],[2,0],[3,0],[2,-1],[2,0],[2,0],[2,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[2,1],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[2,0],[0,-1],[6,-2],[4,-1],[3,-2],[4,-1],[1,-1],[2,-1],[3,-1],[2,-1],[1,-1],[1,-1],[1,0],[3,-2],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[4,0],[6,0],[3,0],[5,1],[3,0],[1,0],[1,0],[1,0],[1,0],[3,2],[2,0],[2,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[2,0],[1,1],[1,0],[1,1],[2,0],[2,1],[2,0],[2,0],[1,0],[1,1],[2,1],[2,0],[2,1],[1,1],[1,0],[1,0],[1,0],[3,1],[3,1],[1,0],[2,0],[1,1],[2,0],[3,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[2,0],[3,0],[3,-1],[2,0],[2,0],[2,0],[1,-1],[1,0],[1,-1],[2,0],[2,-1],[1,-1],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[1,0],[2,-1],[3,0],[2,-1],[2,0],[2,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0]],[[5894,6434],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-3,0],[-3,0],[-3,0],[0,-1],[-3,0],[-2,0],[-2,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,1],[1,0],[1,0],[0,-1]],[[5424,6551],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0]],[[5488,6571],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[5960,6336],[-1,0],[-3,0],[-2,0],[-2,1],[-1,0],[-2,0],[-3,0],[-5,-1],[-4,0],[-4,0],[-4,-1],[-5,-2],[-6,-1],[-2,-1],[-1,1],[-3,0],[-2,1],[-4,0],[-4,0],[-3,0],[-4,0],[-4,-1],[-1,0],[-2,0],[-1,0],[-3,-1],[-4,-1],[-3,-1],[-3,1],[-2,0],[-3,0],[0,1],[-1,5],[0,6],[-2,0],[-5,1],[-3,1],[-1,0],[0,1],[-2,-1],[-1,0],[-3,0],[-2,0],[-2,-1],[-5,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,1],[-2,0],[-2,2],[-2,0],[-2,-1],[-6,0],[-5,2],[-6,2],[-2,1],[-1,0],[-1,0],[-4,0],[-10,1],[-6,1],[-5,2],[-2,0],[-3,-1],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-2,1],[-3,0],[-3,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,0],[-5,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-4,-1],[-3,-2],[-1,-1],[-1,-1],[-2,-3],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-6,0],[-4,0],[-1,0],[-3,0],[-2,0],[-4,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,-1],[-2,0],[-3,-1],[-3,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-3,0],[-3,0],[-1,0],[-3,-1],[-3,-1],[-1,0],[-2,1],[-1,1],[-4,1],[-4,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-3,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-3,0],[-4,0],[-3,0],[-2,1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-1,0],[-3,0],[-3,-1],[-3,0],[-3,0],[-1,0],[-2,-1],[-2,0],[-2,-2],[-2,-2],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,-2],[-2,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-4,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-1,0],[-3,0],[-1,1],[-1,0],[-3,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,1],[-2,0],[-2,0],[-2,0],[-4,1],[-3,1],[-3,1],[-2,0],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,1],[1,1],[1,-1],[2,1],[4,1],[1,1],[1,1],[1,0],[0,1],[2,1],[1,0],[2,1],[1,0],[3,1],[2,0],[3,0],[-2,1],[-1,1],[-4,2],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-2,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,1],[-2,0],[-3,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,1],[-5,1],[-4,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,1],[-2,1],[-1,1],[-2,0],[-1,1],[-1,1],[-3,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,2],[-2,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-2,1],[-1,1],[-3,1],[0,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[-2,0],[-3,0],[-4,0],[-1,0],[-2,0],[-2,-1],[-2,-1],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[0,1],[-1,0],[-1,0],[-2,0],[-3,0],[-5,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,3],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-3,-1],[-2,-1],[-3,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-3,1],[-3,0],[-1,0],[-5,1],[-1,0],[-4,0],[-5,0],[-2,0],[-2,1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,-1],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-5,0],[-2,0],[-5,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,0],[1,-1],[1,-1],[3,-1],[4,-2],[4,-1],[3,-1],[3,-2],[1,-1],[4,-3],[0,-1],[-4,-7],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,1],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[-2,0],[0,-1],[-1,0],[-4,-1],[-1,0],[-4,-1],[-1,-1],[1,0],[1,-1],[2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[-2,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-3,2],[-1,0],[-1,0],[-1,0],[-1,0],[-4,1],[-1,0],[-3,0],[-3,0],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-17,0],[-31,0],[-2,0],[-7,0],[-11,1],[-7,-1],[-9,0]],[[4775,6358],[-1,0],[0,1],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-2,1],[-2,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[1,0],[-1,1],[1,3],[-1,2],[-1,1],[-1,1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,2],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,2],[-2,2],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-2,1],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-4,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,1],[-2,0],[-1,0],[-2,0],[-4,-1],[-2,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,2],[-1,1],[1,3],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[1,1],[3,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[2,0],[1,0],[2,1],[1,0],[1,1],[1,0],[0,1],[-1,1],[-2,1],[-1,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[2,2],[0,1],[1,0],[0,1],[2,1],[1,1],[2,1],[1,1],[0,1],[1,1],[-1,0],[-2,1],[-1,1],[0,-1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-3,-1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-3,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-3,-2],[1,0],[-2,-1],[-1,-1],[-2,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,1],[-2,0],[-4,-1],[-3,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,1],[-2,1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,1],[-1,2],[-2,0],[0,1],[-2,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[0,1],[-3,1],[-2,0],[0,1],[-2,1],[-1,0],[-2,1],[-3,1],[0,1],[3,2],[2,2],[2,0],[1,0],[0,1],[1,0],[-1,1],[0,2],[-1,1],[0,1],[0,1],[1,2],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[-1,1],[0,1],[2,1],[1,1],[2,0],[0,1],[0,2],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[1,2],[0,1],[-1,0],[0,1],[2,2],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[2,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,-1],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,1],[-2,-1],[-2,1],[-1,0],[2,1],[0,1],[-2,0],[-2,2],[-2,1],[0,1],[0,1],[-1,0],[-1,1],[1,0],[2,2],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-3,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-3,0],[-2,1],[-1,0],[-2,0],[-2,1],[0,1],[1,1],[-2,2],[-1,0],[0,1],[-1,1],[1,1],[0,1],[-1,1],[-1,0],[-3,0],[-2,1],[-2,-1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-2,2],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[-1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[-1,2],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[3,1],[0,1],[1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[-1,1],[-1,1],[-1,0],[-1,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[2,0],[1,0],[1,1],[1,0],[1,1],[-1,0],[0,1],[-2,0],[-1,0],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[2,0],[3,0],[1,0],[3,1],[1,0],[1,1],[1,0],[1,0],[2,1],[1,2],[1,0],[1,1],[1,0],[-1,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[2,1],[1,0],[2,1],[2,0],[1,0],[1,0],[1,1],[3,0],[1,1],[1,0],[0,1],[-1,1],[-3,1],[-2,1],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[3,0],[0,1],[-1,0],[0,1],[-3,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[1,1],[2,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,1],[1,0],[1,1],[1,0],[2,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[4,1],[2,0],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[2,0],[2,0],[1,0],[1,0],[3,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1]],[[4152,6770],[3,-2],[1,0],[1,-1],[2,1],[2,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,0],[3,1],[1,0],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[3,1],[2,1],[4,2],[6,2],[5,-1],[4,1],[1,0],[2,1],[3,1],[3,0],[4,0],[4,1],[2,0],[5,-1],[2,-1],[2,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[2,-2],[1,0],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[2,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[5,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[0,1],[1,1],[2,1],[2,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[2,1],[4,2],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,2],[2,-1],[1,0],[2,0],[2,0],[3,0],[2,0],[2,0],[2,1],[1,2],[2,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[4,-1],[3,0],[5,0],[0,1],[0,1],[5,0],[2,1],[4,0],[1,0],[5,1],[1,0],[2,1],[2,0],[1,0],[0,1],[0,1],[0,1],[0,1],[3,0],[2,0],[3,-1],[1,0],[0,1],[1,-1],[1,0],[2,0],[1,0],[3,-1],[4,0],[3,0],[3,0],[3,0],[2,0],[3,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,-1],[4,0],[1,-1],[0,-1],[3,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[4,0],[4,1],[3,0],[5,0],[1,-2],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,2],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[2,0],[4,1],[3,0],[1,0],[3,0],[4,0],[4,0],[2,0],[2,-3],[4,-2],[2,0],[5,-1],[1,0],[2,1],[2,0],[3,1],[1,0],[4,1],[4,1],[6,1],[1,0],[3,1],[3,1],[3,0],[7,2],[3,1],[4,0],[2,1],[3,0],[4,0],[4,-1],[4,-2],[3,-2],[3,0],[3,1],[4,2],[3,2],[5,5],[1,1],[0,1],[1,1],[0,1],[0,4],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,2],[1,1],[1,1],[3,1],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[4,3],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[2,1],[3,1],[2,1],[3,0],[2,1],[3,0],[2,0],[2,0],[3,0],[2,0],[2,0],[3,-1],[2,0],[3,-1],[3,-1],[2,0],[2,0],[2,0],[3,0],[3,0],[1,0],[16,2],[6,2],[1,2],[0,1],[-1,3],[-2,4],[-2,2],[-1,0],[-1,2],[-4,2],[-4,3],[-1,2],[-4,7],[-1,1],[-1,1],[-1,1],[-4,5],[-3,3],[-3,2],[-1,2],[-1,0],[0,1],[-1,2],[1,2],[0,1],[2,1],[1,1],[2,1],[2,1],[2,1],[3,1],[3,2],[2,0],[3,2],[3,0],[3,1],[1,0],[1,1]],[[4939,6878],[1,0],[1,-1],[4,-1],[2,-1],[1,0],[1,-1],[2,0],[0,-1],[1,0],[2,0],[1,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-2],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-2,0],[0,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[2,0],[1,-1],[2,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-2],[1,0],[2,-1],[1,-1],[1,-1],[2,-1],[1,0],[0,-1],[4,-2],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[4,-1],[0,-1],[2,-1],[3,-2],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[1,-2],[1,-1],[1,-2],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,1],[1,0],[1,0],[1,1],[3,1],[3,1],[3,1],[0,1],[3,1],[1,2],[3,2],[2,1],[1,1],[2,2],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[2,0],[1,1],[1,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,2],[-1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[2,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[3,-2],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[2,-1],[1,-1],[2,0],[0,-1],[3,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[5,-2],[0,-1],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[3,-1],[2,-1],[2,-1],[1,-1],[1,0],[0,-1],[3,-1],[4,-2],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[2,-2],[1,0],[1,0],[-1,0],[1,0],[2,-1],[0,-1],[2,-1],[1,0],[4,-2],[1,-1],[1,0],[1,-1],[3,-2],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,0],[5,-3],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[2,0],[4,-2],[0,-1],[3,-1],[-1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[3,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[4,-2],[0,-1],[1,0],[2,-1],[3,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[5,-2],[0,-1],[1,0],[3,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[9,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,1],[2,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,2],[1,1],[2,1],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,1],[1,0],[3,0],[0,-1],[1,0],[5,0],[3,0],[3,-1],[1,0],[1,-1],[1,0],[3,0],[1,-1],[1,0],[0,-1],[2,0],[0,1],[1,-1],[2,0],[3,-1],[1,0],[0,-1],[1,0],[1,0],[3,-1],[3,0],[0,-1],[2,0],[0,-1],[4,-1],[1,0],[3,-1],[0,-1],[1,0],[7,-4],[2,0],[2,0],[1,0],[3,-2],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,-2],[0,-1],[4,-1],[3,-1],[2,0],[1,-1],[3,0],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[3,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[4,-2],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[6,-3],[0,-1],[6,-3],[1,-1],[3,-1],[1,-1],[1,0],[0,-1],[3,-1],[1,0],[1,-1],[1,0],[3,-2],[1,-1],[1,0],[4,-2],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[3,-1],[0,-1],[1,0],[4,-2],[1,-1],[3,-1],[1,0],[1,-1],[1,0],[1,-1],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[3,0],[3,-2],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[-1,0],[2,-1],[2,-1],[2,0],[1,-1],[2,-1],[1,0],[0,-1],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[4,-2],[1,0],[4,-2],[2,0],[2,-1],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[3,-1],[3,-2],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-3,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[2,1],[0,1],[1,1],[1,0],[0,1],[2,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[5,-2],[3,0],[1,0],[1,-1],[1,0],[1,0],[5,0],[2,-1],[3,0],[1,1],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-2,-1],[-3,-1],[0,-1],[-1,0],[0,-1],[-1,0],[2,-2],[1,-1],[1,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[2,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[2,0],[1,0],[3,0],[1,0],[3,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[2,0]],[[4965,6904],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1]],[[4998,7224],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,2],[1,0],[0,1],[1,0],[0,1],[1,0],[2,-1]],[[3770,7710],[1,0],[4,-2],[1,0],[2,0],[2,0],[2,1],[1,0],[1,-1],[3,-3],[2,-1],[1,-1],[2,0],[9,0],[2,0],[2,0],[7,0],[5,0],[6,0],[4,0],[9,2],[2,0],[1,0],[1,-1],[3,-2],[1,-3],[1,-2],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[6,1],[3,-1],[2,0],[4,-1],[4,-2],[4,-1],[11,-3],[3,0],[4,-1],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[4,0],[3,0],[6,0],[6,0],[4,1],[2,0],[1,0],[7,-2],[7,-3],[5,-1],[3,0],[6,-2],[5,-1],[1,-1],[1,0],[3,2],[2,1],[1,0],[2,-1],[3,-1],[1,0],[0,-1],[0,-1],[-2,-3],[0,-1],[1,0],[1,0],[10,0],[9,1],[10,1],[10,0],[5,1],[2,0],[3,0],[1,1],[1,0],[3,0],[1,0],[4,1],[1,0],[2,0],[4,-1],[9,-1],[4,0],[5,0],[4,-1],[4,0],[2,-1],[3,-1],[2,-1],[2,-2],[3,-1],[3,-1],[2,-1],[3,0],[2,0],[5,0],[2,0],[3,0],[2,-1],[3,0],[3,0],[2,0],[2,0],[1,1],[3,0],[4,0],[3,0],[2,-1],[6,-1],[6,-2],[2,-1],[1,-1],[0,-1],[1,-2],[1,-3],[0,-2],[1,-1],[2,-1],[4,-1],[2,-1],[1,0],[0,-1],[1,-1],[1,-4],[0,-3],[1,0],[1,-1],[3,-1],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[3,-1],[0,-1],[1,-1],[0,-1],[-3,-1],[-2,-2],[-4,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-5,1],[-6,1],[-3,0],[-5,0],[-4,0],[-4,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,-3],[-1,-3],[-1,-3],[-2,-2],[-1,-2],[-2,-1],[-2,-1],[-1,0],[-3,0],[-6,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-3],[0,-2],[0,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[-2,-2],[-2,-2],[0,-1],[0,-1],[1,-1],[1,-1],[2,-2],[1,-3],[0,-2],[-1,-2],[0,-1],[1,-1],[3,-2],[2,-1],[2,-2],[1,-2],[0,-2],[-1,-1],[-1,-1],[-2,-2],[1,-3],[1,-3],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[2,-1],[4,-2],[6,-1],[3,-2],[2,-1],[5,-2],[2,-1],[2,-1],[3,0],[5,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-2,0],[-3,-1],[-3,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[3,-1],[3,-2],[3,-1],[3,-1],[1,0],[1,-1],[-1,-3],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[2,-2],[4,-1],[2,-1],[2,0],[2,-1],[1,0],[1,0],[2,1],[3,1],[1,0],[1,0],[2,0],[1,0],[6,-2],[6,-2],[10,-3],[7,-2],[4,-2],[5,-2],[9,-4],[6,-4],[2,-1],[1,0],[4,-1],[8,-1],[2,-1],[1,0],[1,0],[1,1],[2,1],[0,1],[0,1],[0,2],[1,0],[2,1],[1,1],[3,0],[2,1],[2,0],[1,0],[2,-1],[2,-1],[6,-4],[6,-5],[3,-1],[1,-1],[1,-1],[0,-1],[1,-3],[0,-1],[2,-1],[3,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[1,0],[3,1],[3,1],[2,0],[1,0],[3,0],[2,-1],[2,-1],[1,-1],[0,-1],[0,-1],[-1,-3],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[3,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[0,-2],[-1,-2],[-1,-4],[-2,-2],[-2,-3],[0,-1],[0,-1],[1,-1],[2,-2],[3,-1],[-1,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[2,0],[1,0],[2,0],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[3,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[2,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[2,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[2,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[1,1],[0,2],[0,1],[1,1],[0,1],[2,0],[1,1],[2,0],[2,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[2,1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[3,1],[1,1],[1,0],[1,0],[5,0],[4,0],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[3,-1],[1,0],[1,-1],[1,0],[2,-2],[1,-1],[1,0],[1,0],[1,-1],[3,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[4,-1],[3,-2],[1,0],[3,-2],[2,-1],[1,-1],[4,0],[2,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-2],[1,-1],[1,0],[2,-2],[2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[1,-1],[2,-1],[5,-1],[4,-1],[3,-1],[3,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[3,2],[2,1],[1,0],[2,1],[4,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,-1],[1,0],[2,-1],[2,0],[4,0],[2,0],[3,0],[1,0],[1,-1],[3,0],[1,-1],[3,-2],[1,-1],[2,-1],[3,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[3,0],[3,1],[1,0],[2,0],[1,1],[1,0],[1,1],[2,2],[2,1],[2,2],[2,0],[1,1],[3,0],[3,1],[3,1],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[3,-1],[1,0],[1,0],[3,-1],[1,0],[1,1],[3,0],[1,0],[3,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,0],[2,1],[3,1],[3,0],[1,1],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[4,0],[2,1],[1,0],[1,0],[3,-1],[1,0],[2,0],[1,0],[2,0],[3,0],[3,-1],[5,-1],[4,-1],[2,0],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[3,-2],[3,-2],[1,0],[5,-4],[2,-2],[4,-2],[2,-2],[3,-1],[2,-2],[2,-1],[3,-2],[2,-2],[4,-2],[3,-2],[1,-1],[7,-2],[3,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[1,-2],[2,-1],[2,-1],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[3,0],[3,0],[6,-1],[6,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[4,1],[1,1],[3,1],[2,1],[1,-1],[4,-1],[3,0],[1,-1],[1,0],[0,-2],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[3,1],[1,-2],[0,-2],[1,0],[4,-1],[1,0],[0,-1],[0,-1],[0,-2],[2,0],[5,0],[1,0],[3,0],[1,0],[1,0],[0,-1],[0,-2],[1,-1],[1,-2],[1,-2],[1,0],[1,0],[2,0],[8,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-3,-2],[0,-1],[0,-2],[1,-1],[1,-2],[1,1],[3,1],[3,1],[3,2],[2,1],[1,0],[2,0],[2,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[3,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[3,-2],[2,-1],[2,-1],[1,0],[2,0],[1,0],[2,1],[1,1],[2,0],[4,0],[5,0],[3,0],[2,0],[3,-1],[8,0],[0,1],[1,0],[2,1],[2,1],[2,1],[2,1],[1,0],[1,0],[4,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[5,1],[1,1],[1,0],[1,0],[2,1],[3,1],[5,2],[0,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[3,-2],[1,-1],[0,-3],[1,0],[2,-1],[3,0],[2,2],[2,2],[1,0],[1,-1],[1,0],[3,-2],[2,-2],[3,-2],[1,-1],[1,0],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[6,1],[2,1],[6,1],[5,0],[2,0],[1,1],[3,0],[8,2],[4,1],[1,0],[1,0],[1,0],[0,-1],[1,-2],[1,-1],[0,-1],[2,-2],[0,-1],[2,-1]],[[4997,7231],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-2],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-3,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[1,3],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-4,2],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[1,0],[1,1],[2,1],[2,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,-1],[-3,0],[-4,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[-1,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,1],[2,0],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-3],[0,-1],[1,-2],[0,-2],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-2],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[0,-1],[-1,-1],[1,0],[0,-1],[0,-3],[0,-2],[0,-1],[0,-4],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-1],[2,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-3,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-4,-2],[-1,0],[0,-1],[-2,0],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-4],[-1,0],[0,-2],[0,-1],[1,0],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[3,-2],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-3],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[5,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,-1],[1,0],[3,0],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[3,-1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,1],[3,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[2,-1],[1,-1],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[2,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[3,0],[0,-1],[1,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-1],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[3,-2],[2,-1],[0,-1],[1,0],[1,-1],[7,-3],[1,-1],[-1,0],[2,0],[7,-4],[1,0],[0,-1],[3,-2],[2,-1],[4,-2],[1,0],[1,0],[4,-2],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[2,0]],[[4152,6770],[4,1],[1,0],[2,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[1,1],[0,2],[-2,1],[-2,2],[1,1],[3,2],[1,1],[0,1],[1,1],[2,2],[4,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-8,0],[-2,1],[-2,1],[-1,2],[0,2],[-5,1],[-3,0],[-3,0],[-3,0],[-3,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,2],[-2,2],[-2,2],[0,1],[-4,2],[-1,1],[-2,0],[-3,1],[-2,2],[-1,0],[-1,1],[-2,0],[-1,1],[-6,0],[-2,0],[-4,2],[-3,1],[-2,1],[-1,1],[-1,1],[1,1],[3,0],[1,0],[1,1],[-1,1],[1,1],[1,2],[3,2],[2,0],[1,0],[0,1],[0,1],[-3,0],[-6,2],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-2,3],[-1,0],[-1,0],[-2,0],[-3,0],[-3,-1],[-4,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,-1],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-2,0],[-3,0],[-3,0],[-4,0],[-4,0],[-3,1],[-4,1],[-4,0],[-3,0],[-2,0],[-3,0],[-3,-1],[-3,-1],[-2,0],[-1,0],[-3,0],[-1,1],[-2,0],[-4,1],[-2,0],[-2,0],[-2,0],[-3,-1],[-5,0],[-5,1],[-2,0],[0,1],[2,1],[1,0],[0,1],[1,2],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[2,1],[1,1],[-2,1],[-2,0],[-2,1],[-4,1],[-3,0],[-3,0],[-1,0],[-4,-1],[-2,-1],[-3,0],[-2,-1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,2],[1,1],[-3,0],[-2,-1],[-3,-1],[-4,1],[-5,0],[-2,0],[-2,1],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[2,1],[2,1],[1,1],[0,1],[-1,0],[-1,0],[-2,-1],[0,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,-1],[-4,-2],[-6,-1],[-4,-1],[-6,-1],[-1,0],[-1,1],[-5,2],[-5,1],[-5,-2],[-3,-1],[-1,0],[-5,0],[-4,1],[-4,0],[-5,0],[-7,1],[-9,-2],[-10,1],[-5,-1],[-5,0],[-2,0],[0,2],[1,1],[0,1],[-1,1],[-1,3],[-2,1],[-2,2],[-4,1],[0,1],[1,0],[2,0],[2,1],[1,1],[2,2],[0,1],[-2,2],[-1,1],[-1,1],[-3,1],[-3,1],[-4,1],[-1,1],[-3,1],[-2,1],[-1,1],[-1,0],[-2,1],[-5,1],[-2,1],[-3,0],[-2,0],[-1,0],[-1,0],[-3,0],[-5,0],[-5,0],[-7,0],[-4,-1],[-1,0],[-3,0],[-1,-1],[-9,0],[-5,0],[-4,1],[-5,0],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-3,-1],[-3,0],[-2,0],[-3,0],[-2,-2],[-2,-2],[-4,1],[-2,0],[-3,1],[-5,2],[-2,2],[-2,1],[-5,1],[-11,0],[-5,-1],[-7,0],[-7,-1],[-7,0],[-7,0],[-6,-2],[-2,0],[-5,1],[-5,1],[-3,1],[-4,2],[-2,1],[-3,2],[-1,2],[-3,3],[-1,1],[-1,1],[-2,0],[-3,0],[-4,-1],[-6,-1],[-5,-1],[-5,-2],[-3,-1],[-2,0],[-2,0],[-2,0],[-4,2],[-5,2],[-3,1],[-2,0],[-1,0],[-1,0],[-3,0],[-4,0],[-2,1],[-2,0],[-1,1],[-1,1],[-1,2],[0,2],[1,1],[0,1],[-1,1],[-1,0],[-2,0],[-4,1],[-2,0],[-5,1],[-4,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,1],[-3,1],[-2,1],[-1,2],[-1,2],[0,1],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-3,1],[-3,0],[-3,0],[-2,-1],[-2,-2],[-2,0],[-1,0],[-2,0],[-2,0],[-4,1],[-4,0],[-6,1],[-4,1],[-5,1],[-2,2],[0,1],[1,2],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,1],[-4,0],[-3,1],[-3,2],[-4,2],[-3,1],[-3,1],[-5,1],[-6,1],[-3,0],[-4,0],[-1,1],[-2,0],[-1,1],[-4,2],[-5,2],[-2,1],[0,1],[1,1],[2,2],[0,1],[-2,1],[-3,0],[-7,2],[-5,1],[-3,0],[-4,1],[-6,1],[-1,0],[-4,1],[-7,0],[-3,2],[-3,1],[-3,1],[-1,0],[-4,0],[-4,0],[-4,-1],[-2,0],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[-2,2],[-3,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,2],[-2,2],[-1,0],[-3,4],[-1,0],[-2,3],[-3,2],[-3,2],[-2,0],[-1,1],[-6,2],[-3,2],[-1,1],[-3,2],[-2,2],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,2],[-4,2],[-4,2],[-5,2],[-5,2],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,0],[-2,-1],[-3,0],[-4,0],[-5,0],[-3,1],[-5,3],[-4,2],[-4,5],[-3,2],[-4,2],[-3,1],[-2,1],[-3,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,-1],[-1,-2],[-3,-2],[-4,-3],[-1,-2],[-1,-2],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-4,1],[-2,0],[-1,-1],[-1,0],[-3,-1],[-2,0],[-5,-1],[-3,0],[-2,0],[-1,0],[-2,0],[-2,2],[-1,1],[-2,1],[-2,1],[-5,2],[-5,2],[-4,2],[-1,0],[-2,0],[-4,1],[-1,1],[-1,0],[-1,0],[-2,1],[-2,1],[-1,0],[-2,2],[0,2],[1,1],[1,1],[0,2],[-1,0],[-1,1],[-2,1],[-2,1],[-6,3],[-4,3],[-2,1],[-4,2],[-4,2],[-2,0],[-2,1],[-1,2],[0,2],[0,1],[2,1],[1,1],[0,1],[0,1],[-2,1],[-2,1],[-3,1],[-1,1],[-5,1],[-5,0],[-6,0],[-1,0],[-1,0],[-3,1],[-2,2],[-6,3],[-6,3],[-2,0],[-2,0],[-4,0],[-4,0],[-5,0],[-5,-1],[-4,0],[-3,0],[-2,1],[-3,1],[-2,1],[-2,0],[-3,0],[-3,1],[-7,1],[-7,2],[-10,3],[-7,1],[-5,1],[-4,1],[-2,1],[-1,1],[-1,1],[-1,4],[-2,4],[-2,3],[0,1],[-1,0],[-4,0],[-1,-1],[-2,0],[-1,0],[-2,1],[-2,2],[-2,1],[-2,0],[-3,0],[-2,1],[-3,0],[-6,1],[-2,0],[-4,0],[-9,-1],[-5,-1],[-6,-1],[-2,0],[-6,-2],[-1,0],[-4,-1],[-2,0],[-3,0],[-4,1],[-3,1],[-6,-1],[-6,0],[-6,1],[-5,1],[-6,1],[-5,2],[-2,1],[0,1],[0,1],[0,1],[-1,2],[2,1],[0,1],[2,1],[0,1],[1,1],[1,0],[0,2],[1,1],[1,1],[1,1],[3,2],[3,1],[1,1],[0,1],[0,2],[-1,1],[-3,1],[-6,1],[-5,1],[-8,0],[-6,0],[-3,0],[-3,1],[-2,1],[-3,2],[-1,3],[-2,2],[-1,1],[0,1],[0,2],[-2,1],[-2,2],[-3,2],[-2,2],[-2,2],[-3,1],[-3,1],[-1,1],[-3,0],[-5,0],[-6,0],[-5,1],[-4,0],[-6,0],[-4,0],[-4,0],[-5,0],[-6,1],[-7,2],[-5,1],[-4,0],[-4,0],[-1,-1],[-1,0],[-2,1],[-2,1],[-3,2],[-4,4],[-3,2],[-5,2],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-4,-2],[-3,-2],[-2,-1],[-1,0],[-2,2],[-3,2],[-3,3],[-4,3],[-4,2],[-6,1],[-5,2],[-6,2],[-4,2],[-4,1],[-1,2],[-1,0],[-1,0],[-2,0],[-1,0],[-3,-1],[-5,-1],[-2,0],[-3,1],[-2,0],[-2,0],[-2,-1],[-3,0],[-2,-1],[-3,0],[-3,0],[-3,0],[-6,-1],[-4,0],[-5,-1],[-6,-1],[-3,0],[-5,0],[-6,-1],[-4,-1],[-2,0],[-3,0],[-3,0],[-3,-1],[-3,-1],[-3,0],[-2,0],[-3,1],[-5,2],[-4,2],[-3,1],[-5,1],[-7,1],[-4,1],[-6,0],[-7,1],[-5,2],[-5,2],[-6,3],[-5,2],[-5,3],[-7,2],[-4,2],[-2,1],[-5,2],[-3,2],[-2,1],[-3,1],[-4,1],[-4,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,0],[-3,2],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-3,0],[-3,1],[-2,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-2,1],[-3,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-3,-2],[-4,-1],[-1,0],[-4,1],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,1],[0,1],[-1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[2,0],[2,1],[1,0],[1,0],[1,1],[1,0],[2,1],[2,1],[3,1],[4,1],[3,1],[2,0],[2,0],[3,0],[3,0],[3,0],[4,0],[2,0],[2,0],[2,0],[2,0],[2,1],[2,1],[2,1],[1,0],[2,2],[2,1],[1,1],[2,0],[1,0],[4,1],[3,0],[2,0],[2,0],[2,1],[2,0],[1,1],[2,0],[1,1],[3,1],[2,1],[3,1],[2,0],[1,1],[2,0],[3,1],[1,0],[2,1],[1,0],[2,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[1,1],[2,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[2,1],[1,0],[1,0],[1,0],[2,0],[3,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[3,1],[3,0],[2,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,0],[3,-1],[5,0],[2,-1],[2,0],[3,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,-1],[2,0],[1,1],[1,0],[1,1],[0,1],[1,2],[0,1],[1,0],[0,1],[2,0],[2,0],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1],[2,0],[2,0],[2,1],[3,0],[3,1],[3,1],[2,1],[1,0],[2,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[2,0],[2,-1],[3,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,2],[1,0],[0,1],[0,1],[1,1],[2,2],[1,0],[0,1],[1,1],[-1,1],[-1,0],[-2,0],[-2,1],[-4,0],[-2,0],[-1,0],[-1,0],[-1,1],[1,0],[1,0],[2,1],[2,0],[4,2],[5,2],[2,1],[6,3],[2,1],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[1,1],[2,1],[3,2],[1,0],[2,2],[0,4],[2,2],[5,-2],[3,-2],[2,0],[2,-1],[2,0],[2,0],[2,0],[3,0],[1,0],[2,0],[2,1],[1,0],[2,1],[1,2],[1,0],[1,1],[1,1],[2,1],[1,0],[1,0],[2,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-3,0],[-2,1],[-2,2],[-2,2],[-2,1],[-3,1],[-4,2],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[-2,2],[-1,1],[0,2],[0,2],[0,2],[0,2],[0,1],[1,2],[1,2],[-1,1],[0,1],[-2,1],[-2,2],[-3,2],[-3,0],[-1,1],[-3,0],[-6,1],[-5,1],[-4,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,2],[2,0],[0,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[2,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,1],[1,1],[1,0],[2,0],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[2,-1],[1,0],[1,0],[1,-1],[3,-1],[1,-1],[1,-1],[2,0],[3,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[2,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[3,-1],[3,1],[3,0],[2,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[2,0],[1,0],[2,0],[1,1],[2,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[2,1],[3,0],[2,1],[1,0],[3,0],[3,1],[3,0],[2,0],[2,0],[1,1],[2,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,1],[1,0],[1,1],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[2,0],[2,1],[1,1],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[3,1],[2,1],[2,0],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[1,0],[2,0],[2,1],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[2,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,-1],[1,0],[4,-1],[3,0],[1,0],[2,0],[1,1],[1,0],[3,0],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,0],[2,-1],[2,0],[3,0],[2,0],[3,0],[2,-1],[4,0],[3,-1],[3,0],[1,0],[2,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,0],[4,1],[2,0],[2,0],[1,0],[2,0],[1,-1],[3,-1],[2,0],[2,-1],[2,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[2,-1],[1,1],[0,1],[1,0],[2,0],[1,1],[1,0],[2,1],[1,1],[1,0],[2,0],[2,0],[2,1],[2,0],[2,1],[2,0],[2,1],[2,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,1],[2,0],[2,1],[1,1],[1,0],[2,1],[2,1],[3,0],[2,0],[2,0],[2,0],[1,0],[1,-1],[2,0],[1,0],[2,0],[2,1],[1,1],[1,0],[2,1],[2,0],[3,0],[2,0],[3,0],[1,0],[2,-1],[3,1],[2,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[2,0],[3,-1],[4,0],[2,0],[3,0],[1,0],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[2,0],[5,0],[4,-1],[5,-1],[2,0],[3,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[1,-1],[1,0],[2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[3,0],[2,0],[2,0],[2,1],[4,0],[3,-1],[2,0],[4,0],[2,0],[1,-1],[1,-2],[1,-1],[1,-2],[0,-2],[1,-1],[1,-1],[1,-1],[5,-1],[7,0],[4,-1],[3,0],[2,0],[5,1],[5,1],[2,0],[2,0],[1,0],[4,0],[4,0],[4,0],[3,0],[3,-1],[2,0],[1,-1],[1,-1],[1,-1],[2,0],[3,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[3,-2],[2,-1],[1,-1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[2,-1],[4,0],[4,-1],[4,0],[4,-1],[3,-2],[4,-1],[1,-1],[2,0],[1,0],[3,0],[2,1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[2,2],[1,0],[1,1],[1,1],[2,0],[1,0],[2,-1],[2,-1],[2,-1],[5,0],[2,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,1],[3,3],[1,0],[2,-1],[4,0],[2,0],[2,0],[1,1],[1,1],[1,2],[2,1],[2,1],[4,3],[4,1],[4,0],[6,1],[2,0],[3,0],[1,0],[3,0],[5,0],[4,1],[3,1],[3,0],[4,1],[3,0],[3,-1],[4,-2],[3,-1],[3,-1],[4,0],[3,0],[3,-1],[2,-1],[2,-1],[3,-1],[4,0],[4,0],[3,0],[3,0],[3,1],[1,0],[1,0],[1,1],[1,1],[0,2],[0,1],[3,2],[1,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,1],[-2,1],[0,1],[1,1],[1,1],[4,0],[6,0],[1,2],[1,1],[5,0],[2,1],[2,0],[0,1],[1,1],[-1,0],[-3,2],[-2,2],[0,1],[1,0],[2,2],[2,1],[1,0],[0,1],[1,1],[1,0],[5,3],[3,1],[1,0],[0,1],[-2,2],[-2,1],[-1,2],[-1,2],[-1,0],[-3,2],[0,1],[3,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,2],[1,1],[1,1],[1,1],[2,0],[4,1],[1,0],[2,1],[3,2],[2,1],[1,1],[0,2],[1,0],[2,1],[1,1],[1,0],[1,1],[2,0],[2,1],[2,0],[1,0],[1,0],[1,1],[1,0],[3,0],[1,1],[1,0],[1,0],[1,1],[2,1],[0,1],[2,0],[1,1],[2,2],[2,2],[0,1],[1,1],[0,2],[0,1],[1,0],[1,1],[1,1],[3,1],[5,1],[1,0],[3,1],[2,0],[3,-1],[2,0],[1,-1],[1,-1],[2,-1],[2,0],[3,-1],[3,0],[3,0],[2,0],[3,0],[3,0],[3,-1],[2,0],[5,0],[3,0],[2,0],[2,1],[1,0],[2,1],[2,4],[1,2],[1,0],[1,1],[2,0],[2,1],[1,0],[0,1],[-1,1],[-1,1],[-2,1],[-2,1],[-1,0],[0,1],[1,0],[4,0],[3,1],[3,0],[2,0],[5,1],[3,0],[2,1],[1,1],[3,2],[8,2],[8,1],[5,2],[5,-1],[3,0],[5,-2],[4,1],[3,-1],[5,-1],[2,0],[2,0],[1,0],[3,0],[3,1],[4,1],[2,0],[2,1],[2,1],[2,1],[1,2],[3,2],[1,3],[1,2],[-1,1],[0,1],[-1,1],[-2,1],[-1,1],[0,1],[1,3],[0,3],[1,2],[1,1],[3,2],[6,3],[3,1],[1,2],[1,1],[0,1],[-1,1],[-1,1],[-4,1],[-3,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,0],[1,2],[1,1],[1,1],[1,0],[2,0],[3,1],[2,0],[2,1],[1,1],[2,2],[3,2],[1,1],[-1,1],[-1,1],[-1,1],[-2,3],[-1,0],[-3,2],[0,1],[0,1],[0,1],[0,1],[0,1],[4,2],[0,1],[0,1],[1,1],[-1,1],[1,3],[0,1],[0,1],[3,2],[2,1],[0,1],[-1,0],[-4,0],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[0,1],[3,1],[-1,1],[1,2],[1,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[3,2],[3,1],[1,0],[5,2],[5,2],[2,0],[3,1],[2,0],[2,0],[3,1],[3,1],[2,0],[3,0],[5,1],[3,1],[2,1],[3,1],[3,1],[3,1],[1,1],[1,0],[4,2],[2,1],[1,1],[2,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,2],[0,1],[0,1],[1,3],[-1,2]],[[3771,7706],[-1,1]],[[3770,7707],[0,1],[0,2]],[[3770,7710],[0,0]],[[3770,7710],[-1,0],[1,0]],[[6184,6304],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[2,1],[1,0],[1,0],[2,0],[1,-1]],[[5940,6300],[-1,0],[-1,1],[1,0],[1,0],[-2,1],[-1,1],[-1,0],[-1,1],[1,0],[1,1],[2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[-1,-1],[-1,0]],[[5983,6321],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[2,0]],[[5977,6325],[2,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[5960,6336],[-2,-1],[-4,0],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,-1],[-1,0],[-2,0],[-3,-2],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-4,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-4,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-5],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-2],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[3,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[7,-3],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[2,0],[0,-1],[1,-1],[1,0],[0,-1],[3,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-2],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[2,-1],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,-1],[3,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[-3,0],[-1,-1],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[2,0],[2,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,-1],[2,-1],[0,-1],[1,0],[2,-1],[0,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[3,-1],[1,-1],[2,-1],[3,-2],[0,-1],[3,-1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[4,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[3,-2],[1,-1],[1,0],[0,-1],[3,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[7,-3],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[1,-1],[3,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[4,-2],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[2,-1],[6,-3],[1,-1],[1,0],[3,-1],[2,-2],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[4,-2],[1,-1],[1,0],[3,-1],[2,-1],[5,-3],[2,0],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[5,-2],[1,0],[3,-2],[1,0],[1,-1],[1,0],[1,0],[4,-2],[0,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[4,-2],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-2],[1,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[0,-1],[2,0],[2,0],[3,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,-1],[2,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,0],[2,-1],[2,-1],[3,-1],[1,0],[2,-1],[5,-2],[4,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[1,0],[1,-1],[2,0],[4,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,0],[1,0],[3,-2],[3,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0]],[[6621,5799],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-3,-2],[-3,-1],[-2,-1],[-2,-1],[-1,-1],[-13,-5],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-4,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-3,-1],[-2,0],[0,-1],[-1,0],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[-1,-1],[0,-2],[-1,-1],[0,-1],[-3,-1],[-2,-1],[-1,0],[-3,0],[-4,-2],[-2,-2],[-2,0],[-4,-1],[-4,-1],[-3,-1],[-2,0],[-6,0],[-4,0],[-2,0],[-4,1],[-3,0],[-3,1],[-1,0],[-1,0],[-3,1],[-3,1],[-4,-1],[-2,0],[-1,-3],[-2,0],[-3,0],[-1,0],[-1,-2],[1,-2],[1,-1],[-2,-1],[-4,-2],[-1,-1],[-1,0],[-2,0],[0,-2],[1,-1],[1,0],[0,-2],[2,-3],[1,-2],[2,-1],[1,-2],[-3,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-4,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[1,-2],[0,-1],[1,-2],[0,-1],[1,0],[-1,-2],[1,-3],[2,-4],[1,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-3,-1],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-2,0],[-2,0],[-4,1],[-2,0],[-1,1],[0,-1],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-3,-1],[-1,0],[-4,2],[-5,1],[-4,1],[-2,0],[-6,1],[-3,0],[-3,0],[-1,1],[-1,1],[-1,0],[0,1],[1,1],[-2,1],[-1,0],[-4,2],[-2,1],[-2,1],[-2,0],[-3,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-5,0],[0,1],[-1,1],[-1,0],[-4,2],[-2,1],[-2,2],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-3,0],[-3,0],[-1,0],[-5,-2],[-1,0],[-1,-1],[-2,0],[-7,-1],[-6,-2],[-3,0],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,0],[-5,0],[-3,0],[-4,0],[-2,0],[-4,1],[-3,1],[-2,-1],[-1,0],[-2,1],[-4,0],[-4,0],[-5,1],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,-1],[-7,1],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-3,1],[-2,1],[0,1],[0,2],[0,2],[1,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,3],[-1,1],[-2,2],[-1,1],[-1,1],[-3,0],[0,1],[1,2],[-1,1],[1,1],[2,0],[1,0],[2,1],[3,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-3,1],[-3,0],[-1,1],[-2,0],[-2,0],[-4,0],[-2,-1],[-3,0],[-5,1],[-7,-1],[-1,0],[-3,0],[-5,-1],[0,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1]],[[6012,5688],[0,4],[-3,0],[-1,0],[-1,0],[-2,-1],[-1,-4],[0,-2],[-4,0],[-5,-1],[-2,-2],[-3,-4],[0,-1],[-3,-3],[-11,-2],[-11,-3],[-7,1],[-3,1],[-3,0],[-3,2],[-1,1],[-8,2],[-6,0],[-6,1],[-12,0],[-2,0],[-1,0],[-4,0],[-3,0],[-2,1],[-1,0],[-2,1],[-2,1],[-2,0],[-1,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[-1,0],[-3,0],[-2,0],[-8,-2],[-5,-1],[-3,0],[-4,-1],[-2,0],[-2,0],[-2,1],[-5,4],[-4,1],[-3,1],[-2,1],[-1,1],[0,1],[0,1],[1,1],[0,3],[0,1],[-1,1],[-2,3],[-1,0],[-1,2],[0,2],[-1,1],[-1,1],[-11,3],[-12,6],[-4,3],[-1,1],[0,1],[0,1],[3,2],[3,2],[3,3],[6,2],[1,4],[3,2],[0,1],[-1,0],[-7,1],[0,1],[-1,0],[-1,2],[0,1],[-1,1],[-3,1],[-5,2],[-2,1],[-2,1],[-2,0],[-1,1],[-4,1],[-3,3],[-2,0],[-6,1],[-5,1],[-1,0],[-2,0],[-6,2],[-4,2],[-1,5],[-2,3],[-1,1],[-2,1],[-4,2],[-3,1],[-7,2],[-3,0],[0,3],[0,1],[0,1],[-2,2],[-1,1],[-1,0],[-1,0],[0,1],[-5,0],[-3,0],[0,2],[6,1],[5,3],[2,1],[-1,0],[0,1],[-1,0],[-5,1],[-4,1],[-2,2],[-2,1],[-2,0],[-1,0],[-1,0],[-4,0],[-2,1],[-3,2],[-3,2],[-2,3],[-1,0],[-4,1],[-1,0],[-2,2],[0,2],[-1,2],[-3,1],[-2,1],[1,1],[4,2],[2,0],[0,1],[-1,1],[-6,1],[-2,0],[-1,0],[-3,2],[-14,2],[-2,0],[-2,1],[2,2],[3,2],[0,1],[0,1],[0,1],[1,0],[3,-1],[2,0],[1,1],[1,1],[1,0],[1,0],[4,-1],[3,0],[6,-2],[1,0],[1,1],[2,1],[2,2],[0,2],[6,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-2,0],[-3,0],[-3,0],[-3,1],[-2,1],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-3,1],[-3,1],[-4,0],[-3,-1],[-1,1],[0,1],[1,0],[6,1],[1,0],[3,1],[2,1],[1,2],[-2,1],[0,1],[-3,0],[-3,0],[-3,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,2],[2,3],[2,3],[0,4],[0,1],[-2,6],[-1,4],[-2,2],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-3,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-3,-1],[-3,1],[-11,-1],[-3,-1],[0,-1],[0,-2],[-1,-2],[4,-4],[4,-3],[0,-2],[-1,-2],[-2,-3],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-7,-1],[-6,-3],[-6,-1],[-1,-1],[-1,0],[-8,0],[-2,-1],[-1,-1],[0,-3],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,2],[-2,1],[-1,0],[-1,0],[-5,0],[-1,0],[-5,0],[-9,4],[-9,3],[-12,4],[-4,2],[-3,1],[-7,1],[-4,1],[-8,3],[-12,5],[-1,1],[-9,4],[-8,3],[-11,2],[-1,0],[0,1],[0,1],[-2,1],[-4,1],[-5,1],[-4,1],[-2,0],[-5,-1],[-3,1],[-2,2],[-2,2],[-1,1],[-1,1],[-3,1],[-3,2],[-1,1],[-1,4],[0,2],[-1,1],[-4,2],[-6,2],[-4,1],[-1,0],[-4,1],[-10,3],[-4,2],[0,1],[0,1],[-2,0],[-4,1],[-2,0],[-3,0],[-5,1],[-5,2],[-2,1],[-1,0],[-2,0],[0,1],[-67,38],[-1,0],[-14,9],[-81,45],[-5,4],[-5,3],[-65,37],[-42,23],[-1,1],[-16,9],[-3,2],[-7,4],[-7,4],[-1,0],[-9,-1],[-9,0],[-3,0],[-2,1],[-1,1],[0,2],[-3,2],[-6,4],[-1,0],[-3,0],[-1,-1],[-2,0],[-1,1],[-1,1],[1,1],[0,2],[-2,2],[-4,1],[-12,3],[-2,1],[-3,2],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,2],[-2,1],[-2,1],[-2,0],[-6,0],[-4,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-3,-1],[-2,-1],[-2,0],[-2,0],[-1,0],[-4,0],[-3,0],[-1,0],[-2,0],[-3,-1],[-3,-1],[-6,-1],[-4,-1],[-3,0],[-2,0],[-1,0],[-1,1],[-2,10],[-3,11],[0,1],[-2,5],[-2,7],[-1,2],[-3,-1],[-2,-1],[-3,0],[-4,0],[-3,0],[-3,1],[-1,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[2,1],[1,0],[0,1],[0,2],[-1,1],[-1,0],[-3,1],[-1,0],[-3,1],[-2,1],[-2,1],[-1,1],[0,1],[1,1],[-1,0],[-2,1],[-4,0],[-1,0],[-3,0],[-1,0],[-3,1],[-3,0],[-5,1],[-2,1],[-2,0],[-2,2],[-1,1],[-1,0],[0,1],[-4,1],[-2,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-4,3],[0,2],[-1,1],[-1,0],[-5,2],[-9,3],[-2,2],[0,2],[1,3],[4,4],[1,0],[3,4],[3,3],[0,1],[0,1],[-2,3],[1,3],[0,1],[0,1],[-1,0],[-2,0],[-2,0],[-3,1],[-1,1],[-2,2],[-1,2],[0,1],[-2,1],[-3,2],[-4,1],[-3,1],[-2,1],[-2,1],[-4,1],[-10,3],[-4,0],[-3,0],[-7,0],[-4,0],[-2,1],[-2,0],[-6,2],[-6,2],[-5,1],[-1,1],[-4,2],[-1,0],[-4,0],[-8,1],[-3,0],[-1,1],[-1,1],[1,3],[2,2],[0,1],[-1,3],[-1,2],[1,1],[1,2],[2,1],[6,2],[2,1],[1,2],[1,1],[1,3],[3,2],[1,2],[1,3],[0,2],[0,1],[0,2],[1,2],[0,2],[0,3],[1,1],[3,0],[2,1],[0,3],[1,1],[2,2],[2,1],[3,1],[2,2],[10,2],[1,1],[0,3],[-2,2],[1,1],[2,2],[-2,2],[1,2],[0,5],[0,2]],[[7078,5793],[-1,0],[1,0]],[[7156,5515],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-8,-2],[-3,-1],[-4,0],[-3,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[-2,-1],[-2,0],[-3,0],[-3,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,-1],[3,-1],[1,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-2,-1],[-4,-2],[-2,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[2,1],[1,0],[1,0],[-1,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[0,-1],[1,-1],[2,0],[3,-1],[1,0],[4,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[-1,0],[-3,-2],[1,-1],[-9,-3],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-3,-1],[-2,0],[-3,-1],[-8,-3],[-1,0],[-5,-2],[-12,-4],[-2,-1],[-1,0],[-1,0],[-1,-1],[-3,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,0],[-2,0],[-2,0],[-3,1],[-2,0],[-3,1],[-4,2],[-2,0],[-2,2],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-3,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,1],[-1,0],[-5,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-3,0],[-2,0],[-3,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,-1],[-4,0],[-4,-1],[-3,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[1,0],[0,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-2,1],[-3,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-3,1],[-3,0],[-3,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,1],[-2,0],[-3,1],[-2,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[-4,-3],[-4,-3],[-2,-2],[2,-1],[1,0],[2,-1],[2,-1],[2,-1],[2,0],[1,-1],[2,0],[0,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[2,0],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[2,0],[4,0],[4,1],[1,0],[1,0],[2,0],[1,1],[2,0],[0,-1],[-1,-1],[0,-1],[0,-1],[3,-2],[1,-2],[1,-2],[1,0],[1,0],[2,0],[1,2],[2,1],[1,0],[3,0],[5,-2],[6,-2],[6,-2],[6,-2],[2,-1],[2,-2],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[3,-2],[2,-2],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[-1,0],[-4,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-3,-1],[-3,1],[-3,0],[-6,-1],[-5,0],[-4,0],[-1,0],[-2,-1],[-1,0],[-2,1],[-3,1],[-5,2],[-4,0],[-3,1],[-4,1],[-2,0],[-4,0],[-8,0],[-10,-1],[-8,0],[-6,1],[-3,0],[-1,-1],[0,-2],[-2,-3],[-3,-1],[-4,-2],[-2,-1],[0,-1],[0,-3],[-1,-1],[-1,-1],[3,-2],[3,-2],[4,-3],[2,-1],[0,-2],[-1,-3],[1,-4],[1,-2],[0,-4],[1,-2],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-5,-1],[-3,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[2,0],[2,0],[1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[1,-2],[4,-1],[1,-1],[0,-1]],[[6665,5224],[-1,0],[-2,-1],[-2,-1],[-3,-3],[-2,0],[-4,0],[-2,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-3,1],[-4,1],[-3,1],[-3,1],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[1,0],[2,2],[1,1],[1,0],[1,1],[1,1],[0,1],[0,2],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-7,1],[-9,1],[-8,2],[-3,0],[-2,1],[-1,0],[-4,1],[-9,1],[-5,1],[-4,0],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[-3,1],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-2,0],[-2,1],[-4,0],[-3,1],[-3,1],[-1,1],[-2,0],[-1,1],[-2,1],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[2,1],[2,1],[1,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,1],[-5,1],[-2,0],[-4,1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment