Skip to content

Instantly share code, notes, and snippets.

@n1n9-jp
Created May 29, 2014 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save n1n9-jp/ed875e178c504aa7ae47 to your computer and use it in GitHub Desktop.
Save n1n9-jp/ed875e178c504aa7ae47 to your computer and use it in GitHub Desktop.
Tokyo TopoJSON
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Tokyo TopoJSON</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/queue.v1.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js" charset="utf-8"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<style>
#map {
border:1px solid #999;
width:960px;
height:500px;
}
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 10px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
font-size: 10px;
}
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
/* --------------------
変数定義
-------------------- */
var width = 960,
height = 500;
var tip;
/* --------------------
描画のための準備
-------------------- */
/* 地図投影の指定 */
var projection = d3.geo.mercator()
.scale(55000)
.center([139.463191, 35.710335]);
/* 地形データをSVGに変換するための入れ物 */
var path = d3.geo.path()
.projection(projection);
/* 描画領域の指定 */
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height);
/* ツールチップ */
tip = d3.tip()
.attr('class', 'd3-tip')
.offset([-10, 0])
.html(function(d) {
return d.properties.ward_ja;
});
svg.call(tip);
/* --------------------
データファイルの読み込み
-------------------- */
queue()
.defer(d3.json, "tokyo.topojson")
.await(loadReady);
/* --------------------
地図の描画
-------------------- */
function loadReady(_error, _topojson) {
if (_error){ console.log(_error); }
/* 描画用の変数定義 */
var geometries = topojson.feature(_topojson, _topojson.objects.tokyo).features;
/* 描画 */
var countries = svg.append("g").selectAll(".ward").data(geometries);
countries
.enter().insert("path")
.attr("class", "ward")
.attr("d", path)
.style("fill", "#999")
.style("stroke", "#FFF")
.style("stroke-width", "1px")
.on('mouseover', tip.show)
.on('mouseout', tip.hide);
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"tokyo":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::900913"}},"geometries":[{"type":"Polygon","properties":{"ward_ja":"足立区","ward_en":"Adachi Ku","area_ja":"都区部","area_en":"Tokubu","code":131211},"arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"ward_ja":"文京区","ward_en":"Bunkyo Ku","area_ja":"都区部","area_en":"Tokubu","code":131059},"arcs":[[5,6,7,8,9,10]]},{"type":"Polygon","properties":{"ward_ja":"千代田区","ward_en":"Chiyoda Ku","area_ja":"都区部","area_en":"Tokubu","code":131016},"arcs":[[11,12,13,14,-8]]},{"type":"Polygon","properties":{"ward_ja":"台東区","ward_en":"Taito Ku","area_ja":"都区部","area_en":"Tokubu","code":131067},"arcs":[[15,16,-12,-7,17]]},{"type":"MultiPolygon","properties":{"ward_ja":"品川区","ward_en":"Shinagawa Ku","area_ja":"都区部","area_en":"Tokubu","code":131091},"arcs":[[[18,19,20,21,22]],[[23,24,25]]]},{"type":"MultiPolygon","properties":{"ward_ja":"江戸川区","ward_en":"Edogawa Ku","area_ja":"都区部","area_en":"Tokubu","code":131237},"arcs":[[[26,27,28,29]],[[30]],[[31]]]},{"type":"Polygon","properties":{"ward_ja":"新宿区","ward_en":"Shinjuku Ku","area_ja":"都区部","area_en":"Tokubu","code":131041},"arcs":[[-9,-15,32,33,34,35]]},{"type":"Polygon","properties":{"ward_ja":"渋谷区","ward_en":"Shibuya Ku","area_ja":"都区部","area_en":"Tokubu","code":131130},"arcs":[[-34,36,-23,37,38,39,40]]},{"type":"Polygon","properties":{"ward_ja":"北区","ward_en":"Kita Ku","area_ja":"都区部","area_en":"Tokubu","code":131172},"arcs":[[-4,41,-11,42,43,44]]},{"type":"Polygon","properties":{"ward_ja":"豊島区","ward_en":"Toshima Ku","area_ja":"都区部","area_en":"Tokubu","code":131164},"arcs":[[-43,-10,-36,45,46,47]]},{"type":"Polygon","properties":{"ward_ja":"中央区","ward_en":"Chuo Ku","area_ja":"都区部","area_en":"Tokubu","code":131024},"arcs":[[48,49,50,51,-13,-17]]},{"type":"Polygon","properties":{"ward_ja":"杉並区","ward_en":"Suginami Ku","area_ja":"都区部","area_en":"Tokubu","code":131156},"arcs":[[-40,52,53,54,55,56]]},{"type":"Polygon","properties":{"ward_ja":"板橋区","ward_en":"Itabashi Ku","area_ja":"都区部","area_en":"Tokubu","code":131199},"arcs":[[-44,-48,57,58]]},{"type":"Polygon","properties":{"ward_ja":"世田谷区","ward_en":"Setagaya Ku","area_ja":"都区部","area_en":"Tokubu","code":131121},"arcs":[[-53,-39,59,60,61,62,63,64]]},{"type":"Polygon","properties":{"ward_ja":"墨田区","ward_en":"Sumida Ku","area_ja":"都区部","area_en":"Tokubu","code":131075},"arcs":[[65,-28,66,-49,-16,67,-2]]},{"type":"Polygon","properties":{"ward_ja":"中野区","ward_en":"Nakano Ku","area_ja":"都区部","area_en":"Tokubu","code":131148},"arcs":[[-35,-41,-57,68,-46]]},{"type":"Polygon","properties":{"ward_ja":"練馬区","ward_en":"Nerima Ku","area_ja":"都区部","area_en":"Tokubu","code":131202},"arcs":[[-58,-47,-69,-56,69,70,71]]},{"type":"MultiPolygon","properties":{"ward_ja":"江東区","ward_en":"Koto Ku","area_ja":"都区部","area_en":"Tokubu","code":131083},"arcs":[[[-27,72,-50,-67]],[[73]],[[74]],[[75,-24,76]],[[77]]]},{"type":"Polygon","properties":{"ward_ja":"目黒区","ward_en":"Meguro Ku","area_ja":"都区部","area_en":"Tokubu","code":131105},"arcs":[[-22,78,-60,-38]]},{"type":"Polygon","properties":{"ward_ja":"葛飾区","ward_en":"Katsushika Ku","area_ja":"都区部","area_en":"Tokubu","code":131229},"arcs":[[-29,-66,-1,79]]},{"type":"MultiPolygon","properties":{"ward_ja":"港区","ward_en":"Minato Ku","area_ja":"都区部","area_en":"Tokubu","code":131032},"arcs":[[[-14,-52,80,-19,-37,-33]],[[81,-77,-26]],[[82]]]},{"type":"MultiPolygon","properties":{"ward_ja":"大田区","ward_en":"Ota Ku","area_ja":"都区部","area_en":"Tokubu","code":131113},"arcs":[[[-21,83,-61,-79]],[[84]],[[85]]]},{"type":"Polygon","properties":{"ward_ja":"荒川区","ward_en":"Arakawa Ku","area_ja":"都区部","area_en":"Tokubu","code":131181},"arcs":[[-68,-18,-6,-42,-3]]},{"type":"MultiPolygon","properties":{"ward_ja":"小笠原村","ward_en":"Ogasawara Mura","area_ja":"島嶼部","area_en":"Toushobu","code":134210},"arcs":[[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]]]},{"type":"Polygon","properties":{"ward_ja":"調布市","ward_en":"Chofu Shi","area_ja":"多摩","area_en":"Tama","code":132080},"arcs":[[166,-64,167,168,169,170,171]]},{"type":"Polygon","properties":{"ward_ja":"立川市","ward_en":"Tachikawa Shi","area_ja":"多摩","area_en":"Tama","code":132021},"arcs":[[172,173,174,175,176,177,178,179]]},{"type":"Polygon","properties":{"ward_ja":"檜原村","ward_en":"Hinohara Mura","area_ja":"多摩","area_en":"Tama","code":133078},"arcs":[[180,181,182,183]]},{"type":"Polygon","properties":{"ward_ja":"八王子市","ward_en":"Hachioji Shi","area_ja":"多摩","area_en":"Tama","code":132012},"arcs":[[184,185,186,187,188,-182,189,190]]},{"type":"MultiPolygon","properties":{"ward_ja":"所属未定地","ward_en":null,"area_ja":"null","area_en":null,"code":null},"arcs":[[[191]],[[192],[193]],[[194]],[[195]]]},{"type":"Polygon","properties":{"ward_ja":"清瀬市","ward_en":"Kiyose Shi","area_ja":"多摩","area_en":"Tama","code":132217},"arcs":[[196,197,198]]},{"type":"Polygon","properties":{"ward_ja":"三鷹市","ward_en":"Mitaka Shi","area_ja":"多摩","area_en":"Tama","code":132047},"arcs":[[-54,-65,-167,199,200]]},{"type":"Polygon","properties":{"ward_ja":"東村山市","ward_en":"Higashimurayama Shi","area_ja":"多摩","area_en":"Tama","code":132136},"arcs":[[-198,201,202,203,204]]},{"type":"MultiPolygon","properties":{"ward_ja":"八丈町","ward_en":"Hachijo Machi","area_ja":"島嶼部","area_en":"Toushobu","code":134015},"arcs":[[[205]],[[206]]]},{"type":"Polygon","properties":{"ward_ja":"東久留米市","ward_en":"Higashikurume Shi","area_ja":"多摩","area_en":"Tama","code":132225},"arcs":[[207,208,209,-202,-197]]},{"type":"MultiPolygon","properties":{"ward_ja":"新島村","ward_en":"Niijima Mura","area_ja":"島嶼部","area_en":"Toushobu","code":133639},"arcs":[[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]]]},{"type":"Polygon","properties":{"ward_ja":"西東京市","ward_en":"Nishitokyo Shi","area_ja":"多摩","area_en":"Tama","code":132292},"arcs":[[-71,224,225,226,-209,227]]},{"type":"Polygon","properties":{"ward_ja":"奥多摩町","ward_en":"Okutama Machi","area_ja":"多摩","area_en":"Tama","code":133086},"arcs":[[228,229,-184,230]]},{"type":"Polygon","properties":{"ward_ja":"小平市","ward_en":"Kodaira Shi","area_ja":"多摩","area_en":"Tama","code":132110},"arcs":[[-210,-227,231,232,-174,233,-203]]},{"type":"Polygon","properties":{"ward_ja":"福生市","ward_en":"Fussa Shi","area_ja":"多摩","area_en":"Tama","code":132187},"arcs":[[234,235,-179,236,-191,237,238]]},{"type":"Polygon","properties":{"ward_ja":"日の出町","ward_en":"Hinode Machi","area_ja":"多摩","area_en":"Tama","code":133051},"arcs":[[239,240]]},{"type":"Polygon","properties":{"ward_ja":"昭島市","ward_en":"Akishima Shi","area_ja":"多摩","area_en":"Tama","code":132071},"arcs":[[-178,241,-185,-237]]},{"type":"MultiPolygon","properties":{"ward_ja":"御蔵島村","ward_en":"Mikurajima Mura","area_ja":"島嶼部","area_en":"Toushobu","code":133825},"arcs":[[[242]]]},{"type":"MultiPolygon","properties":{"ward_ja":"三宅村","ward_en":"Miyake Mura","area_ja":"島嶼部","area_en":"Toushobu","code":133817},"arcs":[[[243]],[[244]],[[245]],[[246]],[[247]],[[248]]]},{"type":"Polygon","properties":{"ward_ja":"国立市","ward_en":"Kunitachi Shi","area_ja":"多摩","area_en":"Tama","code":132152},"arcs":[[249,250,-176,251]]},{"type":"Polygon","properties":{"ward_ja":"国分寺市","ward_en":"Kokubunji Shi","area_ja":"多摩","area_en":"Tama","code":132144},"arcs":[[252,253,-252,-175,-233]]},{"type":"MultiPolygon","properties":{"ward_ja":"利島村","ward_en":"Toshima Mura","area_ja":"島嶼部","area_en":"Toushobu","code":133621},"arcs":[[[254]]]},{"type":"MultiPolygon","properties":{"ward_ja":"神津島村","ward_en":"Kozushima Mura","area_ja":"島嶼部","area_en":"Toushobu","code":133647},"arcs":[[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]]]},{"type":"MultiPolygon","properties":{"ward_ja":"青ヶ島村","ward_en":"Aogashima Mura","area_ja":"島嶼部","area_en":"Toushobu","code":134023},"arcs":[[[264]]]},{"type":"Polygon","properties":{"ward_ja":"東大和市","ward_en":"Higashiyamato Shi","area_ja":"多摩","area_en":"Tama","code":132209},"arcs":[[-204,-234,-173,265,266]]},{"type":"Polygon","properties":{"ward_ja":"多摩市","ward_en":"Tama Shi","area_ja":"多摩","area_en":"Tama","code":132241},"arcs":[[267,268,269,-187,270,271]]},{"type":"Polygon","properties":{"ward_ja":"羽村市","ward_en":"Hamura Shi","area_ja":"多摩","area_en":"Tama","code":132276},"arcs":[[272,-239,273,274]]},{"type":"MultiPolygon","properties":{"ward_ja":"瑞穂町","ward_en":"Mizuho Machi","area_ja":"多摩","area_en":"Tama","code":133035},"arcs":[[[275,276,-235,-273,277]],[[278]]]},{"type":"Polygon","properties":{"ward_ja":"武蔵村山市","ward_en":"Musashimurayama Shi","area_ja":"多摩","area_en":"Tama","code":132233},"arcs":[[-266,-180,-236,-277,279],[-279]]},{"type":"Polygon","properties":{"ward_ja":"狛江市","ward_en":"Komae Shi","area_ja":"多摩","area_en":"Tama","code":132195},"arcs":[[-63,280,-168]]},{"type":"MultiPolygon","properties":{"ward_ja":"府中市","ward_en":"Fuchu Shi","area_ja":"多摩","area_en":"Tama","code":132063},"arcs":[[[281,-171,282,-272,283,-250,-254]],[[284]]]},{"type":"Polygon","properties":{"ward_ja":"小金井市","ward_en":"Koganei Shi","area_ja":"多摩","area_en":"Tama","code":132101},"arcs":[[285,-200,-172,-282,-253,-232,-226],[-285]]},{"type":"Polygon","properties":{"ward_ja":"町田市","ward_en":"Machida Shi","area_ja":"多摩","area_en":"Tama","code":132098},"arcs":[[-188,-270,286]]},{"type":"Polygon","properties":{"ward_ja":"日野市","ward_en":"Hino Shi","area_ja":"多摩","area_en":"Tama","code":132128},"arcs":[[-177,-251,-284,-271,-186,-242]]},{"type":"MultiPolygon","properties":{"ward_ja":"大島町","ward_en":"Oshima Machi","area_ja":"島嶼部","area_en":"Toushobu","code":133612},"arcs":[[[287]]]},{"type":"Polygon","properties":{"ward_ja":"青梅市","ward_en":"Ome Shi","area_ja":"多摩","area_en":"Tama","code":132055},"arcs":[[-278,-275,288,-241,289,-229,290]]},{"type":"Polygon","properties":{"ward_ja":"武蔵野市","ward_en":"Musashino Shi","area_ja":"多摩","area_en":"Tama","code":132039},"arcs":[[-55,-201,-286,-225,-70]]},{"type":"Polygon","properties":{"ward_ja":"あきる野市","ward_en":"Akiruno Shi","area_ja":"多摩","area_en":"Tama","code":132284},"arcs":[[-240,-289,-274,-238,-190,-181,-230,-290]]},{"type":"MultiPolygon","properties":{"ward_ja":"稲城市","ward_en":"Inagi Shi","area_ja":"多摩","area_en":"Tama","code":132250},"arcs":[[[-170,291,-268,-283]]]}]}},"arcs":[[[2108,9933],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-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],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,2],[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,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[2093,9899],[-1,-1],[-1,0],[0,-1],[-1,-1]],[[2090,9896],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-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],[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],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[2058,9906],[-1,0],[0,1],[-1,0],[-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,1],[0,1],[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,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[2047,9923],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[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],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-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],[1,0],[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,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],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[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,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1]],[[2060,9892],[0,-1],[1,0]],[[2061,9891],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1]],[[2065,9874],[0,-1],[-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],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[2052,9873],[-1,0],[0,1],[-1,2],[-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],[0,1],[-1,0],[0,1],[1,0]],[[2039,9879],[-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,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,-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],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,-1],[1,0],[0,1],[1,0]],[[2055,9893],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1]],[[2065,9874],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0]],[[2072,9869],[0,-1],[0,-1],[-1,0],[0,-1],[-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],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2058,9851],[-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,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1]],[[2044,9859],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,1],[-1,0],[1,0],[0,1],[1,0]],[[2087,9889],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1]],[[2076,9867],[-1,1],[-1,0],[-1,0],[-1,1]],[[2061,9891],[1,0],[0,-1],[1,-1],[1,-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],[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],[2,-1],[1,0],[1,0]],[[2037,9833],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[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],[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],[0,1],[0,1],[1,0]],[[2059,9824],[0,-5],[1,-1],[0,-2],[-1,0],[1,0],[1,0],[0,-3],[1,-1],[-1,0],[1,0],[-1,0],[2,-2],[0,-1],[1,-1],[1,-2],[1,-1],[1,-2]],[[2067,9803],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,-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],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2023,9811],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[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,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0]],[[2036,9833],[1,0]],[[2066,9821],[0,-1],[1,0],[0,-1]],[[2067,9819],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,2],[0,3]],[[2064,9823],[1,0],[0,-1],[1,-1]],[[2107,9843],[0,1],[0,2],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[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,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1]],[[2102,9873],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,1]],[[2105,9883],[1,0],[1,-1],[1,-1],[1,-2],[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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[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],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[2132,9904],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,-2],[-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,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-3,0]],[[2110,9829],[0,2],[0,1],[1,0],[1,0],[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],[0,-1],[0,-1]],[[2114,9828],[1,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,-1]],[[2044,9859],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2035,9854],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,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],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1]],[[2017,9866],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[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],[-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,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1]],[[2013,9890],[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],[0,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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,0],[1,0],[1,0]],[[2035,9854],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[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,-1],[1,0],[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]],[[2036,9833],[-1,0],[0,1],[0,-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],[0,1],[-1,0],[-1,1],[-1,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],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2012,9847],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1]],[[2005,9853],[0,1],[0,1],[1,0]],[[2006,9855],[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,1],[1,1],[1,1],[1,0],[0,1]],[[2058,9906],[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],[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],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[2055,9893],[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],[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],[0,1],[-1,0],[0,1],[0,1]],[[2037,9900],[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],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,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],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1]],[[2024,9935],[1,-1],[1,0],[1,-1],[1,-1],[1,-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],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2013,9890],[1,0],[0,1]],[[2014,9891],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,1]],[[2015,9896],[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],[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],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2076,9867],[0,-1],[0,-1],[0,-1],[1,0]],[[2077,9864],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-3,-3],[-2,-1],[-1,0]],[[2067,9835],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-2,0]],[[2062,9839],[1,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1]],[[2005,9853],[-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],[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],[-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,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[1967,9859],[0,1],[-1,0],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[1963,9867],[1,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[1963,9878],[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,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[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],[1,0]],[[1984,9890],[0,-1],[1,-1],[0,-1],[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],[0,-1],[1,0],[0,-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],[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],[1,0],[1,0],[0,-1],[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],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,-1]],[[2015,9896],[-1,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],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[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,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1]],[[1984,9922],[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,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,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]],[[2012,9847],[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],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2015,9807],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,1],[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,-1]],[[2001,9800],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[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],[-1,0],[0,1],[-1,0],[-1,1],[-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]],[[1965,9818],[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],[0,1],[-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],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[1963,9836],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1]],[[1964,9851],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,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],[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]],[[2093,9899],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2]],[[2102,9873],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-3,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],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,-1]],[[2087,9889],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1]],[[1984,9890],[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],[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],[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],[1,0],[1,0],[0,-1],[1,0]],[[1963,9878],[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]],[[1951,9885],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[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,0],[0,1],[0,1],[-1,0]],[[1949,9911],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,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],[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],[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],[0,-1],[1,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,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],[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],[0,1],[0,1],[0,1]],[[2107,9843],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-3],[-3,0],[-6,-1],[-1,0],[0,1],[1,0],[1,0],[5,1],[0,2],[0,1],[0,3],[-5,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-6,0],[0,-1],[-1,0],[1,-2],[-3,0],[0,-3],[-1,-1],[1,-2],[0,-1],[-2,-3],[-1,1],[-2,4],[-1,0],[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,1],[0,1],[0,1],[-1,1],[-2,2]],[[2093,9831],[2,2],[0,1],[1,0],[0,-2],[2,0],[2,0],[0,-1],[-2,0],[-2,-1],[0,-2],[-1,0],[-1,0],[-1,3]],[[2096,9826],[4,0],[2,1],[1,-1],[1,0],[0,1],[0,-1],[0,-6],[-1,-5],[-1,0],[0,-1],[-3,4],[1,1],[0,1],[-2,-1],[-1,0],[0,1],[0,1],[0,3],[-1,2]],[[2072,9825],[1,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[1,-2],[1,-2],[2,-3],[2,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[-2,2],[-3,5],[-1,2],[-1,1],[1,1],[-1,0]],[[2066,9821],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0]],[[2074,9822],[0,1],[1,1],[1,0],[2,-3],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[-2,3],[-3,4]],[[2023,9811],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[2108,9933],[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],[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,-1],[-1,-1],[0,-1],[0,-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],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[1,-1]],[[2062,9839],[-1,1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-2],[-1,-1],[1,0],[1,0],[2,0],[0,-4]],[[2064,9823],[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,-1],[0,-1],[-1,1],[1,0],[1,1],[1,0],[1,0],[1,-2],[0,-1],[1,0],[0,-1]],[[2063,9828],[1,0],[-1,-1],[0,1]],[[2067,9803],[1,-2],[1,-1],[-2,-2],[1,0],[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,0],[1,0],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[-1,-1],[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,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,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,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[0,-1],[-1,1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[-1,0],[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],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[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],[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],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-2,-3],[0,-2],[1,0],[7,8],[2,1],[1,-2],[-13,-13],[-1,1],[1,1],[-1,1],[-1,-2],[-2,1],[-1,1],[-1,0],[-2,2],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-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],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[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,-1],[-1,0],[-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],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-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,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0]],[[2051,9788],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1]],[[2058,9788],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[2354,6502],[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],[0,1],[0,-1],[0,1],[1,-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],[0,-1],[0,-1],[0,-1],[-1,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],[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],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1]],[[3372,4719],[0,1],[1,0],[0,-1],[-1,0]],[[3364,4717],[1,0],[0,-1],[-1,0],[0,1]],[[3363,4714],[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]],[[3368,4714],[1,0],[0,-1],[-1,0],[0,1]],[[3379,4713],[1,0],[0,-1],[-1,0],[0,1]],[[3369,4713],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[-1,0],[0,1]],[[3369,4711],[0,1],[1,0],[0,-1],[-1,0]],[[3380,4693],[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],[0,-1],[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],[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],[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],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0]],[[3379,4688],[0,1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1]],[[3393,4684],[0,1],[1,-1],[-1,0]],[[3398,4672],[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,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[3398,4676],[1,0],[0,-1],[-1,0],[0,1]],[[3403,4661],[1,0],[0,-1],[-1,0],[0,1]],[[3405,4658],[-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],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[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],[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],[0,1],[0,1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[3404,4660],[1,0],[0,-1],[-1,0],[0,1]],[[3405,4653],[1,0],[0,-1],[-1,0],[0,1]],[[3409,4652],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,-1],[0,1]],[[3427,4569],[-1,0],[-1,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],[1,0],[0,-1],[0,-1],[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],[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],[0,1],[-1,0]],[[3431,4568],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,1]],[[3424,4564],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[3425,4562],[0,1],[1,0],[0,-1],[-1,0]],[[2680,4408],[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],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1]],[[3418,4374],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1]],[[3420,4374],[0,1],[1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[3413,4365],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[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],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[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,-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],[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],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,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],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,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],[-1,0],[0,1]],[[3418,4364],[1,0],[0,-1],[-1,0],[0,1]],[[3422,4354],[0,1],[1,0],[0,-1],[-1,0]],[[3412,4347],[0,1],[1,0],[0,-1],[-1,0]],[[3417,4342],[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],[0,-1],[1,0],[1,0],[0,-1],[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],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[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],[1,0],[0,-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],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-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],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[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],[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],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[1,0]],[[3408,4332],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0]],[[3414,4331],[1,0],[0,-1],[-1,0],[0,1]],[[3401,4323],[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],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[1,0]],[[3436,4326],[1,0],[0,-1],[-1,0],[0,1]],[[3412,4325],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[3417,4318],[1,0],[0,-1],[-1,0],[0,1]],[[3399,4317],[0,1],[1,0],[0,-1],[-1,0]],[[3412,4316],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[-1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[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],[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],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,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],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[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],[-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],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-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],[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],[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,-1],[1,0],[-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],[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],[-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],[0,1],[0,1],[-1,0],[1,0],[-1,0],[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],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-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],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[1,0],[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],[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],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[1,1],[0,1],[0,-1],[-1,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],[-1,-1],[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],[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],[0,-1],[0,1],[0,1],[1,0],[0,1]],[[3446,4308],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[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,0],[0,1],[-1,0]],[[3444,4309],[0,1],[1,0],[0,-1],[-1,0]],[[3411,4305],[1,0],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0]],[[3441,4303],[1,0],[0,-1],[-1,0],[0,1]],[[3443,4279],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1]],[[3405,4278],[1,0],[0,-1],[-1,0],[0,1]],[[3407,4269],[0,1],[0,1],[0,1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[3408,4277],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0]],[[3413,4273],[1,0],[0,-1],[-1,0],[0,1]],[[3375,4070],[1,0],[0,-1],[-1,0],[0,1]],[[3377,4065],[0,1],[1,0],[1,0],[-1,0],[0,-1],[-1,0]],[[3378,4062],[0,1],[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],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,-1],[0,1],[1,0],[1,0],[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],[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],[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],[-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],[-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],[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],[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],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[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],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,-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],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[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],[0,1],[0,1],[1,0],[-1,1],[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],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[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,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,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-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],[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],[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],[0,1],[-1,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],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1]],[[3386,4056],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1]],[[3382,4046],[0,1],[1,0],[0,-1],[-1,0]],[[3390,4025],[1,0],[0,-1],[-1,0],[0,1]],[[3412,4005],[1,0],[0,-1],[-1,0],[0,1]],[[3407,4001],[1,0],[0,-1],[-1,0],[0,1]],[[3380,3992],[-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],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1]],[[3408,3992],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,1]],[[3406,3991],[1,0],[0,-1],[-1,1],[0,-1],[0,1]],[[3407,3990],[0,1],[1,0],[0,-1],[0,-1],[0,1],[-1,0]],[[3378,3990],[1,0],[0,-1],[-1,0],[0,1]],[[3378,3989],[1,0],[0,-1],[-1,0],[0,1]],[[3403,3986],[0,1],[1,0],[0,-1],[-1,0],[1,0],[-1,0]],[[3401,3985],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[3402,3986],[1,0],[0,-1],[-1,0],[0,1]],[[3392,3979],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,-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],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0]],[[3391,3979],[1,0],[0,-1],[-1,0],[0,1]],[[3439,3976],[0,1],[1,0],[-1,-1]],[[3436,3971],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[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],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0]],[[3428,3968],[0,1],[1,0],[0,-1],[-1,0]],[[3396,3959],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[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],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[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],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1]],[[3426,3967],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-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],[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],[1,0],[0,1]],[[3425,3959],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,1]],[[3393,3956],[0,1],[1,0],[0,-1],[-1,0]],[[3394,3952],[1,0],[0,-1],[-1,0],[0,1]],[[2905,3228],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-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]],[[2923,2826],[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],[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],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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,0],[-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,-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],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,-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],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2910,2827],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0]],[[9990,2494],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0]],[[3005,2466],[1,0],[0,1],[1,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],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-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],[0,1],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3014,2459],[1,1],[0,-1],[-1,0]],[[1929,9861],[1,-1],[1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[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,-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],[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],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,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],[1,1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[0,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],[1,0],[1,0],[0,-1],[1,0]],[[1963,9836],[-1,0],[-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],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1949,9827],[-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,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[1929,9834],[-1,0],[-1,1],[-1,1]],[[1926,9836],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[1927,9863],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1]],[[1867,9892],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,-1]],[[1873,9890],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0]],[[1884,9886],[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],[-2,0],[0,-1],[-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,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0]],[[1876,9873],[-1,0],[0,1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[-1,-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,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[1868,9860],[-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,1],[-1,0],[-1,0]],[[1850,9865],[1,0],[0,1],[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],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,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],[-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],[-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],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[1834,9887],[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],[0,1]],[[1836,9896],[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],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,-1],[1,0],[0,1],[-1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[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],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[1711,9916],[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],[-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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0]],[[1731,9864],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1]],[[1726,9850],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,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,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],[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],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-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],[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],[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],[0,1],[-1,0],[0,1]],[[1642,9896],[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],[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,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,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],[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],[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],[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],[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],[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]],[[1821,9879],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[1845,9865],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[-1,-1],[-1,-1],[-1,-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],[-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,-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],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[1867,9837],[0,-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],[0,-1],[1,0],[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],[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],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1]],[[1855,9811],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[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],[-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],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-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],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[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],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-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],[-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],[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],[0,-1],[-1,0],[-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],[1,0],[0,-1],[-1,-1]],[[1785,9812],[-1,0],[0,-1],[0,-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],[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],[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],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[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],[0,1],[-1,0],[-1,0],[-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],[0,1],[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],[0,1],[-1,0],[0,1]],[[1731,9864],[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],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[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],[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,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],[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],[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],[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],[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],[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],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1]],[[1819,9879],[1,0],[1,0]],[[2076,9803],[1,1],[1,2],[1,1],[1,2],[1,1],[0,1],[5,2],[2,2],[3,-2],[2,-1],[-4,-2],[-4,-3],[-1,-1],[-1,0],[-1,-1],[-3,-2],[-2,-1],[-1,1]],[[2095,9808],[2,-4],[3,-5],[-3,-2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-2,2],[-3,-2],[-1,0],[-1,0],[0,1],[-5,3],[-1,0],[1,0],[-1,1],[3,1],[1,1],[2,1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[3,2],[2,1],[3,2],[0,-1],[1,0],[0,-1],[1,-1]],[[2098,9801],[-7,-4],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[3,2],[-2,2]],[[2082,9805],[1,1],[1,0],[-1,-1],[0,1],[-1,-1]],[[2147,7407],[1,0],[0,-1],[-1,0],[0,1]],[[1924,9913],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[1917,9910],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1]],[[1913,9922],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,1],[1,1],[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,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[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,-1],[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],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-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,0],[0,-1]],[[1929,9861],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[1933,9870],[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],[0,1],[0,1],[0,1],[0,1],[-1,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,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[1917,9910],[-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],[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]],[[1906,9899],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-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],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[1887,9895],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[1881,9914],[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],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[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],[0,-1],[1,0],[1,1],[0,-1],[-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],[1,0]],[[2052,8227],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[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],[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,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,1],[-1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,0],[1,1],[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],[2,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],[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],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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],[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],[-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],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-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],[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],[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],[0,-1],[0,1],[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],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[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],[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],[-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],[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],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[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],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1]],[[2013,8212],[-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],[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],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[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],[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]],[[1924,9913],[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],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[1939,9906],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-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],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[1926,9892],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[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,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0]],[[1798,9076],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,0],[-1,0],[0,-1],[1,0],[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],[-1,0],[-1,0],[-1,0]],[[1792,9080],[0,1],[1,0],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[1791,9042],[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,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[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],[0,-1],[0,-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],[0,-1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[1,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],[0,1],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,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],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,1],[1,0]],[[1798,9044],[0,1],[1,0],[0,-1],[-1,0]],[[1795,9030],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1]],[[1762,9009],[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],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1760,9014],[1,0],[0,-1],[-1,0],[0,1]],[[1752,8990],[0,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0]],[[1751,8988],[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],[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],[-1,0],[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],[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],[-1,0],[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,0],[-1,0],[0,-1],[0,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],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[1,0],[1,0],[-1,0],[1,0],[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],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1]],[[1751,8989],[0,1],[1,0],[0,-1],[-1,0]],[[1789,8983],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1]],[[1761,8982],[1,0],[0,-1],[-1,0],[0,1]],[[1760,8980],[0,1],[1,0],[0,-1],[-1,0]],[[1753,8977],[1,0],[0,-1],[-1,0],[0,1]],[[1951,9885],[-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,-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],[0,1],[-1,0],[0,1],[-1,0],[0,-1]],[[1929,9882],[-1,0],[-1,0],[0,1]],[[1927,9883],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0]],[[1939,9906],[1,0],[1,0],[0,-1],[1,1],[1,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1]],[[1727,9968],[-1,0],[0,-1],[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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-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,-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],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1712,9918],[0,-1],[-1,0],[0,-1]],[[1642,9896],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,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],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,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],[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],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-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],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[0,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],[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,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[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],[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],[0,-1],[1,0],[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],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,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],[1,0],[1,0],[0,-1],[1,-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],[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],[0,-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],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[1927,9883],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-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],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[1906,9876],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,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,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[1873,9890],[1,0],[1,0],[1,1],[1,0],[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],[1,0],[0,1]],[[1827,9903],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[-1,1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[1,0],[0,-1]],[[1833,9900],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1]],[[1834,9887],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[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,-1],[-1,0],[0,-1],[-1,0]],[[1819,9879],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[1811,9901],[0,1],[1,0],[1,1],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[1779,9910],[-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],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-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],[-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],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,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],[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],[-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],[0,1],[-1,0],[0,1],[0,1],[0,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],[-1,1],[-1,0]],[[1726,9921],[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],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-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],[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,1],[0,-1],[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],[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],[0,-1]],[[1850,9865],[-1,0],[-1,0],[-2,0],[-1,0]],[[1957,8687],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[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],[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],[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],[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,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[1920,8851],[0,-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],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,1],[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],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[0,1],[0,-1],[0,1],[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],[0,1],[-1,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,1],[0,-1],[1,0],[-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],[-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],[-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],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[0,1],[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],[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],[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],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,-1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0]],[[1903,8807],[1,0],[0,-1],[-1,0],[0,1]],[[1849,8804],[1,0],[0,-1],[-1,0],[0,1]],[[1848,8803],[0,1],[1,0],[0,-1],[0,1],[0,-1],[-1,0]],[[1847,8802],[0,1],[1,0],[0,-1],[-1,0]],[[1850,8802],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1]],[[1892,9866],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[0,-1],[-1,0],[0,1],[0,-1],[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],[-1,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0]],[[1875,9852],[-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,0]],[[1876,9873],[0,-1],[1,0],[1,-1],[0,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0]],[[1906,9876],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[1909,9868],[-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],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[1,0],[1,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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1]],[[1787,9115],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,2],[0,-1],[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],[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],[0,-1],[-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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1710,8924],[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,-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],[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],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[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,-1],[-1,0],[-1,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],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,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],[-1,0],[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],[-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],[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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[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],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[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],[0,1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[1711,8928],[0,1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0]],[[1737,8916],[0,1],[1,0],[0,-1],[-1,0],[1,0],[-1,0]],[[1740,8909],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[-1,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1]],[[1741,8907],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1]],[[1717,8895],[0,1],[1,0],[0,-1],[-1,0]],[[1677,8893],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[1679,8893],[1,0],[0,-1],[-1,0],[0,1]],[[1676,8891],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0]],[[2057,7785],[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],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[-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],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[1867,9892],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[1854,9912],[1,0],[1,0],[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],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[1900,9838],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1894,9822],[-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],[0,-1],[-1,0]],[[1886,9814],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,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],[-1,0],[0,1],[0,-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],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[1867,9837],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1]],[[1882,9844],[1,-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],[1,0]],[[1815,9921],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[-1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[1811,9901],[-1,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],[-1,0]],[[1801,9906],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,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,-1],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,1],[1,0]],[[1820,9931],[1,-1],[1,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],[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],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[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],[1,0],[1,0],[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]],[[1847,9917],[-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],[-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],[0,-1],[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],[0,-1],[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],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1815,9921],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,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],[0,1],[1,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,0]],[[1834,9900],[1,0],[-1,0]],[[1847,9917],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[1,0]],[[1965,9818],[-1,0],[0,1],[-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,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1]],[[1909,9868],[-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,-1],[0,1],[1,0],[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,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[1926,9836],[0,1],[-1,0],[-1,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],[-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],[0,-1],[-1,0],[-1,0],[0,-1]],[[1882,9844],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0]],[[1913,9863],[0,0]],[[1929,9882],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1886,9814],[0,-1],[1,0],[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],[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,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],[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,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],[-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],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[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,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-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],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[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],[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],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-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,-1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[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],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,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],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-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],[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],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,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],[0,1],[-1,-1],[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]],[[1836,9288],[1,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],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[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],[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],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[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,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],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[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],[-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],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,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],[0,-1],[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],[-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],[0,-1],[0,1],[0,-1],[0,1],[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],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-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],[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],[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],[-1,0],[0,1],[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],[0,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],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[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],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[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],[0,1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0]],[[1801,9906],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0]],[[1726,9921],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[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],[-1,1]],[[1727,9968],[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],[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],[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],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[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],[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],[0,-1],[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],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1]],[[1929,9834],[-1,-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],[-1,0],[0,-1],[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],[-1,0],[-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],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,-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],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0]]],"transform":{"scale":[0.0017919207816781758,0.0015474852485248525],"translate":[136.069482,20.425119]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment