snapa 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 93df07bceee649365f26d777794b01099efa2552
4
+ data.tar.gz: c4a1e4068d2a70121957467675a97a2b891164e0
5
+ SHA512:
6
+ metadata.gz: c95861e11cffd19b9a4a95700ddc6ada12ac33b736508882b6f10329935b89767fbd072dfe0abca7d6a30e8a8c4033fff4ea62a69288d8fb4684d1fa924b4ea2
7
+ data.tar.gz: 2babbcc4f9f23b62f75b5a485e4c9788ca23f0917aec81155cf2498cf05956f48f88f6ba590e863dd6f59758574291be05d0d53466d8eb8634d87a84f608a554
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in snapa.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Ben Tillman
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,40 @@
1
+ # Snapa
2
+
3
+ Use this gem to render your page with phantomjs and take a png snapshot
4
+ of the rendered body / css selector, usefull for generating an IE friendly
5
+ version of an svg or html5 canvas. A map example is provided by passing :map
6
+ to the initializer.
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ gem 'snapa'
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install snapa
21
+
22
+ ## Usage
23
+
24
+ To run as a stand alone rack app
25
+
26
+ config.ru
27
+ run Snapa::File.new('public/map.html')
28
+
29
+ To mount under Rails
30
+
31
+ config/routes.rb
32
+ mount Snapa::File.new('public/map.html') => '/map.png'
33
+
34
+ ## Contributing
35
+
36
+ 1. Fork it
37
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
38
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
39
+ 4. Push to the branch (`git push origin my-new-feature`)
40
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,2 @@
1
+ require ::File.expand_path('../lib/snapa', __FILE__)
2
+ run Snapa::File.new(:map)
@@ -0,0 +1,21 @@
1
+ var page = require('webpage').create(),
2
+ system = require('system'),
3
+ address, output, selector;
4
+
5
+ if (system.args.length < 2) {
6
+ console.log('Usage: snapa.js URL output [selector]');
7
+ console.log(' opens a page and renders the contents of selector to output file');
8
+ phantom.exit(1);
9
+ } else {
10
+ address = system.args[1];
11
+ output = system.args[2];
12
+ selector = system.args[3] || 'body';
13
+
14
+ page.open(address, function () {
15
+ page.clipRect = page.evaluate(function(selector) {
16
+ return document.querySelector(selector).getBoundingClientRect();
17
+ }, selector);
18
+ page.render(output);
19
+ phantom.exit();
20
+ });
21
+ }
@@ -0,0 +1,40 @@
1
+ require 'snapa/version'
2
+ require 'rack/file'
3
+
4
+ module Snapa
5
+ class File < Rack::File
6
+ def query_string(env)
7
+ env["QUERY_STRING"].to_s
8
+ end
9
+
10
+ def cmd
11
+ 'phantomjs'
12
+ end
13
+
14
+ def script
15
+ ::File.expand_path('../snapa.js', __FILE__)
16
+ end
17
+
18
+ def map
19
+ ::File.expand_path('../../public/map.html', __FILE__)
20
+ end
21
+
22
+ def url(env)
23
+ [@root === :map ? map : @root, query_string(env)].join('?')
24
+ end
25
+
26
+ def build(env)
27
+ system [cmd, script, url(env), @path].join(' ')
28
+ end
29
+
30
+ def path(env)
31
+ @path ||= ::File.join('tmp', query_string(env) + '.png')
32
+ end
33
+
34
+ def _call(env)
35
+ build(env) unless F.file?(path(env))
36
+
37
+ serving(env)
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,3 @@
1
+ module Snapa
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1 @@
1
+ {"type":"Topology","transform":{"scale":[0.036003600360036005,0.016880867774277438],"translate":[-180,-85.19218750000003]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0]],"id":"AW","properties":{"name":"Aruba"}},{"type":"Polygon","arcs":[[1,2,3,4,5,6]],"id":"AF","properties":{"name":"Afghanistan"}},{"type":"MultiPolygon","arcs":[[[7,8,9,10]],[[11,12,13]]],"id":"AO","properties":{"name":"Angola"}},{"type":"Polygon","arcs":[[14]],"id":"AI","properties":{"name":"Anguilla"}},{"type":"Polygon","arcs":[[15,16,17,18,19]],"id":"AL","properties":{"name":"Albania"}},{"type":"MultiPolygon","arcs":[[[20]],[[21]],[[22]]],"id":"AX","properties":{"name":"Aland"}},{"type":"Polygon","arcs":[[23,24]],"id":"AD","properties":{"name":"Andorra"}},{"type":"MultiPolygon","arcs":[[[25]],[[26]],[[27]],[[28]],[[29,30,31,32,33],[34]]],"id":"AE","properties":{"name":"United Arab Emirates"}},{"type":"MultiPolygon","arcs":[[[35]],[[36,37]],[[38]],[[39,40,41,42,43,44]]],"id":"AR","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[45]],[[46,47,48,49,50],[51]]],"id":"AM","properties":{"name":"Armenia"}},{"type":"Polygon","arcs":[[52]],"id":"AS","properties":{"name":"American Samoa"}},{"type":"MultiPolygon","arcs":[[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]]],"id":"AQ","properties":{"name":"Antarctica"}},{"type":"MultiPolygon","arcs":[[[161]],[[162]],[[163]]],"id":"TF","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"MultiPolygon","arcs":[[[164]],[[165]]],"id":"AG","properties":{"name":"Antigua and Barb."}},{"type":"MultiPolygon","arcs":[[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]]],"id":"AU","properties":{"name":"Australia"}},{"type":"Polygon","arcs":[[208,209,210,211,212,213,214,215,216]],"id":"AT","properties":{"name":"Austria"}},{"type":"MultiPolygon","arcs":[[[217,218,-48]],[[-52]],[[219,220,-51,221,222],[-46]]],"id":"AZ","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[223,224,225]],"id":"BI","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[226,227,228,229,230,231,232]],"id":"BE","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[233,234,235,236,237]],"id":"BJ","properties":{"name":"Benin"}},{"type":"Polygon","arcs":[[238,-237,239,240,241,242]],"id":"BF","properties":{"name":"Burkina Faso"}},{"type":"MultiPolygon","arcs":[[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249,250,251,252]]],"id":"BD","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[253,254,255,256,257,258]],"id":"BG","properties":{"name":"Bulgaria"}},{"type":"Polygon","arcs":[[259]],"id":"BH","properties":{"name":"Bahrain"}},{"type":"MultiPolygon","arcs":[[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]]],"id":"BS","properties":{"name":"Bahamas"}},{"type":"Polygon","arcs":[[275,276,277,278,279]],"id":"BA","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[280]],"id":"BL","properties":{"name":"St-Barthélemy"}},{"type":"Polygon","arcs":[[281,282,283,284,285]],"id":"BY","properties":{"name":"Belarus"}},{"type":"MultiPolygon","arcs":[[[286]],[[287]],[[288,289,290]]],"id":"BZ","properties":{"name":"Belize"}},{"type":"Polygon","arcs":[[291]],"id":"BM","properties":{"name":"Bermuda"}},{"type":"Polygon","arcs":[[292,-45,293,294,295]],"id":"BO","properties":{"name":"Bolivia"}},{"type":"MultiPolygon","arcs":[[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312,313,314,315,-41,316,-296,317,318,319,320]]],"id":"BR","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[321]],"id":"BB","properties":{"name":"Barbados"}},{"type":"MultiPolygon","arcs":[[[322]],[[323,324]]],"id":"BN","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[325,326]],"id":"BT","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[327,328,329]],"id":"BW","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[330,331,332,333,334,335]],"id":"CF","properties":{"name":"Central African Rep."}},{"type":"MultiPolygon","arcs":[[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351,352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380,381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438,439,440,441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]]],"id":"CA","properties":{"name":"Canada"}},{"type":"Polygon","arcs":[[-215,482,-213,483,484,485]],"id":"CH","properties":{"name":"Switzerland"}},{"type":"MultiPolygon","arcs":[[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[-37,495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[-44,516,517,-294]]],"id":"CL","properties":{"name":"Chile"}},{"type":"MultiPolygon","arcs":[[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530,531,532,533,534,535,536,537,538,539,-327,540,541,542,543,544,-2,545,546,547,548,549,550]]],"id":"CN","properties":{"name":"China"}},{"type":"MultiPolygon","arcs":[[[551,552]],[[-242,553,554,555,556,557]]],"id":"CI","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-335,558,559,560,561,562,563]],"id":"CM","properties":{"name":"Cameroon"}},{"type":"Polygon","arcs":[[564,565,566,-225,567,568,-11,569,-14,570,-333]],"id":"CD","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[-571,-13,571,572,-559,-334]],"id":"CG","properties":{"name":"Congo"}},{"type":"Polygon","arcs":[[573]],"id":"CK","properties":{"name":"Cook Is."}},{"type":"MultiPolygon","arcs":[[[574]],[[575,-319,576,577,578,579,580]]],"id":"CO","properties":{"name":"Colombia"}},{"type":"MultiPolygon","arcs":[[[581]],[[582]],[[583]]],"id":"KM","properties":{"name":"Comoros"}},{"type":"MultiPolygon","arcs":[[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]]],"id":"CV","properties":{"name":"Cape Verde"}},{"type":"Polygon","arcs":[[592,593,594,595]],"id":"CR","properties":{"name":"Costa Rica"}},{"type":"MultiPolygon","arcs":[[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]]],"id":"CU","properties":{"name":"Cuba"}},{"type":"Polygon","arcs":[[603]],"id":"CW","properties":{"name":"Curaçao"}},{"type":"MultiPolygon","arcs":[[[604]],[[605]],[[606]]],"id":"KY","properties":{"name":"Cayman Is."}},{"type":"Polygon","arcs":[[607,608]],"id":"-99","properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[609,-609]],"id":"CY","properties":{"name":"Cyprus"}},{"type":"Polygon","arcs":[[610,611,-217,612]],"id":"CZ","properties":{"name":"Czech Rep."}},{"type":"MultiPolygon","arcs":[[[613,614]],[[615]],[[616]],[[617]],[[618,619,-613,-216,-486,620,621,-228,622,623,624]],[[625]]],"id":"DE","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[626,627,628,629]],"id":"DJ","properties":{"name":"Djibouti"}},{"type":"Polygon","arcs":[[630]],"id":"DM","properties":{"name":"Dominica"}},{"type":"MultiPolygon","arcs":[[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[-625,642]]],"id":"DK","properties":{"name":"Denmark"}},{"type":"Polygon","arcs":[[643,644]],"id":"DO","properties":{"name":"Dominican Rep."}},{"type":"Polygon","arcs":[[645,646,647,648,649,650,651,652]],"id":"DZ","properties":{"name":"Algeria"}},{"type":"MultiPolygon","arcs":[[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661,662,-578]]],"id":"EC","properties":{"name":"Ecuador"}},{"type":"Polygon","arcs":[[663,664,665,666,667,668]],"id":"EG","properties":{"name":"Egypt"}},{"type":"MultiPolygon","arcs":[[[669]],[[670]],[[671,-628,672,673]]],"id":"ER","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685,-24,686,687,688,689]]],"id":"ES","properties":{"name":"Spain"}},{"type":"MultiPolygon","arcs":[[[690]],[[691]],[[692]],[[693,694,695]]],"id":"EE","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-627,696,697,698,699,700,-673]],"id":"ET","properties":{"name":"Ethiopia"}},{"type":"MultiPolygon","arcs":[[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708,709,710,711]]],"id":"FI","properties":{"name":"Finland"}},{"type":"MultiPolygon","arcs":[[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]]],"id":"FJ","properties":{"name":"Fiji"}},{"type":"MultiPolygon","arcs":[[[732]],[[733]],[[734]],[[735]],[[736]],[[737]]],"id":"FK","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[738]],[[739]],[[-314,740,741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748,-621,-485,749,750,751,752,-687,-25,-686,753,-230]]],"id":"FR","properties":{"name":"France"}},{"type":"MultiPolygon","arcs":[[[754]],[[755]],[[756]],[[757]],[[758]]],"id":"FO","properties":{"name":"Faeroe Is."}},{"type":"MultiPolygon","arcs":[[[759]],[[760]],[[761]],[[762]],[[763]]],"id":"FM","properties":{"name":"Micronesia"}},{"type":"Polygon","arcs":[[-573,764,765,-560]],"id":"GA","properties":{"name":"Gabon"}},{"type":"MultiPolygon","arcs":[[[766]],[[767]],[[768,769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]]],"id":"GB","properties":{"name":"United Kingdom"}},{"type":"Polygon","arcs":[[-222,-50,790,791,792]],"id":"GE","properties":{"name":"Georgia"}},{"type":"Polygon","arcs":[[793]],"id":"GG","properties":{"name":"Guernsey"}},{"type":"Polygon","arcs":[[794,795,-553,796,-554,-241]],"id":"GH","properties":{"name":"Ghana"}},{"type":"Polygon","arcs":[[797,-557,798,799,800,801,802]],"id":"GN","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[803,804]],"id":"GM","properties":{"name":"Gambia"}},{"type":"MultiPolygon","arcs":[[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811,812,-802]]],"id":"GW","properties":{"name":"Guinea-Bissau"}},{"type":"MultiPolygon","arcs":[[[813,-561,-766]],[[814]]],"id":"GQ","properties":{"name":"Eq. Guinea"}},{"type":"MultiPolygon","arcs":[[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854,-18,855,-256,856]]],"id":"GR","properties":{"name":"Greece"}},{"type":"Polygon","arcs":[[857]],"id":"GD","properties":{"name":"Grenada"}},{"type":"MultiPolygon","arcs":[[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]]],"id":"GL","properties":{"name":"Greenland"}},{"type":"Polygon","arcs":[[-289,875,876,877,878,879]],"id":"GT","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[880]],"id":"GU","properties":{"name":"Guam"}},{"type":"Polygon","arcs":[[-321,881,882,883]],"id":"GY","properties":{"name":"Guyana"}},{"type":"MultiPolygon","arcs":[[[884]],[[885]],[[-533,886]]],"id":"HK","properties":{"name":"Hong Kong"}},{"type":"Polygon","arcs":[[887]],"id":"HM","properties":{"name":"Heard I. and McDonald Is."}},{"type":"MultiPolygon","arcs":[[[888,889,890,-877,891]],[[892]],[[893]]],"id":"HN","properties":{"name":"Honduras"}},{"type":"MultiPolygon","arcs":[[[894]],[[895]],[[-278,896,897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907,-280,908,909,910]]],"id":"HR","properties":{"name":"Croatia"}},{"type":"MultiPolygon","arcs":[[[911]],[[-645,912]],[[913]]],"id":"HT","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[914,915,916,-911,917,-210,918]],"id":"HU","properties":{"name":"Hungary"}},{"type":"MultiPolygon","arcs":[[[919]],[[920]],[[921]],[[922]],[[923,924,925,926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010,1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050,1051]],[[1052]],[[1053,1054]],[[1055]],[[1056]],[[1057]]],"id":"ID","properties":{"name":"Indonesia"}},{"type":"Polygon","arcs":[[1058]],"id":"IM","properties":{"name":"Isle of Man"}},{"type":"MultiPolygon","arcs":[[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071,1072,1073,-541,-326,-540,1074,-253,1075,1076,1077,1078]]],"id":"IN","properties":{"name":"India"}},{"type":"MultiPolygon","arcs":[[[1079]],[[1080]],[[1081]]],"id":"-99","properties":{"name":"Indian Ocean Ter."}},{"type":"Polygon","arcs":[[1082]],"id":"IO","properties":{"name":"Br. Indian Ocean Ter."}},{"type":"MultiPolygon","arcs":[[[1083]],[[1084,-769]]],"id":"IE","properties":{"name":"Ireland"}},{"type":"MultiPolygon","arcs":[[[1085]],[[-47,-221,1086,1087,1088,1089,1090,1091,1092,1093,-218]]],"id":"IR","properties":{"name":"Iran"}},{"type":"Polygon","arcs":[[-1093,1094,1095,1096,1097,1098,1099]],"id":"IQ","properties":{"name":"Iraq"}},{"type":"Polygon","arcs":[[1100]],"id":"IS","properties":{"name":"Iceland"}},{"type":"Polygon","arcs":[[1101,1102,1103,1104,-664,1105,1106,1107,1108]],"id":"IL","properties":{"name":"Israel"}},{"type":"MultiPolygon","arcs":[[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116,1117,-750,-484,-212],[1118]]],"id":"IT","properties":{"name":"Italy"}},{"type":"Polygon","arcs":[[1119]],"id":"JM","properties":{"name":"Jamaica"}},{"type":"Polygon","arcs":[[1120]],"id":"JE","properties":{"name":"Jersey"}},{"type":"Polygon","arcs":[[1121,1122,-1104,1123,-1102,1124,-1098]],"id":"JO","properties":{"name":"Jordan"}},{"type":"MultiPolygon","arcs":[[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]]],"id":"JP","properties":{"name":"Japan"}},{"type":"Polygon","arcs":[[-1078,1159,-544]],"id":"-99","properties":{"name":"Siachen Glacier"}},{"type":"MultiPolygon","arcs":[[[1160]],[[1161]],[[1162]],[[-548,1163,1164,1165,1166,1167]]],"id":"KZ","properties":{"name":"Kazakhstan"}},{"type":"MultiPolygon","arcs":[[[1168]],[[1169,1170,1171,1172,1173,-699]]],"id":"KE","properties":{"name":"Kenya"}},{"type":"Polygon","arcs":[[-547,1174,1175,-1164],[1176],[1177],[1178]],"id":"KG","properties":{"name":"Kyrgyzstan"}},{"type":"MultiPolygon","arcs":[[[1179]],[[1180]],[[1181,1182,1183,1184]]],"id":"KH","properties":{"name":"Cambodia"}},{"type":"MultiPolygon","arcs":[[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]]],"id":"KI","properties":{"name":"Kiribati"}},{"type":"MultiPolygon","arcs":[[[1204]],[[1205]]],"id":"KN","properties":{"name":"St. Kitts and Nevis"}},{"type":"MultiPolygon","arcs":[[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216,1217]]],"id":"KR","properties":{"name":"Korea"}},{"type":"Polygon","arcs":[[1218,-16,1219,1220]],"id":"-99","properties":{"name":"Kosovo"}},{"type":"MultiPolygon","arcs":[[[1221]],[[1222,-1096,1223]]],"id":"KW","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[1224,-1184,1225,1226,-538]],"id":"LA","properties":{"name":"Lao PDR"}},{"type":"Polygon","arcs":[[-1108,1227,1228]],"id":"LB","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[-556,1229,1230,-799]],"id":"LR","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[1231,1232,1233,-646,1234,1235,-667]],"id":"LY","properties":{"name":"Libya"}},{"type":"Polygon","arcs":[[1236]],"id":"LC","properties":{"name":"Saint Lucia"}},{"type":"Polygon","arcs":[[-483,-214]],"id":"LI","properties":{"name":"Liechtenstein"}},{"type":"MultiPolygon","arcs":[[[1237]],[[1238]],[[1239]]],"id":"LK","properties":{"name":"Sri Lanka"}},{"type":"Polygon","arcs":[[1240]],"id":"LS","properties":{"name":"Lesotho"}},{"type":"MultiPolygon","arcs":[[[1241,1242]],[[-285,1243,1244,1245,1246]]],"id":"LT","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-622,-749,-229]],"id":"LU","properties":{"name":"Luxembourg"}},{"type":"Polygon","arcs":[[1247,-286,-1247,1248,-695]],"id":"LV","properties":{"name":"Latvia"}},{"type":"Polygon","arcs":[[1249,-535]],"id":"MO","properties":{"name":"Macao"}},{"type":"Polygon","arcs":[[1250,1251]],"id":"MF","properties":{"name":"St-Martin"}},{"type":"Polygon","arcs":[[-651,1252,1253]],"id":"MA","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[1254]],"id":"MC","properties":{"name":"Monaco"}},{"type":"Polygon","arcs":[[1255,1256]],"id":"MD","properties":{"name":"Moldova"}},{"type":"MultiPolygon","arcs":[[[1257]],[[1258]],[[1259]]],"id":"MG","properties":{"name":"Madagascar"}},{"type":"MultiPolygon","arcs":[[[1260]],[[1261]]],"id":"MV","properties":{"name":"Maldives"}},{"type":"MultiPolygon","arcs":[[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277,-290,-880,1278,1279]]],"id":"MX","properties":{"name":"Mexico"}},{"type":"MultiPolygon","arcs":[[[1280]],[[1281]],[[1282]],[[1283]],[[1284]]],"id":"MH","properties":{"name":"Marshall Is."}},{"type":"Polygon","arcs":[[-257,-856,-17,-1219,1285]],"id":"MK","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[1286,-243,-558,-798,1287,1288,-648]],"id":"ML","properties":{"name":"Mali"}},{"type":"MultiPolygon","arcs":[[[1289]],[[1290]]],"id":"MT","properties":{"name":"Malta"}},{"type":"MultiPolygon","arcs":[[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[-1227,1309,1310,-250,-1075,-539]]],"id":"MM","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[1311,-1220,-20,1312,-897,-277]],"id":"ME","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-550,1313]],"id":"MN","properties":{"name":"Mongolia"}},{"type":"MultiPolygon","arcs":[[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]]],"id":"MP","properties":{"name":"N. Mariana Is."}},{"type":"Polygon","arcs":[[1320,1321,1322,1323,1324,1325,1326,1327],[1328],[1329]],"id":"MZ","properties":{"name":"Mozambique"}},{"type":"MultiPolygon","arcs":[[[1330]],[[1331,1332,1333,-649,-1289]]],"id":"MR","properties":{"name":"Mauritania"}},{"type":"Polygon","arcs":[[1334]],"id":"MS","properties":{"name":"Montserrat"}},{"type":"Polygon","arcs":[[1335]],"id":"MU","properties":{"name":"Mauritius"}},{"type":"MultiPolygon","arcs":[[[-1330]],[[-1329]],[[-1325,1336,1337]]],"id":"MW","properties":{"name":"Malawi"}},{"type":"MultiPolygon","arcs":[[[1338]],[[1339]],[[1340]],[[1341,-1052]],[[1342]],[[1343]],[[1344,1345]],[[-1055,1346,-324,1347,1348]],[[1349]]],"id":"MY","properties":{"name":"Malaysia"}},{"type":"Polygon","arcs":[[1350,-330,1351,1352,-9]],"id":"NA","properties":{"name":"Namibia"}},{"type":"MultiPolygon","arcs":[[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]]],"id":"NC","properties":{"name":"New Caledonia"}},{"type":"Polygon","arcs":[[1359,1360,-238,-239,-1287,-647,-1234]],"id":"NE","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[1361]],"id":"NF","properties":{"name":"Norfolk Island"}},{"type":"MultiPolygon","arcs":[[[1362]],[[1363,-563,1364,-234,-1361]]],"id":"NG","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[1365,-596,1366,-889]],"id":"NI","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[1367]],"id":"NU","properties":{"name":"Niue"}},{"type":"MultiPolygon","arcs":[[[1368]],[[1369]],[[-232,1370]],[[1371]],[[1372]],[[1373]],[[1374,-623,1375,-233]],[[1376]],[[1377]],[[1378]],[[1379]]],"id":"NL","properties":{"name":"Netherlands"}},{"type":"MultiPolygon","arcs":[[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400,-712,1401,1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]]],"id":"NO","properties":{"name":"Norway"}},{"type":"Polygon","arcs":[[-1074,-542]],"id":"NP","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[1414]],"id":"NR","properties":{"name":"Nauru"}},{"type":"MultiPolygon","arcs":[[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]]],"id":"NZ","properties":{"name":"New Zealand"}},{"type":"MultiPolygon","arcs":[[[1428]],[[1429,1430,1431,-31]],[[-35]],[[-34,1432]]],"id":"OM","properties":{"name":"Oman"}},{"type":"Polygon","arcs":[[-1160,-1077,1433,-1091,-3,-545]],"id":"PK","properties":{"name":"Pakistan"}},{"type":"MultiPolygon","arcs":[[[1434]],[[1435]],[[1436]],[[1437]],[[-580,1438,-594,1439]]],"id":"PA","properties":{"name":"Panama"}},{"type":"Polygon","arcs":[[1440]],"id":"PN","properties":{"name":"Pitcairn Is."}},{"type":"Polygon","arcs":[[-318,-295,-518,1441,-662,-577]],"id":"PE","properties":{"name":"Peru"}},{"type":"MultiPolygon","arcs":[[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]]],"id":"PH","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[[[1490]],[[1491]]],"id":"PW","properties":{"name":"Palau"}},{"type":"MultiPolygon","arcs":[[[1492]],[[1493]],[[1494]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512,1513,1514]],[[1515]],[[1516]],[[1517]],[[1518]],[[1519]]],"id":"PG","properties":{"name":"Papua New Guinea"}},{"type":"Polygon","arcs":[[-1244,-284,1520,1521,-611,-620,1522,-615,1523,1524]],"id":"PL","properties":{"name":"Poland"}},{"type":"MultiPolygon","arcs":[[[1525]],[[1526]],[[1527]]],"id":"PR","properties":{"name":"Puerto Rico"}},{"type":"MultiPolygon","arcs":[[[1528]],[[1529,1530,-1218,1531,-531]]],"id":"KP","properties":{"name":"Dem. Rep. Korea"}},{"type":"MultiPolygon","arcs":[[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540,-689]]],"id":"PT","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-317,-40,-293]],"id":"PY","properties":{"name":"Paraguay"}},{"type":"MultiPolygon","arcs":[[[-669,1541,-1106]],[[-1103,-1124]]],"id":"PS","properties":{"name":"Palestine"}},{"type":"MultiPolygon","arcs":[[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]]],"id":"PF","properties":{"name":"Fr. Polynesia"}},{"type":"Polygon","arcs":[[1563,1564]],"id":"QA","properties":{"name":"Qatar"}},{"type":"Polygon","arcs":[[1565,1566,-259,1567,-916,1568,-1256]],"id":"RO","properties":{"name":"Romania"}},{"type":"MultiPolygon","arcs":[[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[-1245,-1525,1588,-1242,1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[-1530,-551,-1314,-549,-1168,1639,-223,-793,1640,1641,-282,-1248,-694,1642,-709,-1401,1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]]],"id":"RU","properties":{"name":"Russia"}},{"type":"Polygon","arcs":[[1674,-226,-567,1675]],"id":"RW","properties":{"name":"Rwanda"}},{"type":"Polygon","arcs":[[-1334,1676,-1253,-650]],"id":"EH","properties":{"name":"W. Sahara"}},{"type":"MultiPolygon","arcs":[[[1677]],[[1678]],[[1679]],[[-1223,1680,-1565,1681,-32,-1432,1682,1683,-1122,-1097]]],"id":"SA","properties":{"name":"Saudi Arabia"}},{"type":"Polygon","arcs":[[1684,-674,-701,1685,-331,1686,-1232,-666]],"id":"SD","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-700,-1174,1687,-565,-332,-1686]],"id":"SS","properties":{"name":"S. Sudan"}},{"type":"Polygon","arcs":[[-1288,-803,-813,1688,-805,1689,-1332]],"id":"SN","properties":{"name":"Senegal"}},{"type":"Polygon","arcs":[[1690]],"id":"SG","properties":{"name":"Singapore"}},{"type":"MultiPolygon","arcs":[[[1691]],[[1692]]],"id":"GS","properties":{"name":"S. Geo. and S. Sandw. Is."}},{"type":"MultiPolygon","arcs":[[[1693]],[[1694]]],"id":"SH","properties":{"name":"Saint Helena"}},{"type":"MultiPolygon","arcs":[[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]]],"id":"SB","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[1716]],[[-1231,1717,-800]]],"id":"SL","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[-891,1718,-878]],"id":"SV","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-1119]],"id":"SM","properties":{"name":"San Marino"}},{"type":"Polygon","arcs":[[-697,-630,1719,1720]],"id":"-99","properties":{"name":"Somaliland"}},{"type":"Polygon","arcs":[[-698,-1721,1721,-1170]],"id":"SO","properties":{"name":"Somalia"}},{"type":"MultiPolygon","arcs":[[[1722]],[[1723]]],"id":"PM","properties":{"name":"St. Pierre and Miquelon"}},{"type":"Polygon","arcs":[[-1568,-258,-1286,-1221,-1312,-276,-908,-917]],"id":"RS","properties":{"name":"Serbia"}},{"type":"MultiPolygon","arcs":[[[1724]],[[1725]]],"id":"ST","properties":{"name":"São Tomé and Principe"}},{"type":"Polygon","arcs":[[-313,-884,1726,-741]],"id":"SR","properties":{"name":"Suriname"}},{"type":"Polygon","arcs":[[1727,-919,-209,-612,-1522]],"id":"SK","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-910,1728,-1117,-211,-918]],"id":"SI","properties":{"name":"Slovenia"}},{"type":"MultiPolygon","arcs":[[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734,-1402,-711]]],"id":"SE","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[-1321,1735]],"id":"SZ","properties":{"name":"Swaziland"}},{"type":"Polygon","arcs":[[1736,-1252]],"id":"SX","properties":{"name":"Sint Maarten"}},{"type":"Polygon","arcs":[[1737]],"id":"SC","properties":{"name":"Seychelles"}},{"type":"Polygon","arcs":[[-1099,-1125,-1109,-1229,1738,1739]],"id":"SY","properties":{"name":"Syria"}},{"type":"MultiPolygon","arcs":[[[1740]],[[1741]],[[1742]]],"id":"TC","properties":{"name":"Turks and Caicos Is."}},{"type":"Polygon","arcs":[[-1687,-336,-564,-1364,-1360,-1233]],"id":"TD","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[-236,1743,-795,-240]],"id":"TG","properties":{"name":"Togo"}},{"type":"MultiPolygon","arcs":[[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[-1226,1753,1754,-1346,1755,-1310]]],"id":"TH","properties":{"name":"Thailand"}},{"type":"MultiPolygon","arcs":[[[-1177]],[[1756]],[[-1175,-546,-7,1757]]],"id":"TJ","properties":{"name":"Tajikistan"}},{"type":"MultiPolygon","arcs":[[[1758]],[[-5,-1088,1759,-1166,1760]]],"id":"TM","properties":{"name":"Turkmenistan"}},{"type":"MultiPolygon","arcs":[[[1761,-925]],[[-927,1762]],[[1763]]],"id":"TL","properties":{"name":"Timor-Leste"}},{"type":"MultiPolygon","arcs":[[[1764]],[[1765]],[[1766]]],"id":"TO","properties":{"name":"Tonga"}},{"type":"MultiPolygon","arcs":[[[1767]],[[1768]]],"id":"TT","properties":{"name":"Trinidad and Tobago"}},{"type":"MultiPolygon","arcs":[[[1769]],[[1770]],[[-1235,-653,1771]]],"id":"TN","properties":{"name":"Tunisia"}},{"type":"MultiPolygon","arcs":[[[1772]],[[-791,-49,-219,-1094,-1100,-1740,1773]],[[1774,-857,-255]]],"id":"TR","properties":{"name":"Turkey"}},{"type":"MultiPolygon","arcs":[[[1775]],[[1776]]],"id":"TW","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[1777]],[[1778]],[[1779]],[[-1172,1780,-1326,-1338,1781,-568,-224,-1675,1782]]],"id":"TZ","properties":{"name":"Tanzania"}},{"type":"Polygon","arcs":[[-1783,-1676,-566,-1688,-1173]],"id":"UG","properties":{"name":"Uganda"}},{"type":"MultiPolygon","arcs":[[[1783]],[[1784,-1566,-1257,-1569,-915,-1728,-1521,-283,-1642]]],"id":"UA","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[1785,-42,-316]],"id":"UY","properties":{"name":"Uruguay"}},{"type":"MultiPolygon","arcs":[[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[-353,1844,-1280,1845,-439]],[[1846]],[[1847]],[[1848]],[[1849]],[[1850]],[[1851]],[[1852]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[-441,1913,-381,1914]]],"id":"US","properties":{"name":"United States"}},{"type":"MultiPolygon","arcs":[[[-1178]],[[-1179]],[[-1176,-1758,-6,-1761,-1165],[-1757]]],"id":"UZ","properties":{"name":"Uzbekistan"}},{"type":"MultiPolygon","arcs":[[[1915]],[[1916]]],"id":"VC","properties":{"name":"St. Vin. and Gren."}},{"type":"MultiPolygon","arcs":[[[1917]],[[1918]],[[1919]],[[1920]],[[-882,-320,-576,1921]]],"id":"VE","properties":{"name":"Venezuela"}},{"type":"MultiPolygon","arcs":[[[1922]],[[1923]],[[1924]]],"id":"VG","properties":{"name":"British Virgin Is."}},{"type":"MultiPolygon","arcs":[[[1925]],[[1926]],[[1927]]],"id":"VI","properties":{"name":"U.S. Virgin Is."}},{"type":"MultiPolygon","arcs":[[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935,-1185,-1225,-537]]],"id":"VN","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]]],"id":"VU","properties":{"name":"Vanuatu"}},{"type":"MultiPolygon","arcs":[[[1950]],[[1951]]],"id":"WF","properties":{"name":"Wallis and Futuna Is."}},{"type":"MultiPolygon","arcs":[[[1952]],[[1953]]],"id":"WS","properties":{"name":"Samoa"}},{"type":"MultiPolygon","arcs":[[[1954]],[[1955]],[[1956]],[[1957]],[[1958,-1683,-1431]]],"id":"YE","properties":{"name":"Yemen"}},{"type":"MultiPolygon","arcs":[[[1959]],[[-1322,-1736,-1328,1960,-1352,-329,1961],[-1241]]],"id":"ZA","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[-1337,-1324,1962,-1351,-8,-569,-1782]],"id":"ZM","properties":{"name":"Zambia"}},{"type":"Polygon","arcs":[[-1962,-328,-1963,-1323]],"id":"ZW","properties":{"name":"Zimbabwe"}}]}},"arcs":[[[3058,5784],[0,-1],[-1,1],[-2,3],[-2,3],[1,3],[0,1],[2,-3],[2,-5],[0,-2]],[[7080,7252],[-2,0],[-2,1],[-1,2],[0,1],[-2,-2],[-3,-1],[-5,-5],[0,-1],[4,-5],[0,-2],[1,0]],[[7070,7240],[-3,-2],[-7,-6],[-4,-4],[-1,0],[-3,2],[-4,2],[-1,0],[-9,-1],[-8,0],[-3,-1],[-6,-1],[-4,-1],[-3,-1],[-3,-2],[-3,-2],[-2,0],[-2,-2],[-2,-4],[-5,-6],[-3,-3],[-1,-3],[-2,0],[-2,0],[-2,-3],[-3,-5],[-4,-8],[-2,-3],[-1,-4],[1,-3],[3,-3],[2,-4],[0,-3],[2,-7],[1,-7],[1,-3],[1,-5],[0,-3],[-1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[1,-2],[-1,-2],[-1,-3],[-1,-3],[-2,-5],[-3,-3],[-1,-3],[-2,-5],[-3,-6],[-2,-5],[-1,-2],[-1,-2],[0,-2],[1,-4],[2,-3],[0,-6],[0,-4],[0,-5],[-1,-4],[-6,-4],[-5,-2],[-7,0],[-2,0],[-2,1],[-7,5],[-3,-3],[-1,-6],[5,-11],[2,-6],[3,-10],[2,-5],[-1,-4],[-5,-6],[-4,-5],[-6,-1],[-4,-2],[-2,-2],[-1,-11],[-2,-4],[0,-5],[-1,-6],[-2,-3],[-1,-6],[0,-11],[1,-18],[-3,-6],[-3,-6],[-3,-4],[-3,-2],[-2,0],[-2,4],[-1,3],[-2,3],[-2,-1],[-2,-2],[-4,1],[-3,2],[-1,0],[-1,-3],[-3,-5],[-8,-7],[-3,-1],[-2,-2],[1,-3],[1,-3],[3,-1],[0,-3],[-2,-1],[-2,-2],[-4,-3],[-5,-1],[-4,1],[-3,4],[-3,0],[-2,-2],[-3,-4],[-3,-9],[-1,-2],[-1,-1],[-2,-2],[-2,-3],[-2,-7],[-1,-11],[0,-6],[0,-11],[-1,-8],[-1,-5],[1,-4],[1,-4],[0,-3],[-2,-3],[-1,-2],[-6,-3],[-9,-5],[-5,-3],[-8,-4],[-2,-1],[-5,-1],[-3,1],[-3,0],[-5,0],[-4,-1],[-4,-2],[-2,-3],[-2,-3],[0,-1],[-4,2],[-11,4],[-30,-5],[-3,1],[-10,6],[-14,8],[-8,5],[-11,6]],[[6689,6815],[8,16],[6,14],[6,14],[7,14],[0,5],[0,9],[-1,13],[-3,6],[-9,2],[-6,2],[-7,2],[-1,0],[-1,10],[0,5],[0,8],[0,7],[1,10],[0,5],[-3,21],[-2,11],[-2,12],[0,4],[0,5],[4,11],[1,2],[3,6],[1,2],[0,2],[-3,2],[-4,0],[-2,1],[-2,3],[-1,5],[2,7],[-2,15],[3,8],[2,5],[7,1],[-3,6],[-1,3],[-1,1],[0,1],[1,2],[1,1],[1,2],[2,2],[1,2],[1,3],[1,2],[1,3],[1,3],[0,4],[1,5],[0,3],[1,3],[-1,3],[0,3],[0,4],[1,1],[1,2],[0,2],[1,4],[1,3],[1,2],[0,3],[-1,4]],[[6701,7157],[2,0],[1,-2],[1,-3],[4,-5],[2,-1],[3,-1],[3,1],[3,1],[1,-1],[3,-3],[3,-6],[2,-2],[0,-4],[1,-1],[2,4],[2,1],[2,-1],[3,0],[2,1],[1,1],[3,5],[4,3],[2,2],[1,8],[1,4],[1,2],[0,3],[-1,2],[-1,4],[1,1],[1,1],[4,0],[6,3],[5,3],[4,3],[2,0],[2,0],[1,1],[1,2],[1,3],[2,2],[5,5],[4,6],[2,6],[1,7],[2,12],[2,12],[1,6],[1,4],[4,4],[3,3],[6,0],[7,0],[2,7],[1,6],[1,3],[2,3],[4,-3],[6,-6],[6,-3],[4,-1],[1,0]],[[6847,7259],[9,1],[6,-2],[4,-6],[3,-1],[4,3],[2,0],[1,-2],[1,0],[3,0],[1,-2],[1,-1]],[[6882,7249],[0,-2],[2,-5],[3,-5],[3,-1],[4,4],[1,-1],[1,2],[1,3],[2,3],[4,2],[3,3],[1,2],[1,0],[2,0],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[2,-4],[4,-6],[2,-3],[1,0],[2,2],[1,4],[1,5],[-1,6],[1,5],[2,4],[3,3],[6,1],[3,-1],[1,-2],[2,-1],[2,0],[2,2],[2,5],[0,6],[-2,7],[1,2],[0,1],[2,3],[3,5],[3,7],[3,9],[3,5],[4,2],[5,-3],[6,-6],[2,-8],[-2,-10],[0,-5],[1,-1],[2,0],[3,2],[2,0],[1,-2],[0,-2],[-1,-4],[-1,-12],[-1,-10],[-1,-9],[0,-9],[1,-7],[1,-10],[2,-6],[2,-2],[2,-1],[2,0],[4,5],[6,8],[5,4],[9,3],[2,9],[4,5],[9,9],[5,3],[2,0],[4,-1],[1,-1],[2,-1],[0,-2],[0,-3],[-2,-2],[0,-2],[0,-1],[3,-1],[5,3],[4,2],[2,1],[2,3],[1,2],[3,0],[2,-1],[2,-1],[4,1],[2,-2],[3,-5],[1,-2],[1,-1]],[[5665,4403],[1,-8],[0,-11],[1,-8],[0,-3],[0,-2],[0,-2],[0,-5],[-1,-4],[-1,-3],[1,-5],[-1,-7],[0,-8],[0,-8],[1,-14],[0,-4],[-1,-7],[-1,-6],[-1,-6],[0,-4],[2,-9],[0,-2],[-2,0],[-1,0],[-6,0],[-8,0],[-9,0],[-8,0],[-7,0],[-8,0],[-6,0],[0,-10],[0,-19],[0,-19],[0,-19],[0,-19],[0,-19],[0,-19],[0,-19],[0,-19],[0,-14],[2,-18],[3,-20],[1,-1],[3,-4],[4,-7],[3,-6],[5,-10],[6,-12],[6,-11],[6,-10]],[[5649,4002],[-9,-4],[-12,-5],[-8,-3],[-11,-4],[-6,-3],[-9,-3],[-1,0],[-2,3],[-5,0],[-6,-3],[-4,-1],[-4,2],[-3,2],[-3,4],[-6,1],[-7,-1],[-8,1],[-7,3],[-6,1],[-3,-1],[-3,1],[-4,2],[-3,4],[-3,8],[-3,7],[-1,1],[-1,2],[-1,0],[-8,0],[-7,0],[-4,0],[-11,0],[-11,0],[-10,0],[-11,0],[-11,1],[-10,0],[-11,0],[-10,0],[-6,0],[-5,-1],[-6,-1],[-1,1],[-1,1],[-1,1],[-3,5],[-3,3],[-4,5],[-2,6],[-2,2],[-4,1],[-2,1],[-3,1],[-3,-3],[-3,-3],[-2,-3],[-4,-3],[-3,-3],[-5,0],[-1,0],[-3,0],[-3,3],[-3,0],[-3,-4],[-4,-1]],[[5326,4025],[1,22],[1,10],[0,12],[-1,31],[-1,4],[0,5],[3,4],[1,2],[2,6],[1,7],[2,15],[6,37],[2,35],[4,17],[1,19],[10,24],[2,15],[5,7],[7,8],[5,14],[3,9],[2,19],[0,19],[2,26],[0,7],[-3,10],[0,8],[-3,7],[-2,5],[-2,10],[-4,15],[-1,11],[-3,7],[0,9],[-1,9],[-2,10],[-2,11],[0,3],[1,4],[1,1],[0,-2],[-1,-2],[0,-2],[9,19],[0,4],[0,4],[0,5],[0,6],[-8,35],[-6,32],[-1,17],[-9,21],[-3,14],[-2,10],[-1,4],[0,2],[2,0],[5,3],[7,2],[6,6],[1,2]],[[5362,4699],[4,1],[3,-2],[1,1],[1,0],[8,0],[3,1],[6,0],[4,-1],[2,0],[5,-1],[8,0],[2,0],[10,1],[9,0],[8,0],[10,0],[7,0],[3,-2],[3,-4],[1,-3],[1,-2],[1,-4],[1,-2],[1,-5],[-1,-6],[1,-8],[1,-8],[1,-10],[3,-9],[2,-8],[-1,-5],[1,-6],[2,-7],[2,-3],[1,-2],[2,-10],[5,-15],[4,-12],[1,-1],[2,0],[3,2],[4,0],[3,-3],[1,1],[4,4],[4,2],[4,2],[2,2],[3,0],[6,-4],[2,0],[5,0],[6,2],[0,15],[1,3],[1,6],[2,5],[0,5],[0,6],[1,8],[4,7],[6,3],[3,0],[5,2],[8,2],[3,0],[1,-1],[-2,-11],[0,-4],[1,-3],[1,-2],[8,-1],[8,0],[9,-1],[7,0],[0,-1],[1,0],[1,-6],[0,-11],[-2,-15],[1,-15],[3,-13],[0,-21],[-1,-13],[-1,-15],[-1,-18],[2,-8],[2,-7],[4,-9],[3,-10],[2,-13],[1,-8],[-1,-4],[0,-5],[1,-9],[-1,-5],[-2,-3],[-1,-4],[2,-7],[0,-6],[1,-3],[0,-1],[1,-1],[2,3],[3,4],[2,2],[3,0],[4,-2],[7,0],[3,1],[6,5],[2,1],[3,-1],[4,-1],[3,-1],[2,2],[1,2],[0,3],[1,2]],[[5339,4706],[-1,1],[-1,6],[1,6],[1,4],[-1,8],[-2,8],[-2,9],[-1,2]],[[5333,4750],[2,3],[2,7],[1,4],[3,0],[1,3],[1,4],[0,2],[4,2],[4,3],[2,4],[2,2],[1,0],[1,-1],[3,-6],[2,-4],[1,-1]],[[5363,4772],[-1,-1],[-3,-2],[-3,-3],[-4,-10],[-3,-4],[0,-1],[-2,-3],[-2,-2],[0,-1],[1,-1],[1,-2],[0,-17],[0,-16],[-1,-1],[-2,-1],[-4,-1],[-1,0]],[[3250,6126],[-5,-3],[0,2],[4,4],[1,0],[0,-3]],[[5557,7567],[1,-1],[2,-6],[2,-5],[3,-2],[1,-2],[2,-3],[2,-3],[1,-10],[0,-5],[0,-3]],[[5571,7527],[-1,0],[-1,-10],[0,-4],[0,-3],[-1,-2],[-1,-2],[2,-7],[0,-4],[0,-3],[2,-9],[1,-3],[1,-1],[2,-8],[1,-1],[3,1],[2,-1],[1,-2],[0,-1]],[[5582,7467],[0,-5],[0,-3],[2,-4],[0,-2],[-1,-3],[-2,-4],[-2,-2],[-2,-1],[-1,-4],[0,-3],[-1,-2],[-1,-3],[-1,-6],[0,-2],[-1,-2],[-2,-1],[-2,0],[-2,-1],[0,-2],[-2,-1],[0,-1],[0,-2],[1,-3],[1,-3],[0,-2],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-2],[-1,-2],[-1,-1],[-2,0],[-2,2],[-1,1],[-1,0]],[[5555,7399],[0,5],[-1,5],[-3,10],[-10,10],[-3,4],[-1,4],[-1,3],[1,0],[1,0],[1,-2],[1,2],[-1,4],[-2,9],[0,3],[1,7],[2,9],[0,10],[1,7],[-1,5],[-1,7],[2,8],[1,2],[1,2],[0,9],[-3,4],[-3,1]],[[5537,7527],[0,3],[0,5],[0,1],[0,3],[-1,3],[-1,3],[1,4],[2,6],[2,4],[2,5],[2,4],[1,4],[2,1],[0,-1],[1,-1],[0,-5],[0,-2],[1,-1],[2,1],[2,1],[3,2],[1,0]],[[5572,8603],[0,-1],[-3,0],[0,1],[-3,0],[1,2],[2,0],[2,0],[1,-2]],[[5546,8612],[0,-1],[-1,0],[-1,0],[-1,-2],[-1,1],[0,2],[1,3],[2,1],[1,-4]],[[5555,8622],[1,0],[1,0],[3,-2],[0,-2],[2,0],[0,-2],[-2,-4],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-2],[0,-3],[-7,-1],[-1,1],[-2,8],[0,2],[2,1],[1,0],[0,-4],[2,0],[0,3],[0,2],[0,1],[-1,1],[-1,1],[1,2],[2,1],[1,-3],[2,0]],[[5047,7565],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[-1,1],[-1,1],[0,2],[0,2],[0,1],[0,3]],[[5039,7570],[1,2],[1,1],[2,-1],[4,-1],[1,-2],[0,-1],[-1,-2],[0,-1]],[[6497,6479],[0,-2],[-2,0],[-1,-1],[-3,1],[-2,1],[2,3],[4,3],[1,-3],[1,-2]],[[6461,6485],[-1,0],[0,3],[0,1],[1,2],[1,-3],[-1,-3]],[[6481,6484],[-2,-1],[-2,3],[4,3],[1,1],[1,3],[1,-3],[-1,-3],[-1,-2],[-1,-1]],[[6512,6495],[0,-2],[-1,1],[-2,1],[0,1],[1,2],[1,-2],[1,-1]],[[6563,6566],[2,-5],[0,-32],[1,-3]],[[6566,6526],[-1,0],[-1,-2],[-2,-4],[-1,-2],[-2,-2],[-1,-3],[-1,-1],[-2,4],[-1,3],[0,1],[1,0],[0,2],[0,3],[-1,1],[-1,0],[-2,-1],[-1,-3],[-1,-2],[0,-5],[0,-6],[0,-3],[0,-3],[-1,-6],[1,-4],[0,-2],[1,-2],[-2,-6],[1,-1],[4,-1],[1,-4],[1,-3],[-1,-2],[-2,-1],[-3,-2],[-3,1],[-4,-2],[-2,-3],[1,-2],[1,-1],[0,-4],[-1,-6],[-1,-5],[-1,-7],[-2,-8],[-2,-12],[-2,-9],[-1,-6],[1,-5],[-1,-8]],[[6532,6392],[-2,-5],[-2,0],[-1,1],[-2,0],[-3,1],[-5,1],[-5,1],[-5,2],[-6,1],[-6,2],[-6,2],[-6,1],[-6,2],[-5,1],[-4,1],[-4,1],[-2,0],[0,1],[-3,0],[-1,3],[-2,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,3],[-2,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,4],[-2,4],[-1,3],[-2,3],[0,3],[0,8],[0,1]],[[6432,6485],[1,3],[0,-2],[1,-3],[2,1],[1,-1],[1,-10],[1,-4],[2,-1],[6,-1],[4,1],[7,7],[4,3],[10,-1],[9,-3],[13,-1],[2,0],[7,6],[5,4],[2,2],[2,5],[1,6],[1,4],[1,2],[2,3],[1,6],[2,5],[10,14],[6,12],[0,3],[3,6],[3,6],[11,18],[3,7],[1,8],[0,1]],[[6557,6591],[1,0],[2,-1],[0,-6],[-1,-6],[0,-6],[0,-3],[1,-3],[2,-1],[1,0],[0,1]],[[6561,6540],[1,0],[1,2],[0,2],[0,1],[-2,1],[0,-3],[0,-3]],[[3207,1805],[3,-1],[6,1],[3,0],[1,0],[1,-1],[4,1],[2,0],[0,-3],[-4,-2],[-2,1],[-8,0],[-4,-3],[-1,0],[-4,-4],[-2,3],[-1,2],[2,3],[2,0],[1,1],[1,2]],[[3093,1797],[0,14],[0,18],[0,16],[0,15],[0,16],[0,17],[0,17],[0,18]],[[3093,1928],[2,-3],[6,-12],[2,-5],[1,-6],[-2,4],[-3,-2],[-2,-4],[-1,-3],[0,-3],[1,-2],[3,-2],[6,-1],[1,-1],[4,-14],[1,-4],[3,-2],[5,-8],[5,-8],[5,-7],[7,-6],[5,-4],[6,-6],[6,-7],[6,-6],[7,-4],[6,-3],[11,1],[3,0],[2,-2],[-2,-7],[-2,-5],[-4,-2],[-4,-1],[-3,0],[-3,1],[-3,-1],[-3,-2],[-3,-1],[-4,0],[-3,-2],[-3,-1],[-3,1],[-8,5],[-6,1],[-18,2],[-6,2],[-6,1],[-3,0],[-5,-1],[-3,0],[-1,-1]],[[3281,2726],[0,-4],[-1,1],[-4,3],[-1,4],[0,1],[3,-1],[2,-2],[1,-2]],[[3259,3730],[1,-2],[0,-2],[2,-3],[5,-6],[5,-10],[4,-15],[3,-11],[4,-8],[3,-5],[3,-3],[2,-2],[0,-2],[3,-4],[5,-6],[4,-6],[1,-6],[6,-6],[9,-6],[7,-3],[4,0],[6,-5],[8,-10],[5,-7],[1,-4],[6,-6],[12,-14],[6,-3],[3,-3],[1,-4],[2,-1],[2,1],[3,-1],[5,-4],[4,-5],[4,-12],[2,-4],[1,-4],[-1,-4],[-1,-4],[-3,-4],[-1,-2],[0,-1],[0,-4],[-3,-7],[0,-3],[0,-3],[-2,-3],[-4,-5],[-1,-2],[0,-3],[0,-1],[-1,-1],[0,-3],[-1,-4],[0,-6],[0,-7],[0,-2],[-1,-1],[0,-2],[0,-3],[-1,-2],[-1,-2],[-1,-1],[1,-2],[-1,-2],[-3,-2],[-1,-3],[0,-4],[-2,-3],[-2,-3],[0,-3],[1,-7],[12,2],[10,-3],[11,-6],[8,-3],[4,2],[3,0],[2,-2],[2,-1],[3,2],[3,-2],[2,-4],[2,1],[1,6],[2,4],[3,3],[2,1],[3,-1],[3,-2],[2,-3],[2,0],[2,3],[1,4],[0,5],[1,3],[2,2],[1,3],[1,4],[2,2],[4,1],[2,1],[0,3],[1,2],[2,3],[2,2],[1,4],[1,2],[2,1],[2,7],[2,13],[1,18],[1,26]],[[3483,3532],[2,0],[1,-2],[1,-1],[2,2],[1,1],[3,0],[1,2],[1,1],[1,-2],[1,-1],[2,-1],[2,-4],[2,-1],[0,-5],[2,-12],[2,-7],[2,-9],[0,-4],[-1,-3],[-1,-6],[0,-13],[0,-5],[0,-3],[1,-5],[-2,-5],[-2,-9],[-2,-2],[-1,0],[-2,-5],[-3,-2],[-1,1],[-1,-2],[-2,-5],[-1,-3],[-4,-1],[-1,-1],[-2,0],[-1,-1],[-2,-3],[-1,-1],[-2,1],[-1,-1],[-2,-3],[0,-3],[-1,-4],[-1,-2],[-2,-1],[-1,-2],[0,-2],[-1,-2],[-4,-2],[-3,-3],[-2,-5],[-1,-3],[-3,-2],[-4,-5],[-1,-3],[2,-3],[0,-2],[0,-3],[-1,0],[-3,2],[-1,0],[-1,-1],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[-2,-5],[-3,-5],[-3,-7],[-2,-8],[-2,-6],[-3,-2],[-2,-4],[-1,-5],[-2,-8],[-5,-10],[-4,-8],[-4,-4],[-2,-4],[0,-5],[-3,-5],[-4,-7],[-2,-3]],[[3399,3258],[-1,-2],[0,-4],[-1,-5],[-4,-7],[-1,-5],[2,-8],[0,-8],[-1,-4],[-1,-1],[-1,-2],[1,-4],[0,-4],[0,-5],[-2,-6],[-2,-7],[-1,-5],[1,-2],[1,-3],[0,-2],[-1,-4],[-1,-5],[-1,-4],[-2,-2],[-1,-3],[1,-4],[0,-4],[0,-4],[0,-4],[1,-4],[0,-4],[-2,-9]],[[3383,3123],[-1,-5],[2,-24],[-1,-3],[-1,-4],[-2,0],[-2,1],[-1,-3],[-1,-10],[-3,-23],[1,-5],[2,-8],[1,-6],[0,-4],[1,-8],[-2,-3],[-1,-1],[-1,-2],[2,-10],[1,-4],[4,-9],[14,-12],[6,-8],[7,-10],[4,-10],[0,-9],[-6,-12],[0,-11],[1,-8],[2,-6],[5,-10],[4,-3],[5,1],[1,-3],[1,-2],[1,-18],[-1,-7],[-1,-7],[-10,-29],[-9,-17],[-3,-10],[-1,-10],[-3,-5],[-14,-16],[-23,-14],[-19,-8],[-4,-2],[-30,-8],[-6,-1],[-7,0],[-7,-1],[-6,3],[-6,2],[-4,6],[-4,1],[-1,-3],[2,-8],[-1,-10],[1,-5],[3,-1],[2,-3],[2,-4],[-4,0],[2,-3],[1,-2],[0,-6],[-1,-16],[-4,-3],[-1,-1],[-1,-3],[-2,-15],[0,-9],[1,-6],[4,-13],[-2,-8],[-3,-5],[-11,-9],[-4,-4],[-7,-2],[-12,-1],[-4,1],[-10,8],[-7,5],[-6,5],[-7,2],[1,1],[1,2],[-2,2],[-2,0],[-4,-5],[-2,-4],[0,-4],[0,-9],[1,-8],[3,-20],[0,-10],[-2,-14],[3,-7],[2,-4],[5,-3],[3,-3],[2,1],[1,-1],[-1,-2],[-1,-3],[0,-4],[4,-1],[5,1],[4,1],[1,3],[0,5],[-5,1],[1,2],[4,2],[5,3],[3,1],[1,-2],[2,-3],[1,-5],[1,-7],[0,-9],[0,-9],[-1,-3],[-2,-3],[-9,-5],[-3,2],[-2,6],[-1,6],[-2,5],[-5,3],[-4,-1],[-5,-6],[-4,-2],[-2,-5],[11,-9],[6,-3],[1,0],[2,-1],[-2,-3],[-1,-2],[-8,-5],[-3,-3],[-4,-6],[-6,-14],[-2,-2],[-1,-4],[0,-9],[1,-16],[-1,-6],[1,-7],[-1,-5],[-2,-7],[-8,-11],[-1,-8],[2,-5],[0,-4],[-1,-4],[-3,1],[-12,2],[-4,-4],[-4,-5],[-1,-2],[-2,-2],[-8,-3],[-2,-1],[-9,-19],[-3,-12],[-5,-12],[-1,-4],[0,-7],[0,-6],[1,-5],[2,-6],[3,-6],[17,-27],[3,-2],[18,-3],[4,-4],[3,-6],[1,-5],[-1,-13],[-1,-4],[-2,-4],[-5,-5],[-5,-3],[2,-1],[2,0],[4,1],[2,-1],[2,-5],[-3,-2],[-1,-3],[-2,-4],[-11,-15],[-5,-5],[-5,-6],[-7,-6],[-3,-4],[-4,-7],[-5,-8],[-6,-18],[-1,-3],[1,-2],[-3,-31],[-1,-4],[-3,-3],[-6,-7],[-3,0],[-4,3],[-3,4],[-2,7],[-3,6],[0,-2],[1,-4],[-1,-4],[-7,-2],[-1,-2],[6,0],[4,-1],[2,-1],[2,-4],[1,-4],[-1,-2],[-4,-2],[-4,-3],[-5,-6],[-3,-7],[-1,-5],[-2,-10],[0,-6],[-3,-6],[-3,-4],[0,-1],[3,2],[1,1],[2,-6],[2,-12],[1,-9],[0,-2],[-1,-4],[-4,-1],[-4,0],[-3,-1],[2,-2],[2,1],[4,-4],[4,2],[2,-3],[1,-2],[7,-18],[5,-10],[3,-7],[-2,-3]],[[3098,1945],[0,4],[-4,1],[-3,1],[-6,3],[-8,4],[-8,0],[-6,4],[-7,4],[-14,0],[-13,0],[-13,1],[-8,0],[-6,0],[-1,1],[0,5],[-2,4],[-3,4],[-4,4],[-2,4],[-2,4],[2,5],[1,10],[0,4],[-1,3],[-1,5],[1,2],[1,2],[1,7],[-1,7],[-1,6],[-1,3],[-2,2],[-1,0],[-4,-3],[-5,1],[-1,-1],[-3,-3],[-3,-3],[-2,1],[-1,4],[-1,4],[-1,3],[-1,5],[-1,6],[-2,8],[-3,6],[0,6],[-1,7],[2,7],[-1,6],[-2,6],[1,7],[1,4],[1,5],[9,1],[0,7],[1,5],[2,5],[1,2],[4,2],[3,3],[3,3],[1,3],[0,4],[0,4],[0,8],[1,3],[2,3],[4,4],[2,8],[-1,7],[-3,5],[-2,3],[-1,6],[2,5],[1,6],[2,7],[0,4],[2,3],[5,6],[2,6],[1,2],[2,1],[0,3],[-1,3],[0,5],[0,4],[0,6],[3,3],[3,5],[1,3],[0,4],[-1,9],[-1,7],[0,2],[-2,4],[-1,3],[2,4],[3,3],[2,5],[-1,5],[-2,2],[-1,7],[1,9],[1,2],[5,2],[1,4],[4,6],[0,6],[-3,4],[-2,6],[-2,5],[-6,3],[-6,2],[-1,5],[0,2],[3,-1],[5,1],[3,1],[3,0],[3,1],[3,-2],[2,1],[1,8],[2,4],[0,4],[-1,3],[-4,1],[-13,2],[-1,4],[0,5],[1,5],[0,3],[1,2],[2,5],[1,3],[-1,5],[-3,6],[2,3],[0,3],[0,3],[-3,4],[-2,5],[0,6],[3,1],[1,2],[1,3],[-1,5],[-3,1],[-5,2],[-1,3],[-1,4],[1,13],[-1,7],[0,4],[1,4],[1,3],[0,6],[-2,4],[1,3],[1,2],[1,4],[1,1],[1,-2],[3,1],[2,3],[1,3],[-1,5],[-2,11],[-2,7],[1,3],[0,3],[0,10],[0,6],[0,17],[0,6],[-2,6],[1,6],[1,4],[1,6],[1,5],[1,2],[2,2],[0,2],[-1,2],[-2,4],[0,4],[0,3],[1,2],[2,0],[1,4],[1,5],[0,3],[-1,3],[-1,7],[-1,5],[1,2],[1,0],[2,-1],[1,1],[1,2],[0,2],[0,2],[2,6],[1,6],[0,5],[0,13],[0,3],[2,3],[2,3],[2,2],[3,3],[4,1],[1,3],[1,5],[1,4],[-2,2],[-2,3],[-1,8],[0,7],[0,9],[-2,8],[-2,9],[-1,7],[1,5],[1,6],[-1,4],[-1,5],[1,4],[1,7],[0,3],[-1,9],[-1,4],[1,5],[1,4],[2,3],[-1,4],[1,3],[2,2],[2,4],[2,1],[1,0],[1,1],[1,3],[0,3],[3,5],[2,3],[3,1],[1,4],[0,6],[0,5],[1,7],[-1,9],[0,5],[-1,5],[0,4],[-1,3],[-2,1],[0,4],[1,1],[1,2],[2,3],[2,13],[1,4],[0,5],[0,2],[1,4],[1,5],[2,5],[1,4],[2,5],[0,3],[1,1],[2,1],[2,0],[0,2],[0,3],[0,6],[0,9],[-1,11],[1,8],[1,8],[1,4],[0,3],[-1,4],[-2,2],[-2,-2],[-1,1],[-2,4],[-1,4],[1,6],[1,4],[1,5],[-1,1],[-2,3],[-2,11],[1,9],[-2,3],[-1,7],[-2,2],[0,6],[-1,5],[0,3],[2,0],[1,5],[-1,2],[-1,2],[-2,0],[-1,2],[-2,11],[-2,6],[1,8],[0,6],[1,6],[0,4],[1,3],[1,-1],[1,0],[2,4],[1,2],[0,2],[-1,2],[0,3],[0,4],[2,9],[2,11],[1,3],[0,4],[0,1],[1,-1],[4,1],[2,5],[0,4],[2,2],[-1,3],[-2,1],[-1,2],[1,4],[0,8],[0,6],[-1,13],[-1,14],[0,4],[3,6],[2,3],[0,3],[2,16],[1,8],[1,5],[1,8],[3,8],[1,5],[2,1],[1,1],[2,6],[2,6],[2,2],[1,5],[1,6],[2,10],[1,8],[2,2],[1,10],[1,5],[2,2],[2,1],[2,-3],[1,1],[2,3],[4,2],[1,2],[1,3],[0,5],[-2,5],[-3,8],[-2,9],[-1,3],[0,3],[1,4],[1,4],[3,7],[0,6],[-2,19],[-1,5],[-2,10],[0,4],[2,11],[1,4],[2,1],[1,1],[0,2],[-1,3],[-1,3],[0,4],[-2,2],[-1,3],[0,6],[2,7],[1,2],[1,3],[2,2],[1,3],[2,4],[5,5],[5,4],[9,7],[6,5],[0,3],[1,3],[2,18],[4,23],[2,14],[-5,11]],[[3133,3695],[1,3],[3,7],[1,6],[1,2],[5,6],[1,4],[1,4],[1,4],[2,0],[3,3],[4,3],[1,3],[2,7],[0,6],[1,2],[1,0],[3,-2],[1,-2],[5,-9],[3,-4],[2,-1],[5,1],[1,0],[12,-1],[1,0],[4,-2],[3,-2],[1,-1],[3,-2],[2,-9],[2,-6],[1,-6],[2,-11],[1,-4],[0,2],[2,12],[1,6],[2,8],[5,17],[1,3],[2,1],[1,0],[1,-1],[2,0],[1,1],[11,0],[12,1],[0,-1],[1,-3],[2,-6],[2,-3],[0,-1]],[[6263,7452],[0,3],[0,1],[1,0],[1,-1],[0,-2],[-1,-1],[-1,0]],[[6291,7351],[-5,1],[-4,-3],[-2,1]],[[6280,7350],[-1,4],[-1,4],[-2,10],[1,3],[-2,3],[-3,4],[-1,1],[0,3],[0,4],[0,3],[-1,1],[-2,0],[-2,0],[-4,-4],[-3,2],[-2,2],[-1,2],[-2,-1],[0,5],[-1,2],[-2,3],[-1,1],[-4,-2],[-3,-1]],[[6243,7399],[-1,2],[-5,9],[-4,6],[-3,3],[-3,-1],[-5,-1],[-2,1],[-4,2],[-4,4],[1,1],[1,1],[-1,4],[-2,7],[0,3],[-1,3],[0,2],[2,5],[2,5],[0,4],[-1,4],[-2,8],[-1,3],[-2,2],[-2,3],[0,3]],[[6206,7482],[1,0],[5,0],[4,1],[3,2],[5,1],[2,2],[2,0],[7,-1],[2,1],[8,0],[-1,2],[0,1],[5,1],[0,1]],[[6249,7493],[1,-3],[2,-3],[2,-1],[1,-2],[0,-1],[-4,-2],[0,-1],[1,0],[5,-4],[3,0],[1,-1],[1,-3],[2,-3],[2,-3],[0,-1],[-1,-1],[-4,-6],[-1,-2],[0,-2],[2,-6],[3,-7],[5,-5],[6,-6],[0,-3],[-1,-5],[-1,-2],[0,-2],[-1,-1],[-6,0],[-1,-1],[-1,-1],[3,-1],[3,-5],[2,-4],[2,-2],[3,-3],[2,-4],[3,-4],[3,2],[5,-4],[0,-3],[-1,-2],[-2,-2],[-1,-1],[0,-1],[1,-1],[1,-2],[2,-3],[2,-5],[-1,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[2,-3],[1,-3],[0,-4],[0,-6]],[[6248,7479],[1,-2],[0,-1],[1,1],[0,2],[0,1],[-1,1],[-1,-1],[0,-1]],[[258,4197],[-2,-1],[-1,3],[3,2],[1,1],[3,0],[-2,-1],[-2,-4]],[[500,123],[-9,-2],[-20,3],[-6,2],[-3,3],[-5,2],[-2,1],[0,2],[0,2],[-2,1],[-1,1],[-2,1],[28,-1],[11,-2],[2,-2],[19,-6],[-5,-1],[-5,-4]],[[611,183],[-2,-1],[-2,4],[-11,6],[-6,4],[-5,4],[-1,2],[2,0],[15,-7],[3,-3],[12,-5],[-5,-4]],[[543,213],[-3,0],[-75,7],[-14,2],[-4,1],[-1,1],[0,1],[0,2],[2,2],[19,3],[20,-2],[25,-5],[17,-4],[9,-4],[4,-2],[1,-2]],[[724,306],[-5,-1],[-7,1],[-5,2],[-11,2],[-3,4],[-13,3],[-6,1],[2,3],[14,-5],[17,-5],[14,-3],[3,-2]],[[3340,287],[-1,-12],[0,-6],[-1,-5],[-3,-2],[-5,-4],[-4,-3],[-9,-4],[-40,4],[-18,3],[-8,4],[-1,2],[-2,6],[-2,2],[-16,-1],[-10,-2],[-2,-1],[-2,-4],[-2,-1],[-26,9],[-27,9],[-11,5],[-4,3],[-1,1],[2,2],[3,1],[3,1],[3,0],[2,0],[2,-2],[2,-5],[1,-1],[4,-1],[96,0],[8,1],[17,1],[9,2],[3,3],[-8,1],[-3,2],[-3,5],[-1,3],[1,3],[11,2],[1,1],[-2,2],[0,3],[6,2],[2,3],[13,4],[20,-2],[4,-6],[-1,-4],[-1,-3],[0,-6],[8,-1],[2,-2],[3,-3],[-3,0],[-3,-1],[-2,-3],[-2,-3],[-2,-2]],[[4135,320],[4,-2],[4,3],[-1,3],[3,4],[3,-5],[22,-5],[7,-5],[-3,-1],[-2,0],[-7,-1],[-10,-4],[-12,4],[-21,3],[-6,2],[-5,7],[9,6],[2,0],[13,-9]],[[4101,327],[-5,-1],[-1,2],[2,4],[3,3],[7,0],[6,-2],[-1,-2],[-1,0],[-10,-4]],[[3162,303],[-3,0],[-2,0],[-1,1],[-1,5],[-14,4],[-1,2],[-1,5],[-3,2],[-17,8],[-2,2],[-1,2],[3,2],[7,-2],[13,-1],[3,-1],[3,-1],[14,0],[7,-1],[4,-7],[8,-2],[1,-4],[1,-7],[-11,-5],[-2,-1],[-5,-1]],[[3131,340],[-4,-3],[-21,1],[-7,1],[-3,2],[3,6],[3,2],[2,1],[6,3],[9,1],[6,0],[12,-3],[-3,-3],[-2,-1],[-2,-4],[1,-3]],[[4057,348],[-3,-2],[-68,3],[-3,1],[1,4],[9,1],[5,1],[7,2],[6,3],[2,0],[31,-7],[11,-4],[2,-1],[0,-1]],[[582,319],[-35,-2],[-14,2],[-29,6],[-41,12],[-11,4],[-7,3],[-7,4],[-1,4],[1,7],[1,5],[2,3],[9,4],[4,4],[9,5],[2,3],[4,0],[7,0],[7,-1],[6,-1],[6,-2],[15,-6],[10,-7],[14,-7],[15,-8],[8,-3],[7,-5],[8,-6],[1,-2],[3,-3],[2,-3],[2,-2],[2,-1],[1,-3],[0,-2],[-1,-2]],[[3046,327],[-6,-1],[-12,1],[-12,2],[-3,1],[-5,3],[-1,2],[-1,2],[0,3],[3,12],[6,7],[5,4],[18,10],[2,1],[16,4],[6,2],[10,5],[53,20],[13,2],[5,-2],[3,-2],[-2,-2],[-7,-5],[-3,-4],[-9,-6],[-19,-12],[-13,-8],[-17,-12],[-4,-4],[-8,-9],[1,-5],[-2,-6],[-11,-3],[-6,0]],[[9656,418],[-4,-5],[-4,-2],[-12,2],[-8,-4],[-10,-1],[-4,2],[-2,3],[-2,5],[1,2],[2,1],[13,-4],[5,-3],[3,0],[8,4],[6,5],[2,3],[2,1],[2,-2],[2,-6],[0,-1]],[[3743,378],[4,0],[15,0],[14,0],[9,0],[3,-2],[2,-3],[3,-6],[2,-5],[3,-5],[1,-8],[3,-3],[4,-7],[1,-6],[-2,-14],[-2,-5],[-5,-5],[-7,0],[-2,0],[-3,-1],[-1,-1],[-1,-1],[8,-4],[0,-2],[1,-2],[-1,-1],[-1,-1],[-158,-26],[-6,-2],[-6,-3],[-2,-2],[-2,-2],[-122,-5],[-1,0],[-1,1],[-3,6],[-1,8],[1,3],[6,3],[2,2],[11,12],[5,5],[2,5],[2,0],[5,-3],[3,-1],[7,1],[6,4],[3,2],[3,-1],[1,-3],[1,-1],[16,9],[15,10],[14,12],[8,7],[1,1],[2,3],[-1,3],[-2,3],[-1,1],[-1,0],[-8,2],[3,3],[2,4],[1,4],[1,5],[-1,2],[1,2],[3,1],[2,3],[2,3],[-3,1],[-1,2],[3,5],[2,5],[2,3],[5,6],[17,14],[6,7],[1,3],[39,13],[6,1],[12,1],[6,1],[16,-1],[7,-2],[13,-3],[19,-6],[7,-3],[7,-3],[7,-5],[6,-5],[2,-2],[0,-3],[1,-3],[-1,-3],[-1,-5],[-3,-4],[-31,-4],[-4,-2],[-3,-3],[-1,-3],[3,-1]],[[855,465],[8,-3],[-14,1],[-6,4],[4,2],[4,0],[3,-2],[1,-2]],[[822,463],[-2,0],[-24,5],[-5,1],[8,3],[6,0],[14,-7],[4,0],[-1,-2]],[[9640,466],[11,-4],[27,0],[23,-4],[2,-4],[-6,-2],[-10,-5],[-7,-2],[-5,0],[-12,2],[-14,0],[-3,-3],[-7,-4],[-9,-5],[-2,4],[-3,5],[-8,9],[-1,1],[5,2],[2,3],[5,4],[-1,2],[-4,3],[-1,2],[2,4],[6,2],[8,-2],[3,-5],[-1,-2],[0,-1]],[[872,485],[-11,-1],[-7,2],[-1,4],[1,1],[15,-2],[6,-1],[2,-1],[-1,-2],[-4,0]],[[855,478],[-2,-1],[-12,1],[-3,1],[-1,0],[-17,2],[-7,4],[-2,1],[3,2],[6,2],[2,1],[15,2],[2,-1],[1,-2],[7,-5],[2,-3],[0,-1],[4,-1],[2,-2]],[[927,488],[-10,-3],[-3,1],[1,3],[-1,3],[-1,1],[1,2],[6,0],[18,-3],[2,-4],[-13,0]],[[852,502],[11,-1],[7,1],[8,-2],[2,-1],[-2,-2],[-8,0],[-4,-2],[-5,-1],[-7,2],[-6,4],[4,2]],[[827,499],[-12,-1],[-5,1],[-1,2],[1,1],[18,2],[2,-2],[1,-1],[-4,-2]],[[900,506],[0,-1],[-4,1],[-6,3],[-1,1],[3,1],[3,-1],[4,-2],[1,-2]],[[922,507],[-3,-5],[-9,3],[-3,3],[2,4],[4,1],[5,-1],[2,-1],[2,-4]],[[925,530],[-5,-1],[-8,4],[-5,3],[-2,2],[0,1],[0,1],[2,1],[11,-2],[7,-9]],[[9526,570],[-5,-7],[-4,0],[-2,1],[4,4],[3,2],[3,1],[1,-1]],[[966,562],[-4,-1],[-5,2],[-14,5],[-3,2],[2,2],[5,2],[4,-1],[10,-4],[2,-3],[2,-3],[1,-1]],[[9554,614],[-4,0],[-2,1],[-1,5],[0,1],[8,5],[5,1],[-3,-7],[-1,-2],[-2,-4]],[[1322,637],[-4,-4],[-9,3],[1,2],[8,2],[5,-1],[-1,-2]],[[1359,628],[-3,-1],[-12,3],[-6,1],[-3,2],[-2,1],[-1,2],[-3,2],[6,4],[5,2],[4,-1],[1,-2],[9,-2],[7,-1],[1,-2],[0,-4],[-3,-4]],[[1462,626],[-4,-1],[-9,4],[-2,2],[-3,3],[-2,1],[-1,9],[2,1],[5,-2],[11,-4],[7,-1],[2,-3],[-2,-6],[-4,-3]],[[1757,653],[-14,-1],[-3,1],[-1,3],[0,2],[28,13],[5,-2],[1,-1],[-8,-6],[-4,-2],[0,-1],[2,-1],[0,-1],[-1,-1],[-5,-3]],[[1679,656],[-6,0],[-2,0],[-1,1],[-1,1],[3,3],[3,2],[1,1],[-4,10],[4,0],[4,2],[8,0],[7,-2],[2,-1],[1,-3],[-3,-5],[-2,-2],[-11,-5],[-3,-2]],[[1651,677],[5,-5],[2,-4],[1,-4],[-20,-10],[-1,-1],[-1,-5],[1,-2],[1,0],[0,-2],[-2,-1],[-34,-4],[-16,4],[-2,2],[-1,4],[2,1],[4,0],[-1,2],[-2,3],[-1,2],[5,6],[3,2],[-9,6],[-2,1],[-1,1],[-4,-1],[-4,0],[1,3],[1,3],[4,4],[3,0],[3,0],[13,0],[13,-2],[13,-1],[21,-1],[5,-1]],[[4427,670],[-1,-13],[0,-3],[1,-3],[5,-7],[1,-5],[-1,-2],[-2,-3],[-6,1],[-3,1],[0,1],[-4,13],[-2,3],[-3,2],[-13,3],[-12,-1],[3,3],[18,4],[5,3],[3,3],[1,5],[3,7],[5,3],[3,1],[2,-6],[0,-5],[-3,-5]],[[9717,686],[-4,-1],[-5,4],[-1,1],[5,7],[-1,3],[1,2],[2,1],[1,0],[3,-8],[2,-3],[-3,-3],[0,-3]],[[1491,705],[7,-1],[3,-3],[3,-2],[3,-1],[3,-3],[2,-5],[2,-1],[5,-3],[1,-3],[0,-2],[-9,-1],[-3,1],[-3,-1],[-1,-2],[0,-2],[1,-1],[4,-1],[3,0],[7,1],[2,0],[4,-2],[3,0],[8,5],[2,1],[2,-1],[12,-5],[2,-3],[-1,-1],[-2,-3],[1,-1],[5,-2],[3,-3],[1,-2],[0,-2],[-1,-3],[0,-3],[-3,-2],[-1,0],[-6,2],[-19,1],[-6,1],[-9,7],[-4,0],[-3,2],[-6,5],[-10,3],[-6,5],[0,4],[-1,3],[-1,1],[-1,1],[-4,1],[-3,-1],[-2,-1],[-3,-3],[-3,0],[-3,0],[0,1],[0,8],[-3,1],[-2,3],[-1,4],[1,4],[4,4],[4,1],[4,-1],[4,1],[6,1],[8,-1]],[[2948,701],[-3,-1],[-2,1],[-3,3],[0,2],[2,1],[1,2],[6,7],[4,0],[4,-1],[-4,-6],[-1,-4],[-4,-4]],[[2096,712],[-3,-2],[-7,0],[-4,5],[-2,6],[-1,2],[2,1],[3,2],[12,-14]],[[2934,716],[-4,-7],[0,-1],[-4,-2],[1,-2],[1,-1],[1,-3],[2,-3],[3,-2],[-2,-6],[-4,-3],[-37,17],[-2,2],[-2,2],[-1,3],[0,3],[1,3],[1,1],[3,2],[4,0],[7,-3],[1,0],[2,3],[4,0],[1,3],[-6,1],[-4,2],[-3,3],[-1,1],[10,4],[25,-4],[4,-2],[1,-2],[2,-3],[-4,-6]],[[2394,727],[-4,0],[-4,2],[0,2],[1,2],[2,0],[5,-4],[1,-1],[-1,-1]],[[2468,711],[-6,-1],[-4,1],[1,13],[3,4],[-1,2],[-4,7],[-4,8],[2,1],[9,3],[9,0],[4,-4],[2,-4],[-1,-3],[-3,-5],[3,-2],[1,-4],[-1,-4],[-3,-6],[-3,-3],[-4,-3]],[[2360,742],[-5,0],[-2,1],[2,3],[13,5],[5,3],[1,-1],[0,-1],[3,-5],[0,-2],[-17,-3]],[[4552,741],[-2,-1],[-4,0],[-3,3],[-2,4],[0,3],[1,3],[3,1],[2,-1],[3,-7],[2,-5]],[[6901,764],[-1,0],[0,2],[4,4],[3,5],[1,1],[4,-4],[-1,-4],[-4,-3],[-6,-1]],[[4652,771],[-2,-1],[-4,0],[-4,3],[-2,3],[-1,2],[2,3],[1,0],[2,0],[5,-4],[2,-4],[1,-2]],[[6941,786],[-3,-7],[-1,0],[-2,4],[1,3],[2,2],[3,-1],[0,-1]],[[2275,787],[-2,-7],[0,-6],[7,1],[3,11],[6,2],[3,-7],[-3,-5],[2,-3],[2,-3],[3,0],[3,4],[1,2],[1,3],[2,6],[6,5],[13,1],[8,-3],[-5,-9],[-12,-5],[-7,-6],[2,-1],[3,-1],[2,0],[7,3],[16,5],[6,4],[2,-1],[0,-6],[2,-4],[-1,-10],[-7,-2],[-7,0],[2,-5],[-1,-1],[0,-2],[-18,2],[-3,-1],[-3,-1],[-3,0],[-7,4],[-3,0],[-6,-2],[-7,-1],[-9,1],[-7,0],[-6,3],[-7,1],[-7,1],[-8,3],[-7,2],[-9,4],[-3,1],[-2,1],[-5,0],[-34,6],[-6,0],[-3,-1],[-3,1],[-7,2],[-1,4],[0,3],[2,1],[3,1],[48,7],[5,2],[4,0],[2,-6],[5,-6],[1,0],[1,1],[5,5],[9,-2],[4,2],[4,5],[9,5],[7,-1],[5,-2],[3,-5]],[[4917,828],[-3,-1],[-3,0],[-3,2],[-3,3],[0,2],[0,2],[0,1],[4,1],[1,-2],[1,-1],[6,-7]],[[3318,838],[-3,-1],[-4,1],[-3,2],[-1,3],[1,2],[3,1],[5,-1],[2,-2],[1,-2],[-1,-3]],[[4929,854],[3,-1],[5,0],[4,-2],[0,-2],[-3,-2],[-2,-6],[-2,-3],[-7,-6],[-5,-1],[-1,3],[0,3],[1,3],[0,2],[-5,2],[0,4],[-1,2],[-13,6],[-3,2],[1,1],[14,1],[8,-1],[6,-5]],[[2952,862],[5,-5],[-4,-4],[-15,-8],[-8,-3],[-8,-2],[-38,-7],[-3,0],[-3,1],[-1,1],[-3,6],[1,3],[3,3],[4,2],[6,1],[23,4],[2,1],[2,3],[0,3],[1,3],[2,1],[1,0],[3,-2],[6,-10],[2,1],[1,3],[0,8],[2,1],[5,-2],[3,-3],[0,5],[2,1],[2,0],[2,-1],[5,-4]],[[3312,858],[-2,0],[-2,1],[-2,4],[0,1],[1,4],[1,1],[10,1],[2,-2],[1,-4],[-2,-2],[-7,-4]],[[4836,867],[-7,-3],[-1,1],[-3,2],[-4,6],[5,1],[5,2],[3,-1],[0,-1],[2,-7]],[[5084,865],[-10,-2],[-2,2],[-1,3],[2,2],[12,7],[3,0],[1,-1],[1,-3],[-1,-4],[-1,-2],[-4,-2]],[[4908,868],[-4,0],[-1,2],[-1,1],[6,9],[3,2],[7,1],[4,0],[2,-2],[1,-3],[0,-5],[-2,-3],[-15,-2]],[[3008,884],[1,-2],[6,2],[3,-2],[0,-1],[-3,-4],[-3,-3],[-4,0],[-2,7],[-1,2],[3,1]],[[6999,862],[-2,0],[-2,1],[-3,4],[-2,3],[-1,4],[0,6],[2,3],[3,1],[1,-3],[0,-3],[1,-2],[3,-3],[2,-3],[0,-1],[1,-3],[-1,-2],[-2,-2]],[[5125,872],[-4,-2],[-5,3],[-2,2],[-1,6],[0,2],[1,1],[4,2],[6,-1],[3,-2],[1,-5],[-1,-4],[-2,-2]],[[5745,877],[-1,-2],[-5,1],[-4,-3],[-3,1],[-10,4],[-1,5],[-1,1],[1,4],[9,8],[3,0],[5,-1],[3,-2],[1,-4],[4,-9],[-1,-3]],[[5036,885],[-3,-8],[-1,1],[-2,4],[-3,5],[-1,3],[0,4],[2,3],[8,2],[3,-1],[1,-6],[-4,-7]],[[3301,901],[-4,0],[-2,2],[-1,1],[0,2],[2,2],[5,-1],[1,-4],[-1,-2]],[[2917,916],[5,-1],[7,-7],[2,-3],[1,-2],[-1,-1],[-3,-2],[-3,-8],[-4,-3],[-12,2],[-13,3],[-1,1],[-1,3],[0,3],[1,4],[2,2],[10,2],[1,2],[1,4],[2,1],[2,-1],[4,1]],[[5450,900],[-2,-4],[-8,5],[-5,2],[-2,1],[-1,3],[0,1],[1,2],[3,3],[5,3],[10,1],[9,-1],[1,-1],[-8,-6],[-3,-9]],[[3000,918],[-6,-3],[-4,2],[-12,4],[-5,7],[1,3],[2,3],[4,1],[7,-3],[4,-2],[9,-12]],[[3278,916],[-3,0],[-2,5],[-2,9],[-7,12],[-2,7],[1,1],[2,1],[6,-2],[3,-3],[4,-5],[5,-4],[0,-4],[0,-4],[-3,-1],[0,-4],[-2,-6],[0,-2]],[[3054,948],[-1,-7],[5,2],[1,0],[4,-3],[8,-15],[2,-5],[4,-15],[3,-10],[11,-19],[4,-10],[3,-6],[0,-8],[3,-3],[1,-3],[1,-11],[1,-13],[0,-24],[0,-6],[-4,-9],[-2,-7],[-2,-4],[-3,-3],[-14,-13],[-2,-6],[-24,-6],[-13,-2],[-5,3],[-5,0],[-7,-1],[-19,0],[-15,-2],[-1,0],[-2,3],[-1,2],[-4,-1],[-3,1],[-3,2],[-3,4],[-2,2],[0,2],[6,6],[3,2],[4,0],[6,-1],[7,-2],[15,-2],[20,0],[6,0],[6,2],[7,6],[-3,2],[-4,2],[-3,0],[-3,-1],[-8,-3],[-6,-2],[-7,-1],[-7,2],[-6,5],[0,2],[22,5],[2,0],[3,3],[2,3],[0,2],[-14,4],[-3,0],[-3,-1],[-7,2],[-7,5],[-5,6],[-3,0],[-2,-2],[-14,-15],[-1,0],[-6,1],[-6,3],[-7,1],[-4,-1],[-1,-1],[4,-3],[3,-3],[1,-3],[-10,-8],[-3,-1],[-4,1],[-2,1],[-3,4],[-3,1],[-6,-1],[-4,1],[-3,2],[-3,2],[-3,2],[-4,3],[-2,2],[-1,3],[0,3],[1,1],[0,2],[0,2],[0,3],[1,1],[6,4],[6,1],[6,-5],[5,-1],[2,0],[1,1],[0,2],[-2,5],[0,3],[2,2],[2,1],[2,1],[1,0],[4,-2],[3,-1],[6,-5],[5,-3],[2,-1],[1,2],[1,1],[-6,5],[0,3],[0,3],[4,1],[2,1],[10,-3],[6,-1],[5,0],[12,3],[-6,3],[-13,4],[-3,2],[-2,3],[10,3],[10,0],[18,-4],[5,2],[6,6],[3,2],[13,-1],[10,3],[1,0],[2,-1],[10,-10],[1,0],[1,2],[0,4],[0,3],[0,4],[-1,2],[-2,0],[-2,-1],[-2,1],[-3,2],[-3,0],[-10,2],[-7,1],[-4,2],[-3,3],[-1,3],[4,7],[14,8],[6,3],[7,0],[3,0],[8,-4],[1,1],[1,0],[-8,6],[-6,4],[-3,3],[-3,2],[-11,1],[-5,-3],[-3,-1],[-3,0],[-16,8],[-1,1],[-2,3],[-1,2],[-1,3],[0,4],[1,2],[2,10],[2,7],[-1,6],[-3,3],[-3,3],[-4,3],[0,3],[-1,3],[0,3],[1,4],[1,3],[2,2],[3,2],[14,4],[27,5],[3,-3],[4,-5],[1,-2],[2,-11],[0,-3]],[[2485,971],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3315,973],[-1,-2],[-4,1],[-2,1],[-3,3],[2,2],[3,0],[3,-2],[2,-3]],[[3129,1032],[-6,-1],[-4,1],[0,5],[-1,0],[0,2],[5,3],[4,1],[5,-1],[2,-1],[0,-2],[-3,-3],[-1,-2],[-1,-2]],[[9578,1046],[-3,-2],[-1,1],[-2,3],[2,6],[-1,7],[1,1],[4,-4],[0,-2],[2,-3],[0,-2],[-2,-3],[0,-2]],[[3129,1084],[-2,-1],[-3,1],[-2,1],[3,4],[-1,3],[3,1],[2,-1],[2,-3],[0,-2],[-2,-3]],[[7383,1080],[-5,-1],[0,1],[0,1],[-8,5],[-1,5],[1,3],[6,0],[7,-3],[3,-7],[-3,-4]],[[6348,1090],[-5,-1],[-2,1],[0,1],[0,1],[0,2],[2,1],[7,0],[4,-1],[1,-3],[-1,0],[-6,-1]],[[9535,1088],[0,-3],[-2,1],[-2,2],[-2,7],[2,1],[2,-1],[1,-4],[1,-1],[0,-2]],[[7403,1091],[-3,-1],[-2,0],[-3,4],[1,2],[3,1],[4,-1],[1,-1],[2,-1],[-3,-3]],[[3111,1050],[-3,-4],[-2,-1],[-2,1],[-2,0],[-2,-1],[-1,-6],[-2,-3],[-2,-2],[-1,1],[-2,0],[-2,-1],[-2,-1],[-2,1],[-2,3],[-4,5],[0,1],[-1,4],[0,4],[2,3],[7,10],[2,4],[3,6],[2,4],[4,8],[2,3],[12,9],[3,2],[3,-1],[1,-4],[-2,-2],[-5,-6],[-1,-8],[0,-3],[0,-1],[2,-1],[2,-1],[1,-3],[2,-1],[-4,-4],[-3,-2],[-2,-3],[-4,-3],[-2,-1],[3,-1],[4,-2],[1,-2],[-1,-1]],[[7369,1101],[-2,-2],[-3,0],[-1,2],[-1,1],[2,4],[1,0],[1,-2],[3,-3]],[[7745,1109],[-3,-1],[-2,2],[-2,3],[0,1],[4,1],[6,-3],[-3,-3]],[[9516,1109],[-1,-3],[-2,0],[-6,7],[1,3],[-1,3],[0,2],[1,1],[7,-11],[1,-2]],[[7784,1124],[-3,-1],[-2,2],[0,1],[3,3],[3,1],[0,-4],[-1,-2]],[[3150,1125],[-6,-7],[-1,1],[-1,1],[0,1],[2,2],[1,7],[4,3],[1,-1],[-1,-3],[1,-3],[0,-1]],[[7683,1135],[3,-2],[6,0],[2,-2],[0,-2],[0,-2],[-2,-2],[-15,-1],[-3,2],[3,6],[3,2],[3,1]],[[7572,1148],[-4,-1],[-4,1],[-2,3],[0,1],[1,2],[6,1],[3,-2],[1,-2],[0,-1],[-1,-2]],[[3171,1146],[-6,-2],[-4,1],[0,2],[1,3],[3,2],[-1,5],[2,2],[1,3],[4,3],[5,-1],[0,-5],[0,-2],[-4,-1],[0,-1],[-1,-3],[0,-4],[0,-2]],[[7804,1156],[-12,-1],[-1,1],[-4,0],[-2,2],[0,2],[1,5],[2,4],[4,3],[2,1],[8,1],[5,-2],[4,-4],[1,-3],[-1,-2],[-7,-7]],[[7871,1170],[-1,-2],[-5,1],[-1,1],[0,6],[-1,2],[-1,1],[-8,3],[0,4],[1,2],[2,0],[7,-3],[2,-3],[-1,-4],[0,-1],[3,-3],[3,-3],[0,-1]],[[3241,1204],[-5,-2],[-2,0],[3,6],[2,0],[5,4],[1,0],[-2,-3],[-2,-5]],[[3410,1222],[-3,0],[-3,1],[0,3],[0,2],[2,1],[2,1],[8,5],[3,1],[-1,-3],[0,-3],[-1,-2],[-7,-6]],[[3245,1228],[-3,-7],[4,0],[3,3],[3,1],[2,-3],[-5,-3],[-5,-4],[-2,-2],[-2,-1],[-3,0],[-3,0],[-2,-4],[-3,-2],[-1,2],[-1,1],[-5,1],[-3,2],[-2,1],[-3,1],[2,4],[1,3],[9,4],[-1,2],[-1,1],[7,2],[0,3],[0,2],[2,2],[2,2],[1,1],[4,0],[3,-4],[-1,-3],[3,-5]],[[3268,1230],[-2,-2],[-1,-1],[-2,1],[-2,-3],[-4,1],[-1,1],[1,0],[0,2],[3,3],[3,8],[1,3],[-3,4],[-1,2],[1,2],[1,2],[3,2],[3,0],[2,-2],[0,-3],[6,-3],[-1,-5],[-2,-4],[-1,-4],[-3,-2],[-1,-2]],[[3279,1251],[-3,0],[1,3],[2,2],[4,1],[-2,-3],[-1,-2],[-1,-1]],[[3393,1252],[1,-1],[1,1],[1,1],[1,2],[3,2],[3,1],[-1,-3],[7,-5],[0,-4],[1,-4],[-3,-1],[-2,-3],[2,-1],[1,-3],[-2,-1],[-6,2],[-3,-1],[1,3],[-1,1],[-4,0],[-1,-6],[-1,-1],[-1,1],[1,4],[-2,0],[-1,0],[-4,-2],[-1,-1],[-3,4],[8,4],[-3,2],[-1,3],[0,4],[-2,-1],[-3,-1],[-1,-1],[-2,2],[1,2],[2,5],[2,4],[4,3],[2,1],[2,1],[2,2],[2,0],[2,-4],[0,-2],[-2,-3],[0,-6]],[[3406,1267],[0,-1],[6,0],[1,-1],[-3,-2],[-1,0],[-2,0],[-8,1],[-2,2],[7,2],[2,-1]],[[3315,1263],[-4,-2],[-2,1],[-3,2],[5,1],[0,7],[2,3],[4,-2],[-2,-3],[-1,-3],[1,-3],[0,-1]],[[3448,1283],[-3,-3],[-6,4],[-1,3],[0,2],[10,2],[3,-1],[1,-5],[-4,-2]],[[3416,1293],[2,-8],[4,-4],[-1,-4],[-4,1],[-4,-1],[-1,4],[2,3],[-2,2],[-4,0],[-4,-2],[-4,-2],[-4,-4],[-3,-2],[-12,-7],[-7,-9],[-6,-9],[-3,-7],[-4,0],[-2,-2],[2,-2],[2,-1],[3,-1],[0,-3],[-3,0],[1,-3],[2,-3],[1,-5],[-3,0],[-5,5],[-5,0],[-3,2],[-3,4],[-2,-1],[-2,-5],[1,-5],[-2,-3],[-3,1],[0,7],[-3,1],[-3,0],[-8,-7],[-2,0],[-2,-4],[-4,-4],[-3,-3],[-7,-10],[-4,-5],[-8,-2],[-3,0],[-2,1],[-3,1],[-2,0],[-1,-3],[4,-9],[-2,-3],[-6,0],[-2,3],[-2,-3],[-2,-2],[-2,-3],[3,-8],[4,-3],[3,-1],[1,-3],[-6,-1],[-5,-6],[-2,-5],[-2,-4],[0,-4],[4,-7],[4,-5],[5,0],[6,1],[1,2],[6,0],[3,5],[2,0],[1,0],[3,-1],[2,3],[2,2],[2,-1],[6,0],[1,-3],[-1,-3],[-4,-4],[-3,2],[-3,0],[-1,-3],[3,-4],[-1,-5],[-3,-4],[-3,3],[0,4],[-4,3],[-4,1],[-2,-4],[-5,-2],[0,-5],[-2,-6],[-2,2],[-1,6],[-7,6],[-3,0],[-7,-1],[-3,0],[-2,-1],[-3,-4],[3,-4],[1,-4],[0,-3],[0,-1],[-1,-3],[3,-4],[1,-5],[-3,0],[-2,2],[-8,13],[-5,6],[-2,5],[-6,1],[-4,1],[-4,-3],[2,-2],[0,-4],[-2,-1],[-4,-6],[-2,-5],[-2,-1],[-1,-3],[7,-6],[1,-3],[1,-4],[-3,-2],[-5,-1],[-10,4],[-4,0],[-2,4],[-2,-1],[-2,-5],[-1,-5],[-2,-3],[0,-5],[2,-1],[-1,-2],[-4,-1],[-2,-2],[5,-2],[1,-1],[0,-3],[-7,-1],[-5,-1],[-3,2],[-2,-1],[-2,-3],[0,-4],[0,-5],[1,-3],[1,-1],[1,-3],[-5,-8],[0,-2],[-1,-3],[2,-3],[2,-5],[-2,-2],[-3,-5],[3,-1],[4,0],[5,0],[7,4],[2,1],[1,-1],[1,-3],[-2,-3],[-13,-7],[-2,-3],[3,-1],[7,0],[2,-3],[-1,-2],[-3,-3],[-3,-5],[3,-2],[7,-3],[13,-5],[10,-1],[-2,5],[-1,6],[7,5],[4,2],[16,3],[4,0],[4,-2],[-2,-2],[-4,1],[-6,-2],[-10,-6],[-2,-2],[1,-4],[8,-4],[3,-3],[-4,-8],[1,-5],[4,-6],[6,-7],[3,-4],[4,-3],[7,-6],[4,-6],[1,-15],[6,-12],[7,-5],[0,-5],[-2,-5],[-6,3],[-3,-3],[-1,-5],[4,-3],[6,-4],[14,0],[1,-5],[-4,-3],[-2,-3],[-3,-2],[-5,-1],[-2,-5],[3,-5],[7,2],[5,1],[6,-1],[1,-8],[7,-10],[1,-5],[-1,-4],[-4,-2],[-2,-3],[-4,-3],[-4,-2],[-8,-8],[-3,-1],[-1,-1],[6,-1],[5,0],[9,6],[4,-1],[2,-4],[2,-6],[-3,-4],[-17,-2],[-8,-3],[-9,-7],[10,-3],[8,1],[4,-1],[5,-2],[5,1],[5,3],[3,-1],[3,-1],[0,-4],[1,-7],[1,-6],[-2,-4],[-9,-2],[-7,0],[0,-8],[10,-6],[6,3],[5,-1],[0,-10],[4,-10],[4,-1],[3,5],[4,0],[1,-6],[-1,-9],[-3,-5],[-8,2],[-5,2],[-3,-4],[-6,-3],[-5,0],[-4,4],[-6,4],[-8,2],[-8,1],[3,-5],[3,-2],[2,-7],[3,-7],[6,2],[9,-5],[6,-4],[2,-6],[-3,-9],[-5,-4],[-3,-1],[-6,3],[-4,0],[-4,-1],[-1,-5],[-3,-2],[14,0],[5,-1],[3,-4],[-5,-5],[-10,0],[-4,-2],[-3,-3],[14,-2],[6,1],[9,4],[2,-4],[-3,-4],[-5,-6],[-10,-2],[-8,0],[-9,2],[-3,1],[-4,1],[0,-4],[3,-3],[6,-9],[1,-4],[-2,-5],[-5,-4],[-7,-1],[-5,3],[-4,9],[-5,3],[-5,1],[-3,-1],[0,-4],[1,-5],[-2,-4],[-4,2],[-6,-2],[-5,-2],[-5,-3],[10,-2],[6,0],[5,-5],[-2,-2],[-9,-1],[-8,-2],[-12,-6],[9,-2],[8,0],[5,0],[5,-1],[2,-3],[-3,-3],[-20,-8],[-20,-9],[-7,-3],[-8,-2],[-18,-8],[-11,-3],[-32,-6],[-49,-14],[-17,-10],[-5,-8],[-4,-1],[-9,-3],[-10,-1],[-25,-1],[-25,4],[-21,1],[-12,-2],[-38,7],[-5,0],[-6,-1],[-5,0],[-3,0],[-8,1],[-26,-3],[-3,-4],[3,-8],[10,-9],[16,-17],[8,-4],[6,-3],[10,-5],[22,0],[31,-3],[17,-4],[-1,-6],[-10,-12],[-7,-4],[-15,-8],[-21,-4],[-17,1],[-29,6],[-36,7],[-54,5],[-11,3],[-14,3],[-8,-3],[-6,-3],[-13,0],[3,-2],[54,-16],[46,-12],[5,-3],[7,-2],[-1,-7],[-2,-6],[-9,-5],[-24,0],[-29,-5],[-15,0],[-14,4],[-31,12],[-19,9],[-13,9],[-9,8],[-10,8],[0,-5],[2,-5],[5,-6],[7,-6],[1,-3],[-4,0],[-5,3],[-4,-3],[-2,-3],[2,-5],[3,-4],[9,-10],[8,-2],[11,-6],[25,-11],[5,-4],[8,-8],[1,-6],[8,-6],[5,-1],[5,0],[1,6],[0,6],[2,1],[7,2],[20,-2],[82,-1],[8,-4],[3,-5],[2,-9],[-9,-12],[-6,-5],[-10,-3],[-8,-2],[-14,-1],[-27,1],[-27,0],[21,-6],[20,-4],[28,1],[12,1],[9,2],[4,-4],[8,-8],[5,-2],[3,-3],[4,-9],[2,-5],[4,-6],[3,-5],[4,-3],[8,-2],[8,3],[16,1],[15,-4],[10,-2],[13,4],[11,5],[22,5],[4,2],[6,2],[9,-1],[4,-1],[4,-5],[5,-7],[6,-4],[7,-2],[3,-1],[13,-2],[16,2],[8,-2],[1,-4],[4,-3],[5,-1],[66,-19],[23,-4],[35,-1],[28,-1],[4,-1],[5,-3],[-11,-3],[-11,0],[-17,1],[-6,-1],[-13,1],[-6,0],[-6,1],[-9,-3],[-17,-2],[4,-3],[6,0],[12,-1],[18,0],[1,-4],[-16,-1],[-33,-1],[-4,-1],[-2,-2],[5,-1],[3,-1],[1,-4],[-3,-8],[5,-5],[4,-1],[4,0],[7,-2],[7,-3],[15,0],[17,4],[9,0],[23,3],[20,-1],[29,5],[5,0],[4,-1],[-8,-4],[-35,-12],[-13,-2],[-5,-1],[3,-6],[5,-5],[9,-7],[6,-9],[6,-2],[11,4],[2,-3],[1,-6],[-3,-5],[-4,-3],[-3,-3],[-1,-3],[4,-4],[13,-1],[16,-1],[15,0],[9,-1],[34,20],[14,9],[7,4],[6,3],[28,13],[7,3],[8,6],[14,1],[19,8],[17,7],[7,2],[5,0],[6,2],[15,-1],[11,1],[19,4],[14,3],[16,3],[17,0],[46,4],[13,-1],[15,-5],[10,0],[12,1],[9,2],[4,-5],[2,-7],[-5,-7],[-7,-4],[-2,-7],[10,-3],[11,1],[20,3],[17,4],[4,3],[7,-1],[11,4],[13,15],[17,15],[15,10],[9,11],[8,7],[8,5],[6,2],[13,1],[19,7],[28,9],[21,-4],[22,-6],[11,5],[9,1],[7,2],[8,2],[5,4],[7,4],[5,6],[27,3],[29,4],[4,1],[3,-1],[10,1],[13,3],[17,1],[9,0],[8,8],[16,2],[18,3],[7,3],[6,0],[141,7],[6,3],[13,3],[4,6],[-19,3],[-5,2],[-7,1],[-4,-1],[-16,1],[-130,9],[-3,1],[-5,6],[1,11],[-4,8],[-9,2],[-9,0],[-12,-1],[-31,-4],[-13,-1],[-33,7],[-22,8],[-15,3],[-10,5],[-10,4],[-1,10],[3,8],[18,26],[12,12],[8,1],[7,5],[7,12],[6,6],[14,7],[5,2],[22,8],[5,0],[10,-1],[11,7],[33,16],[7,6],[9,4],[27,14],[24,6],[11,2],[15,4],[16,6],[14,6],[49,11],[30,3],[21,4],[14,-2],[14,0],[13,3],[5,3],[8,6],[28,-3],[18,4],[7,0],[8,2],[-3,2],[-3,1],[-3,2],[-3,6],[3,8],[3,4],[8,4],[5,7],[4,10],[13,19],[4,2],[9,1],[7,0],[8,0],[21,-5],[4,2],[7,5],[5,7],[12,11],[3,3],[-1,5],[-18,-2],[-14,-4],[-13,2],[-2,3],[3,2],[5,1],[2,3],[-5,3],[-8,2],[-3,2],[0,5],[2,8],[4,2],[4,3],[10,11],[5,4],[17,2],[19,-4],[4,1],[5,6],[-5,10],[-4,3],[0,3],[10,-1],[10,-2],[11,0],[12,9],[19,8],[8,3],[8,2],[4,8],[7,15],[4,7],[0,5],[-1,4],[-5,-1],[-4,-1],[-10,4],[-13,6],[-4,7],[-2,7],[4,3],[4,2],[4,1],[8,-3],[9,-6],[5,-3],[5,-4],[4,0],[4,7],[4,8],[3,3],[5,3],[6,4],[-3,4],[-5,2],[-1,3],[2,3],[5,0],[6,-6],[8,-4],[5,-1],[5,-4],[7,-11],[9,-18],[4,0],[8,1],[9,1],[5,5],[1,14],[3,5],[-1,7],[-4,6],[-3,4],[0,4],[3,2],[4,1],[6,2],[10,-3],[6,0],[8,2],[8,3],[9,3],[6,-2],[3,-7],[-3,-6],[-5,-5],[-5,-6],[-2,-7],[1,-4],[4,-1],[42,1],[5,0],[8,0],[7,-2],[14,0],[11,3],[6,0],[10,-2],[7,-5],[14,1],[4,2],[4,6],[4,1],[5,-5],[1,-11],[2,-6],[6,-4],[6,4],[4,5],[10,9],[10,7],[9,5],[20,7],[10,5],[19,6],[25,3],[45,11],[14,1],[24,3],[13,3],[12,3],[8,8],[17,-6],[6,-1],[8,5],[9,12],[14,-5],[7,-8],[9,-6],[21,-11],[7,-2],[14,-2],[3,1],[7,7],[6,11],[5,4],[6,4],[7,5],[-2,3],[-4,1],[-4,2],[1,3],[12,1],[7,-11],[6,-3],[8,-3],[19,2],[16,1],[14,-3],[7,1],[6,8],[9,2],[6,-3],[4,-12],[12,-3],[27,-5],[3,1],[3,6],[2,8],[6,1],[7,4],[3,-1],[6,-4],[-2,-12],[-3,-11],[3,-9],[4,-4],[4,-1],[6,-1],[8,1],[6,0],[26,4],[3,10],[4,11],[10,14],[4,-1],[4,-2],[7,-7],[4,-3],[1,-5],[-5,-5],[1,-3],[5,-3],[15,-4],[4,1],[8,4],[7,9],[4,10],[6,-1],[6,-2],[4,-5],[0,-10],[5,-7],[5,-4],[12,-5],[13,-1],[9,-2],[15,1],[7,3],[4,0],[8,3],[9,6],[5,2],[19,6],[15,5],[15,11],[15,6],[23,3],[6,2],[9,0],[22,7],[8,4],[5,2],[5,5],[3,11],[2,6],[-1,7],[-2,8],[-4,7],[-5,11],[2,12],[4,5],[9,6],[10,1],[11,-1],[9,-1],[1,-5],[-4,-6],[-5,-6],[-3,-2],[1,-5],[6,0],[15,1],[5,-5],[10,-19],[3,-9],[4,-2],[5,1],[13,0],[9,1],[7,0],[3,0],[4,-5],[7,-5],[8,4],[5,2],[6,-1],[10,-6],[10,-13],[11,-7],[0,4],[-1,6],[4,4],[6,9],[7,10],[6,11],[2,15],[3,12],[5,6],[4,4],[8,4],[9,1],[9,8],[6,4],[13,5],[16,5],[12,13],[4,2],[6,2],[10,1],[18,4],[5,1],[9,3],[8,8],[6,2],[10,0],[9,5],[7,0],[7,2],[1,5],[-3,3],[0,5],[4,6],[3,2],[9,-1],[7,-4],[6,-1],[1,-3],[-5,-3],[-3,-6],[6,-6],[5,-3],[5,0],[8,4],[7,-3],[3,-5],[0,-8],[1,-4],[5,4],[3,8],[-1,10],[0,6],[12,10],[5,7],[-9,2],[-5,-1],[-4,3],[-3,7],[10,6],[11,0],[7,-5],[14,-9],[8,0],[8,-1],[1,3],[-3,12],[1,7],[-6,4],[-2,9],[2,10],[8,5],[9,2],[21,15],[6,3],[13,3],[16,1],[20,5],[36,-3],[9,-2],[6,-3],[6,-5],[7,-7],[11,-10],[14,-3],[4,-3],[5,-8],[-6,-6],[-4,0],[-9,3],[-6,3],[-4,-1],[4,-6],[4,-3],[1,-5],[-2,-7],[-17,-13],[10,-4],[6,3],[6,6],[5,2],[4,1],[13,1],[7,2],[6,-2],[5,-3],[8,-4],[12,-4],[14,-15],[11,2],[6,3],[17,1],[15,-7],[8,-2],[24,-2],[15,-5],[9,5],[6,2],[13,2],[6,-1],[18,-6],[32,-6],[21,-3],[19,0],[9,-2],[17,-3],[6,-2],[16,2],[8,2],[7,5],[4,-2],[2,-6],[-1,-10],[3,-7],[2,-7],[3,-6],[2,-5],[-1,-4],[-5,-4],[-6,-8],[0,-7],[3,-5],[-3,-5],[2,-8],[0,-5],[-2,-3],[-5,-2],[-8,-1],[-5,-2],[0,-6],[2,-4],[5,-2],[1,-5],[-1,-6],[-2,-6],[-4,-3],[-5,0],[-9,1],[-7,4],[-4,-4],[-3,-3],[-10,-8],[-4,-6],[-4,-5],[11,-3],[8,-6],[17,1],[5,2],[8,3],[3,-1],[3,-6],[-2,-9],[0,-7],[-9,-19],[-2,-4],[-4,-5],[-5,-4],[-4,-2],[-8,-6],[-4,-12],[-5,-9],[-8,-16],[-4,-17],[-2,-10],[-2,-10],[-7,-19],[-4,-3],[-7,-7],[2,-5],[6,-1],[7,-1],[8,-4],[12,8],[6,5],[2,10],[-2,10],[4,6],[9,8],[20,6],[5,0],[6,2],[6,7],[6,8],[9,4],[8,8],[1,5],[3,1],[10,5],[2,4],[3,3],[2,6],[1,12],[2,10],[5,12],[4,8],[4,6],[10,3],[4,4],[6,7],[3,5],[0,9],[2,8],[6,5],[8,10],[10,1],[7,5],[8,-3],[10,-5],[16,2],[7,-3],[6,3],[5,7],[2,9],[7,5],[6,0],[12,9],[12,8],[9,2],[8,6],[5,11],[6,8],[8,7],[2,14],[4,7],[9,6],[7,3],[30,11],[22,6],[24,9],[7,0],[9,4],[15,1],[4,0],[6,10],[11,8],[7,3],[9,8],[7,1],[11,-2],[8,-2],[8,0],[11,6],[18,1],[5,4],[4,2],[25,9],[9,-2],[14,2],[8,0],[7,-2],[10,0],[16,3],[7,2],[14,8],[14,2],[7,2],[8,2],[6,-3],[5,-3],[3,0],[4,-1],[10,3],[8,-1],[10,-3],[6,-3],[4,0],[6,3],[8,6],[7,2],[6,-1],[5,-3],[8,-3],[13,0],[12,1],[10,3],[8,3],[8,-4],[10,-2],[15,8],[5,-2],[4,-2],[3,-1],[4,-7],[15,2],[12,5],[11,5],[10,3],[9,4],[12,15],[0,5],[1,3],[3,1],[19,0],[6,1],[8,4],[14,-3],[13,-5],[4,1],[5,0],[9,-3],[11,-6],[9,-2],[38,-14],[22,-4],[11,-5],[3,-1],[3,-5],[6,-1],[5,2],[6,-7],[14,-6],[16,-3],[10,5],[17,12],[5,6],[-1,12],[9,14],[15,7],[19,4],[12,3],[15,3],[7,-3],[4,-2],[6,-3],[7,-8],[10,-17],[8,-7],[7,0],[6,-1],[6,-4],[9,-13],[-5,-11],[-5,-4],[-19,-5],[-9,-4],[-7,-2],[-3,-9],[4,-4],[8,2],[9,1],[8,2],[6,2],[6,5],[14,2],[9,3],[9,2],[5,4],[6,-1],[6,-3],[4,0],[13,-1],[6,3],[5,0],[5,-2],[5,-3],[6,0],[7,1],[10,4],[12,5],[12,2],[3,0],[2,-1],[-12,-6],[-18,-7],[-10,-7],[5,-3],[36,8],[16,6],[14,2],[3,2],[12,10],[4,2],[13,3],[16,4],[12,4],[9,4],[6,0],[5,-3],[6,-3],[6,1],[8,3],[5,7],[3,6],[6,2],[7,1],[6,-2],[10,-3],[7,-3],[5,-15],[14,-14],[5,-3],[12,1],[13,-5],[5,0],[5,2],[5,-1],[7,3],[7,17],[7,17],[7,7],[4,4],[5,1],[7,4],[11,1],[7,-2],[17,-1],[14,4],[15,-1],[8,5],[8,1],[11,-4],[3,-3],[6,-4],[2,-5],[1,-7],[3,-1],[11,8],[5,1],[11,12],[6,-3],[12,-5],[5,-1],[10,-9],[5,2],[5,4],[12,-1],[12,-3],[4,-3],[6,-5],[4,-2],[3,2],[24,-2],[10,-4],[8,-4],[28,-3],[11,-4],[6,2],[13,-1],[5,-4],[5,-4],[10,-4],[5,1],[8,3],[8,4],[8,0],[3,-4],[2,-9],[5,0],[7,5],[5,-1],[2,-7],[-3,-8],[-7,-12],[-3,-9],[-6,-9],[1,-5],[6,-2],[6,7],[14,4],[6,6],[12,2],[12,-2],[8,-8],[16,-12],[0,-5],[2,-5],[-1,-4],[-2,-5],[8,-5],[7,-1],[6,0],[25,-5],[12,2],[10,0],[13,1],[10,0],[7,-1],[9,2],[8,2],[3,-1],[2,-14],[0,-9],[5,-3],[4,3],[3,4],[20,-2],[7,0],[8,-2],[7,-5],[8,2],[4,3],[6,2],[1,5],[1,9],[0,9],[3,1],[4,-1],[4,-4],[11,-13],[8,-8],[3,-4],[5,-4],[10,-7],[14,-3],[13,-7],[15,1],[13,-8],[8,6],[4,1],[6,-1],[8,-6],[6,-1],[20,-9],[12,-3],[4,-6],[5,-6],[0,-7],[2,-8],[13,-6],[4,-6],[6,-8],[11,-30],[6,-5],[8,0],[7,-8],[3,1],[0,4],[-7,20],[0,11],[5,6],[13,2],[10,-12],[9,-7],[6,-1],[12,0],[11,8],[8,-3],[14,-1],[18,-4],[8,0],[14,-1],[16,-7],[10,-2],[2,-3],[4,-4],[2,-5],[3,-5],[5,-5],[6,-1],[12,-5],[24,-14],[9,-4],[5,-3],[2,4],[1,7],[4,2],[5,-11],[5,-8],[2,-8],[-5,-6],[-7,2],[-6,0],[-5,-10],[-2,-17],[5,0],[3,1],[1,-6],[-2,-5],[-4,-2],[-8,4],[-9,3],[-11,1],[-9,5],[-4,0],[-4,0],[5,-6],[5,-4],[13,-4],[15,-7],[1,-4],[-4,-4],[-4,-11],[-15,-9],[-8,7],[-10,1],[-5,-3],[-9,0],[-20,-1],[-7,8],[-12,4],[0,-4],[10,-13],[11,-3],[11,-4],[3,-3],[-5,-3],[-7,0],[-8,-6],[-16,1],[-7,0],[-5,-3],[-4,-1],[3,-2],[4,-6],[-5,-5],[-5,-3],[-5,1],[-6,-2],[-3,6],[0,12],[-3,12],[-3,0],[-6,-1],[-2,-10],[4,-16],[3,-6],[-2,-4],[-4,-2],[7,-14],[7,-9],[3,-3],[1,-5],[-3,-2],[-9,2],[-4,-1],[-4,0],[-8,2],[-7,1],[-6,-3],[-6,1],[-5,8],[-4,2],[-4,-2],[-3,-11],[-5,-3],[-6,-5],[-4,-5],[-2,-20],[-4,-4],[-5,0],[-4,-2],[-4,2],[-7,1],[-21,-7],[3,-4],[6,1],[18,-1],[8,-4],[2,-9],[3,-4],[6,-4],[5,-2],[2,-3],[-2,-7],[-3,-5],[-6,-7],[2,-3],[6,-1],[3,-14],[-4,-6],[2,-5],[0,-6],[-4,-5],[-3,-2],[-1,-5],[6,-3],[5,-1],[6,-1],[5,-5],[6,-9],[4,-7],[0,-11],[4,-7],[8,-5],[0,-4],[5,-2],[5,0],[2,-4],[-1,-5],[-9,-7],[-4,-4],[9,-1],[9,-5],[12,6],[6,5],[4,6],[3,-2],[0,-5],[4,-9],[15,-9],[8,-2],[8,-2],[8,0],[2,-5],[-3,-5],[-5,1],[-9,-1],[-7,4],[-5,3],[-41,-2],[-9,-1],[-11,-5],[-11,-3],[-17,-5],[-7,-3],[-19,12],[-6,9],[-2,0],[-5,-2],[0,-6],[9,-14],[4,-3],[0,-4],[-3,-2],[-3,0],[-6,3],[-9,2],[-9,-4],[-11,-9],[2,-6],[3,-3],[-1,-4],[-12,-8],[-4,0],[-2,-2],[3,-3],[6,0],[1,-3],[-2,-3],[-11,-3],[1,-4],[6,-2],[7,1],[5,-3],[0,-5],[-5,-3],[-6,-2],[-39,-12],[-5,-3],[0,-5],[14,-1],[41,1],[2,-1],[-1,-3],[-2,-5],[2,-3],[6,-2],[1,-4],[-4,-1],[-6,-2],[-6,0],[0,-4],[9,-3],[3,0],[1,-12],[-1,-5],[-5,-3],[-1,-2],[0,-4],[12,-3],[18,-13],[5,0],[7,-2],[12,-7],[4,-4],[7,-2],[1,-3],[4,-3],[17,-9],[2,-4],[-35,-8],[-35,-5],[3,-5],[38,1],[10,-4],[5,1],[2,4],[21,4],[20,2],[7,-2],[28,-14],[13,-6],[8,-2],[6,0],[4,-2],[4,-5],[-1,-4],[2,-2],[3,-1],[6,-3],[6,1],[7,3],[5,0],[10,-5],[-4,-4],[-2,-1],[-2,-4],[-3,-1],[-7,-1],[-4,0],[-4,1],[-1,-2],[5,-3],[8,-3],[48,-2],[13,-5],[14,3],[6,-1],[5,-1],[2,-5],[7,-2],[10,-3],[15,-2],[12,0],[15,-5],[7,0],[4,-3],[33,-2],[5,-2],[4,-4],[8,-1],[8,-1],[47,-6],[17,-3],[4,0],[4,0],[13,-3],[12,-2],[6,-3],[-9943,-4],[9,-1],[9,-3],[21,0],[19,-1],[5,-4],[7,-2],[13,2],[11,1],[9,0],[82,-5],[85,-8],[17,-3],[15,-6],[17,1],[95,-5],[15,0],[59,-5],[102,-12],[9,0],[10,0],[-5,7],[-10,5],[-13,5],[9,1],[18,0],[-4,3],[-10,2],[-36,2],[-147,14],[-3,1],[-2,1],[-4,2],[-6,1],[-22,1],[-6,1],[-3,2],[1,1],[2,-1],[34,2],[4,1],[0,2],[-2,0],[-5,1],[-14,5],[-5,2],[3,4],[2,1],[11,1],[3,3],[-2,4],[-24,8],[-16,3],[-11,-2],[-20,0],[-25,-1],[-7,1],[-7,3],[-8,6],[-5,2],[-8,5],[-10,4],[-56,12],[-10,3],[-70,18],[-3,3],[-2,3],[32,-7],[7,0],[7,2],[5,-1],[8,2],[8,1],[22,-6],[44,-9],[12,-3],[6,-2],[6,-1],[5,-2],[6,1],[4,-1],[9,1],[42,1],[16,-1],[20,-4],[8,-8],[5,-3],[11,3],[9,3],[17,2],[6,-1],[9,-3],[10,-7],[45,2],[19,0],[13,-3],[48,9],[8,2],[11,7],[-9,2],[-7,1],[-2,3],[4,2],[14,1],[28,3],[16,3],[8,7],[37,11],[12,5],[11,8],[-25,17],[-23,14],[8,4],[7,3],[3,3],[3,4],[-7,4],[-7,4],[-12,3],[-44,8],[-15,3],[6,6],[8,4],[17,1],[108,7],[108,7],[3,4],[-14,5],[-13,1],[-4,1],[-2,3],[0,4],[-1,0],[-5,1],[-19,4],[-5,2],[-6,4],[-2,4],[4,8],[6,4],[11,2],[7,0],[23,0],[8,1],[4,1],[-1,4],[-2,2],[0,3],[4,1],[4,0],[1,3],[-2,5],[-7,2],[-17,5],[-40,6],[-16,6],[-9,4],[-7,4],[-8,2],[-5,3],[1,2],[-2,5],[-3,1],[-13,-2],[-22,1],[-28,4],[-19,5],[-26,13],[-9,6],[7,5],[8,3],[33,6],[5,3],[7,6],[-11,2],[-10,0],[-8,2],[-34,0],[-20,-1],[-16,8],[-12,7],[-3,4],[-3,6],[4,10],[4,7],[-1,8],[1,12],[6,4],[4,1],[11,-9],[9,-1],[13,2],[8,4],[5,2],[8,0],[15,-2],[8,1],[8,0],[25,-6],[5,-3],[3,-2],[1,-3],[3,-3],[11,-2],[30,2],[8,-1],[21,-9],[18,-9],[6,-2],[10,-2],[4,1],[3,4],[10,4],[21,6],[5,5],[-2,3],[-9,3],[-5,1],[-3,3],[0,5],[2,5],[6,1],[10,-6],[13,-6],[5,-1],[3,0],[7,2],[8,2],[15,-13],[8,-1],[11,0],[2,2],[-1,4],[-2,3],[-2,1],[0,3],[4,3],[4,1],[-2,3],[-5,3],[-3,1],[-3,1],[1,3],[4,1],[5,3],[-2,4],[0,5],[-2,3],[-11,6],[-17,8],[-16,5],[-35,-4],[-12,2],[-8,3],[-9,3],[10,3],[11,2],[3,2],[4,5],[5,3],[4,0],[13,-1],[29,-11],[6,-1],[20,-6],[5,0],[7,1],[-6,5],[-6,4],[-14,10],[1,4],[10,8],[24,1],[11,2],[14,6],[18,10],[15,2],[19,3],[7,-3],[16,-9],[10,-3],[4,-1],[4,1],[-10,11],[6,2],[8,1],[7,3],[5,3],[17,11],[15,3],[42,5],[15,-4],[12,-1],[3,2],[2,6],[7,11],[5,5],[19,4],[14,0],[11,-5],[9,-3],[9,-2],[9,1],[14,2],[17,1],[9,2],[9,-3],[24,-1],[18,-4],[12,0],[15,4],[8,0],[30,6],[24,2],[17,-3],[29,2],[29,-2],[11,-2],[66,2],[51,5],[8,2],[11,6],[6,6],[4,2],[9,0],[14,-1],[21,-4],[18,2],[33,-3],[3,2],[4,11],[5,17],[5,5],[8,-2],[23,-9],[0,-4],[-2,-3],[-4,-1],[-1,-9],[3,-2],[5,1],[4,-4],[-8,-6],[-5,-4],[-3,-1],[-2,-12],[-4,-4],[0,-4],[5,0],[5,2],[4,0],[14,3],[26,4],[8,2],[5,0],[3,3],[-4,5],[-1,5],[2,4],[-1,7],[-2,7],[5,5],[5,-1],[7,1],[5,-3],[7,-2],[6,-1],[7,-5],[2,-10],[-2,-10],[-7,-8],[-12,-6],[-13,-11],[3,-5],[7,1],[31,0],[19,1],[13,-1],[16,-3],[12,-4],[15,-1],[9,1],[9,-2],[34,9],[14,5],[8,-2],[12,2],[8,-2],[13,3],[8,0],[10,-1],[30,-1],[2,-5],[9,-9],[7,-3],[9,1],[7,3],[11,-1],[15,3],[15,-1],[7,1],[3,2],[2,6],[-5,2],[-13,4],[-12,8],[-6,1],[-9,-1],[-4,2],[-4,2],[6,3],[7,10],[-3,8],[-4,2],[-8,0],[-9,-3],[-4,2],[-7,1],[-2,8],[-7,15],[-4,5],[-10,4],[-10,1],[-9,3],[-3,6],[2,8],[11,2],[10,-1],[6,-2],[7,0],[8,-2],[5,-2],[4,-2],[7,0],[26,3],[4,1],[3,3],[5,1],[5,-1],[8,2],[-9,2],[-9,5],[-14,5],[-11,3],[-21,2],[-11,0],[-6,1],[-24,-1],[-7,2],[-4,6],[-7,14],[-2,8],[5,3],[3,3],[7,0],[10,-1],[3,-2],[3,-4],[-3,-5],[-3,-2],[2,-2],[11,-1],[5,-1],[4,-1],[10,3],[14,0],[7,-2],[9,-1],[12,2],[45,-1],[5,-1],[6,-4],[4,-2],[5,1],[15,-5],[7,-4],[8,-2],[7,0],[7,1],[10,3],[8,1],[6,-1],[12,-1],[10,-3],[7,1],[8,5],[24,2],[17,0],[29,-8],[7,-1],[14,5],[4,7],[0,9],[4,2],[3,-1],[6,5],[8,0],[5,-1],[3,4],[3,7],[10,1],[7,-1],[9,-5],[0,-4],[-4,-5],[-6,-11],[4,-6],[6,0],[7,-1],[9,3],[6,0],[10,-10],[7,0],[5,0],[17,9],[5,1],[6,-4],[9,-9],[8,-5],[12,-4],[9,-1],[12,-4],[6,-4],[15,0],[6,-1],[18,-8],[16,4],[8,4],[4,6],[-2,9],[-1,10],[3,4],[4,0],[19,-10],[-1,6],[-2,5],[-5,8],[1,7],[4,2],[8,-4],[10,-1],[8,-4],[15,-13],[5,-12],[11,-3],[7,1],[8,2],[11,1],[9,0],[8,2],[2,-6],[-7,-9],[-3,-6],[2,-2],[5,2],[4,1],[13,0],[10,4],[9,1],[8,4],[7,0],[5,-1],[8,-3],[7,2],[4,-1],[5,0],[30,15],[7,-1],[8,1],[11,4],[8,1],[7,0],[12,6],[19,-1],[10,3],[19,3],[13,4],[23,10],[9,6],[10,13],[6,14],[7,17],[-3,12],[-4,5],[-3,5],[-7,12],[-2,14],[1,13],[-3,13],[-3,9],[-5,16],[-7,10],[-7,14],[0,12],[-2,10],[-5,7],[-2,6],[4,1],[3,1],[9,3],[21,-4],[2,5],[6,5],[3,5],[-1,8],[-5,3],[-5,6],[2,6],[5,0],[2,6],[-2,5],[2,8],[5,9],[2,3],[-5,6],[-5,7],[2,6],[2,5],[3,9],[4,6],[3,1],[-1,2],[-6,3],[-6,0],[-10,-4],[-2,1],[0,2],[-1,4],[1,10],[2,9],[1,1],[4,1],[4,8],[4,0],[2,-2],[1,-10],[1,-2],[-1,-4],[2,-2],[2,3],[4,1],[2,-3],[1,-1],[1,2],[0,8],[-1,3],[0,5],[0,2],[1,4],[-1,8],[0,3],[4,5],[2,1],[3,0],[7,-3],[3,-1],[2,2],[1,3],[1,10],[-2,4],[0,3],[1,2],[3,7],[4,0],[4,0],[4,1],[-1,3],[-1,4],[4,2],[3,1],[8,-3],[3,-1],[3,3],[-1,4],[-3,2],[-1,3],[1,4],[5,-2],[1,1],[1,3],[-1,2],[0,2],[6,1],[1,1],[1,2],[2,1],[6,0],[1,2],[1,3],[-4,0],[-4,3],[0,9],[1,6],[3,5],[5,3],[7,-3],[6,1],[3,-3],[3,-1],[1,3],[-2,4],[-1,5],[10,6],[3,-1],[4,1],[-2,5],[2,6],[3,0],[2,-5],[3,-1],[3,1],[7,6],[3,1],[4,1],[3,3],[1,4],[2,3],[6,4],[3,3],[5,10],[-1,2],[2,2],[16,9],[8,1],[14,5],[8,6],[5,3],[4,7],[6,1],[13,5],[9,8],[14,5],[6,0],[2,-2],[2,-6]],[[3457,1304],[2,-1],[7,0],[2,0],[1,-3],[1,-5],[-2,-1],[-13,1],[-4,2],[-2,0],[-5,-3],[-2,-2],[-8,-3],[-3,1],[-1,3],[0,2],[1,1],[0,1],[0,1],[2,3],[10,4],[12,2],[2,-2],[0,-1]],[[3442,1310],[-5,-6],[-3,1],[-5,4],[-2,2],[0,1],[4,4],[9,-2],[2,0],[1,-3],[-1,-1]],[[3319,1317],[-1,-1],[-2,0],[0,-1],[1,-1],[-1,0],[-2,1],[-2,3],[1,2],[2,1],[4,-4]],[[3260,1311],[-1,-1],[1,3],[3,6],[6,3],[-1,-2],[-2,-4],[-6,-5]],[[3316,1341],[1,-1],[12,1],[4,-4],[4,0],[-10,-7],[-3,2],[-1,2],[0,3],[-7,-1],[-2,1],[-3,-2],[-6,-1],[-2,0],[-2,2],[0,3],[5,0],[4,3],[1,4],[2,-1],[3,-4]],[[3350,1348],[-4,-1],[-2,3],[-2,3],[5,0],[3,-1],[1,-3],[-1,-1]],[[3365,1356],[-6,-3],[-3,3],[-1,1],[4,3],[2,-1],[1,-1],[2,0],[1,-2]],[[3389,1379],[4,-2],[3,2],[2,-2],[1,-3],[0,-1],[-5,0],[-4,-4],[-6,1],[0,-3],[1,-2],[-2,-1],[-4,3],[-3,-1],[-2,-5],[-1,-2],[-1,0],[-1,2],[-3,0],[0,1],[-2,2],[-5,-3],[1,3],[7,7],[1,2],[7,5],[4,-1],[8,2]],[[3498,1415],[-2,0],[-1,2],[-1,2],[2,2],[2,4],[1,0],[0,-7],[-1,-3]],[[3467,1420],[-3,-2],[-2,3],[0,3],[-2,3],[1,2],[20,-3],[-1,-1],[-10,-2],[-3,-3]],[[3730,1461],[6,-1],[3,-2],[1,-3],[3,-1],[1,0],[0,-1],[1,-2],[0,-2],[-6,5],[-9,0],[-2,4],[-4,-2],[-1,1],[0,2],[1,2],[2,-1],[4,1]],[[6924,2140],[-2,0],[0,2],[0,2],[-1,3],[-1,2],[1,2],[2,0],[3,-1],[1,-3],[-2,-5],[-1,-2]],[[6921,2137],[2,0],[2,1],[6,7],[1,1],[0,-6],[2,-3],[-2,-1],[-4,1],[-1,-4],[4,-4],[2,-1],[1,0],[3,1],[3,2],[3,4],[2,1],[5,0],[2,3],[1,2],[2,-1],[2,-1],[1,-3],[1,-4],[0,-4],[-2,-3],[-2,-3],[0,-2],[-1,-2],[-1,0],[-1,1],[-2,3],[-2,2],[-4,0],[-3,-1],[0,-2],[-1,-2],[-1,-1],[-2,0],[0,-1],[1,-2],[2,-3],[3,-2],[2,-1],[1,4],[2,1],[3,-1],[1,-4],[-1,-1],[-1,-1],[0,-2],[-3,-3],[-1,0],[-5,1],[-2,3],[-1,2],[-1,0],[-2,-2],[-2,-1],[-4,2],[-3,4],[-2,1],[-4,1],[-2,-8],[-2,-3],[-4,0],[-1,1],[-1,2],[0,3],[1,3],[1,3],[0,4],[0,3],[-1,2],[1,4],[-2,3],[1,3],[2,1],[-1,2],[-1,0],[-1,2],[0,2],[0,4],[1,4],[0,5],[2,4],[2,5],[1,2],[2,0],[0,-1],[1,-3],[-1,-1],[1,-1],[1,-6],[-1,-2],[0,-2],[-2,-5],[0,-4],[4,-2]],[[6439,2296],[-2,-1],[-2,1],[-1,4],[3,2],[1,-2],[1,-2],[0,-2]],[[3285,6056],[-1,-2],[-3,1],[0,2],[0,3],[2,4],[2,-2],[1,-2],[0,-2],[0,-1],[-1,-1]],[[3284,6088],[0,-2],[-2,3],[-1,5],[0,1],[1,1],[0,-1],[2,0],[0,-2],[0,-5]],[[9412,1806],[-1,-3],[0,3],[2,12],[2,2],[-1,-6],[-2,-8]],[[9092,2476],[-1,-6],[-2,1],[-2,-1],[-2,4],[0,1],[2,-1],[1,1],[0,2],[1,0],[0,3],[1,3],[1,0],[1,-4],[0,-3]],[[9094,2485],[-1,0],[-1,1],[0,3],[-1,1],[0,1],[1,2],[0,2],[1,-3],[1,-7]],[[9113,2517],[-1,-1],[-1,0],[0,3],[0,2],[1,3],[2,-2],[1,-2],[-2,-2],[0,-1]],[[9028,2631],[3,-1],[2,2],[2,0],[2,-4],[2,-2],[1,1],[2,-1],[1,-2],[3,-3],[1,-1],[1,-2],[2,-2],[8,-5],[5,-3],[8,1],[2,2],[2,2],[1,-2],[2,-3],[0,3],[0,3],[2,3],[2,1],[3,0],[4,1],[1,1],[1,0],[2,-1],[2,-1],[1,2],[3,5],[1,2],[5,-2],[2,0],[2,6],[2,0],[5,-5],[2,-5],[0,-10],[0,-3],[1,-4],[0,-7],[-1,-7],[0,-5],[0,-5],[0,-10],[1,-7],[0,-5],[0,-2],[0,-2],[1,-2],[-1,-3],[1,-3],[-1,-3],[-1,1],[0,2],[0,2],[0,3],[-1,2],[-2,2],[1,1],[1,1],[-1,3],[-1,-2],[-1,-3],[1,-2],[-1,0],[-2,-4],[-1,-6],[-1,-5],[0,-5],[-1,-4],[-1,-4],[0,-5],[0,-10],[1,-8],[1,-12],[-1,-1],[-3,-1],[-2,-2],[-2,6],[-2,6],[2,3],[2,-2],[1,2],[0,1],[0,2],[-3,3],[-4,2],[-1,-2],[1,-6],[-1,-1],[-2,-3],[-1,9],[-3,6],[0,-3],[1,-5],[0,-2],[-1,-3],[-1,-1],[0,-3],[0,-3],[-1,-5],[-2,-3],[-5,6],[0,-2],[0,-2],[3,-3],[-2,-2],[0,-3],[-2,-8],[-2,-7],[-1,0],[-4,1],[-4,5],[-4,0],[-6,0],[-4,-2],[-1,6],[-1,2],[0,2],[4,1],[3,0],[-1,3],[0,1],[-2,-1],[-4,2],[-3,-1],[-2,3],[-3,10],[-2,5],[-1,1],[-2,1],[-1,2],[-6,22],[-1,6],[-1,13],[5,-6],[2,-4],[1,-6],[2,7],[-1,2],[-4,7],[-1,2],[0,3],[-1,-3],[-2,0],[1,5],[-1,5],[-5,12],[-3,11],[-4,13],[-1,2],[0,3],[-2,9],[-1,6],[0,6],[2,12],[0,6],[3,-3],[6,-3]],[[9117,2647],[-2,-5],[-1,3],[-1,1],[3,1],[1,0]],[[9021,2647],[-1,-5],[-1,6],[1,1],[1,2],[0,-4]],[[9119,2659],[3,-4],[1,-3],[-2,-4],[-1,0],[-1,3],[-3,-1],[-3,0],[-2,3],[-1,2],[2,1],[4,0],[3,3]],[[9110,2691],[5,-10],[3,-2],[0,-1],[0,-5],[-1,-2],[2,-2],[0,-2],[-3,-4],[-3,-1],[-1,1],[0,2],[-1,2],[-4,9],[1,3],[-1,4],[-2,-1],[-1,3],[2,2],[2,6],[2,-2]],[[8997,2670],[-1,0],[0,3],[0,5],[-1,5],[0,5],[0,5],[1,2],[1,2],[1,5],[1,0],[3,-3],[0,-9],[0,-5],[1,-5],[-1,-4],[-2,-4],[-3,-2]],[[9036,2767],[1,-3],[0,-1],[-3,2],[-4,-1],[3,4],[2,0],[1,-1]],[[9040,2775],[-4,-4],[-1,1],[0,3],[0,2],[4,0],[1,-2]],[[8821,2930],[7,-2],[2,2],[4,-1],[2,-6],[-2,-3],[-1,0],[-5,2],[-5,-2],[-1,-2],[-1,-6],[-4,-2],[-2,3],[-5,2],[-1,-3],[-4,1],[-3,-2],[-4,1],[-5,6],[-1,3],[1,4],[2,4],[12,5],[7,4],[5,-1],[2,0],[1,-3],[-1,-3],[0,-1]],[[9264,3421],[-2,-16],[-1,0],[-1,3],[0,9],[1,6],[3,-1],[0,-1]],[[9261,3429],[0,-1],[-1,5],[-1,6],[1,5],[1,1],[1,0],[-1,-10],[0,-6]],[[8143,3503],[-1,-2],[-5,18],[-1,13],[1,2],[1,1],[3,-18],[1,-4],[0,-4],[0,-1],[1,-5]],[[9251,3521],[0,-1],[-2,3],[-1,10],[1,6],[2,6],[0,3],[-1,6],[4,8],[1,3],[1,5],[-2,6],[-1,1],[1,3],[1,1],[1,1],[1,-1],[0,-10],[2,-4],[0,-5],[-6,-27],[-2,-10],[0,-4]],[[9198,3655],[1,-1],[1,-1],[0,-4],[1,-4],[1,-3],[-1,-3],[-1,-1],[-1,2],[-5,13],[1,4],[3,-2]],[[9180,3724],[-1,0],[0,1],[0,3],[0,3],[1,-1],[1,-5],[-1,-1]],[[9164,3732],[-1,-2],[-1,5],[0,4],[1,2],[1,-6],[0,-3]],[[8206,3815],[-2,-4],[-2,1],[0,2],[1,4],[3,4],[0,-3],[0,-4]],[[9139,3845],[0,-1],[-1,0],[-2,1],[1,8],[1,-4],[1,-4]],[[9136,3853],[-1,0],[0,3],[1,2],[1,1],[0,-5],[-1,-1]],[[9062,3967],[1,-6],[1,-4],[0,-3],[-1,-2],[-2,2],[-1,5],[-2,4],[-1,2],[3,0],[1,1],[1,1]],[[8873,4033],[-1,-1],[0,2],[1,3],[1,3],[2,-3],[0,-3],[-3,-1]],[[8874,4065],[-2,-5],[-1,0],[-1,-2],[-2,-2],[-1,0],[-2,-1],[-1,2],[1,5],[2,6],[1,3],[5,2],[4,2],[3,-7],[-4,-1],[-2,-2]],[[8807,4112],[-1,-3],[-1,3],[-1,3],[-1,1],[1,3],[1,4],[1,-4],[1,-5],[0,-2]],[[8793,4121],[-1,0],[-1,0],[0,3],[0,2],[2,0],[1,0],[-1,-5]],[[8801,4121],[-1,0],[0,5],[1,2],[1,-5],[-1,-2]],[[8460,4134],[-1,-1],[-1,0],[0,2],[-1,3],[1,3],[0,1],[1,0],[0,-2],[1,-3],[0,-3]],[[8477,4183],[-2,-4],[-1,3],[1,6],[1,2],[1,-1],[0,-4],[0,-2]],[[8797,4229],[1,-3],[1,1],[1,5],[1,-1],[1,-1],[0,-2],[-2,-5],[-1,-2],[-1,-8],[0,-2],[1,-3],[2,-2],[2,1],[0,-1],[0,-3],[-1,-3],[-4,1],[-3,0],[-5,2],[-3,1],[-1,1],[2,2],[1,3],[-1,7],[1,8],[3,5],[1,4],[2,3],[1,-1],[0,-2],[1,-5]],[[8783,4228],[0,-1],[-3,1],[0,2],[1,2],[0,1],[2,4],[1,-2],[1,-5],[-2,-2]],[[8786,4359],[-4,-4],[2,6],[5,5],[1,1],[0,-2],[-3,-5],[-1,-1]],[[8623,4355],[2,-2],[1,-2],[1,-2],[0,-2],[-3,-1],[-5,3],[-5,-3],[-2,0],[-1,2],[1,7],[2,-1],[2,2],[-1,7],[-1,4],[3,7],[1,1],[2,0],[1,-5],[0,-5],[1,-5],[1,-5]],[[8627,4373],[4,-1],[5,5],[2,-2],[1,0],[3,4],[2,2],[1,3],[2,-4],[3,-4],[1,-4],[2,-2],[0,-1],[-2,-4],[0,-5],[-2,1],[-3,-8],[-9,-13],[-9,11],[-4,7],[-2,11],[-1,8],[-1,5],[1,2],[1,0],[3,-6],[1,-1],[1,-4]],[[8794,4373],[-2,-4],[-1,3],[1,2],[3,9],[1,2],[1,1],[0,3],[0,5],[2,0],[-2,-10],[-3,-11]],[[8682,4377],[0,-1],[-2,9],[0,3],[-1,5],[2,0],[1,4],[0,-2],[0,-6],[1,-4],[-1,-8]],[[8976,4339],[0,-8],[-2,-5],[0,-4],[0,-4],[3,-4],[1,-2],[1,-6],[3,-8],[0,-6],[2,-7],[2,-14],[0,-12],[2,-9],[-1,-17],[1,-8],[1,-6],[2,-11],[1,-11],[2,-3],[4,-4],[4,4],[3,5],[3,2],[4,3],[3,-8],[2,-8],[8,-11],[4,-7],[3,-3],[3,-6],[0,-5],[-1,-4],[1,-6],[0,-7],[-1,-9],[3,-13],[0,-11],[3,-10],[-1,-11],[0,-4],[0,-6],[1,-8],[2,-5],[3,-6],[3,-9],[2,-2],[2,0],[0,-10],[4,-18],[2,-15],[-1,-20],[-2,-12],[1,-6],[5,-14],[3,-2],[-1,-7],[0,-10],[2,-9],[3,-6],[3,-3],[3,-3],[4,-3],[4,-1],[3,-5],[1,-3],[4,-1],[2,0],[2,2],[2,-3],[1,-3],[2,-9],[4,-8],[3,-2],[2,-4],[2,-2],[2,0],[3,-3],[5,-8],[5,-2],[2,-2],[4,-8],[2,-5],[2,-7],[-2,0],[-3,1],[-1,-6],[3,-10],[4,-6],[4,-7],[4,-10],[1,-7],[1,-3],[1,-11],[4,-6],[0,-11],[2,-15],[2,-14],[1,-4],[2,-7],[1,1],[2,2],[3,-6],[1,-3],[1,2],[-2,12],[1,8],[1,0],[2,1],[2,-6],[2,-7],[5,-5],[4,-6],[1,0],[-1,5],[1,6],[1,1],[1,-3],[3,-10],[0,-19],[0,-16],[2,-17],[3,-4],[1,-4],[3,-6],[2,-5],[2,-3],[7,-11],[3,-1],[3,0],[4,-5],[2,-5],[4,-17],[2,-6],[4,-6],[2,-2],[3,-5],[1,-6],[0,-3],[2,-7],[2,-7],[4,-5],[4,-9],[0,-15],[2,-8],[1,-3],[3,-3],[1,-2],[-3,-21],[3,-40],[-2,-12],[3,-13],[5,-21],[1,-8],[1,-9],[3,-11],[0,-18],[1,-8],[0,-11],[-4,-11],[-3,-14],[0,-13],[-2,-23],[-2,-6],[-1,-10],[-4,-24],[0,-9],[0,-11],[0,-11],[-1,-7],[-1,-13],[-5,-21],[-6,-16],[-1,-11],[0,-6],[-2,-6],[-3,-7],[-3,-3],[-1,-4],[-2,0],[0,-1],[2,-2],[-1,-2],[-6,-4],[-4,-4],[-4,-12],[-2,-6],[-2,-6],[-1,-3],[-1,-3],[0,-7],[-3,-1],[-1,-3],[0,-7],[0,-8],[-1,-5],[-1,-4],[-1,2],[-1,-1],[-1,-2],[2,0],[1,-1],[-4,-8],[-4,-8],[0,-5],[-2,-7],[-1,-15],[-2,-8],[1,-6],[0,-1],[-1,-1],[0,1],[-2,-2],[0,-2],[0,-3],[1,-1],[0,-1],[-1,-1],[-2,0],[-1,-2],[-6,-22],[-2,-6],[-3,-9],[-1,-8],[-1,-9],[-1,-15],[-1,-11],[-2,-10],[0,-7],[-1,-14],[1,-10],[0,-6],[0,-5],[-1,-5],[-4,-2],[-2,-4],[-4,-6],[-3,-3],[-5,-2],[-10,1],[-19,-2],[-3,-2],[-7,-4],[-7,-8],[-7,-9],[-15,-27],[-11,-3],[-2,0],[-2,1],[-2,-1],[0,-4],[2,-3],[1,-3],[3,4],[1,-1],[0,-8],[0,-5],[-1,-3],[-1,-2],[-2,1],[0,3],[-2,6],[-3,6],[-2,2],[-2,-2],[-2,-2],[-2,8],[-2,6],[-3,1],[-2,0],[-2,2],[-4,5],[1,3],[1,4],[2,1],[-1,5],[-1,4],[-3,1],[-2,0],[-1,-4],[-2,-5],[-6,-7],[-3,4],[-4,5],[2,0],[3,0],[3,5],[2,3],[1,7],[-2,5],[-2,3],[-2,4],[-10,-11],[-2,-1],[-2,-3],[3,-1],[2,0],[3,-3],[-4,-4],[-2,-1],[-4,-3],[-6,-7],[-8,-14],[-4,-4],[-4,-3],[-5,4],[-3,1],[-4,5],[-7,4],[-6,8],[-5,4],[-3,1],[-4,-2],[-8,7],[-5,1],[-4,-7],[-3,0],[-1,1],[-6,11],[-6,6],[-11,3],[-6,8],[-5,15],[-9,17],[-3,6],[-1,6],[0,5],[1,10],[2,9],[0,5],[-4,17],[-5,16],[-2,5],[-6,11],[-6,8],[-1,5],[-1,2],[3,-1],[1,3],[2,1],[2,-4],[1,-1],[0,8],[1,3],[0,2],[-1,1],[-2,2],[-3,-3],[-2,-3],[-3,-3],[-1,-2],[-3,-1],[-1,0],[-6,-6],[-4,0],[-5,2],[1,7],[3,5],[2,5],[3,18],[-1,15],[-1,7],[-5,12],[-2,8],[-3,8],[-1,-4],[-1,-5],[-3,-7],[-1,-17],[-5,-24],[-4,0],[-3,1],[-5,-3],[-3,-4],[-3,0],[-2,-1],[-3,1],[4,19],[3,0],[4,1],[1,-1],[3,0],[1,9],[1,10],[0,7],[-1,6],[1,8],[0,5],[5,18],[3,9],[5,7],[-1,7],[-1,9],[-1,7],[2,2],[2,4],[-2,19],[-1,6],[-3,6],[0,-8],[1,-7],[-3,-9],[-4,-6],[-3,-7],[-2,-14],[-4,-11],[-3,-5],[-2,-1],[-3,-2],[-4,-4],[-4,-4],[-3,-6],[-3,-2],[-9,-24],[-4,-8],[0,-3],[-2,-3],[0,-3],[2,-3],[1,-10],[-1,-3],[-1,2],[-4,5],[-2,-2],[-2,-2],[-5,11],[-1,2],[-3,4],[-2,4],[-2,1],[-1,-1],[0,3],[1,2],[1,1],[2,-4],[3,-3],[1,0],[1,1],[-3,12],[-1,11],[-1,3],[-2,11],[-1,3],[-4,8],[-4,9],[-1,10],[-2,7],[-2,5],[-3,4],[-8,1],[-4,11],[-2,14],[2,1],[2,0],[0,4],[0,7],[-9,8],[-4,8],[-3,4],[-3,1],[-4,0],[-6,0],[-12,14],[-3,0],[-9,-4],[-3,1],[-14,18],[-9,9],[-3,1],[-4,2],[-3,-2],[-2,-2],[-5,-3],[-18,2],[-16,-3],[-10,-2],[-7,-2],[-11,-11],[-13,-11],[-11,-5],[-10,-7],[-7,-2],[-8,0],[-18,3],[-6,-3],[-10,-12],[-3,-3],[-5,-3],[-14,-16],[-7,-4],[-4,-1],[-4,-3],[-3,-7],[-4,-19],[-3,-9],[-6,-14],[-4,-4],[-4,0],[-4,-5],[-4,5],[-3,1],[-5,0],[-18,-6],[-2,7],[-3,1],[-6,0],[-9,2],[-17,-3],[-8,-3],[-3,-2],[-6,1],[-10,-2],[-3,-4],[-3,-3],[-5,-16],[-5,-5],[-5,-1],[-5,-1],[-11,-15],[-10,-15],[-4,-1],[-4,-3],[-5,-1],[-3,-1],[-12,3],[-8,1],[-9,2],[-9,7],[-6,4],[-7,16],[-5,6],[-8,8],[-2,-1],[-2,-2],[-3,5],[0,7],[-1,6],[0,14],[0,17],[3,-4],[3,-3],[5,0],[4,6],[2,10],[3,10],[-1,12],[-1,20],[1,4],[1,1],[1,10],[0,31],[-1,11],[-7,23],[-4,21],[-3,9],[-3,14],[-3,21],[0,10],[-1,19],[1,11],[-1,6],[-2,17],[-7,16],[-1,6],[0,7],[-1,7],[-5,15],[-6,12],[0,6],[-1,26],[-2,12],[-9,29],[-11,26],[-3,10],[-1,4],[1,0],[1,-1],[1,-3],[1,0],[1,2],[0,5],[0,3],[1,-2],[1,-5],[3,-14],[1,-8],[4,-2],[2,2],[1,4],[1,10],[-2,4],[-2,2],[-4,8],[-2,11],[-3,11],[0,4],[2,3],[2,-1],[2,-7],[3,-6],[-1,-10],[0,-3],[0,-2],[1,-2],[1,-2],[2,3],[1,6],[1,-1],[1,-14],[2,-4],[2,-4],[3,3],[1,3],[-1,10],[1,9],[0,7],[-6,18],[-6,23],[-3,11],[-3,17],[-2,6],[-2,9],[0,11],[0,7],[2,16],[1,8],[6,18],[0,8],[0,6],[1,10],[0,6],[-1,6],[-2,11],[3,18],[5,23],[1,3],[3,4],[1,-5],[-2,-16],[2,-9],[0,-9],[2,1],[2,2],[2,5],[1,5],[6,19],[3,7],[4,5],[8,6],[8,9],[4,7],[5,7],[3,8],[4,5],[16,19],[3,3],[4,1],[4,-1],[4,1],[4,-4],[3,-1],[8,5],[4,4],[7,9],[3,3],[8,3],[8,3],[10,16],[7,-1],[6,-1],[5,4],[12,3],[7,4],[12,11],[3,3],[5,8],[5,9],[4,13],[3,11],[1,6],[2,9],[2,8],[1,3],[5,5],[7,14],[3,3],[0,4],[-1,3],[-2,1],[-2,15],[-1,10],[0,7],[1,7],[2,11],[2,4],[3,5],[3,2],[2,5],[3,4],[1,5],[3,9],[2,7],[1,0],[3,-17],[2,-8],[3,-11],[3,-15],[3,-7],[1,-4],[1,-2],[1,3],[-1,3],[2,12],[-1,8],[0,3],[1,1],[1,-1],[3,-4],[1,-2],[1,0],[0,8],[1,4],[0,4],[-3,-1],[0,4],[-2,5],[-2,3],[-3,8],[-1,3],[1,1],[2,0],[1,3],[1,5],[-1,7],[1,2],[2,-1],[4,-11],[1,1],[2,5],[2,1],[2,-1],[2,-3],[3,-3],[4,0],[2,-1],[5,1],[2,-1],[0,2],[-3,2],[-3,0],[-3,0],[-1,2],[-1,6],[1,4],[1,2],[2,-1],[2,0],[0,6],[1,5],[1,4],[0,3],[-2,-1],[-2,-9],[-2,8],[-2,5],[1,8],[1,8],[2,1],[1,-1],[2,4],[2,4],[-1,3],[1,2],[1,-1],[7,-7],[1,-4],[1,2],[1,4],[-1,4],[-1,-1],[-3,1],[-1,2],[0,2],[-1,5],[2,3],[2,0],[1,2],[0,3],[0,1],[1,-2],[4,-1],[3,-3],[1,-1],[1,2],[0,4],[-4,4],[0,5],[-2,4],[0,5],[3,4],[0,4],[2,1],[2,0],[2,4],[2,1],[1,7],[0,5],[1,1],[2,-2],[-1,-6],[0,-5],[0,-3],[1,0],[0,1],[1,4],[2,-1],[1,-4],[0,-4],[1,-1],[2,6],[2,1],[0,7],[0,6],[1,3],[1,2],[0,5],[-1,2],[0,6],[1,1],[2,-3],[1,-6],[1,-3],[1,1],[1,5],[2,2],[3,-3],[2,-5],[3,4],[3,8],[-1,5],[1,5],[3,2],[3,-1],[3,-6],[5,-4],[5,-6],[2,-3],[4,-6],[2,-6],[4,-11],[8,-14],[0,-2],[-1,-5],[-1,-5],[-1,-10],[0,-14],[1,1],[1,5],[1,-1],[2,-4],[0,4],[-1,1],[-1,7],[0,4],[1,2],[2,4],[2,2],[1,2],[0,2],[2,3],[3,0],[1,0],[12,-6],[3,-6],[0,-8],[1,-2],[1,4],[0,11],[1,2],[3,-2],[2,-2],[3,-7],[1,-3],[1,-2],[1,3],[-1,4],[-1,5],[1,5],[4,0],[2,1],[-1,2],[-2,1],[-2,4],[-2,4],[3,4],[0,1],[-3,0],[-3,4],[-3,6],[2,11],[5,10],[2,4],[0,3],[2,6],[0,6],[1,4],[1,5],[3,4],[3,1],[2,2],[2,4],[1,5],[-3,9],[0,5],[1,6],[4,5],[2,11],[2,2],[3,-1],[1,1],[0,10],[1,3],[1,2],[2,-2],[1,-4],[2,-3],[1,2],[0,4],[0,5],[2,1],[2,0],[0,5],[0,3],[0,2],[5,0],[1,4],[1,3],[1,-2],[1,-7],[2,-4],[8,0],[5,3],[2,-2],[3,-1],[3,3],[2,3],[3,-3],[1,-4],[1,7],[2,3],[2,1],[3,-1],[1,0],[-3,6],[0,4],[0,8],[1,6],[1,5],[-6,9],[-5,1],[-4,-2],[-2,2],[-4,7],[-3,3],[0,2],[4,5],[1,-1],[3,-5],[1,-1],[1,0],[1,4],[1,2],[2,-1],[6,-9],[4,-8],[2,2],[3,5],[2,-1],[2,-3],[3,-10],[2,-5],[4,-1],[3,-2],[2,-3],[4,0],[7,-1],[6,-7],[3,-4],[3,-1],[2,-1],[3,-1],[6,5],[2,-4],[1,-3],[5,-6],[5,-1],[4,5],[5,4],[4,6],[3,3],[3,5],[1,0],[-2,-5],[-1,-2],[2,-1],[0,-2],[-3,-3],[-2,-6],[0,-4],[1,-2],[1,1],[2,3],[2,2],[2,-3],[1,-8],[1,-5],[3,-1],[2,0],[2,8],[-1,6],[-1,2],[0,2],[5,11],[3,-1],[2,-10],[3,-6],[3,1],[2,-2],[1,-6],[-11,-26],[-1,-3],[2,-4],[0,-6],[-3,-13],[-2,0],[-1,3],[-2,2],[-2,-1],[-1,-1],[-7,-7],[0,-19],[2,-11],[-1,-8],[-2,-13],[-2,-5],[-2,-3],[-6,-17],[-2,-5],[-2,-6],[1,-5],[1,-4],[2,-5],[8,-9],[4,-7],[7,-8],[1,-5],[1,-5],[5,-5],[3,-3],[1,1],[1,1],[1,0],[0,-1],[0,-3],[0,-3],[0,-2],[3,-4],[4,0],[2,1],[2,-4],[2,-2],[4,-5],[6,-6],[5,-4],[6,-14],[4,-9],[5,-6],[7,-4],[4,1],[5,-5],[5,-2],[3,-7],[1,-5],[1,-4],[2,-10],[5,-3],[7,-9],[6,-5],[2,-2],[2,-3],[5,0],[8,5],[4,4],[5,8],[2,13],[2,11],[7,22],[2,10],[2,15],[1,9],[0,9],[1,18],[4,25],[1,8],[0,12],[-3,22],[1,8],[1,11],[-1,8],[-2,6],[0,7],[2,15],[1,7],[2,10],[-1,19],[3,6],[2,4],[2,0],[1,-2],[1,4],[-1,3],[-1,4],[-1,3],[-1,0],[-1,2],[-2,3],[0,8],[3,16],[2,6],[1,-2],[1,-2],[1,4],[-1,5],[3,16],[2,21],[1,19],[5,4],[2,5],[1,5],[3,0],[1,-2],[-1,-4],[0,-4],[5,-8],[1,-6],[1,-6],[1,-5],[0,-8],[0,-11],[1,-12],[1,-3],[2,-2],[2,-1],[3,-1]],[[8951,4413],[-2,-4],[-2,2],[0,4],[0,1],[2,3],[2,-6]],[[8953,4443],[-2,-4],[-1,1],[-1,2],[1,3],[2,1],[1,-3]],[[8948,4445],[-1,-1],[-1,3],[2,4],[1,-2],[-1,-4]],[[5470,7926],[0,-1],[0,-2],[-1,-3],[-1,-4],[0,-3],[3,-11],[3,-7],[0,-3],[2,-2]],[[5476,7890],[-2,-2],[0,-4],[-1,-1],[0,-3],[0,-1],[0,-3],[1,-3],[-3,-1],[-3,0],[-1,0],[-1,-1],[-1,1],[-3,3],[-2,0],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[6,-3],[1,-4],[-1,-4],[-1,-2],[-1,-1],[-2,-1],[-2,0],[0,-2],[1,-6],[-1,-1],[-1,-2],[1,-4],[1,-1],[1,-1],[-1,-2],[0,-2],[0,-2],[-1,-1],[-3,0],[-2,-2],[-5,-6]],[[5446,7823],[-1,-1],[-2,-3],[0,-6],[0,-1],[-6,2],[-3,-1],[-3,-3],[-3,-1],[-6,1],[-6,-1],[-1,-1],[-2,0],[-1,-2],[-1,-2],[-2,-3],[-2,-2],[-2,-2],[-1,-1],[0,-1],[-2,1],[-1,0],[-1,1],[-4,1],[-5,1],[-2,1],[-3,1],[-2,1],[-3,0],[-1,0]],[[5380,7802],[-6,3],[-4,0],[-5,1],[-10,3],[-3,1],[-3,0],[-3,1],[-2,2],[-2,4],[-2,4],[-3,6],[-1,3],[1,3],[1,1],[0,1],[0,1],[-6,-3],[-5,-3],[-3,0],[-2,1],[-2,0],[-3,-1],[-5,-1],[-3,-2],[-2,-4],[-1,-4],[-1,-1],[-2,-1],[-3,1],[-2,1],[-2,3],[-3,0],[-2,0],[-1,1]],[[5290,7823],[0,2],[-1,4],[-2,1],[-5,-7],[-1,-1],[-4,2],[-3,3],[-1,2],[0,2],[-3,2],[-3,1],[-1,0]],[[5266,7834],[0,1],[0,2],[0,2],[-1,1],[0,2],[0,1],[0,2],[-1,1],[0,1]],[[5264,7847],[2,7],[1,5],[-2,2],[-1,1]],[[5264,7862],[1,1],[3,-1],[1,2],[1,1],[3,-1],[3,-3],[2,-2],[1,-2],[0,-1],[0,-2],[1,-1],[2,0],[1,-1],[-1,-2],[0,-3],[2,1],[2,1],[2,4],[0,3],[1,7],[0,1],[2,-1],[5,0],[2,-1],[3,0],[0,-1],[1,-2],[2,-3],[0,-2],[2,0],[3,1],[1,1],[1,-1],[2,1],[2,2],[1,2],[2,1],[3,2],[4,2],[13,3],[0,1],[0,4],[1,0],[1,0],[3,-1],[2,-2],[1,-1],[1,0],[2,1],[3,1],[2,-2],[1,-2],[-1,-1],[1,-2],[0,-1],[2,-2],[3,-2],[1,0],[0,2],[1,4],[0,5],[0,2],[-2,1],[-1,0],[-1,1],[0,1],[1,4],[0,5],[-3,5],[-2,6],[0,1],[1,4],[3,2],[5,4],[1,1],[3,1],[3,2],[1,2],[1,1],[1,11],[1,0],[0,1],[5,-4],[1,1],[1,0],[1,3],[1,2],[0,4],[0,3],[0,2]],[[5383,7936],[1,-1],[2,-2],[2,-2],[2,-5],[4,-2],[5,0],[1,3],[2,0],[2,-1],[4,0],[0,4],[2,4],[1,2],[3,0],[1,3],[0,9],[1,1],[2,0],[2,-1],[1,-2],[1,0],[1,1],[2,1],[2,-1],[6,-4],[3,-2],[1,0],[2,0],[6,-6],[5,-1],[4,0],[1,2],[2,2],[2,-1],[2,-1],[3,-2],[1,-1],[2,-1],[1,0],[2,-5],[0,-1]],[[6280,7350],[-5,2],[-10,3],[-2,2],[-3,6],[-1,2],[-3,4],[-1,1],[-2,2],[0,3],[-2,3],[-2,4],[-4,12],[-1,2]],[[6244,7396],[-1,2],[0,1]],[[6349,7525],[2,-3],[5,-9],[6,-15],[1,-5],[1,-5],[1,-6],[2,-5],[6,-13],[3,-5],[4,-7],[2,-1],[2,-1],[4,0],[4,-2],[1,-2],[2,-2],[2,-3],[1,-8],[-6,2],[-6,0],[-4,-2],[-3,-2],[-3,-3],[-2,-7],[-2,-14],[-3,-14],[1,-6],[1,-6],[0,-3],[-2,-2],[-1,-2],[-2,-13],[-1,-2],[-1,-2],[-1,2],[1,3],[-3,3],[-2,-3],[-1,-7],[-2,-8],[0,-1],[1,-22]],[[6357,7324],[-1,0],[-6,-3],[-1,1],[-5,10],[-1,2],[-2,0],[-1,2],[-1,3],[-1,2],[-5,5],[0,2],[-1,2],[1,2],[1,1],[3,2],[2,1],[1,1],[1,1],[0,2],[-1,3],[-4,4],[0,2],[0,2],[0,3],[0,1],[4,3],[2,3],[-1,3],[-4,6],[-4,7],[-3,1],[-4,-3],[-5,-6],[-3,-3],[-4,-4],[-4,-5],[-3,-5],[-2,-4],[-4,-2],[-2,-4],[-6,-11],[-2,0]],[[6249,7493],[6,8],[2,1],[4,-1],[8,-6],[0,-2],[1,-2],[1,-2],[4,-2],[3,-2],[2,1],[2,1],[3,-2],[3,-4],[1,-1],[1,0],[2,1],[3,4],[1,5],[0,2],[-2,4],[-3,3],[-3,4],[-2,3],[-2,5],[-1,1],[-1,0],[0,2],[0,3],[1,2],[1,1],[2,0],[1,2],[1,4],[1,2]],[[6289,7528],[3,-1],[0,-3],[1,-1],[1,0],[2,2],[2,-1],[2,-5],[3,-4],[2,-3],[0,-2],[2,-2],[2,-2],[2,-4],[1,-8],[2,-2],[5,-3],[2,-1],[6,-1],[2,1],[3,7],[2,8],[3,1],[4,4],[3,3],[1,4],[2,7],[2,3]],[[5848,4904],[0,-1],[-3,-11],[0,-2],[0,-1],[1,-2],[-1,-3],[0,-1],[0,-4],[0,-3],[0,-1],[2,-1],[3,-1],[2,-3],[2,0],[1,-2],[0,-3],[0,-3],[0,-5],[0,-4],[-3,-2],[-2,-3],[0,-1],[0,-1],[0,-2],[-3,-4],[-2,-6],[-1,-4],[-1,-4],[-1,-3],[-2,-4],[-2,-9],[-1,-5],[-6,-13],[-5,-7],[-1,-2],[-9,0]],[[5816,4783],[0,9],[-2,12],[-3,11],[0,5],[0,8],[0,13],[0,6],[0,5],[0,9],[0,5],[-2,6],[-2,6],[-2,3],[0,2],[0,3]],[[5805,4886],[1,3],[1,4],[1,0],[2,-2],[3,-3],[2,-7],[1,-1],[2,0],[5,1],[1,0],[3,2],[2,3],[1,3],[0,7],[1,12],[1,0],[3,-4],[1,0],[1,0],[1,2],[1,2],[1,0],[4,2],[2,-4],[1,-1],[1,-1]],[[5158,8054],[0,1],[3,2],[2,-4],[3,0]],[[5166,8053],[0,-1],[3,-3],[1,-3],[3,-2],[-2,-3],[0,-1],[1,-2],[2,-1],[2,-2],[0,-3],[0,-5],[-5,-5],[-1,-5],[-1,-1]],[[5169,8016],[0,2],[-1,0],[-3,1],[-3,-5],[-1,-5],[-1,-3],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-2],[1,-3],[1,-1],[2,-5],[-1,-2],[0,-2],[-1,-2],[-1,-1]],[[5160,7981],[-2,0],[-3,0],[-2,-1],[-1,0],[-2,2],[-2,4],[-1,2],[-1,2],[-2,0],[-2,2],[-2,2],[-1,1],[-3,1],[-1,0],[-1,4],[0,4],[-1,2],[2,11],[-2,1],[-1,-1],[-2,-3],[-1,-3],[0,-2],[-3,-3],[-5,-1],[-6,1],[0,1],[-1,1],[0,1],[1,1],[1,2],[0,2],[-1,2],[-1,1],[1,2],[0,3],[0,1],[-3,5],[-3,1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,8],[-1,1],[-3,1],[-4,1],[-2,1],[0,4],[-1,4],[-1,4],[-1,1],[-1,2],[-3,-1],[-2,-2],[-2,-1],[-1,0],[-2,2],[-2,4],[-2,3],[-1,3],[1,2],[-1,2],[-1,4],[0,3]],[[5070,8074],[12,10],[7,5],[4,1]],[[5093,8090],[0,-5],[1,-2],[1,-1],[1,0],[1,1],[2,2],[3,-1],[2,-1],[1,-1],[1,-2],[2,0],[4,2],[3,4],[1,3],[1,2]],[[5117,8091],[2,-2],[2,0],[1,1],[-1,3],[2,2],[2,1],[0,-2],[2,-1],[1,0],[4,4],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[3,0],[1,2],[1,2],[1,-1],[0,-3],[1,-4],[3,-4],[3,-1],[3,1],[2,1],[1,-1],[0,-2],[2,-2],[4,-2],[1,-1],[1,-2],[0,-2],[-2,-6],[0,-2],[0,-1],[-3,-4],[0,-1],[1,-3],[1,-2]],[[5099,5740],[-1,-4],[-2,-8],[0,-6],[5,-13],[0,-2],[1,-2],[1,-2],[0,-6],[1,-8],[0,-4],[2,-7],[0,-3],[-1,-10],[-1,-1],[-2,0],[-1,-1],[-1,-3],[-1,-4],[0,-1],[2,-6],[-1,-10],[-2,-5],[-2,-4],[-2,-1],[-1,-1],[-1,-2],[0,-7],[-3,-6],[-2,-4],[0,-2],[0,-8],[-1,-8],[-2,-6],[-4,-2],[-3,0],[-2,-16],[0,-10],[0,-10],[0,-4],[0,-6],[0,-13],[-1,-11],[1,-3],[0,-6],[0,-6],[1,-5],[1,-3],[0,-2],[-1,-2],[0,-1],[0,-15],[0,-5],[0,-2],[-1,-3],[0,-7],[1,-5],[1,-4],[-1,-3],[-1,-4],[0,-10],[0,-3]],[[5075,5424],[-12,-2],[-13,-4],[-5,-3]],[[5045,5415],[-1,2],[5,3],[-1,7],[-3,10],[-1,1],[-1,5],[1,3],[0,2],[-1,6],[-1,7],[3,0],[0,22],[0,21],[0,18],[0,15],[-1,17],[0,12],[0,17],[-1,5],[-4,9],[-1,4],[0,6],[-1,6],[0,11],[0,13],[-1,2],[-4,6],[-6,8],[-4,7],[-1,0],[0,2],[0,19],[1,3],[2,8],[1,6]],[[5025,5698],[1,2],[1,3],[1,-1],[1,0],[1,1],[0,2],[0,3],[1,1],[0,2],[0,2],[1,1],[2,0],[1,1],[1,1],[1,5],[1,1],[0,2],[1,1],[2,0],[2,0],[1,-3],[7,3],[4,-2],[6,13],[2,3],[2,9],[1,3]],[[5066,5751],[1,6],[-2,12],[0,2],[3,2],[4,2],[1,0],[1,1],[1,2],[2,2],[2,0],[0,-1],[8,-14],[3,-8],[1,-4],[2,-3],[2,-1],[3,-4],[1,-5]],[[5006,5930],[-1,-3],[0,-5],[0,-7],[-1,-10],[2,-6],[3,-6],[1,-2],[-1,-7],[1,-3],[1,-7],[3,-7],[3,-9],[2,-1],[1,0],[1,-2],[2,-1],[1,-1],[2,-2],[1,-2],[1,-5],[3,-3],[2,-3],[-1,-2],[-3,1],[-2,1],[0,-2],[0,-9],[0,-8],[0,-1],[3,-1],[6,-10],[5,-9],[2,-3],[3,-1],[3,0],[2,1],[3,4],[2,1],[1,0],[1,-1],[1,-4],[2,-6],[0,-4],[0,-2],[0,-1],[-3,-1],[-1,-1],[0,-1],[0,-3],[1,-2],[2,-8],[5,-12],[1,-3]],[[5025,5698],[-8,-1],[-2,-1],[-2,0],[0,1],[0,1],[-9,4],[-6,3]],[[4998,5705],[-7,3],[0,-3],[-1,-1],[-1,-1],[-1,1],[-1,-2],[-1,-3],[-2,-2],[-1,-1],[-1,-2],[-1,0],[-1,4],[-2,0],[-4,-1],[-1,1],[-2,1],[-6,-1],[-8,2],[-2,-1],[0,-1],[-8,0],[-9,0],[-8,0],[-7,-1],[0,1],[-2,0],[0,-1],[-2,-15],[0,-8],[1,-5],[1,-3],[1,-1],[0,-2],[-1,-2],[0,-3],[1,-2],[1,-3],[-1,-3],[0,-6],[1,-10],[0,-7],[-1,-3],[1,-5],[1,-8],[1,-3]],[[4925,5608],[-1,-1],[-1,-2],[-2,0],[-1,4],[-1,2],[-1,5],[-1,5],[-2,2],[-1,1],[-2,6],[-2,3],[-2,-1],[-3,1],[-5,2],[-6,-1],[-2,-1],[-3,-2],[-6,-5],[-2,-2],[-2,-6],[-2,0],[-2,2],[-1,3],[-3,-1],[-3,3],[-2,5],[-2,1],[-3,4],[0,7],[-2,5],[-1,6],[-2,3],[-3,2],[-3,0],[-2,2],[-2,4]],[[4846,5664],[1,4],[0,5],[0,4],[1,8],[0,9],[-1,7],[2,3],[2,2],[1,4],[2,11],[0,8],[0,3],[-1,3],[0,4],[-1,4],[1,4],[1,4],[2,3],[2,2],[3,1],[5,2],[3,3],[2,3],[1,2],[1,4],[2,3],[1,4],[1,9],[0,5],[-1,3],[-1,2],[7,8],[0,5],[-1,5],[-1,5],[-1,4],[2,4],[2,4],[1,3],[3,4],[3,2],[2,-2],[8,-11],[2,0],[1,0],[2,3],[3,2],[1,8],[0,10],[0,5],[2,1],[4,-2],[1,0],[2,0],[0,2],[0,3],[0,3],[2,10],[2,7],[6,9],[1,2],[2,1],[10,-6],[1,2],[3,15],[2,2],[3,0],[2,1],[1,1],[5,6],[8,8],[4,4],[1,1],[3,6],[4,6],[3,1],[4,1],[2,-1],[0,-2],[1,-1],[5,3],[7,-5],[6,-4]],[[7553,6321],[-1,-1],[-1,2],[0,3],[0,8],[1,1],[1,-1],[0,-2],[1,-4],[-1,-6]],[[7552,6343],[-1,-3],[-1,-5],[0,4],[0,4],[1,3],[1,-3]],[[7531,6360],[-3,-4],[1,25],[2,-9],[1,-5],[-1,-7]],[[7542,6373],[-1,-2],[-1,1],[-2,6],[1,7],[1,1],[0,-2],[2,-5],[0,-4],[0,-2]],[[7521,6355],[-5,-2],[-2,1],[4,15],[0,7],[-1,6],[-2,5],[0,3],[-1,4],[-1,5],[3,2],[2,-3],[0,-2],[1,-4],[1,-4],[3,-9],[0,-6],[-1,-14],[-1,-4]],[[7517,6407],[1,-3],[-2,2],[-1,2],[-1,2],[1,1],[2,-4]],[[7571,6349],[0,-3],[0,-19],[0,-9],[1,-7],[0,-2],[-1,-2],[0,-1],[-1,4],[-2,2],[-3,3],[-1,2],[-1,-1],[-2,-4],[-1,-4],[0,-5],[1,-6],[1,-3],[0,-3],[1,-4],[0,-4],[1,-5]],[[7564,6278],[-1,0],[-1,6],[-2,6],[-4,11],[-1,20],[0,10],[-3,12]],[[7552,6343],[-1,16],[-1,4],[1,6],[0,2],[0,-1],[-2,-2],[-2,6],[-1,6],[-4,12],[-2,5],[0,5],[-2,-5],[-2,-4],[-3,-5],[-2,-2],[-5,-1],[-4,8],[-5,18],[0,4],[0,10],[-1,10],[0,6],[0,3],[-1,-1],[0,-2],[0,-4],[0,-3],[-4,1],[-4,1],[3,-5],[4,-1],[2,-5],[0,-4],[0,-4],[-2,-3],[-2,-2],[1,-4],[2,-4],[-3,-2],[-1,-3],[0,-5],[2,-4],[0,-2],[0,-3],[1,-3],[2,-6],[0,-5],[0,-6],[-1,-2],[-2,-2],[-4,-8],[-2,-9],[-1,-4],[-2,-1],[-1,2],[-2,2],[0,5],[1,3],[3,8],[-2,-1],[-2,-2],[-3,-5],[-1,6],[-1,5],[0,6],[3,10],[-3,-5],[-1,-6],[1,-7],[-1,-5],[-1,-6],[-2,-4],[-2,-2],[-1,-4],[-2,-3],[0,6],[0,7],[-2,17],[0,-3],[0,-11],[0,-7],[-1,-6],[-3,-6],[-2,0],[-1,0],[-2,4],[-2,5],[0,9],[-1,4]],[[7473,6355],[0,6],[0,5],[-2,14],[-2,7],[0,3],[0,1],[0,9],[-1,6],[-1,6],[2,8],[0,2],[-3,1],[-2,1],[-1,3],[1,8],[-1,3],[-2,4],[0,1],[-1,2],[-1,4],[2,9],[2,11],[1,4],[0,6],[0,3],[0,3],[-2,3],[-4,1],[-3,2],[-2,4],[-1,2],[-2,-1],[-2,1],[-2,4],[-2,5],[1,2],[0,3],[3,12],[1,0],[2,-2],[1,0],[2,4],[2,14],[4,0],[3,-1],[1,0],[2,0],[2,1],[2,2],[0,2],[0,2],[-3,2],[-1,2],[0,6],[-1,2],[-5,0],[-2,2],[-2,3],[-2,7],[-3,5],[-3,2],[-1,1],[-1,3],[0,4],[1,4],[1,4],[2,5],[3,5],[1,3],[2,4],[0,2],[0,2],[-2,2],[-1,0],[0,2],[1,3],[1,1],[3,-3],[3,-6],[2,-4],[0,-4],[1,0],[1,-1],[2,-1],[2,0],[1,-1],[1,1],[0,2],[-1,3],[-1,2],[1,2],[1,1],[1,-1],[1,-2],[1,-4],[0,-6],[3,-6],[3,-4],[2,-2],[2,-1],[3,1],[1,4],[-1,4],[1,3],[1,2],[1,0],[1,-3],[3,-14],[0,-6],[0,-16],[0,-11],[0,-2],[0,-2],[1,-1],[1,0],[3,-2],[4,-2],[3,-2],[5,-2],[4,1],[1,0],[4,-1],[8,1],[7,0],[3,-1],[2,-1],[8,1],[8,1],[4,-4],[5,-5],[3,-5],[0,-2],[0,-2],[-1,-1],[-2,0],[-3,2],[-1,0],[0,-6],[0,-1],[-1,-5],[-2,-11],[0,-5],[-1,-2],[-2,-1],[-2,0],[0,-2],[-1,-4],[-1,-4],[0,-1],[-3,2],[-1,0],[-1,-1],[-2,-3],[-1,-2],[-1,-1],[-4,0],[-1,0],[0,-2],[-1,-2],[-3,-6],[-1,-10],[-1,-6],[1,-4],[2,-13],[2,-16],[0,-1],[1,-1],[0,1],[0,3],[0,4],[1,1],[1,-1],[1,-3],[1,-7],[1,-2],[2,-1],[2,1],[2,3],[1,3],[-1,7],[0,4],[1,5],[4,6],[0,2],[0,6],[0,5],[1,0],[2,-1],[2,3],[1,0],[1,-3],[2,1],[1,-12],[1,-10],[0,-4],[0,-11],[1,-8],[1,-2],[1,-4],[1,-6],[0,-2],[1,-10],[1,-7],[0,-21],[1,-4]],[[5793,7638],[0,-14],[-3,-7],[-4,2],[-5,-2],[-3,-7],[-1,-2],[-2,-3],[-1,-10],[0,-16],[-2,-2],[-2,0],[-7,-15],[4,-4],[2,-3],[3,-8],[5,-9],[1,-5]],[[5778,7533],[-4,1],[-1,0],[-1,-2],[-2,0],[-2,0],[-2,-1],[-2,-1],[-1,2],[-3,4],[-2,3],[-2,1],[-1,-1],[-5,-1],[-1,-2],[-3,-2],[-2,-1],[-3,0],[-2,0],[-1,-1],[-1,-3],[-1,-3],[0,-2],[-4,-1],[-1,-2],[-1,-1],[1,-2]],[[5731,7518],[-4,2],[-2,-2],[-1,-1],[-1,-2],[1,-2],[1,-2],[1,-5],[0,-5],[-1,-3],[-2,-2],[-3,-2],[-4,1],[-2,-1],[-3,0],[-2,-1],[-5,-2],[-3,-1],[-3,4],[-4,3],[-4,2],[-2,-1],[0,-1],[-4,3],[-1,2],[-1,1],[-2,5],[-3,-2],[-3,1],[-2,0],[-4,0],[-1,-4],[-1,0],[-1,-1],[-2,0],[-4,-2],[-3,-2],[-3,0],[-3,1],[-1,0],[-4,-1],[-2,-3],[-4,0],[-3,0]],[[5636,7495],[0,2],[1,14],[1,7],[0,1],[0,1],[-1,1],[-1,4],[-2,9],[-1,2],[-3,2],[-3,3],[-3,3],[-4,9]],[[5620,7553],[2,1],[1,2],[2,5],[0,2],[0,2],[-1,2],[-1,5],[0,5],[0,2],[0,3],[1,3],[1,1],[1,1],[4,0],[3,6],[1,2],[2,3],[1,2],[0,2],[1,3],[-4,4],[-1,3],[-1,3],[-2,2],[-4,4],[-2,4],[0,5],[-1,3],[-1,3],[-1,2],[0,2],[0,5],[1,6],[0,3],[2,0],[3,4],[0,4],[1,3],[1,1],[1,1]],[[5630,7667],[2,-2],[5,-4],[2,-3],[0,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[1,-2],[1,-2],[9,3],[8,-2],[12,-3],[7,-2],[6,2],[11,-3],[9,-3],[10,-1],[5,2],[4,3],[3,7],[8,8],[7,4],[10,4],[7,1],[1,-1],[8,-8],[4,0],[3,-1],[1,-2],[1,0],[4,1],[2,-4],[3,-5],[4,-3],[5,-2],[1,0],[4,0]],[[6405,6580],[-1,-5],[-1,2],[-2,8],[1,5],[-1,8],[0,2],[3,1],[1,0],[-1,-2],[1,-5],[0,-7],[0,-7]],[[2971,6302],[-1,-4],[-3,-9],[-6,-2],[-7,0],[-1,2],[0,2],[0,3],[0,2],[0,1],[3,1],[1,4],[3,1],[4,-3],[1,0],[3,3],[2,6],[2,-1],[-1,-6]],[[2974,6321],[-3,-3],[-1,3],[2,3],[2,-3]],[[2971,6375],[2,-1],[0,1],[4,-2],[2,-3],[0,-1],[-1,-2],[-3,4],[-3,1],[-3,0],[-2,0],[1,5],[3,-2]],[[2938,6363],[-2,-2],[1,3],[4,5],[2,5],[1,1],[0,2],[2,1],[1,3],[0,3],[-2,4],[0,2],[0,2],[3,1],[0,-3],[1,-8],[-4,-11],[-3,-3],[-4,-5]],[[2943,6393],[0,-1],[-2,-3],[-4,3],[-1,3],[-1,3],[1,2],[2,-2],[1,-3],[4,-2]],[[2921,6403],[0,-2],[-4,12],[-4,3],[-3,3],[1,2],[1,0],[1,4],[-1,4],[-2,8],[-2,6],[0,1],[0,5],[2,-7],[2,-7],[1,-6],[2,-11],[3,-4],[3,-5],[0,-6]],[[2898,6436],[-1,-1],[-2,2],[-5,7],[-2,1],[0,4],[2,-1],[4,-7],[1,-3],[3,-2]],[[2932,6472],[-2,-6],[-1,1],[1,8],[1,1],[1,0],[0,-4]],[[2843,6483],[0,-1],[-3,-4],[2,-3],[2,6],[1,-4],[1,-9],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-8],[-6,1],[0,6],[-1,2],[-1,9],[-2,3],[-2,7],[1,2],[2,0],[1,1],[3,0],[1,1],[2,-2]],[[2908,6480],[0,-3],[-2,1],[-3,-1],[-1,0],[1,2],[2,2],[0,3],[-2,4],[-3,10],[-1,2],[-1,3],[-2,4],[0,2],[1,1],[1,-1],[4,-14],[0,-1],[6,-14]],[[2851,6528],[-3,-1],[-2,1],[-1,1],[1,2],[2,1],[4,1],[1,-2],[0,-1],[-2,-2]],[[2840,6510],[0,-7],[0,-5],[0,-2],[-3,-4],[-1,-2],[-2,-2],[-2,-3],[-1,5],[-2,3],[0,5],[-1,-2],[-2,1],[-3,4],[-2,5],[3,0],[0,-3],[2,4],[0,2],[-1,0],[0,4],[3,10],[1,6],[-2,10],[2,1],[3,-4],[2,-3],[0,-5],[1,-4],[2,-9],[3,-5]],[[2871,6557],[4,-7],[4,-3],[4,-8],[2,-3],[0,-3],[0,-12],[-1,-8],[0,-6],[-1,2],[-1,4],[-2,3],[0,1],[3,0],[0,7],[1,5],[0,6],[-3,6],[-3,5],[-3,2],[-4,5],[-2,1],[-2,-1],[1,3],[0,4],[1,1],[2,-4]],[[2819,6630],[4,-2],[2,0],[1,2],[5,-1],[4,2],[0,-3],[0,-2],[-8,-1],[-8,-5],[-5,-3],[-2,0],[-1,1],[-5,10],[1,-1],[4,-6],[2,1],[2,4],[1,3],[-1,1],[1,4],[3,-4]],[[2855,6581],[-1,0],[-2,6],[-2,1],[3,5],[1,3],[0,8],[1,4],[-1,4],[1,4],[-1,4],[-2,4],[-5,13],[-8,3],[-4,0],[2,3],[2,-1],[3,-1],[4,-1],[2,-4],[3,-5],[2,-2],[0,-1],[0,-2],[1,-1],[2,-3],[3,-4],[1,-11],[-4,-6],[0,-17],[-1,-3]],[[5527,7705],[1,0],[3,1],[3,1],[2,-1],[1,-1],[0,-1],[0,-5],[-2,-5],[-2,-5],[-2,-5],[0,-2],[0,-4],[0,-4],[0,-1],[0,-2],[3,-1],[3,-3],[2,-5],[3,-4],[1,-2],[0,-2],[-1,-2],[-2,0],[-3,0],[-1,1],[-1,-1],[-1,-1],[0,-1],[3,-6],[4,-8],[0,-4],[0,-3],[-1,-2],[-2,1],[-1,1],[-1,0],[-2,0],[-1,-3]],[[5533,7626],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[0,-2],[0,-3],[2,-5],[0,-4],[-1,0],[-2,3],[-1,1],[-1,-1],[-3,-3],[-2,-3],[0,-3],[-1,-2],[0,-2],[0,-5],[-4,-1],[-1,-1],[0,-2],[0,-7],[0,-4],[3,-6],[0,-2],[-1,-2],[-1,-2],[-1,-1]],[[5512,7568],[-3,1],[-1,1],[-5,6],[-2,3],[-4,4],[-2,2],[-1,3],[-2,1],[-2,-1]],[[5490,7588],[-2,2]],[[5488,7590],[2,2],[0,1],[0,1],[-1,2],[-6,10],[-3,6],[-1,2],[0,6],[0,2],[-5,3],[-5,7],[-5,8],[-1,2],[-3,6],[-3,5],[-3,4],[-2,4],[-2,5],[-1,8],[-1,7],[-1,3],[-2,1],[-4,9],[-4,5],[0,5],[0,9],[1,10],[1,1],[2,1],[2,0],[2,-1],[3,-7],[2,-3],[2,-1],[2,3],[2,6],[3,3],[7,-1],[3,5],[6,-6],[3,-1],[1,1],[2,-1],[4,-2],[1,0],[1,0],[3,2],[1,0],[3,-5],[2,0],[2,2],[1,2],[4,-2],[3,1],[1,0],[2,0],[2,-2],[2,-1],[5,0],[2,-3],[1,-3],[0,-2],[0,-2],[2,-2],[3,-1],[1,1]],[[3254,6106],[-1,1],[0,1],[2,0],[0,-1],[0,-1],[-1,0]],[[5781,8373],[4,-6],[1,0],[2,2],[1,0],[4,0],[2,-1],[1,-4],[2,-3],[1,0],[5,3],[2,1],[1,0],[6,-3],[2,-2],[1,-1],[0,-2],[-1,-3],[0,-3],[1,-3],[2,-3],[4,4],[2,1],[2,0],[2,2],[1,2],[2,1],[3,-1],[5,1],[6,-4],[1,-1],[3,-4],[1,-2],[1,0],[2,-2],[2,-2],[2,1],[0,-1],[1,-1],[0,-3],[0,-8],[-1,-2],[-1,-2],[-1,-1],[0,-2],[2,-3],[2,-5],[1,-3],[0,-2],[-3,-7],[-1,-1],[-1,-3],[0,-4],[0,-1],[5,-5],[4,-3],[1,-1],[0,-1],[-2,-6],[0,-1],[3,-3],[1,-3],[2,-6],[3,-6],[6,-5],[5,-3],[0,-2],[1,-1],[-1,-4],[-1,-5],[-1,-3],[2,-1],[5,1],[6,-1],[7,-6],[0,-2],[-1,-2],[1,-2],[0,-2],[6,-6],[1,-2],[0,-3],[0,-2],[-2,0],[-2,-1],[-3,-3],[-1,-3],[-5,-5],[-3,-2],[-2,0],[-6,1],[-2,2],[-1,2],[-2,1],[-3,0],[-4,0],[-1,-1],[0,-2],[-2,-5],[-1,-3],[1,-1],[1,-4],[3,-4],[2,-4],[1,-2],[0,-2],[-1,-2],[0,-3],[3,-6],[-1,0],[0,-7],[0,-6],[0,-2],[2,-1],[1,-3],[2,-5],[0,-2]],[[5882,8133],[-6,0],[-6,0],[-3,-3],[-2,1],[-2,1],[-3,-2],[-4,-6],[-2,-3],[-3,-5],[0,-3],[-2,-4],[-1,-6],[0,-4],[1,-3],[1,-4],[0,-3],[-1,-2],[-1,-3],[-3,0],[-3,3],[-1,5],[-2,3],[-2,1],[-2,0],[-5,-1],[-5,-1],[-5,0],[-2,-2],[-3,-1],[-2,1],[-2,5],[-1,5],[-1,2],[-1,1],[-1,0],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-2],[-1,-4],[-2,0],[-1,1],[-1,5],[-2,1],[-3,0],[-4,1],[-3,2],[-1,-1],[-2,-2],[-2,0],[-4,2],[-1,-1],[-1,-3],[-1,-3],[-1,0],[-1,1],[1,5],[-3,1],[-4,1],[-3,-1],[-1,0],[-1,1],[-4,8],[-2,1],[-3,0],[-5,0],[-6,2],[-3,1],[-1,2],[-4,0],[-9,4],[-4,1],[-6,0],[-9,0],[-5,0],[-3,-1],[-3,-1],[-5,-1],[-2,1],[-3,-1],[-4,-1],[-1,-1],[-1,-4],[-4,-7],[-5,-4],[-3,2],[-2,1],[-2,0],[-2,-1],[-1,-1],[0,-5]],[[5655,8099],[-2,6],[0,5],[1,3],[2,3],[-1,4],[1,5],[0,4],[0,2],[-1,2],[-3,2],[-1,2],[-4,2],[-3,3],[-1,2],[0,1],[1,2],[3,5],[3,6],[2,2],[10,6],[1,3],[1,4],[0,3],[0,5],[-1,7],[-1,5],[-2,9],[-5,20],[-3,20]],[[5652,8242],[2,-1],[5,-1],[4,2],[2,0],[1,0],[3,0],[2,1],[2,-2],[2,-2],[4,3],[4,2],[4,0],[1,1],[1,8],[1,1],[5,-1],[2,2],[2,3],[3,2],[2,0],[3,3],[1,-2],[1,-3],[-1,-2],[0,-1],[2,-1],[3,0],[2,1],[0,1],[0,3],[0,2],[-2,2],[-2,1],[-2,0],[0,1],[1,3],[1,5],[2,4],[1,2],[0,2],[0,2],[0,5],[2,7],[2,5],[3,2],[3,1],[3,2],[1,3],[0,2],[1,2],[1,1],[8,0],[2,4],[0,1],[2,1],[1,2],[0,1],[-2,1],[-6,1],[-1,1],[1,2],[1,4],[1,6],[1,5],[0,2]],[[5738,8344],[1,1],[4,1],[1,1],[4,6],[3,1],[7,-2],[3,1],[1,-1],[3,0],[1,1],[1,6],[2,2],[5,8],[4,3],[2,1],[1,0]],[[2559,6079],[-2,-9],[0,3],[1,6],[1,2],[1,2],[0,3],[1,-1],[0,-3],[-2,-3]],[[2557,6109],[-2,-2],[1,4],[1,2],[1,9],[1,0],[1,-1],[-3,-12]],[[2530,5988],[-1,0],[-5,1],[-3,-1],[0,15],[1,23],[0,16],[0,17],[0,12],[1,17],[0,14]],[[2523,6102],[0,5],[1,4],[2,2],[3,-4],[1,-1],[1,1],[2,2],[2,6],[4,13],[2,9],[1,2],[3,1],[2,-1]],[[2547,6141],[-1,-7],[1,-1],[1,1],[4,0],[1,-8],[0,-6],[-3,-16],[-1,-6],[-1,-8],[2,-6],[-2,-7],[-1,-5],[0,-7],[1,-13],[-1,-20],[-3,-9],[-2,-3],[-2,-8],[-4,-3],[-5,-14],[-1,-3],[0,-4]],[[3202,6960],[-3,-2],[-1,0],[0,1],[2,2],[3,4],[-1,-5]],[[3384,3852],[1,10],[-1,8],[0,3],[-9,10],[-7,9],[-10,12],[-12,0],[-13,0],[-13,-6],[-12,-5],[-5,-3],[-12,-5],[-7,-2],[-2,-10],[-2,-14],[-3,-9],[-3,-9],[-4,-12],[0,-16],[0,-14],[-3,-21],[-3,-17],[-2,-17],[-2,-11],[-1,-3]],[[3133,3695],[-4,-2],[-7,-2],[-3,0],[-2,0],[-1,2],[-2,2],[0,2],[0,3],[0,6],[0,8],[-2,10],[0,3],[0,4],[-1,9],[-2,4],[-1,8],[0,6],[-2,8],[-1,10],[0,9],[-3,10],[-3,11],[-3,1],[-1,1],[0,4],[0,4],[0,3],[2,5],[0,1],[0,1],[-6,7],[-1,2],[0,2],[0,3],[1,2],[1,2],[-2,5],[1,4],[-1,2],[0,2],[1,1],[3,1],[1,5],[0,4],[0,2],[-4,7],[0,1],[4,10],[2,6],[1,1],[0,2],[-1,2],[-1,2],[-2,3],[-2,3],[-2,5],[-3,4],[-2,4],[-1,3],[0,3],[0,6],[-2,9],[0,7],[-1,7],[0,4],[-1,5],[0,4],[-1,4],[1,2],[1,2],[-1,1],[-5,5],[-1,2],[-1,10],[-4,9],[0,7]],[[3069,4010],[0,2],[0,5],[-2,3],[-1,2],[-1,3],[1,3],[3,5],[2,1],[0,3],[1,3],[4,8],[1,5],[2,4],[3,2],[0,2],[0,6],[0,4],[1,2],[2,3],[2,2],[0,1],[0,1],[-2,3],[-3,3],[-3,0],[-1,2],[-1,2],[-5,24],[-1,6],[0,2],[4,12],[1,4],[2,6],[0,2],[-4,10],[-1,4],[0,5],[0,5],[2,3],[1,5],[1,4],[0,1],[2,3],[1,3],[2,4],[1,2],[0,7],[1,1],[2,3],[1,1],[-1,5],[-1,4],[-1,3],[-2,11],[-1,6],[1,2],[1,3],[0,6],[1,7],[0,25],[0,5],[1,3],[2,4],[1,2],[2,2],[0,5],[1,3],[1,3],[-4,14],[-3,12],[-3,11],[-4,13],[-2,9],[-3,11],[-3,9],[-3,13]],[[3067,4398],[3,0],[7,0],[6,-3],[4,-1],[2,-2],[0,-3],[2,-1],[1,0],[2,1],[3,3],[3,2],[2,3],[1,2],[3,9],[3,5],[2,1],[4,1],[2,-1],[2,0],[1,5],[2,5],[5,7],[2,2],[2,2],[2,1],[2,2],[11,18],[4,4],[3,1],[2,1],[4,3],[9,2],[6,1],[2,-2],[3,0],[1,4],[2,1],[1,0],[2,-4],[1,-5],[-1,-4],[0,-5],[1,-7],[-1,-7],[-2,-8],[-1,-3],[0,-4],[0,-4],[1,-8],[2,-11],[0,-7],[-1,-5],[-1,-5],[0,-4],[1,-2],[1,-2],[0,-3],[0,-4],[1,-4],[2,-4],[1,-4],[0,-4],[0,-2],[1,-1],[1,2],[1,-1],[1,-5],[0,-1],[1,-4],[0,-4],[3,-2],[2,-1],[1,-2],[3,-5],[2,-3],[3,-3],[1,-5],[1,-6],[5,-3],[5,-1],[4,-2],[4,4],[3,-1],[2,-2],[2,-2],[2,-3],[3,-4],[3,-2],[2,2],[1,1],[2,-1],[1,-5],[0,-3],[2,-2],[3,-7],[2,-2],[2,0],[5,-4],[5,-4],[2,-1],[3,1],[1,-2],[1,-5],[4,-9],[2,-4],[2,-4],[6,0],[2,0],[3,0],[8,2],[1,1],[5,-5],[5,-6],[3,-5],[3,-2],[1,-5],[1,-4],[1,-5],[-1,-5],[-1,-2],[0,-3],[0,-4],[2,-4],[1,-5],[1,-9],[1,-3],[0,-28],[-3,0],[-5,-1],[1,-2],[4,-11],[4,-9],[1,-16],[0,-9],[1,-14],[0,-8],[10,-1],[11,-1],[13,-1],[12,-1],[1,1],[2,1],[1,1],[1,0],[0,-3],[0,-4],[0,-5],[-4,-10],[0,-3],[1,-12],[1,-10],[1,-9],[1,-3],[4,-5],[6,-9],[2,-1],[2,1],[1,-3],[1,-6],[3,-17],[2,-10],[1,-3],[2,-2],[-1,-2],[-1,0],[-1,-2],[-1,-12],[-3,-15],[-1,-11],[1,0],[0,-3],[0,-4],[-1,-1],[-1,-2],[-2,-8],[-3,-12],[-2,-12],[-2,-7],[3,-5],[4,-9],[0,-2],[-2,-2],[-2,0],[-1,-4],[-1,-2],[-2,-1]],[[3653,3402],[-2,-3],[0,14],[1,5],[1,3],[2,3],[1,-4],[-1,-6],[-2,-9],[0,-3]],[[3650,3483],[0,-1],[-2,7],[3,7],[1,-2],[0,-6],[-1,-4],[-1,-1]],[[3742,3632],[0,-4],[-1,2],[-3,-1],[-1,2],[4,10],[1,-1],[1,-2],[0,-3],[0,-1],[-1,-2]],[[3774,3676],[1,-2],[-2,0],[-2,-1],[-2,-1],[-2,2],[3,3],[1,3],[0,-1],[1,-2],[2,-1]],[[3919,4249],[-1,-4],[-1,1],[-1,2],[0,2],[0,2],[1,1],[2,0],[0,-4]],[[3923,4271],[-1,-1],[0,3],[3,5],[0,6],[2,-3],[0,-3],[0,-1],[-4,-6]],[[3764,4873],[-3,-6],[1,6],[-1,5],[1,4],[1,3],[1,1],[0,-5],[0,-1],[0,-7]],[[3753,4969],[-2,-3],[0,-2],[-2,1],[0,2],[1,0],[0,5],[3,-1],[0,-2]],[[3560,4962],[-3,-1],[4,14],[3,7],[0,14],[4,12],[3,5],[5,2],[3,-8],[-4,-21],[-1,0],[-4,-11],[-5,-8],[-5,-5]],[[3621,5033],[3,0],[3,1],[3,3],[3,0],[2,0],[9,-3],[6,-1],[2,-1],[2,-1],[1,-2],[1,-3],[-2,-5],[-1,-6],[-1,-8],[0,-1],[-1,0],[0,-7],[0,-3],[-1,-2],[-1,-6],[-2,-7],[-1,-1],[-2,-3],[-1,-3],[0,-3],[1,-3],[-1,-4],[-3,-5],[-1,-1],[-2,-1],[-1,1],[-2,5],[-1,-4],[0,-5],[-1,-2],[-3,0],[-2,3],[-3,2],[0,-7],[-2,-5],[-2,-1],[-2,-1],[-2,-2],[-3,1],[-3,3],[-1,1],[-1,-3],[-7,0],[-3,-3],[-1,1],[-3,5],[0,4],[-2,7],[-1,8],[-1,8],[0,7],[2,0],[2,-1],[1,0],[0,2],[-1,2],[-3,0],[-2,4],[0,6],[0,13],[0,2],[2,4],[0,3],[0,4],[0,6],[2,6],[5,6],[6,3],[17,-7]],[[3593,5039],[-8,-12],[-3,4],[0,2],[0,3],[1,4],[4,4],[2,0],[3,-1],[1,-3],[0,-1]],[[3626,5040],[-7,-2],[-4,3],[1,3],[3,4],[3,2],[3,2],[2,-2],[1,-3],[0,-4],[-2,-3]],[[3618,5063],[1,-4],[-4,-12],[-2,-2],[-2,0],[-3,4],[-5,-1],[-2,1],[0,6],[2,5],[4,0],[7,5],[4,-2]],[[3599,5055],[-1,-9],[-5,4],[1,9],[2,2],[2,5],[1,6],[0,8],[1,1],[0,1],[1,-1],[0,-12],[1,-7],[-3,-7]],[[3607,5070],[-4,-2],[0,2],[0,7],[1,4],[4,1],[0,2],[1,0],[1,-2],[0,-4],[-3,-8]],[[3602,5162],[-2,-3],[-2,1],[-1,7],[0,6],[2,2],[2,-1],[2,-10],[-1,-2]],[[3431,5162],[1,-1],[1,0],[5,-3],[6,-2],[1,1],[1,1],[0,6],[0,3],[-1,4],[-1,4],[-2,4],[-2,1],[1,3],[1,2],[1,2],[1,1],[0,7],[1,1],[1,0],[1,-2],[5,-5],[2,1],[7,1],[1,3],[2,1],[3,3],[1,0],[1,-1],[1,1],[2,2],[0,1],[1,-3],[1,-3],[1,-3],[1,-1],[2,1],[2,-1],[0,-2],[0,-3],[1,-1],[2,0]],[[3483,5185],[0,-1],[1,-1],[1,-3],[3,-3],[4,-3],[1,0],[2,-1],[1,-1],[1,2],[4,5],[2,3],[1,2],[1,2],[1,0],[1,-1],[0,-2],[1,0],[4,-2],[1,-1],[2,2],[2,2],[1,1],[1,-2],[1,-4],[1,-2],[1,1],[3,-1],[2,-1],[1,0],[2,2],[1,3],[2,3],[3,3],[1,3],[2,6],[1,3],[0,5],[3,12],[1,3],[0,4],[1,4],[0,4],[1,4],[2,3],[1,2],[2,6],[1,5],[3,12],[0,3],[2,2],[0,2],[2,3],[1,3],[1,3],[1,4],[2,3],[1,1]],[[3565,5287],[2,10],[1,5],[2,0],[4,-5],[3,-8],[4,-25],[1,-23],[1,-12],[5,-25],[0,-5],[1,-6],[1,-6],[2,-9],[0,-2],[-1,-3],[1,0],[2,-2],[1,-6],[1,-4],[2,-6],[4,-2],[4,-1],[3,-3],[3,-4],[2,-14],[-1,-9],[1,-6],[-2,-3],[-3,-4],[0,-2],[-6,-11],[-2,-5],[-3,-7],[-3,-12],[-5,-12],[-2,-3],[-3,-1],[-1,-2],[-4,-9],[-5,-3],[0,-6],[-3,-13],[-3,-7],[-1,-2],[-5,-12],[0,-6],[0,-10],[-3,-6],[-3,-3],[0,-9],[-1,-2],[-1,-2],[-6,2],[-9,-9],[-3,-2],[10,-1],[3,-4],[7,3],[8,11],[3,2],[7,8],[2,5],[5,7],[1,2],[3,3],[1,-4],[0,-2],[-2,-4],[1,-3],[1,-4],[1,-5],[0,-4],[1,-7],[3,-9],[0,-3],[0,-4],[1,-3],[1,-2],[6,-10],[4,6],[2,1],[2,3],[3,1],[2,-2],[6,-3],[3,3],[8,8],[-3,-14],[-1,-13],[-2,-5],[-1,-15],[-1,-3],[-1,-5],[2,2],[1,2],[2,5],[1,10],[6,25],[1,2],[5,3],[8,21],[3,-1],[2,-4],[1,-3],[1,6],[3,2],[-3,3],[-1,2],[0,4],[2,6],[-1,5],[4,6],[-1,5],[2,4],[2,4],[2,2],[0,3],[1,1],[1,1],[2,-4],[3,5],[2,1],[1,0],[1,-2],[1,-1],[1,0],[3,3],[2,-5],[1,-1],[0,3],[-1,2],[1,2],[1,2],[4,-2],[2,-2],[2,-3],[2,-1],[3,1],[1,-3],[2,0],[1,-3],[4,-5],[1,-3],[3,-1],[2,-2],[3,-1],[3,1],[0,-4],[2,-2],[3,1],[2,-5],[5,-3],[4,-6],[2,1],[3,-2],[3,-12],[0,-9],[2,1],[1,4],[2,7],[3,3],[1,-3],[3,-4],[2,-5],[1,-4],[2,0],[-1,-4],[1,0],[2,3],[2,-5],[1,-7],[0,-6],[-1,-4],[-1,-2],[-1,-4],[-1,-1],[-2,-2],[2,-3],[1,-3],[2,9],[2,2],[2,1],[2,-6],[0,-5],[-4,-3],[0,-4],[-1,-3],[-1,-3],[-1,-6],[0,-5],[-3,-22],[0,-4],[3,4],[5,11],[2,12],[2,12],[2,4],[1,0],[2,-1],[1,-4],[-1,-2],[-2,-6],[-1,-4],[1,-3],[5,10],[2,4],[2,-1],[4,4],[8,1],[0,6],[2,2],[4,-1],[8,-4],[3,-4],[4,-4],[2,-4],[10,-8],[7,-1],[3,4],[5,-4],[2,-4],[4,-2],[5,-1],[3,3],[9,1],[11,4],[7,-1],[7,-3],[6,-7],[4,-4],[3,-4],[4,-5],[10,-11],[3,-7],[6,-9],[6,-4],[3,-9],[2,-4],[7,-16],[7,-11],[4,-11],[9,-8],[4,-11],[6,-2],[3,-2],[3,-5],[4,-2],[6,0],[6,0],[5,2],[12,-4],[2,-2],[2,-5],[5,-19],[2,-21],[2,-16],[3,-12],[1,-23],[2,-8],[0,-5],[1,-1],[1,-16],[-1,-6],[-1,-9],[0,-3],[0,-3],[0,-3],[0,-3],[1,-8],[0,-6],[-2,-7],[-2,-18],[-5,-31],[-5,-18],[-7,-19],[-5,-9],[-2,-1],[-1,2],[1,-5],[-1,-5],[-5,-13],[-5,-9],[-4,-15],[-1,-1],[-6,-6],[-4,-5],[-4,-8],[-5,-14],[-1,-2],[-1,1],[0,-7],[-4,-11],[-1,-2],[0,3],[1,3],[0,2],[0,3],[-1,-2],[-2,-8],[0,-6],[-1,-10],[-6,-26],[-8,-22],[-1,-7],[-7,-15],[-4,-7],[-1,0],[-2,0],[-1,12],[-3,7],[-1,1],[-2,-8],[-1,-2],[-2,0],[2,-3],[1,-4],[-2,-7],[0,-7],[-4,-8],[-2,-5],[-1,-7],[0,-6],[1,1],[1,-1],[1,-2],[-1,-3],[-1,-5],[0,-14],[0,-3],[1,-4],[1,6],[1,-1],[-3,-37],[1,-17],[0,-19],[2,-18],[1,-17],[1,-1],[-3,-19],[-2,-19],[-2,-15],[-1,-17],[-1,-8],[-1,-8],[2,-19],[0,-4],[-3,-9],[-4,-4],[-2,-4],[-5,-16],[-2,-23],[0,-12],[1,-25],[-1,-11],[-1,-7],[-2,-4],[-5,-6],[-3,-13],[-2,-14],[-3,-5],[0,-8],[-2,-9],[-6,-13],[-4,-3],[-1,-4],[-2,-7],[-3,-12],[-3,-16],[1,-6],[0,-1],[1,-18],[0,-5],[-4,-5],[-12,-9],[-4,-4],[-8,-16],[0,-4],[0,-5],[2,-3],[-2,-4],[-1,-6],[-2,1],[-13,0],[-7,-2],[-4,0],[-1,2],[-2,2],[-1,3],[1,5],[0,3],[-2,-1],[-2,-1],[-1,-3],[1,-2],[0,-3],[1,-3],[-1,-3],[-4,-1],[-5,-3],[-5,-1],[-5,-2],[-2,3],[2,1],[3,-1],[3,3],[0,2],[-5,3],[-5,-2],[-3,-3],[-6,0],[-7,-3],[-2,-3],[1,-6],[1,-1],[2,-3],[-2,-3],[-1,-1],[-8,-2],[-7,-12],[-3,-1],[-3,-5],[0,-5],[-1,-2],[-2,0],[-4,2],[-5,0],[-3,-2],[-19,-19],[-6,-7],[-8,-15],[-12,-17],[-7,-11],[-1,-2],[-1,0],[-2,-2],[0,-2],[2,0],[-1,-6],[-2,-4],[-5,-11],[-1,1],[1,5],[-2,1],[-4,2],[-1,-3],[0,-5],[-1,-3],[-2,0],[-3,1],[-2,4],[1,-7],[5,-2],[2,-2],[1,-3],[-4,-13],[-3,-1],[-1,-2],[2,0],[1,-4],[-1,-14],[-2,-3],[-1,0],[0,-2],[1,-5],[1,-4],[0,-6],[0,-6],[-1,-5],[2,-11],[1,-10],[1,-4],[0,-4],[-1,-4],[0,-7],[-2,-11],[1,-16],[0,-14],[-1,-8],[-1,-6],[-3,-8],[0,-8],[-6,-7],[-7,-11],[-6,-12],[-7,-17],[-8,-26],[-8,-37],[-8,-28],[-4,-10],[-5,-11],[-6,-13],[-9,-13],[-9,-12],[-4,-5],[-3,-8],[-1,3],[1,5],[0,4],[-1,5],[2,1],[3,-3],[2,2],[1,2],[3,1],[7,13],[4,5],[3,8],[1,4],[-1,9],[2,2],[4,0],[0,2],[0,3],[1,6],[4,5],[3,7],[-1,16],[1,1],[2,-3],[1,2],[1,7],[-1,3],[-2,1],[-8,-8],[-3,1],[0,6],[-4,3],[-2,5],[0,4],[-1,1],[0,-6],[0,-6],[4,-7],[-1,-3],[-2,-3],[-1,-8],[0,-9],[-1,3],[-1,2],[0,-11],[-3,-4],[-1,-3],[1,-5],[-1,-3],[-6,-8],[-6,-6],[-1,-2],[-1,-7],[-1,-6],[-2,-6],[-2,-11],[0,-5],[1,-7],[1,-5],[-2,-3],[-2,-6],[-2,-7],[-5,-26],[-4,-15],[-3,-8],[-4,-8],[-13,-20]],[[3517,3048],[-1,0],[-1,2],[-2,2],[0,1],[-1,2],[1,7],[0,20],[0,3],[1,3],[2,3],[3,5],[2,6],[3,5],[-1,4],[-2,3],[-4,3],[-3,4],[-3,6],[-2,6],[-1,7],[-1,5],[-1,3],[-1,1],[-2,2],[-1,3],[-2,1],[-3,2],[-3,3],[-5,6],[-3,7],[-1,5],[-2,4],[-8,5],[-4,7],[-2,-2],[-2,2],[-2,3],[-1,2],[-1,3],[-1,3],[0,3],[-3,4],[-3,6],[-1,1],[-1,0],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-3],[-1,-2],[-3,-1],[-1,1],[0,1],[0,4],[0,9],[-1,3],[-2,4],[-2,5],[-6,11],[-9,15],[-3,5],[-3,1],[-3,-1],[-2,-2],[-2,-7],[-1,-1],[-4,0],[-5,1],[-2,4]],[[3483,3532],[0,8],[4,13],[1,6],[-1,3],[1,12],[3,20],[1,13],[-1,6],[0,4],[1,4],[1,1],[-4,5],[-2,4],[-2,3],[-3,2],[-1,-1],[-1,-1],[-3,-2],[-3,-4],[-2,-2],[-2,-1],[-4,-1],[-2,1],[-2,0],[-2,3],[0,5],[0,4],[-1,7],[-2,3],[0,3],[0,3],[0,4],[0,3],[0,3],[-1,2],[1,4],[-1,6],[-1,4],[0,4],[0,4],[-1,4],[0,4],[0,5],[1,4],[-1,3],[-2,1],[-1,5],[0,6],[-1,3],[-2,3],[-1,0],[-3,2],[-2,0],[-3,0],[-2,1],[-1,2],[-2,3],[-1,5],[-1,1],[-2,-2],[-1,-2],[-1,-2],[-1,-3],[-2,0],[-2,-2],[-2,0],[-3,-1],[-3,2],[-3,2],[-2,1],[-3,-1],[-2,1],[-2,0],[-2,1],[-2,3],[-3,2],[-1,-1],[-1,-2],[-2,0],[-2,2],[-1,4],[0,2],[1,2],[0,4],[0,3],[0,3],[1,3],[0,3],[0,3],[0,3],[-1,3],[0,3],[1,5],[1,4],[0,3],[0,2],[0,3],[1,5],[0,8],[-1,4],[0,2],[-1,1],[1,2],[-1,2],[0,2],[1,2],[-1,3],[-1,1],[-1,1],[0,4],[-1,4],[0,3],[0,3],[-1,2],[-1,3],[-1,3],[0,3],[-1,4]],[[3067,4398],[-3,0],[-4,1],[-4,0],[-3,-3],[-4,-4],[-2,-1],[-1,0],[-2,1],[-1,2],[-3,4],[-1,-2],[-2,-2],[0,10],[0,16],[0,13],[1,11],[0,12],[0,9],[1,3],[0,4],[0,5],[0,4],[0,4],[1,3],[-2,-2],[0,-1],[-1,-2],[-3,-3],[-1,-4],[-2,-2],[-3,-6],[-2,-3],[-2,-2],[-3,-7],[-3,-1],[-7,-1],[-8,0],[-7,0],[-1,0],[0,6],[0,4],[-3,4],[0,5],[0,3],[-1,5],[-2,2],[-2,1],[-4,3],[-6,2],[-5,0],[-6,0],[3,9],[4,8],[0,8],[-3,6],[-1,5],[-3,5],[-2,4],[-2,5],[0,3],[0,2],[-1,2],[-1,1],[-2,3],[-1,2],[0,3],[-1,3],[-1,3],[0,3],[-1,4],[-1,4],[-1,2],[-2,3],[0,2],[2,1],[0,3],[0,3],[-1,1],[-2,1],[-2,5],[-1,3],[-1,1],[-1,2],[1,1],[0,2],[0,3],[0,2],[0,3],[1,0],[1,0],[1,1],[2,1],[1,0],[1,2],[0,2],[-1,6],[-1,2],[0,3],[0,7],[1,4],[2,4],[5,9],[5,6],[2,1],[2,2],[1,4],[0,3],[0,4],[-1,5],[-1,6],[-1,3],[1,5],[1,5],[3,9],[2,9],[1,3],[0,5],[1,12],[1,6],[-1,2],[1,2],[2,2],[3,1],[3,4],[4,6],[3,7],[3,2],[4,7],[3,4],[1,1],[3,3],[5,1],[4,1],[2,2],[4,1],[2,2],[2,0],[5,2],[2,3],[1,4],[2,3],[2,1],[3,0],[3,0],[3,1],[2,-3],[0,-3],[3,-3],[1,0],[2,1],[2,-3],[1,0],[1,2],[0,4]],[[3056,4796],[1,2],[1,12],[1,20],[2,18],[2,20],[1,21],[2,21],[2,17],[1,15],[1,9],[1,11],[0,11],[1,3],[0,2],[-1,4],[0,2],[0,2],[0,2],[-2,1],[0,2],[-1,1],[0,3],[-1,2],[0,3],[-1,1],[0,3],[0,2],[1,3],[-1,2],[0,3],[-1,3],[-1,1],[-2,2],[-2,4],[-3,4],[-3,7],[-1,3],[0,10],[0,10],[1,15],[0,8],[2,0],[1,1],[2,0],[2,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[2,1],[1,-2],[1,-2],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[0,2],[0,2],[0,3],[0,4],[0,2],[-1,4],[-1,3],[-2,2],[-1,1],[-1,-2],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-3,-1],[-1,1],[-1,1],[-2,-2],[0,15],[0,14],[0,10],[2,0],[1,1],[3,1],[2,2],[1,0],[2,-1],[2,-2],[2,0],[6,0],[5,0],[7,0],[6,0],[6,0],[2,0],[-1,3],[-1,4],[0,3],[1,4],[0,1],[2,-1],[2,-6],[1,-4],[1,-3],[2,0],[1,1],[2,2],[3,8],[3,6],[1,2],[2,3],[1,0],[1,0],[2,-2],[1,-3],[3,-11],[2,-8],[1,-6],[0,-12],[0,-12],[0,-1],[1,-1],[5,3]],[[3142,5119],[7,-14],[5,-10],[3,-3],[1,-1],[3,1],[4,1],[1,2],[2,3],[4,4],[2,3],[1,0],[1,-1],[2,-2],[2,-5],[-2,-6],[1,-4],[2,1],[2,5],[1,5],[3,4],[2,5],[2,5],[2,3],[4,4],[2,2],[3,0],[1,2],[3,5],[1,3],[1,2],[3,-1],[2,1],[3,4],[3,6],[1,9],[1,7],[1,2],[1,1],[1,1],[2,1],[5,4],[3,4],[3,1],[1,1],[1,4],[0,7],[0,5],[-6,1],[-3,0],[-6,1],[-3,2],[0,1],[0,1],[0,3],[1,6],[-1,8],[-3,12],[-2,12],[0,8],[0,8],[0,6],[-2,5],[-8,14],[-3,6],[-1,5],[-3,8],[1,3],[2,0],[1,-2],[2,-5],[1,-1],[1,0],[8,0],[2,-1],[1,-1],[1,-2],[1,-6],[1,-3],[3,1],[5,0],[3,0],[1,-1],[2,-2],[4,3],[1,0],[1,-1],[5,-10],[2,-4],[3,-5],[3,0],[2,4],[1,16],[1,5],[1,1],[2,0],[1,3],[2,3],[2,1],[7,-4],[2,2],[7,4],[8,6],[2,6],[3,2],[2,5],[2,0],[3,0],[2,0],[1,1],[1,3],[2,6],[2,3],[2,2],[2,4],[2,3],[0,4],[0,3],[-1,5],[-1,5],[-1,1],[-1,1]],[[3312,5355],[3,1],[2,-2],[3,0],[2,1],[2,0],[2,3],[2,-1],[1,0],[1,-3],[1,-3],[2,-3],[0,-6],[0,-5],[-1,-5],[0,-5],[-1,-4],[-1,-4],[-1,-2],[0,-2],[1,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-4],[1,-2],[0,-1],[0,-4],[-1,-4],[1,-2],[1,-2],[2,-8],[0,-3],[1,-1],[0,-1],[0,-3],[-1,-4],[-2,-4],[0,-3],[-2,-2],[-3,-5],[1,-7],[0,-4],[0,-3],[-1,-4],[-2,-11],[-1,-6],[-1,-14],[0,-4],[1,-6],[2,-13],[1,-2],[3,-4],[0,-9],[0,-9],[0,-4],[0,-1],[1,-1],[1,-1],[0,-3],[0,-3],[2,-2],[2,-1],[1,-4],[3,-6],[1,-1],[1,-3],[2,-5],[4,-2],[4,-2],[1,-3],[2,-3],[1,0],[1,0],[1,3],[2,2],[2,-1],[2,1],[1,1],[0,3],[-1,5],[1,2],[3,0],[0,3],[0,2],[1,2],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,1],[0,1],[1,2],[0,4],[1,0],[2,1],[2,2],[3,1],[3,0],[1,1],[1,3],[3,8],[1,2],[2,1],[1,0],[2,1],[2,2],[1,-1],[1,-4],[1,-1],[1,0],[4,-2],[2,1],[2,1],[2,1],[1,-1],[2,1],[1,1]],[[3347,5822],[-1,-2],[-2,3],[-1,3],[0,9],[1,1],[3,-8],[2,-2],[-2,-4]],[[8194,5337],[4,0],[0,-2],[2,-7],[1,-7],[0,-10],[2,-5],[-1,-1],[-2,-1],[-2,1],[-1,2],[-2,11],[-1,7],[0,7],[0,5]],[[8194,5337],[-2,-3],[-2,-3],[-2,-3],[-1,-2],[0,-3],[0,-7],[1,-5],[1,-2],[0,-2],[0,-2],[-1,-5],[0,-1],[-1,-5],[-1,-5],[-2,-3],[-1,-1],[-1,2],[-2,3],[-2,6],[-1,3],[-2,0],[-1,3],[0,3],[-1,3],[-1,4],[-1,3],[-3,2],[0,2]],[[8168,5319],[3,0],[3,1],[4,3],[3,4],[3,4],[2,5],[3,4],[4,4],[2,0],[0,-3],[-1,-4]],[[7545,6691],[-1,-1],[0,-4],[-1,-4],[1,-3],[1,-4],[3,-3],[3,0],[2,1],[2,0],[1,-5],[1,-5],[-1,-4],[-1,-4],[0,-3],[0,-1],[1,-2],[1,-4],[0,-4],[-1,-2],[-1,-1],[-2,0],[-1,0],[-2,-1],[-2,-1],[-2,-2],[-5,1],[-1,3],[-1,0],[-4,-4],[-4,0],[-8,-1],[-3,0],[-4,0],[-1,1],[-3,3],[-3,3],[-3,-3],[-1,0],[-2,-5],[-5,-2],[-5,-2],[-2,1],[-3,0],[0,2],[0,1],[0,1],[-1,1],[-2,0],[-3,2],[-1,1],[-5,-2],[-3,3],[-4,4],[-1,2],[-1,6],[-1,2],[-1,2],[-1,3],[1,2],[3,5],[0,1]],[[7468,6665],[2,9],[2,3],[2,4],[2,7],[3,7],[3,8],[3,6],[1,3],[4,3],[2,2],[2,4],[2,2],[3,1],[3,-1],[3,-1],[4,-2],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[4,0],[4,0],[2,0],[5,-3],[2,-2],[2,-1],[1,0],[2,3],[2,3],[2,0],[1,-1],[1,-2],[4,-3],[3,-2],[1,-1],[0,-7],[0,-3]],[[5701,3993],[0,-3],[-1,-5],[1,-3],[1,-4],[1,-4],[2,-2],[1,-6],[1,-6],[2,-6],[6,-12],[1,-4],[0,-5],[4,-8],[1,-3],[-1,-6],[4,-17],[2,-10],[2,-2],[7,-10],[5,-9],[7,-6],[5,-3],[2,-3],[2,-3],[1,-5],[0,-9],[0,-5],[5,0],[5,-1],[1,-1],[1,-2],[0,-3],[0,-6],[0,-5],[0,-4],[-1,-6],[0,-7],[1,-3],[4,-9],[2,-6],[1,-8],[2,-3],[0,-1],[4,-1],[10,-4],[6,-3],[5,-4],[2,-1],[1,-1],[-1,-8],[1,-2],[0,-3],[1,-1],[1,-1],[4,-1],[2,-5],[1,-2]],[[5815,3732],[-6,-1],[-4,-4],[-2,-7],[-2,-5],[-4,-3],[-5,-3],[-4,-1],[-5,-6],[-5,-10],[-3,-7],[0,-3],[-1,-2],[-2,-2],[-1,-3],[-1,-2],[-1,-2],[-2,0],[-1,-2],[-1,-4],[-2,-3],[-2,-1],[-3,-2],[-2,-4],[-1,-2],[-2,0],[-1,-3],[-3,-8],[0,-3],[-4,-28],[-2,-4],[-4,-5],[-3,-7],[-2,-5],[-1,-1],[-8,-4],[-2,-2],[-4,-2],[-1,-3],[0,-8],[-3,-13],[-2,-9],[-1,-8],[-2,-10],[-2,-4],[-2,-3],[-3,-1],[-3,-1],[-4,0],[-2,0],[-4,-3],[-3,-1],[-5,2],[-5,2],[-2,1],[-4,6],[-2,0],[-4,1],[-2,1],[-2,3],[-4,7],[-4,5],[-4,3],[-3,2],[-4,-1],[-2,-2],[-1,0],[-2,-3],[-2,-5],[-2,-9],[0,-5],[-2,-10],[-3,-13],[-1,-3],[-1,-3],[-2,-3],[-7,-10],[-4,-11],[-2,-3],[-3,-2],[-2,-1],[-1,-2],[-2,-5],[-1,-2],[-1,-1],[-4,1],[-2,0],[-10,-1],[-4,2],[-2,1],[-3,-3],[-2,2],[-1,4],[-1,10],[0,8],[2,6],[2,5],[2,6],[0,2],[0,3],[-1,5],[0,4],[-2,11],[-3,15],[-4,16],[-1,4],[-2,7],[-9,13],[-2,2]],[[5554,3579],[0,1],[0,13],[0,17],[0,17],[0,17],[0,17],[0,17],[0,17],[0,17],[0,17],[0,14],[7,0],[8,0],[9,0],[4,0],[0,3],[0,10],[0,24],[0,25],[0,24],[0,24],[0,24],[0,24],[0,24],[0,25],[0,11],[7,1],[8,3],[14,4],[12,5],[8,2],[10,4],[3,0],[1,0],[2,-1],[4,-12],[3,-10],[0,-3],[1,-1],[1,1],[2,1],[4,9],[1,3],[3,4],[4,5],[3,3],[3,3],[2,-1],[1,-2],[2,-2],[7,11],[3,3],[9,2],[1,0]],[[5634,5694],[2,-8],[1,-2],[8,-18],[2,-4],[4,-13],[2,-8],[3,-12],[1,-7],[-1,-6],[0,-16],[-1,-5],[-4,-8],[0,-4],[1,-4],[1,-1],[1,-2],[-1,-7],[2,-3],[2,-2],[7,-1],[3,-1],[3,-2]],[[5670,5560],[2,-1],[0,-2],[-1,-9],[1,-6],[2,-4],[3,-2],[2,-1],[8,-3],[3,-3],[4,-11],[5,-9],[2,-5],[0,-4],[-2,-6],[0,-2],[3,-5],[2,-6],[6,-6],[9,-10],[4,-6],[1,-5],[2,-6],[4,-4],[2,-4],[-2,-11],[1,-3],[0,-3],[2,-5],[1,-5],[2,-7],[2,-3],[4,-1],[2,-3],[4,-5],[4,-5],[1,-3],[1,-3],[1,-3],[1,-4],[0,-7],[1,-9],[2,-6],[2,-5]],[[5761,5349],[-8,6],[-2,0],[-1,-1],[-4,-7],[-2,0],[-1,0],[-4,1],[-13,5],[-9,5],[-3,2],[-6,1],[-3,-3],[-3,-11],[-1,-3],[-5,-3],[-3,1],[-6,-3],[-9,4],[-3,0],[-3,-3],[-6,-5],[-4,-3],[-5,-3],[-4,-4],[-3,-2],[-3,0],[-3,2],[-2,2],[-4,1],[-3,-1],[-3,-5],[-2,-3],[-2,-9],[-3,-14],[-2,-3],[-1,-1],[-14,7],[-6,1],[-4,-2],[-5,4],[-3,1],[-1,-1],[-3,1],[-4,5],[-5,2],[-4,-1],[-2,2],[-2,5],[-3,8],[-5,9],[-6,7],[-4,5],[-1,3],[-4,2],[-5,0],[-5,-3],[-7,-11],[-6,-21],[-4,-9],[-3,-2],[-1,-5],[2,-8],[0,-10],[-1,-16],[0,-12]],[[5516,5253],[-1,2],[-2,5],[0,1],[-5,-2],[-2,-2],[-1,-3],[-1,0],[-1,3],[-2,1],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,2],[-7,5],[-2,1],[-1,0],[-4,-4],[-2,-1],[-6,-3],[-7,-1],[-2,0],[-2,-2],[-1,-2],[-1,-6],[-1,-9],[-1,-3],[0,-4],[0,-6],[0,-6],[0,-4],[-2,-7],[-2,-10],[-2,-8],[-2,-8]],[[5449,5181],[-1,6],[-1,6],[0,8],[0,2],[-1,2],[0,6],[0,4],[0,4],[-2,4],[-1,3],[-1,3],[-1,1],[-1,0],[-2,2],[-3,6],[-3,6],[-3,7],[-3,7],[-3,8],[-3,7],[-2,7],[-1,5],[1,0],[1,0],[1,1],[0,2],[-1,5],[-1,8],[-1,4],[-4,7],[-3,5],[-1,2],[-1,4],[-1,24],[-1,6],[-1,3],[-1,2],[0,1],[0,5],[1,3],[0,2],[0,3],[0,22],[0,1],[-1,2],[-1,0],[-1,0],[-1,3],[-1,4],[1,3],[1,3],[1,2],[1,1],[4,4],[1,2],[1,2],[0,3],[2,11],[4,11],[1,3],[2,7],[1,9],[1,4],[1,5],[1,3],[4,6],[2,9]],[[5429,5492],[3,0],[4,-2],[4,-1],[3,2],[2,4],[4,3],[5,4],[1,5],[2,3],[1,2],[1,1],[0,-2],[1,-6],[2,-5],[4,-6],[1,0],[2,5],[5,3],[1,1],[4,7],[4,4],[1,0],[1,1],[5,5],[3,-1],[5,1],[8,2],[6,0],[3,1],[1,1],[1,7],[1,1],[2,3],[5,10],[3,8],[0,2],[0,1],[1,0],[1,3],[-1,4],[-5,7],[0,1],[0,1],[0,1],[2,3],[3,4],[2,1],[7,0],[6,0],[2,0],[4,2],[4,1],[3,4],[8,-1],[6,9],[2,2],[0,1],[1,1],[2,4],[4,7],[2,7],[1,4],[7,16],[3,-1],[1,2],[3,10],[0,2],[2,1],[1,1],[2,3],[1,5],[0,5],[-1,5],[0,2],[1,2],[1,2],[6,6],[1,2],[1,3],[1,0],[2,0],[1,1],[1,3],[4,3],[3,3],[4,-1],[3,-1],[2,-2],[1,0]],[[3339,7650],[-4,-3],[-3,1],[-2,2],[5,0],[2,0],[4,3],[-2,-3]],[[3159,7670],[-2,-2],[1,2],[1,6],[2,0],[-2,-6]],[[3145,7694],[-4,-4],[2,8],[1,3],[2,-1],[-1,-5],[0,-1]],[[3306,7741],[-1,0],[0,1],[-2,2],[0,1],[2,2],[3,-1],[-1,-3],[-1,-2]],[[2953,7747],[-4,-1],[-1,0],[4,6],[4,2],[-3,-7]],[[2956,7740],[-2,-1],[-4,1],[-4,-1],[-1,0],[3,4],[5,3],[4,8],[2,0],[-2,-9],[0,-4],[-1,-1]],[[3027,7823],[-3,0],[1,2],[3,4],[3,2],[1,0],[-2,-5],[-3,-3]],[[3302,7768],[1,0],[4,3],[2,0],[0,-2],[-3,-3],[-2,-1],[2,-2],[0,-1],[-2,-2],[-1,-3],[1,-3],[3,3],[2,0],[2,-1],[2,1],[1,1],[6,10],[0,2],[-7,-2],[0,1],[4,6],[0,4],[2,5],[2,3],[2,2],[2,1],[1,-2],[1,-5],[3,1],[4,-1],[3,-2],[0,-1],[0,-2],[-1,-3],[-1,-2],[3,-3],[-1,-2],[-4,-3],[-3,-4],[-3,-5],[-5,-5],[-8,-4],[-2,0],[-3,2],[-3,-1],[-3,-1],[-3,0],[-1,-1],[-2,0],[-1,2],[-2,4],[-1,3],[-2,13],[1,7],[2,7],[3,4],[2,4],[7,20],[1,5],[2,4],[3,4],[4,6],[1,2],[2,0],[3,0],[-1,-2],[0,-3],[3,-9],[0,-2],[-2,-7],[-2,-12],[-1,-6],[0,-2],[-1,-4],[-1,-2],[-5,-5],[-2,-1],[-2,-2],[-6,-6]],[[3227,7799],[1,0],[1,1],[2,5],[4,-1],[2,-2],[1,0],[1,0],[3,-3],[4,-2],[5,0],[7,1],[1,1],[7,1],[7,1],[2,-2],[1,-1],[1,-1],[-4,-4],[-4,-5],[-6,-4],[-1,-3],[0,-4],[0,-4],[1,0],[1,-1],[-1,-2],[-6,0],[-2,0],[-2,2],[-1,4],[-2,-1],[-1,1],[4,3],[-2,4],[-2,0],[-1,2],[0,3],[2,1],[0,1],[-2,-1],[-2,-2],[-2,-1],[-2,-3],[3,0],[-1,-2],[-2,0],[-8,3],[-2,1],[-3,4],[-2,4],[1,1],[1,0],[0,1],[-3,1],[-5,0],[-2,1],[0,8],[-1,2],[-3,2],[-4,1],[0,3],[1,4],[2,4],[2,4],[2,3],[4,7],[0,-5],[0,-4],[-3,-8],[6,-8],[0,-2],[1,-2],[-1,-2],[0,-2],[2,-1],[0,-2]],[[3280,7848],[1,-1],[2,0],[1,-1],[-2,-2],[-3,0],[-2,1],[3,11],[2,3],[6,7],[2,2],[2,1],[2,0],[-2,-5],[-3,0],[-3,-4],[-2,-4],[-2,-2],[-1,-3],[-1,-3]],[[3493,7857],[-1,-2],[-1,0],[0,2],[1,3],[1,3],[0,1],[1,2],[1,1],[1,2],[0,-4],[-3,-8]],[[3208,7883],[-1,-4],[-2,-4],[-2,0],[0,1],[1,2],[-1,4],[2,1],[1,-1],[2,1]],[[3209,7888],[-4,-3],[2,4],[0,1],[1,1],[1,0],[0,-3]],[[1571,7935],[-1,-2],[-1,1],[0,1],[-2,10],[1,0],[2,-3],[0,-2],[1,-3],[1,-2],[-1,0]],[[1573,7943],[-1,-1],[-4,4],[-3,6],[-1,3],[6,-8],[3,-3],[0,-1]],[[2924,7713],[4,2],[9,9],[6,3],[8,9],[5,2],[2,2],[0,7],[1,3],[3,7],[3,7],[2,8],[5,6],[7,4],[7,11],[4,3],[3,2],[2,4],[2,2],[5,5],[7,1],[6,4],[5,2],[3,4],[5,2],[13,11],[3,5],[5,10],[4,5],[2,6],[6,9],[6,12],[3,8],[5,5],[8,13],[5,6],[2,0],[5,5],[4,5],[5,5],[10,6],[9,8],[12,6],[15,10],[11,5],[9,1],[10,2],[3,0],[16,-4],[7,-5],[9,-11],[1,-3],[0,-4],[-4,2],[-4,0],[2,-2],[5,-7],[0,-8],[-3,-8],[-8,-4],[-2,-2],[-1,-5],[-2,-2],[-4,-2],[-2,-4],[-6,-5],[-3,0],[-3,1],[-8,5],[-5,4],[-2,-2],[-2,-3],[-5,1],[-2,-1],[-3,1],[-7,-6],[2,0],[5,3],[2,0],[5,-5],[10,-4],[2,-3],[3,-10],[1,-1],[4,1],[4,4],[3,3],[6,2],[-1,-3],[5,0],[4,-4],[-1,-3],[-3,-6],[-1,-12],[-5,-8],[-7,-8],[2,-2],[2,-1],[4,2],[3,0],[3,-2],[-1,-6],[-1,-4],[0,-4],[2,-7],[3,-2],[1,-9],[1,-5],[0,-4],[2,-3],[1,-4],[9,-1],[2,-2],[6,-2],[1,-1],[2,-2],[-7,-5],[5,-4],[5,-6],[4,1],[2,0],[4,-4],[1,-1],[1,-2],[2,0],[3,2],[5,-1],[6,-2],[-1,-3],[0,-2],[4,1],[3,-3],[1,1],[1,2],[5,4],[8,8],[1,-1],[0,-3],[1,-5],[3,-4],[3,-1],[5,3],[1,-2],[2,-5],[3,-5],[-1,-2],[-2,-2],[-3,-3],[10,-1],[1,-1],[1,-2],[-1,-3],[-1,-1],[-1,2],[-4,-2],[-3,-3],[-3,-1],[-2,0],[-2,-2],[-2,-2],[-2,-1],[-6,-5],[-7,-3],[-7,-6],[-7,-3],[-7,-4],[-2,-1],[-2,0],[-4,-4],[-2,1],[-2,-1],[-2,1],[-2,2],[1,-5],[1,-4],[-1,-1],[-1,-2],[-4,0],[-2,1],[-2,3],[-1,3],[-2,2],[-1,-3],[0,-3],[-2,-3],[-2,6],[-3,-2],[-2,-6],[1,-2],[1,-5],[-1,-3],[-2,1],[-2,-7],[-3,-2],[-3,-8],[-4,-5],[-1,-4],[-6,-8],[-3,0],[-1,0],[-3,-3],[0,-8],[-2,1],[-1,0],[0,-2],[-1,0],[-3,2],[-2,-1],[-2,1],[-3,10],[-2,4],[-2,1],[-1,-2],[-1,-2],[-2,4],[-2,16],[0,4],[3,13],[6,12],[-2,0],[-6,-8],[1,2],[1,2],[2,3],[3,4],[4,1],[2,1],[2,1],[3,4],[0,1],[-2,-2],[-4,-2],[1,3],[1,1],[21,22],[4,3],[8,5],[2,3],[-2,1],[4,-1],[-1,-3],[0,-1],[0,-3],[0,-3],[3,-2],[3,-5],[-1,7],[2,4],[10,6],[8,0],[2,3],[-6,2],[-9,-1],[-5,2],[-6,-2],[-8,2],[-2,-2],[-2,-3],[-2,1],[-1,0],[-1,2],[2,6],[7,8],[5,8],[1,2],[1,3],[-2,-1],[-2,-1],[-2,4],[-3,4],[0,-1],[1,-6],[-5,-11],[-3,-1],[-4,-4],[-7,-5],[-7,-8],[-9,-6],[-2,0],[-5,5],[1,3],[2,3],[-1,-1],[-1,-1],[-3,-3],[2,-4],[-1,-2],[-3,-2],[-2,-4],[-3,-2],[-2,3],[-5,-4],[-5,-1],[-1,2],[0,3],[-2,1],[-3,-1],[-1,1]],[[3135,7722],[-1,1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,1],[-1,2],[-1,2],[-1,2],[1,2],[0,2],[1,2],[-1,2],[-1,2],[0,1],[0,2],[1,1],[1,1],[0,2],[0,2],[-2,1],[-1,0],[-2,0],[-2,2],[-1,1],[-1,1],[-1,1],[-1,2],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,5],[0,10],[0,8],[-1,9],[0,7],[0,10],[0,9],[0,9],[-3,5],[-5,6],[-4,4],[-2,1],[-1,-1],[-1,-1],[-3,-2],[-5,-2],[-4,-3],[-2,0],[-1,0],[-2,2],[-1,2],[-1,4],[1,5],[-3,1],[-3,1],[-1,-3],[-2,-3],[-3,-7],[-4,-9],[-3,-5],[-4,-9],[-4,-8],[-1,-8],[-1,-8],[-3,-6],[-2,-5],[0,-6],[-1,-6],[0,-5],[0,-2],[0,-2],[-1,-2],[-2,-4],[0,-4],[-2,-2],[-3,-3],[-3,-6],[0,-3],[0,-3],[0,-1],[0,-1],[-2,0],[-1,-1],[-1,-2],[0,-3],[-1,-3],[-1,0],[0,2],[-1,2],[-2,0],[-1,-1],[-2,-3],[-2,0],[-4,2],[-2,-6],[-3,-11],[-11,0],[-12,0],[-12,0],[-11,0],[-12,0],[-11,0],[-12,0],[-6,0],[-2,0]],[[1497,7970],[1,-5],[-3,1],[-2,1],[0,2],[1,3],[3,-1],[0,-1]],[[3484,7984],[-4,-3],[-1,-2],[-1,0],[-1,1],[-1,3],[0,2],[1,0],[1,-1],[0,-1],[1,0],[3,3],[2,1],[1,-1],[-1,-2]],[[3497,7993],[2,-3],[1,-1],[-7,-5],[-1,0],[0,1],[0,4],[0,3],[2,-2],[2,4],[1,-1]],[[1551,7981],[1,-1],[-7,4],[-2,3],[-1,2],[-1,1],[-3,3],[-1,1],[1,1],[2,0],[4,-3],[3,-3],[4,-8]],[[1482,7985],[-1,0],[-2,1],[-2,1],[-3,5],[-1,1],[1,1],[1,1],[0,1],[-1,3],[3,2],[2,-2],[1,-2],[2,-3],[0,-5],[0,-3],[0,-1]],[[3283,7955],[-12,-1],[-9,4],[-7,1],[-6,4],[-15,10],[-2,4],[-1,4],[-3,4],[-3,3],[-15,10],[-2,4],[4,2],[3,1],[3,0],[11,-4],[13,-3],[5,-3],[7,-4],[6,-5],[14,-13],[2,-1],[7,-6],[2,-5],[1,-3],[-1,-2],[-2,-1]],[[1528,8010],[-1,7],[1,2],[0,1],[0,1],[1,-3],[1,-2],[0,-2],[0,-1],[-2,-3]],[[1523,8014],[-1,-3],[-2,5],[-2,11],[0,3],[1,3],[1,0],[2,-1],[2,-3],[0,-1],[1,-4],[1,-2],[-2,-4],[-1,-4]],[[3457,8051],[-1,0],[-1,0],[-1,0],[0,1],[1,3],[2,1],[2,0],[0,-1],[-1,-2],[-1,-2]],[[1467,8047],[13,-8],[14,-4],[10,-4],[7,-1],[2,-1],[1,-2],[2,-3],[3,-9],[2,-6],[5,-9],[3,-7],[1,-3],[0,-1],[0,-2],[2,-6],[6,-6],[4,-3],[8,-5],[6,-4],[1,-4],[2,-3],[1,-2],[2,-8],[4,-7],[3,-14],[1,1],[0,4],[1,1],[1,0],[0,-1],[1,-4],[2,-9],[0,-3],[-1,0],[-3,1],[-1,-1],[-2,-3],[-1,-2],[0,1],[-9,3],[-6,3],[-7,5],[-9,5],[-5,3],[-4,3],[-3,3],[0,3],[0,1],[5,8],[3,4],[1,3],[0,4],[0,4],[-1,-4],[-1,-4],[-1,-3],[0,-1],[-7,-1],[-5,0],[-3,-3],[-1,-1],[-1,2],[-4,4],[-4,4],[0,1],[3,2],[2,2],[-1,1],[-1,0],[-1,0],[-1,4],[-2,1],[-2,-2],[-1,0],[-1,2],[2,6],[0,1],[-3,-2],[0,1],[-1,2],[-1,0],[-2,0],[-2,2],[-1,-1],[0,-2],[-1,-1],[-3,4],[-2,-3],[-1,0],[0,1],[-1,8],[0,2],[1,0],[3,2],[7,2],[1,1],[-6,0],[-1,1],[-2,2],[-2,0],[-1,1],[-1,2],[-2,6],[-2,2],[-3,1],[-1,1],[-1,0],[0,-2],[-1,-1],[-2,-1],[-2,0],[-2,2],[0,3],[-1,2],[1,4],[0,1],[0,2],[-1,1],[-1,1],[0,-1],[0,-2],[-1,-1],[-2,-1],[-1,2],[-1,2],[-1,2],[-6,0],[-2,-2],[-2,0],[-1,0],[0,1],[1,4],[0,5],[-1,1],[-2,1],[-1,1],[2,6],[1,1],[1,1],[5,0],[2,-1],[3,-3],[-1,1],[0,4],[-1,2],[2,3],[-2,1],[-6,1],[0,-2],[1,-3],[-4,-2],[-3,0],[-2,0],[-2,1],[-4,6],[-2,5],[0,3],[1,3],[2,2],[3,1],[6,1],[5,-3],[15,-10]],[[3459,8100],[-2,-6],[-1,-3],[-2,-1],[-2,-1],[-6,-1],[-3,-1],[0,-4],[0,-2],[1,-1],[1,-1],[3,1],[1,0],[0,-1],[1,-1],[0,-2],[0,-3],[0,-3],[-2,-8],[-3,-4],[-3,-3],[-1,-1],[0,-2],[-1,-5],[-1,-4],[-6,-10],[-2,-2],[0,-2],[0,-4],[-2,-4],[-4,-9],[-1,-3],[-1,-2],[0,-4],[0,-1],[-1,-3],[-1,-3],[0,-1],[0,-3],[1,-1],[0,-2],[-1,-3],[2,2],[4,8],[3,5],[2,2],[2,2],[1,4],[2,5],[2,1],[1,0],[1,-3],[0,-2],[-1,-4],[0,-1],[2,3],[4,2],[2,-1],[3,-3],[2,1],[4,1],[1,0],[-1,-3],[-1,-3],[-4,-4],[-9,-7],[-3,-5],[1,0],[2,2],[2,2],[2,0],[1,-1],[-1,-1],[0,-4],[-5,-8],[1,0],[6,4],[4,-5],[5,2],[3,1],[0,-1],[1,-2],[0,-3],[0,-1],[2,2],[0,1],[0,6],[1,-1],[1,-1],[0,-4],[0,-5],[-1,-4],[-3,-6],[1,-2],[-1,-3],[1,0],[2,3],[0,1],[0,2],[0,1],[2,3],[3,3],[1,0],[1,0],[-1,-2],[1,0],[2,3],[2,2],[2,0],[2,2],[2,4],[2,2],[2,3],[1,0],[-1,-4],[1,-4],[0,-3],[0,-1],[2,4],[1,1],[1,0],[1,0],[9,2],[2,-1],[3,-3],[4,-4],[2,-3],[0,-4],[-1,-3],[-2,-4],[-3,-3],[-1,-2],[0,-3],[-1,-1],[-2,-2],[-7,-6],[2,0],[4,1],[3,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[1,-1],[2,-1],[3,0],[2,-1],[0,-1],[-2,-5],[-1,-3],[-2,-2],[-5,-4],[-2,-2],[1,0],[4,3],[3,1],[1,0],[2,2],[3,1],[2,-1],[4,4],[1,1],[3,-1],[1,1],[3,4],[2,1],[1,-1],[0,-4],[-1,-3],[0,-2],[-2,-5],[-2,-2],[-1,0],[-2,0],[-1,-1],[-2,-3],[-3,-4],[-3,-2],[2,-2],[0,-3],[0,-2],[-4,-1],[0,-1],[-2,0],[-3,-2],[2,0],[4,1],[1,-1],[-1,-3],[-1,-3],[-5,-7],[1,-4],[1,-3],[1,-2],[3,0],[2,1],[2,5],[7,15],[5,4],[5,5],[1,-1],[0,-1],[0,-1],[-2,-4],[-2,-3],[-3,-10],[-1,-5],[0,-4],[0,-9],[0,-1],[1,-2],[2,2],[3,4],[2,4],[2,6],[0,2],[2,0],[0,-1],[1,-3],[1,-4],[0,-5],[0,-4],[-1,-3],[-6,-19],[1,-3],[0,-2],[0,-3],[-3,-9],[-1,-6],[-2,-2],[-1,-2],[-1,0],[-2,1],[-1,2],[-1,1],[-1,0],[-1,0],[-4,-5],[-1,0],[-1,0],[-1,3],[1,12],[0,4],[-1,4],[1,5],[0,2],[0,1],[-1,-1],[-2,-3],[-2,-4],[-2,-5],[-5,-6],[-1,-1],[-1,1],[-1,0],[-1,3],[0,2],[0,3],[2,7],[3,10],[3,8],[1,3],[-1,1],[-1,3],[-1,8],[-1,7],[-2,3],[-4,3],[0,-1],[-1,-4],[-5,-13],[0,-6],[-1,-2],[-1,-1],[-2,-2],[1,3],[2,7],[-1,0],[-2,-5],[-2,-3],[-3,-1],[-2,1],[-1,-1],[-7,-13],[0,-4],[-1,-3],[-3,-7],[-2,-2],[-2,0],[-2,1],[-2,0],[-3,-2],[-4,-1],[-2,0],[-1,1],[-2,3],[0,1],[0,1],[1,3],[3,3],[1,1],[5,2],[3,2],[3,4],[1,2],[5,11],[6,4],[2,4],[3,4],[0,1],[-3,-2],[-2,0],[-2,0],[-1,2],[-4,-1],[-4,1],[-1,-1],[-1,-6],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-6,2],[-1,1],[-1,1],[-6,-1],[-1,0],[1,1],[6,4],[0,12],[0,1],[-2,-1],[-2,-2],[-2,1],[-1,1],[-1,-1],[-2,-6],[-1,-1],[-2,0],[-4,-3],[-7,-1],[-1,-2],[-5,1],[-15,3],[-5,0],[-6,2],[-1,1],[-9,0],[-3,0],[0,3],[-2,-3],[-3,-1],[-2,-2],[-10,-3],[-4,0],[-3,2],[-1,1],[-2,7],[-1,7],[0,2],[0,2],[2,4],[9,10],[7,9],[3,5],[3,2],[4,5],[-4,0],[-3,1],[-4,0],[-6,-1],[-6,0],[0,2],[3,4],[6,7],[1,0],[-2,-3],[-1,-2],[1,-2],[1,-1],[4,0],[0,1],[2,8],[2,8],[2,7],[2,4],[2,1],[1,-1],[3,-1],[4,-4],[1,-1],[1,1],[-2,1],[-1,2],[0,2],[1,6],[2,2],[0,1],[-3,0],[-3,2],[-1,2],[1,5],[0,3],[3,4],[2,3],[2,-1],[3,-4],[1,1],[0,1],[-3,6],[0,4],[0,2],[6,19],[2,10],[4,16],[1,3],[2,4],[1,1],[3,0],[1,1],[-2,2],[-1,1],[0,2],[1,2],[1,1],[3,2],[2,4],[1,5],[0,2],[-1,2],[2,2],[4,5],[1,1],[1,8],[2,4],[2,1],[3,2],[8,6],[5,5],[4,-1],[1,-3],[5,-2],[1,2],[-2,3],[1,1],[4,1],[1,0],[1,-2],[0,-1]],[[1446,8096],[0,-1],[-1,0],[-2,1],[-1,2],[-2,7],[0,1],[1,1],[2,3],[1,0],[1,-2],[1,-4],[1,-1],[0,-5],[-1,-2]],[[3462,8121],[-1,-1],[-1,1],[1,2],[1,3],[2,1],[0,-4],[-2,-2]],[[2795,8124],[-2,0],[-2,0],[-2,2],[-2,2],[9,5],[2,-1],[0,-1],[-2,-3],[0,-1],[0,-2],[-1,-1]],[[1360,8125],[-1,1],[-1,2],[0,5],[0,2],[0,1],[3,-3],[-1,-8]],[[1434,8151],[-2,-1],[1,3],[0,2],[-1,2],[0,3],[0,8],[2,5],[3,1],[0,-3],[-1,-11],[-1,-6],[0,-2],[-1,-1]],[[1418,8157],[-1,-2],[-3,6],[-2,2],[-2,7],[-1,3],[0,2],[1,0],[1,0],[0,-1],[6,-8],[1,-3],[0,-6]],[[1408,8186],[-1,-1],[-1,1],[-1,2],[-2,4],[0,2],[-1,3],[1,0],[1,0],[3,-8],[1,-3]],[[2757,8171],[-2,0],[-6,1],[-2,1],[-7,5],[-14,6],[-4,3],[-1,2],[2,5],[2,2],[1,1],[14,3],[6,-1],[6,-10],[4,-7],[2,-6],[0,-2],[-1,-3]],[[1340,8198],[3,-6],[1,-4],[-1,-6],[-4,-2],[-2,1],[-1,0],[-2,-2],[2,-1],[2,-2],[3,-4],[3,-1],[4,-2],[-3,-5],[0,-3],[4,-7],[0,-2],[1,0],[3,0],[1,0],[0,-2],[-2,-4],[0,-1],[2,-1],[3,0],[1,-4],[-3,-4],[-6,5],[-2,5],[-2,5],[-1,2],[-6,6],[-7,13],[-2,1],[-2,5],[-1,3],[0,1],[1,1],[2,1],[0,2],[-9,5],[-1,0],[-1,3],[1,1],[5,-1],[5,2],[3,1],[1,1],[3,2],[1,0],[3,-2]],[[1429,8183],[1,-19],[0,-6],[-2,-4],[-1,-7],[-2,-3],[-1,4],[0,7],[-1,5],[0,3],[1,9],[-1,0],[-2,-5],[-2,0],[-3,5],[-2,4],[0,4],[-2,4],[-1,2],[1,1],[1,5],[1,3],[1,6],[1,2],[1,0],[3,-3],[4,-3],[3,-4],[2,-10]],[[1412,8193],[-3,0],[-1,0],[0,2],[-1,2],[1,2],[1,4],[1,2],[0,1],[1,-2],[1,-2],[0,-9]],[[2779,8204],[0,-1],[-2,0],[-1,1],[0,2],[-1,1],[1,1],[2,-1],[1,-3]],[[1393,8196],[-1,0],[-1,1],[-6,10],[-5,3],[-3,5],[-3,4],[2,5],[2,-1],[5,-4],[5,-4],[2,-3],[6,-11],[-1,-2],[-2,-3]],[[1382,8243],[-1,-2],[-2,-3],[-1,-2],[-1,1],[-1,0],[-2,4],[-2,1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,1],[-1,2],[0,2],[0,2],[2,2],[4,5],[1,1],[2,0],[2,-3],[2,-5]],[[1315,8253],[3,-3],[6,2],[1,-1],[1,-1],[1,-3],[2,-4],[0,-5],[-1,-2],[-1,-1],[-9,-8],[-1,-1],[1,-1],[2,0],[8,2],[0,1],[1,6],[1,3],[0,3],[-1,5],[0,3],[6,0],[3,2],[4,4],[0,-7],[-1,-2],[-3,-9],[-2,-7],[-1,-8],[0,-12],[-1,-4],[-1,-3],[-9,-4],[-5,0],[-5,4],[-2,3],[2,3],[1,0],[3,0],[2,-2],[1,0],[0,1],[-6,6],[-5,3],[-2,4],[0,2],[0,2],[-4,8],[-1,4],[0,5],[0,5],[1,8],[0,1],[2,0],[2,-1],[7,-1]],[[1363,8274],[-1,0],[0,1],[0,3],[1,4],[1,1],[3,-1],[1,0],[0,-1],[0,-1],[-2,-2],[-3,-4]],[[1373,8291],[2,4],[5,7],[3,4]],[[1383,8306],[0,-4],[-4,-8],[-5,-4],[-1,1]],[[3305,8366],[1,-1],[-5,1],[-1,1],[0,1],[0,1],[1,2],[2,1],[1,0],[2,-2],[0,-1],[-1,-3]],[[2810,8373],[-1,-1],[-1,0],[0,2],[1,4],[1,3],[0,3],[1,3],[1,2],[1,1],[1,0],[1,-7],[-1,-4],[-1,-2],[-1,-3],[-2,-1]],[[2778,8376],[-1,0],[-2,1],[1,4],[1,2],[4,2],[1,1],[1,0],[1,0],[2,2],[2,3],[1,1],[-1,-5],[-2,-4],[-8,-7]],[[2807,8380],[-2,-6],[-2,-6],[-3,-11],[-1,0],[-1,2],[3,13],[0,2],[0,1],[-1,2],[-1,-3],[-5,-14],[-1,-2],[-1,-1],[-1,-1],[-3,1],[-4,-4],[7,17],[1,1],[-2,1],[0,-1],[-6,-10],[-4,-5],[-2,2],[-1,1],[0,1],[6,11],[6,8],[2,4],[1,5],[0,3],[0,4],[1,1],[0,-2],[0,-3],[-1,-8],[-1,-4],[-1,-4],[3,2],[1,3],[2,6],[1,5],[1,9],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[0,-3],[1,-1],[2,-1],[1,-1],[1,-3],[0,-2],[0,-1],[1,0],[-1,-3]],[[2791,8403],[-1,-1],[-1,0],[1,5],[-1,2],[0,1],[0,1],[1,0],[1,-1],[1,-2],[0,-2],[0,-1],[-1,-1],[0,-1]],[[2781,8410],[-1,-1],[-1,1],[0,3],[1,2],[1,0],[1,-1],[0,-2],[-1,-2]],[[3285,8456],[2,-2],[1,-6],[-5,0],[-5,5],[-1,3],[1,1],[1,-1],[1,1],[2,1],[3,-2]],[[2785,8454],[0,-1],[-1,1],[-1,-4],[0,-1],[-1,3],[1,2],[0,1],[0,1],[1,3],[1,0],[0,-3],[0,-2]],[[3079,8544],[-2,-4],[-2,0],[-1,-1],[-1,0],[1,4],[0,3],[0,3],[1,1],[3,0],[0,-3],[0,-1],[1,0],[0,-2]],[[2770,8579],[-1,0],[-1,0],[1,3],[1,0],[2,3],[1,-1],[-1,-2],[-1,-2],[-1,-1]],[[2776,8587],[-3,0],[1,4],[1,1],[1,1],[3,1],[1,-2],[-1,-2],[-3,-3]],[[3211,8623],[-1,-4],[-4,1],[-5,3],[-2,2],[0,3],[0,3],[1,0],[4,0],[3,-4],[1,-1],[3,-3]],[[3104,8615],[-2,0],[-1,1],[0,4],[0,2],[3,6],[3,6],[1,2],[3,-1],[2,-2],[2,-3],[1,-2],[-1,-4],[-2,-3],[-3,-2],[-6,-4]],[[2818,8644],[-4,-1],[0,1],[2,3],[6,2],[4,0],[-1,-2],[-2,-1],[-5,-2]],[[3199,8682],[-1,-1],[-1,0],[-2,4],[-2,1],[-1,1],[-9,7],[-1,2],[0,3],[3,1],[6,1],[4,0],[5,-2],[1,-1],[2,-3],[0,-3],[0,-4],[-1,-2],[-2,-1],[-1,-3]],[[2415,8710],[-1,0],[-2,3],[-1,2],[3,1],[3,-3],[-1,-1],[-1,-2]],[[3193,8712],[1,0],[1,0],[1,-2],[0,-1],[2,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-6,3],[-2,4],[0,2],[0,2],[1,1],[2,0],[1,-1],[1,-3]],[[2790,8744],[2,-2],[4,-5],[1,-3],[1,-4],[-1,-4],[-1,-5],[-1,-3],[-3,-5],[-2,-5],[-2,-6],[-1,-4],[-2,-1],[-1,-1],[-1,-1],[-3,3],[-3,4],[-2,2],[-3,2],[-2,3],[0,2],[0,8],[0,4],[0,3],[1,3],[2,3],[4,8],[3,3],[1,0],[4,0],[2,0],[2,1],[1,0]],[[3199,8753],[5,-1],[4,0],[1,-1],[1,-3],[-1,-4],[-2,-1],[-3,-1],[-5,2],[-2,0],[-2,3],[1,1],[3,1],[-1,2],[0,1],[1,1]],[[2944,8756],[-1,0],[-6,0],[-7,3],[-3,3],[1,1],[2,0],[3,-2],[8,-1],[3,-1],[0,-2],[0,-1]],[[3046,8752],[-2,0],[-4,0],[-4,1],[-2,2],[-2,3],[0,3],[-4,5],[-4,2],[-3,3],[3,0],[3,0],[5,-2],[5,-2],[6,-4],[2,-4],[2,-3],[1,-2],[-1,-1],[-1,-1]],[[2722,8776],[1,-2],[0,-2],[0,-4],[-1,-3],[-1,-2],[-2,-5],[-8,-8],[-3,-4],[-2,-3],[-12,-11],[-2,-1],[-1,1],[-4,1],[-3,1],[-9,-5],[-1,1],[0,5],[-1,2],[-4,6],[0,2],[0,1],[0,2],[5,5],[10,20],[2,1],[5,-2],[2,-1],[2,0],[7,4],[7,0],[6,2],[3,0],[3,0],[1,-1]],[[2836,8807],[3,-3],[2,0],[2,-2],[3,-6],[0,-1],[0,-2],[-2,-3],[-1,-2],[-4,-2],[-4,-1],[-3,2],[-6,6],[-6,7],[-2,4],[1,1],[2,2],[6,1],[8,-1],[1,0]],[[2870,8802],[-3,-1],[-4,2],[-4,2],[-8,9],[6,5],[10,-6],[3,-4],[0,-7]],[[2843,8837],[-2,-2],[-6,1],[-1,1],[0,1],[1,1],[6,1],[3,0],[1,0],[0,-1],[-2,-2]],[[2641,8913],[1,-1],[1,0],[2,3],[4,9],[2,0],[1,0],[7,-5],[2,-3],[2,-4],[1,-2],[5,-2],[5,-1],[7,-2],[2,-2],[5,-8],[1,0],[5,-3],[9,-8],[3,-1],[8,-2],[4,-2],[3,-3],[3,-5],[4,-8],[3,-12],[0,-3],[0,-1],[-1,-2],[-5,-5],[0,-1],[5,0],[10,3],[7,-2],[2,0],[1,0],[2,4],[2,-1],[4,-4],[3,-3],[1,-2],[-1,-1],[-2,-1],[6,-2],[5,-4],[-1,-2],[-6,-5],[-5,-5],[-7,-7],[-2,-1],[-1,0],[-3,1],[-6,4],[-16,7],[-5,2],[-7,1],[0,1],[-2,12],[-3,2],[-10,2],[-3,1],[0,3],[1,3],[-2,2],[-3,0],[-3,-1],[-6,-2],[-2,-3],[-1,-2],[-1,-6],[0,-3],[-2,-3],[-8,-9],[-4,-3],[-3,-1],[-1,-1],[-2,-3],[-4,-8],[-1,-3],[-2,-2],[-5,-4],[-4,-3],[-8,-3],[-4,-1],[-3,1],[-2,8],[-4,23],[-1,1],[-1,1],[-1,1],[-14,-3],[-7,0],[-8,-5],[-2,-1],[-3,1],[-3,0],[-1,1],[0,2],[0,3],[1,2],[3,7],[3,4],[1,1],[13,8],[3,2],[2,3],[0,3],[-1,3],[-2,8],[-1,8],[0,3],[1,6],[4,14],[1,7],[2,24],[1,7],[1,6],[2,4],[4,7],[3,4],[4,2],[1,-1],[1,-1],[1,-3],[6,-3],[2,-3],[1,-3],[1,-4],[-1,-2],[-3,-2],[0,-2],[0,-1],[5,-4],[4,-10]],[[2648,8931],[-2,0],[-1,0],[-2,2],[-1,3],[-1,2],[-4,3],[-1,1],[-1,4],[0,4],[-1,3],[0,2],[0,2],[4,1],[2,-1],[1,-1],[1,-1],[0,-2],[3,-5],[2,-4],[3,-8],[0,-1],[-1,-2],[-1,-2]],[[2674,8944],[4,-2],[3,-1],[6,-1],[1,0],[0,-2],[-1,-1],[-2,-2],[-1,0],[-4,1],[-1,1],[-1,2],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,0],[-4,1],[0,2],[3,3],[-3,1],[0,1],[-4,-2],[-2,0],[-3,1],[0,6],[-1,2],[-1,2],[-1,2],[-1,1],[-3,1],[-2,3],[-1,2],[1,1],[1,1],[8,-3],[5,-3],[4,-4],[3,-2],[0,-2],[-1,-2],[-1,-2],[1,-2]],[[2691,8973],[3,-1],[2,1],[0,-1],[-2,-3],[-1,-1],[-3,2],[-2,3],[0,1],[0,2],[3,-3]],[[1997,9016],[4,-1],[4,1],[-1,-5],[-1,-3],[-2,-1],[0,2],[-3,4],[-1,3]],[[3259,9019],[-4,-2],[-2,2],[2,1],[1,2],[3,2],[1,2],[4,1],[2,0],[0,-1],[-2,-2],[-5,-5]],[[2003,9039],[-2,-4],[-1,2],[-2,1],[-2,3],[0,6],[0,2],[0,4],[2,2],[2,-2],[0,-5],[0,-2],[2,-2],[0,-1],[1,-1],[0,-3]],[[1967,9074],[4,-1],[2,1],[2,-3],[0,-2],[0,-1],[-1,0],[-5,2],[-1,2],[-1,1],[0,1]],[[2955,9062],[-14,0],[-7,0],[-3,1],[-3,2],[-3,4],[-2,5],[0,2],[1,2],[1,1],[9,1],[7,-2],[6,-2],[9,0],[2,-1],[1,-1],[1,-1],[1,-5],[0,-3],[0,-2],[-6,-1]],[[1963,9074],[-1,0],[-4,4],[1,3],[4,-3],[0,-2],[0,-2]],[[2594,9059],[-1,0],[-2,1],[-4,4],[-1,1],[0,2],[0,2],[0,2],[1,5],[-2,3],[-1,2],[0,1],[2,3],[0,1],[2,3],[3,4],[4,-1],[3,-4],[1,-2],[0,-3],[0,-4],[1,-5],[0,-3],[0,-3],[-2,-4],[-1,-2],[-1,-2],[-2,-1]],[[2898,9094],[14,-5],[2,-2],[0,-2],[1,-2],[0,-4],[-1,-1],[-1,-4],[0,-1],[1,-13],[0,-7],[-1,-6],[-2,-4],[-3,-4],[-3,-2],[-10,-5],[-8,-1],[-8,0],[-10,-1],[-4,0],[-3,0],[-1,1],[-2,4],[-3,5],[-1,6],[-3,10],[0,1],[2,9],[3,6],[5,8],[6,9],[1,1],[3,1],[6,3],[6,-1],[2,0],[3,2],[3,0],[6,-1]],[[2806,9086],[-3,0],[-3,3],[0,2],[1,4],[6,1],[2,-3],[1,-2],[-4,-5]],[[2096,9099],[-2,0],[-3,1],[-4,2],[-3,2],[-2,2],[0,2],[1,1],[3,0],[5,0],[3,-1],[4,-3],[1,-2],[0,-1],[-1,-2],[-2,-1]],[[2920,9096],[-2,-1],[-4,4],[-6,4],[-3,3],[0,1],[0,3],[1,3],[2,3],[3,0],[3,-1],[3,-2],[3,-6],[1,-3],[1,-2],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1]],[[2171,9110],[-1,0],[-2,1],[-9,3],[-1,1],[1,2],[3,2],[2,2],[2,3],[5,-2],[2,-1],[1,-1],[0,-2],[0,-4],[-2,-1],[-1,-3]],[[2216,9123],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-1,1],[-1,2],[-1,1],[-2,-2],[-1,0],[0,1],[0,2],[0,3],[0,5],[0,1],[0,2],[0,1],[1,1],[2,0],[3,0],[2,-2],[1,-2],[2,-2],[1,-2],[-1,-5]],[[2222,9135],[-1,-4],[-3,1],[-1,2],[-2,3],[0,1],[2,3],[1,1],[2,-1],[1,-2],[1,-2],[0,-2]],[[2486,9147],[-2,0],[-2,2],[-1,1],[0,1],[-3,0],[0,3],[1,1],[2,1],[2,0],[2,-3],[1,-2],[0,-2],[0,-2]],[[2799,9125],[-1,0],[-3,1],[-1,2],[0,2],[0,1],[1,1],[2,2],[2,3],[2,2],[6,2],[1,1],[3,6],[1,1],[3,1],[-1,2],[0,1],[1,2],[1,1],[4,1],[4,0],[1,0],[0,-1],[2,-3],[0,-1],[-2,-2],[-4,-4],[-3,-3],[0,-1],[-1,-2],[0,-1],[-4,-4],[-2,-4],[-2,-2],[-5,-2],[-5,-2]],[[2494,9159],[1,-4],[-3,-5],[0,-1],[-1,0],[-1,1],[-3,4],[-1,2],[1,1],[2,2],[2,1],[2,-1],[0,1],[1,-1]],[[2861,9143],[-4,-1],[-2,0],[-2,2],[-1,2],[-2,4],[1,3],[0,4],[0,1],[1,1],[4,1],[2,0],[3,-1],[7,-1],[2,-1],[0,-1],[0,-1],[0,-1],[-4,-4],[-2,-3],[-1,-3],[-2,-1]],[[2189,9158],[-2,-1],[0,2],[0,1],[-1,0],[2,2],[0,1],[-3,2],[-1,1],[0,1],[2,1],[1,0],[4,-2],[2,-3],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1]],[[2347,9168],[3,-4],[0,-2],[0,-3],[-1,-2],[-2,-2],[-2,-1],[-3,0],[-1,1],[1,2],[0,1],[0,2],[0,4],[-1,2],[-1,1],[-2,0],[0,-1],[1,-2],[-1,-3],[-1,-4],[-1,-2],[-2,1],[-1,1],[1,3],[-1,2],[1,2],[1,4],[2,2],[2,1],[2,0],[3,-1],[3,-2]],[[1138,9168],[-3,-2],[-3,2],[-1,2],[4,3],[2,0],[4,-2],[1,-2],[-4,-1]],[[3113,9166],[-1,0],[-7,3],[0,2],[3,2],[3,1],[2,1],[3,-1],[2,-2],[-3,-3],[-2,-3]],[[2832,9176],[2,-2],[0,-2],[-2,-2],[-7,-3],[-5,-3],[-2,-1],[-3,1],[-4,-1],[-2,0],[2,2],[6,7],[5,1],[1,1],[2,0],[1,1],[0,2],[1,1],[2,0],[3,-2]],[[2793,9181],[1,-4],[1,-1],[-1,-1],[-4,-3],[-9,-2],[-5,2],[2,-5],[1,-2],[-1,-1],[-2,1],[-3,1],[-2,1],[0,2],[-1,1],[-1,-1],[-1,0],[-2,3],[-1,1],[-9,1],[-1,1],[1,1],[1,2],[2,1],[6,-1],[0,3],[1,0],[3,0],[3,1],[1,-2],[1,-2],[2,0],[2,0],[3,1],[4,2],[4,1],[4,-1]],[[2293,9172],[1,0],[2,0],[1,2],[1,0],[1,0],[4,-3],[3,-4],[3,-3],[5,-2],[11,-7],[3,-6],[3,-7],[3,-6],[3,-5],[3,-3],[5,-4],[4,3],[1,1],[2,-1],[1,-3],[0,-1],[-2,-2],[-3,-2],[-4,0],[-2,-1],[-3,-2],[-3,-4],[-4,-1],[-6,-6],[-4,-2],[-6,-1],[-11,5],[-7,-1],[-6,1],[-6,5],[-5,3],[-10,4],[-1,0],[0,2],[0,2],[-1,1],[0,1],[-2,0],[-1,-2],[-3,-1],[-5,0],[-2,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,1],[-1,0],[-3,-1],[-1,-1],[1,-1],[-1,-1],[-4,0],[-2,1],[-3,2],[-2,3],[-2,4],[0,1],[2,3],[1,2],[10,1],[5,1],[5,3],[7,5],[1,2],[0,1],[0,1],[-2,3],[-1,2],[1,1],[2,1],[-1,1],[-1,1],[-1,1],[0,2],[2,0],[3,0],[4,-5],[2,-1],[3,-1],[-3,3],[-3,7],[-1,3],[0,1],[1,4],[1,1],[1,1],[3,2],[6,2],[2,0],[3,-1],[3,-2],[5,-4],[1,-2],[-2,-1],[-1,-1],[1,-2]],[[2585,9200],[4,0],[3,0],[2,0],[1,-2],[1,-2],[1,-2],[-2,-1],[-5,-1],[-3,1],[-3,1],[-2,-1],[-4,1],[-2,2],[-2,2],[0,1],[4,2],[2,1],[5,-2]],[[2213,9223],[0,-1],[-6,2],[-2,2],[-1,1],[-1,2],[0,3],[1,1],[3,0],[3,-1],[4,-3],[-1,-1],[0,-2],[1,-3],[-1,0]],[[2924,7713],[-1,-1],[-3,1],[-4,-2],[-5,-5],[-6,-7],[-11,-16],[0,-2],[-2,-3],[-4,-3],[-4,-4],[-1,-3],[-1,-2],[-6,-9],[-4,-8],[-3,-9],[-3,-9],[-7,0],[-6,0],[-9,0],[-8,0],[-9,0],[-7,0],[-7,0],[-3,-3],[-5,-3],[-4,-3],[2,-8],[1,-4],[-1,-10],[1,-1],[0,-1],[1,-3],[0,-1],[1,-1],[1,-1],[0,-2],[1,-1],[-1,-3],[-3,-4],[-4,-3],[-7,-6],[-9,-6],[-7,-6],[-6,-5],[-12,-4],[-10,-3],[-7,-2],[-6,-6],[-7,-7],[-6,-6],[-7,-6],[-6,-7],[-7,0],[-5,5],[-5,5],[-3,8],[0,10],[1,7],[1,2],[2,2],[4,4],[3,6],[3,4],[3,4],[1,7],[2,16],[1,3],[2,12],[4,12],[1,6],[-2,15],[-1,11],[-1,11],[-1,11],[-1,11],[-1,10],[-1,10],[-2,10],[0,8],[-1,8],[-6,6],[-5,4],[-7,7],[-6,6],[-5,5],[3,10],[0,2],[-1,2],[-3,4],[-1,0],[-3,-1],[-4,-2],[-2,1],[-1,3],[-2,5],[-1,4],[0,5],[-1,4],[1,2],[0,1],[0,2],[-1,1],[-1,0],[-4,-2],[-2,0],[-1,-1],[-2,-2],[-1,0],[-3,5],[-3,5],[-2,8],[-1,8],[-5,5],[-6,4],[-5,5],[-5,5],[-6,5],[-5,4],[-6,5],[-5,5],[-2,1],[-5,5],[-7,5],[-8,7],[-8,7],[-7,6],[-4,4],[-2,1],[-5,4],[-6,5],[-7,-2],[-8,-7],[-4,-3],[-4,-3],[-2,-2],[-5,-1],[-3,0],[-6,1],[-4,-1],[-2,1],[-1,4],[-2,2],[-6,-1],[-8,1],[-4,-1],[-1,2],[-2,4],[-2,1],[-3,-1],[-5,-6],[-5,-2],[-3,0],[-4,2],[-6,6],[-4,6],[-5,2],[-3,0],[-1,-3],[-2,0],[-2,5],[-1,4],[-2,2],[-4,4],[-3,2],[-4,2],[-2,1],[-3,0],[-3,0],[-3,0],[-2,-4],[-3,-1],[-4,-1],[-3,2],[-1,3],[-6,3],[-10,3],[-6,2],[-1,2],[-1,2],[0,3],[-3,9],[-1,6],[0,9],[0,2],[-1,1],[-1,2],[-6,1],[-1,-10],[0,-12],[-6,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-3,0]],[[1589,7949],[-1,2],[-3,3],[-1,0],[-1,-1],[-1,-1],[0,-3],[-1,-1],[0,1],[-1,4],[0,1],[1,2],[0,1],[-2,0],[-1,0],[0,1],[0,4],[-1,3],[1,1],[3,1],[4,0],[1,2],[1,4],[-3,-4],[-1,-1],[-5,2],[-3,0],[0,1],[0,1],[1,0],[0,4],[1,8],[1,4],[0,1],[0,1],[-4,-6],[0,-2],[0,-2],[0,-3],[-2,-1],[-1,0],[-2,-3],[-1,0],[-9,5],[-1,1],[-1,2],[-2,4],[-1,4],[1,3],[1,1],[1,0],[1,-1],[2,-5],[0,-3],[3,1],[3,3],[1,2],[-3,-2],[-2,0],[-2,2],[-1,3],[-1,3],[0,11],[1,3],[1,1],[1,3],[0,1],[-1,2],[-1,2],[-2,1],[2,-5],[0,-2],[-2,-5],[-1,-1],[0,-5],[0,-1],[-2,-1],[-3,-4],[-3,-1],[-4,0],[-2,2],[-6,9],[-2,4],[0,3],[-5,11],[0,2],[-1,4],[-2,0],[0,3],[3,7],[2,6],[1,2],[0,3],[-1,7],[1,2],[-3,-3],[0,-3],[1,-3],[-1,-3],[-1,-4],[-2,-5],[-4,-2],[-8,1],[0,1],[-1,1],[0,7],[-1,-1],[-1,-3],[0,-6],[-1,-1],[-2,0],[-1,1],[-1,2],[-2,0],[-3,-2],[-2,1],[-2,0],[-4,2],[-4,0],[-2,1],[0,2],[1,2],[5,1],[5,2],[5,1],[0,1],[-3,1],[-10,-3],[-4,0],[0,1],[-1,3],[2,2],[2,2],[0,2],[-1,1],[-2,-1],[-1,2],[1,6],[-1,5],[-1,-5],[-2,-3],[-9,-1],[-1,-2],[-2,0],[-5,3],[-3,2],[-2,2],[-4,6],[-4,4],[0,7],[1,4],[2,5],[5,11],[2,2],[2,1],[9,1],[6,1],[2,1],[-10,0],[-8,0],[-3,-2],[-4,-7],[-1,-3],[-1,-2],[-2,1],[0,1],[-1,2],[-2,4],[-1,4],[0,6],[0,2],[1,4],[3,7],[-4,0],[1,5],[1,6],[3,4],[4,3],[3,3],[5,2],[2,-4],[5,-2],[1,-2],[2,-4],[2,-4],[2,-3],[1,0],[-1,3],[-4,6],[0,3],[-1,2],[-5,4],[-1,1],[-1,4],[-1,3],[1,2],[5,7],[1,4],[0,2],[0,2],[-1,3],[0,-5],[0,-2],[-1,-3],[-1,-1],[-1,-1],[-11,-17],[-1,-1],[-5,-1],[-2,-2],[-1,-2],[-2,-6],[-3,-12],[-3,-9],[-2,12],[-5,9],[9,10],[0,1],[0,5],[0,2],[1,2],[2,3],[0,1],[-3,-1],[-4,-8],[-1,-2],[-1,0],[0,4],[2,11],[2,11],[0,3],[2,3],[-2,0],[-7,-5],[-2,3],[-2,16],[-4,6],[-6,5],[-6,2],[-1,5],[-1,5],[1,6],[3,3],[2,2],[3,-1],[0,-2],[-2,-7],[2,0],[8,-8],[2,0],[3,3],[2,-1],[5,-2],[1,-3],[4,-5],[0,3],[-5,7],[-2,2],[-5,0],[-3,-1],[-1,1],[-2,1],[-2,3],[-3,6],[0,3],[0,3],[1,2],[0,1],[2,2],[3,0],[1,1],[-4,4],[-1,0],[-5,-6],[-1,0],[-1,1],[-2,-2],[-1,-2],[-4,-8],[-1,-4],[0,-5],[-1,-4],[0,-1],[-5,-3],[-3,-6],[-4,5],[-3,5],[-3,8],[-4,1],[-6,5],[-2,4],[3,9],[4,6],[1,8],[1,1],[7,2],[4,4],[-5,1],[-2,-1],[-6,-3],[-5,6],[-3,4],[-1,4],[1,4],[0,4],[0,4],[1,2],[1,3],[3,2],[2,5],[1,4],[4,12],[2,5],[3,6],[6,11],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,4],[0,-2],[0,-6],[-1,-6],[-1,-4],[-3,-9],[-2,-3],[-1,3],[1,5],[2,4],[0,6],[-1,7],[-1,5],[-1,4],[0,4],[0,3],[1,4],[1,4]],[[1388,8357],[0,4],[0,4],[-1,3],[-1,3],[-3,-2],[-6,2],[-2,7],[-4,2],[-3,4],[-5,2],[-4,2],[-4,3],[-3,3],[-4,3],[-3,3],[-2,-1],[-5,0],[0,6],[-2,3],[1,3],[-3,2],[-4,2],[1,6],[1,4],[-3,1],[-5,2],[1,4],[2,3],[-2,5],[-4,7],[-3,6],[-4,8],[-3,8],[-3,6],[-3,4],[-3,8],[-4,9],[-4,6],[0,5],[-4,5],[-3,6],[-4,6],[-4,3],[-3,3],[-4,3],[-3,3],[-1,2],[0,2],[-1,2],[-1,3],[-1,2],[-5,4],[-1,3],[-4,3],[-3,1],[-1,1],[-3,9],[0,3],[1,3],[-1,2],[-5,7],[-3,3],[-3,3],[-7,-4],[-6,-4],[-5,-1],[-6,-2],[2,-5],[-1,-3],[-2,-1],[-3,0],[0,-11],[-3,-7],[-6,0],[-4,-3],[-5,-4],[-4,-3],[-5,-5],[-2,1],[1,4],[-2,8],[-1,6],[-3,3],[-5,6],[-3,4],[-6,6],[-3,4],[-4,4],[-5,6],[-2,7],[-5,3],[-4,3],[-4,5],[1,5],[2,7],[0,3],[-5,0],[-6,0],[-6,-1],[-4,-4],[-4,-4],[-6,3],[-8,4],[-2,-5],[-6,2],[-7,3],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18],[0,17],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18],[0,17],[0,17],[0,17],[0,18],[0,17],[0,17],[0,18]],[[1083,9173],[4,-1],[13,-2],[12,1],[22,-6],[13,-12],[11,-6],[5,-4],[7,-3],[17,-8],[5,-1],[10,-3],[6,0],[11,-1],[7,-3],[14,-8],[3,-1],[0,1],[-4,8],[-1,1],[-6,3],[-6,1],[-1,1],[-1,3],[0,1],[2,0],[5,0],[2,1],[1,1],[-2,0],[-3,1],[-3,2],[-1,2],[6,12],[2,-2],[3,3],[6,-2],[1,1],[0,6],[1,2],[2,1],[8,1],[10,-1],[1,0],[-1,4],[0,2],[0,4],[1,2],[1,1],[5,-1],[1,-2],[2,-3],[1,-2],[5,-2],[1,-1],[-2,-4],[-2,-3],[-4,-6],[0,-2],[6,3],[7,4],[6,2],[5,1],[4,1],[2,2],[2,2],[3,7],[2,2],[9,-1],[2,0],[1,1],[0,1],[-2,1],[-3,0],[0,1],[1,1],[2,1],[4,1],[3,-3],[2,0],[6,3],[10,7],[4,3],[3,0],[3,-2],[2,1],[3,4],[1,2],[2,2],[7,5],[5,1],[3,-1],[3,-2],[3,-1],[4,1],[2,0],[2,1],[4,5],[2,0],[1,-2],[3,-3],[0,-2],[-3,-5],[-23,-13],[-7,-5],[-3,-2],[-4,-1],[-7,-1],[-3,-2],[-4,-1],[-11,-1],[-2,-1],[-1,-1],[-4,-7],[-2,-2],[-4,-4],[-4,-2],[-6,0],[-4,-4],[-4,-6],[-3,-4],[-4,-4],[-4,-5],[-1,-2],[1,-3],[1,-1],[4,-2],[2,0],[-2,2],[-3,2],[-1,1],[1,1],[17,-2],[3,2],[1,2],[0,1],[-4,0],[-1,2],[-1,3],[0,2],[0,2],[1,2],[5,3],[5,2],[4,2],[2,2],[6,3],[3,3],[1,2],[0,1],[-1,1],[1,2],[4,1],[2,0],[6,-1],[2,-1],[-1,-3],[1,0],[2,4],[1,1],[2,0],[1,0],[2,-1],[0,-4],[0,-7],[1,-2],[1,4],[1,2],[6,10],[4,5],[5,5],[6,4],[16,6],[8,2],[4,1],[3,2],[1,1],[2,2],[1,0],[-1,-4],[-1,-1],[-5,-3],[-1,-1],[1,-3],[1,-2],[1,-1],[2,0],[4,3],[4,3],[9,9],[0,2],[3,7],[5,3],[9,4],[2,2],[-8,2],[-2,1],[0,1],[2,2],[-4,2],[-1,1],[0,4],[1,2],[2,3],[2,0],[3,-1],[3,-2],[11,-9],[4,-4],[2,-3],[6,-11],[3,-6],[2,-6],[2,-5],[2,-3],[10,-11],[5,-4],[4,-3],[5,-2],[6,-2],[4,0],[6,4],[0,4],[-3,5],[-2,3],[0,2],[4,5],[-1,1],[1,4],[2,-1],[1,1],[2,1],[2,3],[2,3],[2,2],[1,1],[-3,1],[-1,0],[-1,0],[-1,1],[1,1],[6,2],[1,2],[2,2],[2,0],[1,0],[2,-2],[0,-3],[-1,-5],[0,-3],[2,-9],[2,-2],[6,-3],[0,-2],[-8,-10],[-1,-2],[-1,-2],[0,-1],[2,-1],[2,-1],[6,-1],[2,1],[12,0],[2,1],[2,2],[3,5],[3,1],[1,1],[2,6],[1,6],[1,2],[1,2],[2,1],[5,-1],[2,1],[9,-1],[9,0],[9,-1],[6,-1],[5,-2],[11,-5],[4,-2],[14,-12],[5,-2],[8,-3],[27,-5],[3,-1],[8,-5],[5,-3],[5,-3],[8,-3],[14,-4],[3,-1],[2,0],[3,0],[13,-2],[4,0],[2,0],[3,-2],[5,-1],[0,2],[-5,6],[0,1],[2,0],[6,-1],[2,1],[2,0],[5,0],[5,-2],[6,-3],[7,-3],[10,-6],[6,-5],[5,-6],[3,-5],[1,-2],[1,-2],[1,0],[1,0],[-1,-6],[-1,-1],[-2,-1],[-4,-1],[-14,1],[-3,-5],[-7,-3],[-2,-2],[0,-1],[1,-4],[-1,-1],[-6,-5],[-1,-1],[4,-2],[5,-3],[3,-1],[4,1],[6,-1],[6,-3],[5,-1],[2,0],[4,0],[4,-1],[6,-1],[13,0],[4,-1],[5,0],[11,0],[2,0],[3,2],[2,1],[4,0],[11,2],[3,-1],[4,2],[4,2],[3,0],[1,-1],[2,-1],[3,1],[5,2],[12,7],[4,0],[3,2],[1,0],[1,0],[3,-6],[1,-1],[2,0],[2,-3],[2,-4],[2,-1],[11,0],[4,-1],[1,-1],[1,-4],[1,-6],[0,-2],[2,-3],[1,-1],[1,1],[3,8],[1,2],[2,-1],[3,-7],[4,-4],[10,-9],[2,-3],[0,-3],[0,-2],[-2,-2],[-3,-1],[-3,-1],[-4,0],[-3,2],[-1,0],[1,-2],[7,-7],[1,-3],[2,-2],[1,-1],[2,-1],[1,-2],[5,-6],[2,-3],[6,-8],[3,-4],[2,-2],[1,0],[0,2],[-8,11],[-4,7],[-1,2],[0,3],[0,8],[0,2],[3,1],[4,-4],[1,-1],[1,1],[0,1],[2,-1],[4,-3],[1,0],[-2,5],[-2,3],[-1,2],[2,3],[-1,1],[-5,4],[-2,5],[-2,6],[-1,3],[1,3],[0,2],[-3,4],[-3,4],[-3,3],[0,2],[0,5],[2,2],[3,3],[1,3],[-1,4],[-1,1],[1,0],[7,1],[2,0],[3,1],[3,1],[3,1],[4,0],[2,1],[2,1],[1,0],[3,4],[1,1],[3,-1],[3,-1],[1,1],[-1,5],[1,2],[4,4],[4,0],[2,1],[3,2],[2,2],[2,3],[1,4],[0,1],[-5,2],[-2,-1],[-6,-3],[-6,-4],[-3,-3],[0,-4],[-2,-2],[-4,2],[-2,0],[-3,-1],[-3,-2],[-2,-2],[-5,-1],[-5,2],[-4,1],[-3,-3],[0,-2],[2,-3],[-2,-2],[-8,0],[-2,0],[-4,-1],[-2,0],[-1,1],[-9,6],[-1,2],[2,4],[8,13],[1,1],[15,2],[9,3],[17,7],[4,0],[10,5],[5,1],[4,0],[6,-3],[3,-2],[2,-3],[2,-4],[2,-8],[1,-7],[2,-3],[5,-5],[2,-1],[2,-1],[1,1],[1,0],[1,0],[1,-3],[0,-1],[4,1],[3,-1],[0,-1],[0,-4],[0,-2],[4,-3],[4,-2],[5,0],[8,0],[6,2],[6,3],[4,-3],[8,-8],[5,-5],[4,-2],[9,-3],[2,-2],[3,0],[4,1],[5,0],[5,-2],[4,-1],[13,4],[1,0],[5,2],[3,1],[4,0],[3,0],[1,1],[7,0],[12,-1],[9,-2],[5,-2],[4,-1],[3,-1],[3,1],[3,1],[3,2],[7,1],[1,0],[0,2],[-1,1],[-4,4],[-3,3],[-1,2],[1,2],[0,2],[2,0],[3,-1],[3,-4],[10,-13],[2,-2],[1,-1],[9,-5],[5,-1],[5,3],[2,2],[1,2],[0,1],[0,3],[0,1],[-1,2],[-4,3],[-6,4],[-5,1],[-5,-2],[-6,-3],[-2,1],[-7,9],[-1,3],[0,1],[3,-1],[0,1],[-2,4],[-1,1],[-4,7],[-1,1],[3,1],[1,1],[2,0],[6,-4],[4,1],[8,3],[-3,4],[-1,3],[1,1],[2,0],[6,-3],[2,0],[2,1],[2,0],[2,-1],[2,-1],[4,-5],[1,-2],[2,-4],[1,-1],[10,0],[5,3],[0,-1],[-1,-3],[-7,-10],[0,-2],[4,1],[1,1],[1,1],[1,3],[1,1],[10,5],[3,1],[-2,-6],[-4,-19],[0,-7],[-1,-2],[-4,-8],[0,-2],[4,-6],[1,-2],[0,-5],[1,-1],[4,0],[3,1],[5,1],[1,-1],[-3,-6],[4,1],[2,0],[1,0],[3,-3],[1,-2],[0,-4],[-1,-3],[-1,-1],[-1,-1],[-2,0],[-1,0],[-4,0],[-3,0],[-3,2],[-1,1],[-3,-2],[-3,1],[-4,4],[-1,-1],[-1,0],[0,-1],[2,-3],[13,-15],[2,-3],[1,-4],[1,4],[-1,2],[-6,9],[-1,3],[0,1],[2,1],[10,-2],[3,0],[3,2],[1,2],[1,10],[2,6],[-1,6],[-3,9],[-2,6],[-5,5],[0,2],[5,17],[1,2],[1,0],[4,0],[3,2],[5,-2],[3,-1],[3,2],[7,7],[3,2],[4,4],[4,7],[5,4],[7,4],[5,3],[1,2],[-4,0],[-1,0],[-1,4],[0,5],[0,4],[-1,2],[0,3],[-2,2],[-1,2],[-1,0],[-1,0],[0,-1],[-2,-5],[-1,-4],[-2,-3],[-4,-1],[-8,-1],[-3,2],[0,1],[1,7],[2,3],[7,5],[4,4],[0,1],[-4,0],[0,1],[-1,5],[0,2],[1,3],[2,1],[9,2],[6,3],[0,-1],[-5,-7],[0,-2],[2,-1],[5,4],[3,3],[0,1],[-2,1],[-1,1],[1,3],[0,2],[-4,2],[-4,-1],[-3,-3],[-3,0],[-4,0],[-3,0],[-2,1],[-2,3],[-3,4],[-3,4],[-1,0],[-1,0],[-2,-4],[-1,-1],[-13,6],[-6,3],[-2,2],[-4,1],[-4,1],[-3,1],[-2,1],[-2,3],[-2,3],[-2,4],[-7,8],[-1,5],[0,2],[0,5],[6,8],[1,3],[2,1],[3,2],[2,0],[4,-1],[-2,3],[-1,1],[3,5],[-8,-4],[-2,0],[-3,3],[-5,7],[0,5],[1,7],[1,4],[-1,3],[0,1],[2,1],[0,1],[0,4],[1,2],[4,4],[3,3],[2,1],[2,0],[2,-1],[2,-2],[4,-2],[2,0],[2,1],[3,7],[2,2],[-1,1],[-7,-1],[-3,1],[-1,1],[-1,3],[1,1],[6,5],[3,6],[8,7],[9,4],[4,1],[4,0],[1,0],[2,-4],[0,-4],[5,-5],[4,0],[2,0],[8,0],[2,-1],[0,-2],[-1,-2],[0,-3],[5,-4],[5,-3],[4,-3],[7,-7],[1,-3],[1,-2],[1,-8],[1,-3],[-1,-9],[0,-2],[-2,-2],[1,-1],[4,-2],[4,-5],[2,-2],[5,-2],[1,-1],[1,-2],[3,-6],[5,-7],[0,-1],[-1,-3],[1,-1],[2,-1],[1,1],[2,2],[1,1],[2,-1],[1,-2],[2,-4],[2,-3],[0,-1],[-1,-1],[-7,-1],[-4,1],[-3,1],[-3,2],[-2,3],[-1,-1],[-1,-2],[-2,-3],[-2,-2],[2,-2],[9,0],[2,0],[2,-2],[-3,-4],[-6,-5],[-13,-11],[-3,-2],[0,-1],[2,0],[4,0],[4,2],[6,-1],[2,-1],[-1,-1],[1,-2],[9,-4],[5,0],[5,5],[4,2],[5,-1],[2,0],[-1,-1],[-3,-2],[-4,-3],[0,-1],[4,1],[9,-1],[5,-1],[3,1],[3,-1],[3,-2],[1,-1],[-3,0],[-2,0],[-2,-2],[-2,-2],[-1,-2],[-1,-4],[-2,-1],[-3,1],[-1,0],[0,2],[-1,0],[-2,-1],[-2,0],[-1,-1],[14,-11],[4,-9],[3,-4],[1,-1],[-2,-3],[0,-2],[1,-5],[-1,-5],[-1,-8],[1,-2],[3,-3],[2,-3],[1,-1],[1,-2],[1,-1],[1,-1],[1,1],[0,2],[2,2],[3,3],[3,6],[0,2],[0,4],[0,2],[3,6],[1,5],[1,7],[1,5],[3,4],[6,9],[2,1],[2,1],[4,0],[3,-3],[4,-5],[5,-4],[9,-7],[2,-2],[5,-6],[2,-6],[2,-9],[1,-5],[1,-2],[1,-2],[-1,-4],[0,-2],[-1,-2],[-1,-1],[-2,-1],[-4,1],[-1,1],[-2,4],[-3,-3],[-1,-2],[1,-5],[0,-11],[1,-2],[3,-11],[5,-8],[14,-16],[1,-2],[1,-7],[1,-1],[1,-1],[1,0],[2,1],[5,5],[4,5],[3,2],[2,1],[2,1],[2,1],[1,2],[1,2],[1,8],[1,4],[2,5],[1,2],[10,13],[1,1],[5,15],[1,7],[1,4],[-1,4],[0,3],[1,3],[2,1],[2,2],[1,3],[1,0],[2,0],[2,-2],[2,0],[11,2],[0,1],[-6,3],[0,1],[0,3],[2,2],[3,1],[1,1],[0,2],[0,4],[0,1],[-7,4],[-3,0],[-1,0],[-3,4],[-1,5],[0,2],[0,3],[0,1],[0,2],[-1,2],[0,2],[1,2],[0,2],[-2,2],[0,2],[1,5],[0,2],[-1,3],[-1,1],[1,0],[2,0],[3,0],[4,-2],[4,0],[5,2],[5,0],[10,0],[2,0],[9,-6],[7,-2],[3,0],[15,-1],[7,0],[4,0],[7,-3],[-1,-2],[-3,-4],[-4,-1],[-3,-2],[3,-2],[9,-3],[3,-4],[0,-2],[-1,-2],[1,-1],[2,0],[5,1],[6,-1],[9,-3],[1,-1],[2,-3],[0,-1],[-8,-7],[-4,-2],[-6,-3],[0,-2],[8,0],[6,-1],[2,-1],[2,-1],[1,-3],[1,-2],[0,-3],[-1,-2],[-7,-6],[-3,-2],[-5,-2],[-3,-2],[-2,0],[-3,2],[-3,1],[-5,-2],[-3,0],[-1,0],[0,-2],[2,-3],[1,-2],[1,-1],[-1,-2],[0,-1],[1,0],[5,-8],[1,-1],[1,0],[2,3],[1,1],[1,-1],[0,-1],[-3,-7],[0,-2],[0,-2],[1,-3],[3,-4],[3,-4],[4,-5],[6,-5],[2,-2],[4,-6],[0,-2],[-1,-6],[-2,-10],[-2,-6],[0,-1],[-5,-4],[-2,-1],[-5,0],[-1,-1],[-2,-3],[-3,-6],[-3,-3],[-1,-2],[-3,-2],[-5,-5],[-3,-2],[-8,-2],[-7,-7],[-3,-2],[-3,-2],[-3,0],[-2,1],[-1,5],[-1,1],[-2,3],[-5,9],[-3,3],[-1,0],[-3,0],[-1,0],[-4,3],[-1,1],[0,1],[3,1],[-1,2],[-5,3],[-1,2],[-1,1],[-4,3],[-4,0],[-5,-4],[-3,-3],[1,-1],[2,-1],[1,1],[2,2],[2,1],[3,0],[3,-2],[1,-2],[0,-1],[8,-8],[2,-2],[1,-2],[1,-4],[2,-3],[3,-7],[4,-7],[1,-3],[-2,-2],[-1,0],[-3,1],[-8,4],[-1,0],[-2,-2],[-1,-5],[-1,0],[-4,2],[-8,3],[-5,4],[-3,2],[-3,5],[-4,5],[-4,2],[-5,-2],[-8,-1],[-16,1],[-2,-1],[-1,0],[2,-3],[-1,-1],[-1,-1],[0,-1],[2,-3],[3,-3],[7,-3],[6,-2],[3,-3],[1,-1],[0,-3],[-1,-4],[-1,-1],[-19,-21],[-7,-9],[-3,-5],[-3,-3],[-3,-2],[-5,-1],[-6,0],[-8,1],[-4,3],[-8,7],[-5,4],[-2,1],[-2,4],[-2,1],[-4,1],[-4,2],[-9,7],[-5,3],[-4,2],[-4,0],[-2,-1],[3,-3],[-1,0],[-3,0],[-3,0],[-6,3],[-6,0],[-3,0],[-5,2],[-5,0],[-9,0],[-2,0],[-1,-1],[4,-3],[7,-4],[-1,4],[2,2],[11,-2],[12,-5],[3,0],[4,-2],[4,-2],[5,-5],[10,-12],[3,-3],[4,-3],[22,-4],[7,0],[15,-1],[8,-2],[2,-2],[1,-5],[-1,-3],[-4,-8],[-3,-6],[-17,-25],[-2,-6],[-1,-4],[-3,-3],[-7,-6],[-8,-4],[-4,-2],[-4,2],[-3,1],[-4,5],[0,-1],[3,-7],[-1,-1],[-2,1],[-6,3],[-1,0],[-1,-1],[-2,0],[-2,1],[-3,3],[-1,1],[0,4],[-1,1],[-6,-3],[-1,0],[2,-2],[1,-1],[3,-6],[0,-2],[-2,0],[-6,2],[-1,0],[3,-6],[1,-3],[0,-2],[-4,-6],[-2,-3],[-3,-1],[-3,0],[-2,2],[-2,0],[-1,-2],[-2,-2],[-3,-1],[-4,1],[-4,1],[-12,7],[-4,1],[-7,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[-2,0],[-1,-2],[-3,0],[-4,0],[-6,3],[-12,6],[-13,6],[-7,7],[3,-7],[0,-2],[-2,-2],[0,-2],[3,-4],[4,-2],[4,1],[-2,1],[-1,2],[-1,2],[1,1],[3,-1],[3,-2],[18,-8],[5,-2],[4,-1],[1,-1],[-1,-2],[-8,-6],[5,0],[6,5],[3,2],[4,1],[4,-2],[5,-6],[5,-3],[6,-2],[4,-2],[6,-5],[1,-3],[1,-12],[-1,-3],[0,-2],[-2,-3],[-2,-1],[-4,-1],[-3,-1],[-7,-6],[-2,-1],[-12,2],[-5,2],[-2,0],[-1,-2],[-1,0],[-5,-1],[-1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[3,-1],[5,-1],[1,-3],[0,-1],[-2,-3],[-2,1],[-4,2],[-1,0],[-2,-1],[-2,-1],[-3,1],[-1,-1],[0,-3],[-1,-2],[-3,-3],[-2,-2],[0,-2],[2,-1],[2,-3],[2,-5],[1,-2],[-2,1],[-2,2],[-2,3],[-4,3],[-8,3],[-1,0],[0,-1],[6,-4],[2,-2],[0,-2],[-4,-4],[-1,-1],[2,-1],[0,-1],[-2,-2],[-2,-2],[-5,0],[-1,-1],[2,-2],[1,-1],[-2,-2],[-1,0],[-6,1],[2,-4],[1,-2],[1,-2],[4,-2],[-1,-2],[-2,-2],[-8,-6],[-6,-7],[-1,-2],[2,-5],[0,-1],[-2,-3],[-3,1],[-1,-1],[1,-2],[0,-3],[0,-5],[-3,-6],[-4,-9],[-3,-9],[-2,-7],[-2,-4],[-3,0],[-3,-2],[2,-2],[1,-1],[1,-2],[-1,-7],[-2,-12],[-1,-9],[0,-28],[0,-12],[-1,-7],[-2,-4],[-2,-1],[3,-1],[2,-2],[1,-3],[1,-4],[1,-2],[1,0],[2,0],[1,-1],[3,-6],[4,-2],[0,-3],[-2,-19],[0,-3],[2,5],[2,15],[2,6],[2,2],[8,0],[8,-1],[3,-1],[3,1],[2,-2],[1,-1],[1,-8],[1,-4],[5,-16],[2,-9],[3,-14],[1,-4],[6,-18],[1,-5],[0,-4],[0,-2],[-1,-5],[-2,-5],[-2,-4],[-2,-3],[-1,-3],[-2,-1],[2,0],[2,2],[4,4],[2,0],[4,1],[0,-1],[-2,-3],[3,2],[7,3],[25,11],[6,0],[8,-1],[7,-5],[8,-6],[8,-4],[12,-4],[4,-2],[7,-2],[3,-2],[4,-5],[7,-7],[5,-4],[5,-4],[6,-8],[8,-17],[3,-2],[5,-2],[10,-4],[15,-8],[7,-4],[4,-1],[5,-2],[4,-4],[3,-3],[2,-4],[2,-3],[4,-2],[2,-3],[0,-3],[-4,-12],[-1,-1],[5,9],[2,3],[2,1],[4,0],[6,-2],[5,0],[4,2],[4,0],[3,0],[3,0],[1,1],[2,0],[7,-3],[2,0],[10,-2],[7,1],[1,-1],[2,-4],[2,0],[3,1],[3,-1],[5,-5],[2,-4],[3,-9],[0,-2],[-4,-20],[-2,-7],[0,-7],[1,-4],[4,-6],[0,-2],[2,-9],[1,-4],[0,-5],[-1,-7],[0,-6],[1,-9],[0,-6],[-2,-3],[-1,-3],[-1,-6],[0,-2],[1,-4],[1,-2],[3,-3],[2,-4],[5,-9],[3,-6],[4,-7],[1,-4],[-1,-3],[-2,-2],[-3,-2],[-1,-2],[5,1],[2,0],[3,-2],[2,-3],[3,-4],[4,-2],[5,-5],[7,-10],[1,-2],[2,-6],[3,-8],[1,-6],[0,-2],[-1,-3],[-5,-4],[-5,-9],[1,1],[4,3],[5,7],[3,1],[3,0],[5,-2],[4,-3],[3,-4],[5,-10],[6,-8],[3,-6],[-1,4],[-2,5],[-5,8],[-3,4],[0,2],[0,2],[0,4],[1,5],[1,4],[2,3],[1,2],[1,3],[0,2],[5,3],[1,0],[1,-4],[1,-1],[2,-1],[2,-1],[1,-3],[1,-2],[1,-2],[1,-8],[1,-3],[0,4],[1,7],[1,2],[3,4],[0,2],[-2,2],[-5,10],[0,3],[1,1],[1,3],[1,4],[1,3],[4,4],[3,6],[1,5],[1,2],[2,1],[-2,1],[-1,1],[0,6],[0,5],[-2,3],[-3,5],[-1,2],[0,6],[0,3],[1,3],[0,2],[-4,5],[-1,4],[-1,10],[-2,12],[-1,9],[-2,5],[0,4],[1,1],[1,5],[1,1],[2,0],[-3,3],[-1,3],[0,1],[2,3],[0,1],[-2,2],[-4,2],[1,1],[1,3],[0,1],[-2,1],[-2,1],[-2,3],[-2,4],[-1,4],[-1,6],[-2,6],[-1,2],[-1,1],[-2,0],[0,1],[2,2],[21,11],[2,1],[10,6],[5,4],[4,5],[7,5],[3,3],[2,3],[11,13],[4,6],[3,6],[4,6],[4,8],[4,6],[1,6],[1,9],[1,9],[0,12],[0,11],[-1,17],[-1,5],[-2,7],[-3,13],[-1,3],[-2,6],[-8,16],[-9,10],[-2,3],[-3,3],[-6,3],[-3,3],[-10,11],[-3,1],[-1,3],[0,2],[0,5],[1,4],[0,2],[1,2],[5,8],[3,6],[2,4],[2,2],[4,4],[3,4],[-1,2],[-2,2],[0,2],[3,5],[0,1],[0,5],[1,1],[3,0],[6,-7],[1,1],[-2,2],[-2,4],[1,2],[4,5],[0,2],[-1,3],[-1,3],[3,5],[-1,2],[-6,1],[-1,1],[0,1],[3,2],[0,1],[-5,12],[-1,4],[2,5],[3,2],[0,1],[-4,1],[-2,0],[-2,4],[1,2],[0,1],[2,6],[2,1],[0,1],[-7,-2],[-4,1],[-3,0],[-2,1],[1,1],[6,9],[3,5],[2,5],[1,2],[0,2],[-1,10],[0,2],[3,3],[4,4],[-6,4],[-3,4],[-2,2],[-1,2],[-3,5],[-1,5],[-2,11],[0,6],[0,4],[1,2],[1,3],[5,4],[8,6],[6,2],[5,-1],[9,-1],[7,-4],[23,-9],[4,-4],[-4,-3],[0,-1],[9,6],[2,2],[2,0],[6,-2],[3,-1],[3,-2],[8,-7],[0,1],[-2,3],[1,2],[6,4],[6,3],[5,2],[5,4],[3,2],[1,0],[2,-1],[6,-5],[4,-2],[3,-3],[4,-5],[1,-1],[3,-3],[4,0],[2,0],[0,-1],[1,-2],[0,-1],[0,-2],[-1,-4],[-3,-7],[1,0],[2,1],[3,3],[2,1],[4,-2],[3,-4],[2,-1],[1,-3],[1,-2],[2,-2],[0,-1],[-2,-2],[-4,-2],[1,-1],[5,1],[2,2],[1,2],[1,1],[7,-4],[1,-2],[-1,-1],[-1,-1],[-3,-2],[-2,-3],[0,-2],[1,-1],[5,0],[0,-1],[-3,-2],[0,-2],[5,-7],[4,-3],[2,-1],[5,0],[4,-1],[8,-5],[5,0],[5,1],[2,0],[3,-1],[1,-2],[0,-2],[0,-3],[2,-3],[2,-1],[3,0],[3,3],[2,0],[1,2],[1,4],[1,2],[2,1],[1,-1],[1,-2],[2,-5],[0,-3],[0,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-3],[-2,-7],[-1,-5],[0,-3],[0,-3],[0,-3],[1,-3],[2,-4],[1,-1],[0,-3],[0,-2],[-2,-3],[-3,-2],[-5,-1],[-15,0],[-4,1],[1,-3],[4,-1],[4,0],[15,-1],[2,-2],[1,-3],[2,-3],[1,-5],[0,-3],[-1,-3],[-1,-4],[-1,-4],[-1,-6],[1,-3],[8,0],[1,-2],[0,-2],[-2,-6],[-1,-1],[2,-4],[-1,-1],[0,-1],[-1,-3],[-1,-5],[-1,-3],[-2,-2],[-1,-1],[-1,1],[-2,6],[-1,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-2],[-3,-2],[-5,-2],[0,-1],[3,-1],[5,-3],[2,-1],[4,3],[7,7],[3,2],[3,1],[3,0],[4,-1],[6,1],[2,-1],[2,-1],[3,-3],[1,-2],[1,-2],[2,-9],[2,-3],[0,-1],[0,-3],[0,-5],[-2,-10],[-1,-4],[-3,-5],[-4,-2],[-6,-2],[-3,-2],[-3,-3],[0,-1],[7,4],[8,2],[2,3],[2,2],[2,5],[3,13],[2,5],[2,0],[1,-1],[3,-8],[0,-2],[-1,-2],[-4,-7],[2,1],[4,7],[1,2],[0,3],[2,2],[0,-1],[1,-8],[0,-6],[1,-2],[-1,-6],[1,-1],[1,5],[0,4],[1,3],[1,1],[5,5],[6,4],[4,4],[3,2],[5,2],[3,3],[2,5],[1,4],[1,2],[3,3],[2,1],[2,-2],[2,-2],[2,-4],[1,-4],[1,-2],[0,-8],[2,6],[0,2],[0,3],[0,2],[-2,5],[-1,3],[0,2],[2,1],[3,1],[1,0],[-2,3],[0,1],[2,3],[1,1],[3,-1],[-1,2],[0,1],[1,1],[4,-2],[1,2],[3,0],[0,1],[-3,2],[-3,1],[-1,1],[0,2],[-1,3],[0,1],[1,0],[1,-1],[1,2],[1,5],[1,2],[3,-3],[0,1],[-2,7],[0,2],[3,0],[3,-1],[5,-5],[1,1],[-1,1],[-3,3],[-2,2],[-2,1],[-2,2],[-2,4],[0,2],[0,3],[1,5],[1,1],[1,1],[2,0],[2,0],[5,-4],[0,1],[-2,2],[-1,2],[-1,2],[0,3],[2,5],[1,4],[4,11],[1,2],[1,1],[1,2],[3,0],[6,-4],[2,-2],[0,-4],[-3,-4],[-5,-4],[-1,-1],[1,-1],[4,3],[5,1],[3,0],[3,-6],[0,-7],[-1,-6],[2,3],[2,1],[2,-4],[1,-3],[1,-3],[2,-4],[3,-4],[-3,-4],[-3,-2],[0,-2],[5,-2],[1,-1],[-1,-3],[1,0],[3,4],[3,-1],[3,-8],[-2,-4],[-4,-3],[-3,0],[-5,0],[-1,-1],[1,-2],[4,0],[6,2],[5,1],[2,1],[2,-1],[0,-1],[-2,-1],[0,-1],[1,-1],[2,-5],[0,-1],[-2,-2],[3,-1],[3,2],[1,-2],[3,-5],[1,-6],[-6,-7],[-3,-2],[-5,-4],[-1,-3],[-3,-4],[2,0],[4,7],[3,1],[2,0],[0,-1],[0,-2],[2,0],[6,4],[3,1],[4,0],[0,-1],[-2,-10],[-4,-7],[-7,-4],[-3,-2],[-3,-5],[2,0],[6,5],[5,2],[6,2],[3,0],[5,-11],[3,-1],[2,0],[5,-3],[1,-3],[0,-2],[-2,-1],[0,-2],[1,-6],[-1,-3],[-3,-3],[-2,-2],[-3,0],[-2,-3],[-1,0],[-3,0],[1,-1],[1,-1],[3,-1],[3,1],[3,0],[5,-2],[2,-2],[0,-1],[-1,-1],[-2,-4],[-1,-2],[1,-1],[2,-2],[2,-1],[2,1],[3,-1],[8,-10],[0,-5],[-2,-4],[1,-5],[0,-6],[-5,-1],[-14,2],[-9,4],[0,2],[2,2],[-2,1],[-2,-1],[-1,-1],[2,-5],[8,-3],[4,-5],[3,0],[2,-1],[2,-3],[-1,-1],[-4,0],[-3,-3],[2,-2],[7,-1],[5,-1],[2,-2],[-2,-2],[-5,-2],[-1,-3],[5,-2],[4,1],[1,0],[1,-8],[1,-2],[-4,-2],[0,-1],[2,-2],[5,-1],[2,-1],[0,-3],[1,-1],[2,0],[3,3],[2,3],[2,-1],[1,-4],[2,-3],[2,-1],[0,-5],[3,4],[2,0],[2,-1],[-1,-4],[-1,-4],[1,-2],[1,-3],[4,-5],[-1,-2],[-4,-5],[-2,-7],[-1,-2],[-1,-5],[-3,-4],[2,1],[6,7],[3,3],[8,1],[2,2],[3,1],[1,-2],[1,-5],[2,-1],[2,1],[3,-1],[-2,-2],[-7,-12],[-2,-4],[0,-3],[2,4],[9,10],[1,2],[2,4],[2,3],[4,-1],[3,-2],[1,-6],[2,-6],[3,-7],[8,-3],[2,-1],[5,3],[1,3],[4,1],[3,-1],[1,-6],[2,-3],[3,-3],[3,-1],[4,-1],[2,-2],[0,-2],[-2,-3],[-2,-4],[-4,-4],[-5,0],[-8,-2],[0,-1],[-2,-2],[-3,-2],[-3,-2],[-3,-7],[-2,-4],[-2,0],[-4,0],[-2,0],[-2,-2],[-1,-2],[0,-1],[-5,-2],[-8,-5],[-4,0],[-3,0],[-2,0],[-1,-2],[-4,-3],[-2,-1],[0,-2],[-1,-4],[0,-2],[-1,0],[-3,0],[-4,3],[1,-3],[6,-4],[1,-3],[-1,-2],[-4,-3],[0,-2],[1,-1],[-1,-2],[-2,-2],[1,0],[0,-1],[5,2],[4,6],[3,5],[2,1],[6,2],[3,2],[5,4],[5,6],[6,8],[7,6],[9,5],[7,2],[4,0],[1,1],[-4,1],[-3,0],[-4,-1],[-1,3],[0,1],[1,2],[3,1],[16,-2],[6,-2],[6,-14],[1,-4],[1,-4],[-1,-2],[-2,-2],[-7,-5],[-1,-1],[0,-1],[3,-1],[1,-1],[1,-6],[3,4],[6,8],[5,4],[4,1],[5,1],[1,0],[1,-3],[2,-6],[3,-1],[4,-1],[4,-7],[2,-5],[1,-2],[0,-2],[0,-2],[1,-2],[1,-2],[-1,-5],[-2,-8],[2,-7],[-1,-3],[0,-5],[1,-4],[1,-2],[-2,-1],[-9,-3],[-3,0],[-1,-2],[3,0],[5,0],[6,-2],[2,-2],[1,-3],[0,-2],[-2,-1],[-3,0],[-3,1],[0,-1],[5,-4],[1,-1],[3,-3],[0,-3],[0,-3],[-9,-12],[-8,-8],[-7,-7],[-12,-13],[-1,-1],[-2,0],[-6,2],[-4,0],[-9,-3],[-2,-1],[-5,-5],[-2,-1],[-5,-1],[-5,1],[-2,-1],[-2,-2],[-1,-1],[0,-4],[-12,-17],[-3,-6],[-6,-6],[-6,-11],[-6,-5],[-2,-6],[-5,-3],[-10,-1],[-5,-1],[-5,1],[-5,-2],[-6,-1],[-3,1],[-12,-6],[-3,5],[-2,2],[-7,1],[-6,2],[-5,0],[-4,1],[-4,0],[-3,0],[-5,0],[-3,-3],[-10,1],[-4,3],[-3,0],[-5,0],[-4,-2],[-9,2],[-10,-2],[-9,1],[-2,2],[-14,-4],[-5,2],[-5,-5],[-3,1],[-4,-1],[-1,1],[-2,-1],[-2,-3],[-2,0],[-3,-6],[-6,-4],[-8,-23],[-1,-9],[-3,-6],[-2,-1],[-3,0],[-14,-4],[-6,-4],[2,-3],[-2,-2],[-4,-1],[-3,-2],[-3,-3],[-1,-4],[-7,-7],[-8,-15],[-4,-11],[-5,-8],[-4,-3],[-2,-1],[-3,1],[-4,4],[-3,1],[-7,5],[-18,5],[3,-2],[2,-3],[5,-1],[4,0],[10,-6],[5,-3],[3,-2],[2,-4],[-1,-9],[-2,-7],[-3,-5],[-8,-14],[-4,-5],[-7,-17],[-8,-8],[-4,-5],[-4,-7],[-10,-6],[-4,-1],[-3,0],[-4,-4],[-5,-3],[-1,-5],[-12,-11],[-5,-2],[-4,-3],[-1,-5],[-3,-3],[-1,-3],[-3,-7],[-5,-10],[-7,-1],[-2,-4],[-3,-5],[-4,-4],[-8,2],[2,-2],[7,-4],[1,-5],[-4,-1],[-7,-7],[-10,-12]],[[2311,9367],[-4,0],[-4,4],[0,4],[0,2],[0,2],[2,1],[4,2],[2,-1],[1,-2],[3,-2],[1,-2],[0,-1],[-1,-3],[-1,-2],[-1,-1],[-2,-1]],[[1819,9347],[1,-1],[4,1],[4,2],[6,1],[8,2],[2,-2],[1,0],[2,3],[0,2],[0,2],[0,4],[1,2],[5,5],[2,2],[4,1],[9,-1],[8,-3],[11,-3],[17,-7],[5,-3],[1,-3],[-3,-5],[-7,-8],[-6,-3],[-2,-2],[3,-1],[3,-2],[3,3],[3,3],[4,3],[1,0],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[2,0],[2,0],[5,4],[5,6],[7,4],[2,2],[7,2],[-1,1],[1,5],[-3,2],[-7,4],[-4,5],[1,4],[4,-1],[12,0],[2,-1],[11,-6],[4,-4],[3,-2],[7,-3],[2,-2],[1,-1],[1,-1],[-1,-1],[0,-3],[1,-1],[5,-1],[1,-1],[1,-3],[2,-5],[2,-5],[3,-11],[5,-14],[2,-9],[1,-2],[1,-1],[3,-1],[3,-3],[3,0],[1,0],[1,2],[1,3],[10,6],[0,1],[-1,2],[0,1],[2,1],[-6,7],[-5,8],[-2,9],[-1,2],[0,6],[-1,2],[-2,1],[0,2],[0,2],[0,2],[-2,4],[-7,26],[0,3],[1,2],[3,1],[3,0],[2,1],[-2,1],[-2,3],[-1,1],[2,3],[9,-1],[6,-3],[10,-6],[2,1],[1,3],[2,1],[3,0],[10,-4],[11,-8],[8,-3],[5,-5],[3,-5],[3,-3],[0,-2],[-1,-1],[1,-2],[1,-2],[1,-3],[1,-4],[1,-6],[1,-3],[10,-25],[1,-5],[2,-2],[7,-10],[3,-7],[1,-5],[0,-1],[0,-3],[0,-3],[-1,-2],[-1,-3],[-2,-3],[-2,-7],[0,-1],[2,-3],[9,-8],[6,-9],[3,-2],[7,-6],[8,-4],[3,-1],[3,-2],[1,0],[1,0],[1,1],[-3,5],[0,2],[1,0],[9,-8],[4,-3],[6,-3],[11,-8],[1,0],[6,0],[1,0],[1,-1],[1,-1],[0,-4],[2,-3],[9,1],[2,0],[2,-1],[1,-1],[2,-5],[2,-9],[0,-4],[-1,-5],[-1,-3],[-2,0],[-5,0],[-3,2],[-2,3],[-1,5],[-1,1],[-1,-2],[-1,-4],[-2,-2],[-1,-1],[-2,0],[-4,2],[-6,5],[-3,1],[-1,0],[-3,-2],[-5,-3],[-2,-2],[1,-2],[0,-2],[1,-2],[-1,-2],[0,-1],[-2,-1],[-3,0],[-5,1],[-4,1],[-7,5],[-1,1],[-2,-1],[-1,-2],[1,-2],[4,-2],[4,-4],[1,-1],[1,0],[0,-1],[1,-2],[0,-4],[-2,-8],[-1,-2],[1,1],[6,7],[3,3],[6,3],[3,2],[8,1],[3,-1],[2,-3],[0,-1],[-2,-3],[0,-1],[-1,-2],[1,-1],[0,-2],[2,-1],[2,1],[1,-1],[1,-1],[1,-2],[0,-3],[-2,-6],[-3,-3],[-11,-3],[-3,-2],[-7,-2],[-3,-2],[-1,0],[-8,0],[-8,-1],[-10,2],[-7,1],[-8,4],[-3,-1],[-3,-2],[-15,2],[-2,2],[1,2],[4,4],[0,1],[0,1],[-7,1],[-8,2],[-7,1],[-6,0],[-4,1],[-3,2],[-2,1],[0,2],[-1,2],[1,3],[-1,3],[-1,2],[-4,1],[-3,0],[-3,-2],[-2,-3],[-5,-10],[-3,-2],[-6,-7],[-3,-2],[-11,-3],[-14,-1],[-6,-2],[-4,-4],[-6,-4],[-15,-5],[-14,-3],[-14,-1],[-10,-2],[-3,1],[-5,0],[-5,-3],[-6,-1],[-22,-1],[-10,-1],[-5,-1],[-5,0],[-3,1],[-3,3],[-2,3],[-6,10],[-2,5],[0,7],[0,4],[-2,9],[0,1],[-11,3],[-7,1],[-10,0],[-13,0],[-13,1],[-7,1],[-6,2],[-12,5],[0,1],[-1,2],[-1,2],[-3,4],[-8,9],[-3,5],[-1,1],[0,4],[-1,6],[-1,4],[1,2],[1,0],[16,5],[29,5],[26,3],[12,0],[6,-2],[7,-1],[13,0],[16,-2],[3,0],[7,1],[2,2],[12,0],[2,0],[2,2],[-3,2],[-10,6],[-29,10],[-7,2],[-10,2],[-6,1],[-7,-2],[-3,0],[-7,-2],[-7,-1],[-13,-1],[-19,-1],[-3,0],[-4,2],[-2,0],[-19,-1],[-16,2],[-19,15],[-3,5],[0,2],[3,2],[9,6],[3,1],[14,3],[14,4],[11,4],[5,1],[5,0],[5,1],[-1,1],[-4,2],[0,2],[2,0],[7,1],[7,-1],[4,1],[1,1],[-1,1],[-7,2],[-33,-6],[-16,-1],[-10,-2],[-6,0],[-7,2],[-1,1],[0,1],[2,4],[7,2],[4,6],[-4,0],[-13,-1],[-6,0],[-8,2],[-2,3],[-1,2],[-1,2],[1,7],[0,3],[1,1],[10,11],[6,2],[4,3],[0,2],[-1,1],[-4,4],[-1,2],[-1,1],[0,3],[3,3],[6,6],[17,12],[8,5],[8,3],[11,5],[28,10],[25,9],[10,-2],[2,-2],[2,-2],[1,-2],[0,-3],[2,-7],[0,-3],[0,-3],[-1,-3],[-1,-3],[-2,-3],[-3,-4],[-6,-7],[0,-2]],[[2075,9366],[-1,0],[-3,1],[-4,3],[-6,7],[-8,6],[-1,3],[-2,3],[-9,7],[-6,2],[-5,2],[-1,1],[3,6],[4,4],[2,1],[7,2],[24,2],[5,1],[6,-2],[8,-6],[3,0],[2,-2],[2,-2],[0,-2],[1,-4],[-1,-7],[-1,-2],[-5,-9],[-5,-5],[-1,-3],[-2,-2],[-3,-3],[-3,-2]],[[2790,9410],[5,-1],[30,2],[6,-2],[19,-6],[5,-2],[2,-3],[3,-5],[1,-1],[7,-3],[2,-3],[1,-2],[2,-3],[3,-3],[3,-1],[2,-1],[-1,-5],[2,-2],[3,-3],[1,-2],[-2,-2],[-7,-2],[-17,2],[-22,3],[-14,-1],[-6,-1],[-16,-5],[-6,-1],[-5,0],[-9,4],[-3,2],[-1,2],[-2,5],[-2,6],[-1,5],[-1,3],[-3,2],[-9,1],[-3,2],[-1,2],[-1,3],[0,3],[0,2],[1,1],[1,0],[-2,3],[-1,3],[0,5],[0,3],[1,1],[1,1],[4,1],[6,-1],[8,-3],[7,0],[9,-3]],[[2594,9253],[2,-1],[6,2],[5,2],[9,4],[5,2],[15,0],[3,-1],[-2,-3],[0,-1],[0,-1],[2,-2],[3,-1],[2,1],[0,4],[3,16],[1,5],[0,4],[0,4],[-1,3],[-4,2],[-5,-1],[-3,1],[-3,1],[-3,1],[-1,2],[-4,5],[-2,3],[-6,5],[-3,2],[2,2],[5,3],[3,2],[4,7],[3,1],[8,-1],[11,-5],[8,-5],[2,-1],[0,1],[-2,2],[-8,6],[-4,4],[-2,3],[1,1],[4,2],[1,1],[-6,2],[-3,0],[-3,-1],[-3,0],[-5,2],[-1,1],[-3,4],[-2,4],[-1,2],[-1,1],[0,6],[0,3],[0,2],[2,3],[3,4],[2,1],[3,0],[8,-2],[20,-7],[0,2],[-23,10],[-8,3],[-2,3],[12,14],[11,3],[6,4],[9,0],[8,-2],[1,0],[-4,5],[0,1],[5,3],[9,4],[11,2],[2,2],[3,0],[5,1],[12,1],[7,-1],[10,-2],[5,-3],[2,-2],[3,-7],[3,-10],[3,-4],[6,-3],[4,-2],[2,-3],[0,-3],[-1,-4],[1,-4],[3,-4],[2,-3],[4,-3],[0,-1],[-1,-2],[-3,-2],[-7,-7],[-9,-8],[-7,-7],[0,-2],[13,11],[5,0],[0,-2],[-3,-5],[-3,-5],[-4,-3],[1,-1],[6,-5],[-1,-1],[-3,1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[1,-3],[0,-2],[-1,-1],[1,-1],[2,1],[1,1],[3,3],[9,10],[5,3],[2,1],[5,-3],[2,0],[-6,8],[-1,2],[2,2],[0,1],[4,2],[2,1],[2,0],[2,-4],[1,-2],[2,-2],[4,2],[3,3],[4,-2],[5,-5],[0,-5],[0,-5],[0,-4],[6,-6],[5,-3],[1,0],[0,1],[-1,2],[-3,2],[-2,4],[-2,4],[1,10],[4,5],[3,-2],[4,-3],[4,0],[5,0],[11,-5],[5,-1],[0,3],[-4,1],[-7,3],[-10,4],[-5,5],[0,2],[0,2],[0,2],[1,2],[2,1],[10,6],[7,2],[5,1],[9,-1],[10,0],[5,-2],[6,-4],[8,-3],[3,-1],[3,0],[4,1],[4,0],[11,-6],[3,-2],[2,-4],[1,-3],[1,-3],[0,-3],[-10,-11],[-4,-2],[-2,-4],[-4,-8],[-4,-4],[0,-1],[3,2],[3,5],[3,5],[4,4],[8,5],[7,2],[6,0],[5,-1],[4,-1],[2,-1],[1,-1],[1,-3],[0,-3],[-1,-2],[-2,-3],[-8,-4],[-5,-2],[-3,-1],[-8,-1],[0,-1],[7,-2],[7,1],[0,-2],[-4,-5],[-1,-3],[1,-4],[0,-2],[-3,-6],[-3,-5],[1,0],[7,7],[2,7],[2,7],[4,4],[2,1],[7,1],[4,4],[4,1],[1,0],[3,-1],[0,-2],[-4,-7],[-9,-11],[3,1],[3,3],[3,2],[4,4],[3,-3],[4,-3],[2,-6],[4,-3],[2,-3],[0,4],[-4,8],[1,3],[3,2],[8,7],[5,-2],[4,-2],[1,0],[5,0],[6,-1],[7,-2],[7,-3],[5,-3],[3,-3],[2,-3],[1,-1],[1,-4],[-1,-2],[-5,-6],[-2,-2],[-3,-1],[-7,1],[-3,-1],[-2,-2],[-8,-7],[-4,-3],[-4,-2],[-1,-1],[9,0],[2,2],[3,4],[3,4],[8,2],[10,-4],[5,0],[4,5],[5,2],[1,1],[1,0],[4,-3],[1,-3],[-1,-6],[0,-2],[-3,-5],[-7,-7],[-5,-2],[-5,-2],[-6,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-1],[3,-2],[1,0],[1,1],[4,5],[2,3],[2,0],[1,0],[1,-1],[2,-2],[0,-4],[-4,-18],[3,5],[7,18],[2,4],[4,4],[8,5],[6,3],[7,3],[4,0],[4,0],[3,-3],[3,-1],[5,1],[3,0],[3,-1],[3,-2],[5,-3],[11,-4],[1,-1],[2,-2],[1,-3],[0,-2],[-2,-3],[-2,-1],[-2,-1],[-2,-1],[-4,-3],[-2,-1],[-6,-1],[-6,-1],[-4,-2],[-7,-3],[-10,-7],[0,-2],[4,-1],[3,1],[4,5],[5,2],[6,1],[9,2],[4,-1],[1,0],[0,-1],[1,-2],[-2,-3],[-2,-1],[-4,-6],[3,-1],[4,-1],[3,2],[2,3],[2,2],[3,1],[2,1],[2,1],[1,1],[-3,2],[0,1],[1,3],[2,3],[2,2],[2,0],[6,-2],[4,-4],[9,-11],[2,-2],[3,-8],[1,-4],[-1,-2],[-1,-2],[-1,0],[-2,0],[-13,3],[-6,0],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-3,-2],[-8,0],[-4,-1],[-8,-3],[-3,-1],[-1,-3],[5,1],[8,3],[8,0],[12,-6],[4,-1],[3,1],[2,1],[11,-1],[3,-1],[5,-2],[8,-5],[1,-1],[1,-2],[1,-2],[-1,-4],[0,-1],[-3,-1],[-11,1],[-4,1],[-4,-1],[-3,0],[-5,2],[-4,3],[-8,-3],[-5,2],[-6,-2],[-12,-6],[1,-1],[16,5],[3,0],[5,-2],[8,-4],[3,-2],[0,-6],[-2,-4],[-2,-5],[-4,1],[-8,3],[-4,0],[-2,0],[-4,-2],[-1,0],[-14,4],[-3,0],[0,-1],[13,-6],[9,-1],[6,-1],[3,-1],[2,-2],[0,-4],[3,-3],[3,-2],[1,0],[3,1],[3,1],[3,-1],[3,-3],[4,0],[3,-2],[2,0],[8,1],[3,-1],[1,-1],[-2,-1],[-6,-3],[-1,-3],[3,-3],[2,-3],[0,-2],[-2,-5],[0,-2],[5,4],[1,-1],[0,-5],[1,0],[2,4],[-1,6],[3,3],[8,2],[-1,-10],[0,-5],[-4,-8],[-3,-2],[0,-1],[2,-1],[1,0],[2,1],[3,6],[7,7],[1,0],[0,-2],[-1,-5],[3,-2],[3,2],[2,2],[3,0],[2,-1],[0,-2],[-1,-8],[0,-2],[4,-5],[0,3],[-1,6],[1,3],[3,3],[6,5],[3,1],[1,0],[3,-3],[-1,-1],[-3,-2],[-2,-2],[-1,-5],[2,-2],[5,0],[5,3],[3,-1],[4,-5],[7,-6],[3,1],[5,-5],[-6,-4],[2,-9],[-9,1],[-4,-1],[-3,1],[-4,-1],[4,-2],[5,-1],[1,-2],[5,0],[3,0],[6,0],[1,3],[4,2],[2,2],[2,-1],[6,-1],[8,-6],[-4,-4],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[-11,-10],[2,0],[5,3],[9,3],[5,2],[3,-1],[2,0],[2,1],[3,-2],[6,-1],[7,8],[4,-1],[4,-5],[9,-9],[4,-6],[2,-2],[0,-3],[-4,-2],[-2,-1],[-6,5],[-5,3],[-3,-1],[-3,-1],[1,-1],[12,-8],[2,-5],[0,-2],[-8,-4],[-2,0],[-6,1],[-3,4],[-3,1],[-4,0],[-1,0],[4,-6],[0,-1],[-2,-2],[-1,-2],[8,-5],[6,-5],[1,-1],[-4,-2],[-3,0],[-7,0],[-3,1],[-1,-1],[4,-2],[1,-2],[1,-2],[1,-2],[0,-2],[-3,-2],[-3,-5],[-2,-5],[-3,0],[-1,1],[-4,-2],[-6,2],[-2,2],[-6,10],[0,-1],[1,-5],[0,-3],[-6,-2],[0,-1],[4,-1],[4,-1],[0,-5],[0,-18],[-1,-7],[-3,-6],[-3,-5],[-4,4],[-1,3],[-1,2],[-2,2],[-2,0],[-3,0],[-2,-3],[-3,3],[-3,3],[1,9],[1,5],[-2,-2],[-3,-7],[-3,-8],[-3,3],[-2,4],[-3,4],[-3,4],[-4,6],[-2,6],[-1,1],[-2,5],[-1,2],[-2,3],[1,4],[2,4],[3,3],[4,3],[5,1],[2,4],[3,7],[3,5],[4,2],[-2,1],[-4,-3],[-3,-3],[-4,-5],[-3,-4],[-8,-4],[-3,-1],[-4,0],[-8,0],[-2,2],[1,4],[6,7],[-1,0],[-2,-2],[-3,-2],[-2,-1],[-3,0],[-4,5],[-2,1],[-4,1],[-2,2],[-6,11],[-2,3],[-1,2],[-2,3],[-3,2],[-1,-1],[1,-2],[0,-2],[-3,-1],[-3,0],[-3,2],[0,-3],[3,-5],[0,-7],[-1,0],[-2,-1],[-2,1],[-5,5],[-5,4],[-4,1],[0,-1],[2,-6],[3,-6],[4,-4],[7,-6],[3,-4],[-2,-4],[-2,-2],[-2,0],[-4,0],[-7,2],[-4,3],[-5,7],[-9,7],[-2,0],[-6,-3],[1,0],[4,0],[3,-1],[7,-6],[0,-2],[-1,-3],[0,-3],[2,-4],[2,-3],[4,-2],[2,0],[1,-1],[-3,-9],[0,-2],[1,-1],[6,3],[2,1],[2,0],[2,-1],[2,-2],[2,-2],[0,-3],[1,-1],[5,-3],[0,-1],[-5,-4],[-1,0],[1,-1],[4,-2],[3,-3],[2,-5],[0,-2],[0,-2],[0,-1],[2,0],[1,1],[1,-1],[1,-4],[2,-9],[1,-3],[1,0],[0,10],[1,1],[3,-1],[5,-4],[3,-3],[1,-2],[-3,-3],[1,-1],[1,-2],[2,0],[1,4],[3,3],[2,2],[5,-1],[4,-5],[0,-2],[3,-2],[2,1],[4,-6],[-2,-2],[-4,-4],[-1,-1],[2,0],[8,0],[2,-1],[1,-3],[-4,-8],[-3,1],[-5,0],[-2,-1],[0,-1],[6,-3],[2,-3],[3,-3],[1,-3],[0,-1],[-1,-2],[5,-2],[3,1],[3,1],[3,0],[0,-1],[0,-3],[-3,-3],[1,-1],[3,1],[2,-1],[2,-6],[2,-5],[-1,-2],[-3,0],[1,-6],[1,-7],[0,-6],[0,-6],[-2,-1],[-3,0],[0,2],[-6,16],[-1,3],[-2,3],[-5,7],[0,-1],[1,-3],[2,-5],[1,-10],[1,-7],[0,-2],[-1,-1],[-1,-1],[1,-1],[4,-7],[2,-4],[2,-4],[1,-3],[1,-1],[0,-1],[-2,-1],[-3,0],[-2,0],[-6,4],[0,-1],[3,-14],[0,-3],[-2,-1],[-2,1],[-2,4],[-4,4],[-5,5],[-4,4],[-2,0],[0,-2],[-1,0],[-1,1],[-1,3],[-2,2],[-7,6],[-1,0],[1,-2],[1,-4],[-1,-1],[-2,1],[-3,1],[-2,4],[-3,8],[-2,2],[0,-1],[1,-7],[0,-3],[-2,0],[-1,0],[0,2],[-1,3],[-2,3],[-2,1],[-2,2],[0,3],[-1,0],[-4,0],[-3,2],[-6,8],[-6,9],[-4,5],[-1,1],[2,-6],[2,-8],[1,-4],[-2,0],[-2,1],[-11,11],[-7,6],[-4,1],[-6,0],[-2,-3],[4,-6],[3,-5],[3,-3],[5,-6],[5,-9],[2,-2],[6,-4],[3,0],[4,-1],[0,-1],[-2,-2],[0,-2],[8,-3],[2,-2],[3,-4],[2,-1],[6,-8],[2,-1],[6,-3],[1,-2],[4,-5],[2,-3],[2,-7],[3,-3],[5,-3],[2,-1],[1,-1],[-1,-3],[0,-1],[-3,-2],[0,-3],[2,-5],[0,-4],[-2,-1],[-4,-1],[-2,0],[-2,1],[-4,2],[-7,5],[-10,4],[-4,2],[-2,1],[-2,1],[-26,5],[-4,2],[-3,1],[-2,2],[-10,5],[-1,2],[-7,8],[-5,11],[-2,1],[-5,1],[-5,-1],[-3,-1],[-4,1],[-3,1],[-7,5],[-6,2],[-6,4],[-2,2],[0,1],[4,6],[-1,0],[-8,-5],[-2,2],[-4,3],[-4,4],[-6,10],[-4,3],[0,1],[5,1],[3,-1],[2,1],[5,4],[2,3],[0,1],[-4,0],[-1,1],[0,2],[-2,2],[-3,3],[-3,1],[-10,-1],[-2,1],[0,2],[2,4],[1,2],[0,1],[0,1],[-2,0],[-6,-5],[-1,0],[-3,5],[-1,5],[-1,2],[-2,1],[-5,5],[-7,10],[-3,3],[-3,2],[-2,2],[1,1],[4,8],[0,1],[-4,0],[-5,2],[-3,-2],[-2,-1],[-2,2],[-1,-1],[-1,-6],[-1,-2],[-2,-1],[-1,0],[-1,1],[0,2],[0,8],[-3,1],[-5,0],[-2,1],[-1,2],[-1,2],[-1,5],[-1,2],[-2,0],[-1,0],[-1,-1],[-1,-1],[-3,0],[0,-2],[2,-3],[3,-4],[2,-5],[-1,-4],[-6,-1],[-4,-1],[-5,1],[-3,1],[-4,3],[-6,-1],[-2,-8],[-1,0],[-6,0],[-3,-1],[-8,-4],[-2,-1],[-2,1],[-2,-1],[-3,-3],[-3,0],[-5,2],[-4,1],[-3,0],[-3,1],[-4,2],[-3,1],[-3,0],[-1,1],[-6,5],[-1,3],[-4,7],[0,2],[-1,3],[1,2],[1,4],[1,8],[2,2],[1,3],[3,3],[12,5],[3,2],[0,1],[-3,7],[0,1],[1,1],[2,4],[1,1],[2,1],[4,-2],[4,-1],[5,0],[8,-3],[12,-5],[6,-3],[5,-5],[4,-5],[0,-3],[-1,-4],[-1,-1],[0,-1],[1,-2],[3,-2],[1,1],[-1,2],[1,3],[1,1],[0,3],[-1,3],[-1,2],[-2,2],[-7,7],[-1,3],[3,1],[11,-3],[4,1],[1,3],[2,2],[2,1],[4,0],[5,-1],[2,0],[2,0],[3,2],[5,5],[2,1],[4,1],[4,0],[5,-2],[4,0],[-1,3],[-2,7],[-3,7],[-2,2],[-6,4],[-7,8],[-3,5],[-1,3],[1,1],[1,3],[12,9],[10,8],[4,5],[2,3],[2,2],[2,2],[5,2],[1,2],[1,4],[0,3],[5,8],[3,3],[5,1],[4,3],[4,7],[-1,2],[-2,1],[-1,2],[-6,19],[-4,9],[-5,8],[-5,9],[-7,10],[0,2],[1,3],[-1,1],[-7,-4],[-2,-1],[-3,2],[-2,2],[-1,4],[0,2],[1,2],[1,5],[0,3],[0,2],[-1,2],[-1,0],[-2,1],[-4,0],[-1,-1],[4,-7],[-1,-2],[-5,0],[-2,0],[-3,1],[-2,1],[-6,8],[-1,3],[0,2],[0,1],[-2,-1],[-1,0],[-3,1],[0,1],[4,4],[1,1],[-3,1],[-3,1],[0,1],[1,1],[4,2],[1,2],[-2,1],[-2,0],[-2,-2],[-5,-5],[-3,-2],[-4,2],[-2,1],[-2,-1],[-3,-4],[-6,-2],[-11,-7],[-5,-2],[-5,0],[-1,2],[0,2],[1,2],[0,1],[1,2],[-1,8],[1,2],[2,1],[3,1],[8,-1],[4,0],[3,2],[2,2],[3,4],[0,3],[-2,5],[-1,1],[-8,4],[-4,1],[-3,1],[-3,1],[-1,2],[-2,3],[0,2],[0,2],[2,2],[6,2],[-5,2],[-3,0],[-2,-2],[-2,-4],[-2,-1],[-5,2],[-3,1],[-2,1],[-1,1],[1,1],[2,1],[4,3],[1,2],[-3,3],[-2,1],[-6,1],[-7,-1],[-3,0],[-1,3],[-1,4],[0,5],[-1,7],[-2,5],[-2,0],[-8,-2],[-2,0],[-2,1],[-6,5],[-2,2],[-1,0],[-4,6],[-2,1],[-2,3],[-2,4],[-3,1],[-2,-2],[-3,-2],[-2,-3],[-2,-3],[0,-2],[2,-2],[9,-2],[2,-2],[2,-3],[2,-4],[1,-4],[-1,-4],[-1,-2],[-2,-2],[-5,-3],[-6,-2],[-6,0],[-3,0],[-15,6],[-3,0],[-3,1],[-8,2],[-4,1],[-8,2],[-13,1],[-2,-1],[3,-3],[3,-1],[3,0],[3,-3],[5,-5],[3,-2],[2,-4],[0,-1],[-2,-3],[-18,13],[-11,-4],[-5,-2],[-4,0],[-6,1],[-12,6],[-4,3],[-2,0],[-11,-3],[-9,0],[-18,3],[-7,1],[-2,2],[-2,1],[-4,0],[-10,2],[-10,-4],[-12,4],[-3,2],[-1,2],[-4,6],[0,4],[1,3],[1,3],[1,1],[-6,-4],[-3,0],[-3,-1],[-8,2],[-2,-1],[1,-1],[2,-2],[0,-1],[-5,-1],[-7,1],[-3,-1],[-2,0],[-3,-3],[-1,-1],[-2,0],[-8,7],[-6,5],[-7,1],[-3,2],[-2,1],[-10,14],[-2,3],[-3,11],[-1,3],[-1,1],[2,1],[10,-2],[9,0],[5,-1],[6,-2],[7,-2],[6,-1],[8,1],[10,2],[1,1],[-6,3],[-6,3],[-5,4],[-3,2],[-5,1],[-15,1],[-14,3],[-9,3],[-8,5],[-3,2],[-1,2],[-1,5],[-1,10],[-2,6],[-1,3],[0,3],[3,6],[7,6],[0,1],[-1,1],[-3,1],[-1,3],[-1,3],[0,4],[1,2],[1,4],[3,6],[5,7],[5,6],[0,3],[1,6],[1,4],[0,3],[1,2],[3,5],[4,4],[6,4],[1,1],[0,2],[0,1],[1,1],[15,11],[6,5],[6,3],[7,2],[19,4],[11,2],[12,-1],[24,-2],[2,-2],[1,-1],[1,-2],[-1,-2],[-6,-5],[-8,-5],[-5,-4],[-9,-8],[-3,-3],[-11,-18],[-2,-3],[-2,-3],[-1,-6],[1,-2],[1,-4],[6,-8],[2,-4],[0,-3],[-1,-9],[0,-4],[0,-4],[2,-6],[2,-7],[5,-8],[8,-7],[6,-5],[6,-4],[6,-6],[2,-2],[-3,-3],[-8,-5],[-9,-2],[-6,-2],[-6,-4],[-8,-3],[-4,-2]],[[2222,9427],[23,-13],[4,1],[7,1],[7,2],[10,2],[7,2],[2,1],[5,1],[2,0],[7,-2],[3,-1],[2,-1],[1,-2],[3,-5],[0,-2],[-2,-3],[-2,-2],[-4,-1],[-3,0],[-2,-3],[-3,1],[-1,-2],[0,-1],[1,-1],[2,0],[1,1],[4,0],[1,-2],[2,-2],[-1,-2],[-6,-3],[-9,-3],[-10,-10],[-6,-4],[-1,-2],[-1,-1],[1,-2],[0,-1],[1,-1],[6,4],[3,1],[3,1],[6,0],[3,0],[4,-2],[4,-4],[1,-1],[0,-1],[-2,-1],[0,-1],[4,-2],[4,-4],[0,-3],[-2,-2],[0,-2],[1,-1],[2,1],[5,3],[5,1],[3,0],[1,-1],[2,-4],[1,-4],[0,-4],[-1,-3],[-1,-3],[-4,-3],[-3,-1],[-1,0],[0,-1],[4,-2],[1,-2],[1,-2],[-1,-2],[0,-2],[-4,-5],[0,-1],[1,-1],[3,-3],[0,-8],[-9,-2],[-2,-2],[-3,-3],[-3,-2],[-6,-3],[-4,0],[-16,2],[-2,1],[-1,2],[-1,3],[0,2],[0,2],[0,1],[-2,-2],[-2,-3],[1,-3],[5,-9],[1,-4],[0,-2],[0,-1],[-6,-6],[-3,-2],[-4,0],[-3,0],[-3,2],[-3,2],[-5,-1],[-1,2],[-2,2],[-3,8],[-5,5],[-5,6],[-10,10],[-6,5],[-8,9],[-3,2],[-2,1],[-5,0],[-2,1],[-1,3],[-4,3],[-1,0],[-2,-1],[-5,-2],[-6,3],[-1,1],[-1,3],[-1,1],[-2,1],[-2,4],[-12,6],[-7,7],[-1,3],[0,1],[0,4],[2,4],[2,4],[1,1],[5,4],[4,1],[5,-1],[3,-1],[2,-2],[1,-3],[1,-1],[4,-2],[2,-2],[3,-4],[2,-4],[3,-1],[5,-1],[5,1],[12,3],[1,2],[1,10],[1,0],[4,-5],[1,0],[1,1],[1,2],[0,1],[-2,5],[-2,3],[-1,1],[-1,1],[-3,-1],[-3,1],[0,2],[0,2],[1,2],[2,1],[3,1],[3,-1],[4,-2],[3,-1],[4,1],[-5,1],[-7,6],[-3,1],[-4,-2],[-2,-1],[-5,-1],[-4,-1],[-15,10],[-1,1],[-1,2],[0,1],[1,2],[4,2],[6,1],[4,1],[3,-2],[5,-5],[5,-2],[0,1],[-1,2],[-2,4],[-1,1],[-4,1],[-3,3],[-1,2],[-1,2],[0,2],[0,2],[2,1],[12,2],[8,-2],[5,-1],[2,3],[0,1],[-3,-1],[-3,0],[-2,2],[0,1],[2,2],[4,1]],[[2270,9423],[-8,-2],[-4,1],[-2,-2],[-1,-1],[-5,0],[-9,3],[-2,1],[-1,1],[1,1],[1,1],[7,1],[3,1],[1,2],[1,1],[3,1],[6,0],[15,5],[7,0],[3,0],[1,-1],[0,-1],[0,-2],[-3,-2],[-3,-3],[-8,-4],[-3,-1]],[[2412,9440],[11,-3],[5,-2],[3,-1],[4,-4],[3,-1],[10,2],[6,1],[16,-1],[12,-4],[5,-2],[3,-2],[-1,-3],[-2,-4],[-3,-4],[-5,-7],[-5,-3],[-1,-1],[-1,-2],[-2,-3],[-5,-7],[-1,-1],[-7,-3],[2,-1],[1,-1],[-1,-3],[-4,-7],[-5,-7],[-3,-4],[-6,-5],[-3,-2],[-5,-1],[-26,5],[-7,0],[-17,-2],[1,-2],[7,-1],[4,-3],[6,-6],[0,-2],[1,-2],[-1,-3],[0,-1],[-9,-10],[-3,-7],[-1,-6],[-3,-2],[-10,2],[-3,0],[-11,-1],[-5,0],[0,10],[0,9],[-2,10],[-8,16],[-1,3],[-1,3],[0,4],[0,3],[0,7],[1,3],[-1,10],[-1,13],[0,5],[0,2],[0,1],[2,2],[3,2],[2,0],[11,-4],[5,-2],[3,0],[0,1],[-2,1],[-3,2],[-5,5],[-2,4],[0,2],[0,1],[0,2],[1,1],[2,3],[2,1],[6,2],[7,2],[15,1],[5,-1],[6,3],[4,1],[7,-1]],[[1674,9437],[7,5],[5,1],[3,-1],[1,-1],[0,-1],[0,-2],[1,-6],[0,-1],[1,1],[2,1],[7,9],[4,2],[2,1],[10,1],[6,0],[7,-1],[6,-1],[8,-4],[7,-4],[7,-4],[21,-17],[9,-4],[3,-3],[2,-2],[1,-3],[0,-2],[0,-2],[-1,-2],[-2,-1],[-13,-6],[-7,-1],[-7,-3],[-16,-9],[-11,-4],[-14,-8],[-28,-13],[-3,-2],[-1,-2],[-8,-15],[-3,-3],[-7,-4],[-9,-1],[-2,-1],[-1,-5],[-3,-8],[-2,-6],[-2,-15],[0,-2],[-2,-2],[-3,-3],[-8,-4],[-7,-2],[-8,-1],[-2,1],[-3,2],[-2,0],[-1,0],[-11,-11],[-11,-4],[-5,-4],[-3,-2],[-3,0],[-4,0],[-4,2],[-3,3],[-2,3],[-5,12],[-3,4],[-2,2],[-5,7],[-2,2],[-21,9],[-10,5],[-2,2],[-3,1],[-13,0],[-1,0],[-1,1],[2,2],[0,2],[1,2],[-1,3],[5,3],[-1,1],[0,2],[0,1],[2,1],[1,2],[2,4],[2,3],[2,2],[4,4],[3,2],[2,2],[0,1],[-1,0],[0,2],[0,5],[0,3],[1,2],[0,2],[2,1],[9,4],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-3,0],[-2,3],[-1,1],[1,3],[4,4],[2,3],[5,10],[8,6],[3,7],[6,8],[0,1],[-2,2],[-6,2],[-3,3],[-2,3],[-9,17],[-1,1],[-1,2],[-1,2],[0,1],[34,5],[24,2],[24,4],[7,1],[5,-1],[5,-3],[7,-4],[9,-4],[17,-6],[11,-1],[-5,-5],[0,-1],[0,-1]],[[2295,9462],[-8,-4],[-2,1],[-1,2],[7,5],[3,1],[2,-1],[1,-2],[0,-1],[-2,-1]],[[2352,9460],[-1,0],[-2,0],[-10,3],[-1,1],[-1,1],[2,1],[1,1],[3,1],[4,0],[4,-3],[2,-3],[0,-1],[-1,-1]],[[2108,9492],[-6,-1],[-9,2],[-5,4],[-2,1],[0,1],[1,1],[2,2],[3,7],[1,1],[5,4],[3,1],[8,0],[4,-2],[2,-1],[1,-2],[2,-3],[0,-2],[2,-3],[1,-1],[0,-2],[-1,-1],[-1,-2],[-3,-2],[-8,-2]],[[2401,9491],[2,-4],[0,-2],[1,-4],[-1,-5],[-1,-1],[-1,-2],[0,-2],[0,-1],[-2,-1],[-10,-1],[-6,1],[-9,-1],[-5,0],[-3,1],[-4,3],[-9,5],[-5,1],[-11,2],[-7,6],[-2,1],[-2,-2],[-1,0],[-1,1],[0,3],[-2,1],[-4,-1],[-1,1],[-1,1],[1,2],[0,2],[5,7],[3,1],[3,1],[2,3],[0,4],[4,5],[3,1],[5,4],[17,5],[5,1],[7,-1],[6,-1],[5,-3],[9,-7],[5,-5],[2,-4],[2,-3],[3,-5],[-1,-2],[-1,-3],[0,-2]],[[2331,9520],[-2,-2],[-2,0],[-3,2],[-4,-1],[-4,-4],[-2,-2],[-1,-1],[-4,-1],[-1,1],[-2,2],[-1,3],[1,3],[3,1],[10,3],[2,1],[1,2],[0,1],[1,0],[6,-2],[3,-2],[2,-2],[-3,-2]],[[1637,9534],[-3,-1],[-2,1],[1,2],[5,4],[0,1],[0,1],[0,1],[1,2],[2,0],[1,0],[0,-2],[0,-3],[-1,-2],[-1,-2],[-1,-1],[-2,-1]],[[2374,9534],[-3,0],[-3,1],[-1,1],[-1,2],[-1,2],[0,2],[-1,2],[0,1],[0,1],[1,0],[3,0],[6,3],[1,-1],[1,-1],[0,-3],[1,-2],[2,-3],[1,-3],[-1,-1],[-5,-1]],[[1713,9524],[-8,-4],[-6,1],[-7,2],[-6,1],[-2,1],[-1,1],[2,3],[3,2],[6,4],[11,8],[7,3],[6,2],[7,5],[4,2],[3,1],[4,-1],[0,-2],[-4,-6],[-2,-3],[-5,-7],[-9,-11],[-3,-2]],[[2804,9544],[0,-3],[-2,0],[-7,-2],[-5,-1],[-2,2],[-2,2],[4,4],[5,3],[5,5],[5,3],[2,0],[3,-2],[-3,-5],[-3,-2],[0,-4]],[[2160,9550],[6,-4],[0,-1],[-1,0],[-7,-2],[-3,-2],[-3,-4],[-2,-1],[-10,-1],[-10,0],[2,3],[6,6],[-5,2],[-16,-4],[-6,3],[5,6],[-5,1],[-7,0],[-4,3],[1,5],[10,2],[12,2],[13,3],[10,0],[4,-2],[2,-5],[1,-6],[2,0],[5,-4]],[[2110,9583],[2,0],[4,1],[3,0],[3,-2],[0,-1],[11,-4],[4,-2],[1,-1],[-2,-1],[-3,-2],[-3,-2],[-4,-1],[-23,0],[-2,1],[-1,1],[-3,7],[-2,4],[-1,2],[1,2],[2,1],[8,2],[4,0],[2,0],[1,-1],[0,-2],[-2,-2]],[[2286,9576],[0,-2],[0,-2],[-1,-2],[0,-1],[1,-2],[3,-5],[2,-2],[0,-3],[0,-2],[-3,-3],[-1,-4],[0,-3],[2,-3],[0,-2],[-3,-3],[-5,-2],[0,-2],[12,-3],[1,-1],[0,-7],[2,-8],[-1,0],[-3,3],[-5,3],[-6,-6],[1,-9],[4,-4],[1,-2],[0,-2],[-4,-1],[-1,1],[-4,2],[-2,2],[-1,-1],[0,-1],[3,-3],[1,-3],[-1,-1],[-4,0],[-5,-1],[-7,-1],[-4,0],[-4,1],[-5,0],[-4,0],[-2,0],[-2,1],[-3,0],[-6,-3],[-9,1],[-8,0],[-1,1],[-2,3],[-3,7],[0,2],[9,1],[-6,3],[-7,2],[-3,1],[0,3],[0,1],[12,3],[9,6],[5,3],[1,1],[4,1],[11,1],[0,2],[-20,-1],[-27,-4],[-9,-1],[-7,1],[-30,-6],[-1,0],[-3,2],[-3,3],[2,2],[9,5],[4,4],[0,2],[3,3],[6,1],[10,-3],[5,-3],[4,-2],[4,1],[4,2],[-1,0],[-7,-1],[-1,0],[-3,4],[-2,2],[-1,2],[0,1],[2,3],[-8,1],[-3,2],[-1,3],[0,1],[3,3],[7,4],[-1,1],[-10,0],[-2,0],[-4,3],[1,2],[3,4],[3,3],[2,1],[3,0],[8,-2],[2,-1],[5,-4],[2,-2],[0,-2],[1,-2],[4,-2],[19,-12],[3,-3],[2,-1],[5,-1],[2,1],[2,0],[1,1],[-8,5],[-2,2],[-2,3],[1,1],[2,0],[6,0],[7,0],[-8,2],[-5,1],[-5,0],[-7,3],[0,1],[2,1],[9,1],[1,1],[1,0],[-3,2],[-3,1],[-13,2],[-5,3],[-1,1],[-1,1],[2,3],[7,3],[5,2],[9,1],[7,0],[4,0],[10,-6],[4,-4],[8,0],[-2,5],[-2,4],[2,2],[7,3],[5,-2],[7,-4],[1,-1],[7,-3],[5,0],[2,-2],[1,-2]],[[2188,9583],[-7,0],[-4,1],[0,1],[3,1],[10,2],[5,4],[2,1],[8,0],[4,0],[6,-1],[-14,-5],[-13,-4]],[[1992,9552],[3,0],[4,1],[5,-1],[2,-1],[1,-2],[1,-2],[-1,-1],[0,-1],[-6,-6],[-2,-2],[2,0],[1,0],[6,5],[5,1],[3,0],[6,-1],[2,0],[1,-1],[1,-1],[2,-5],[2,-5],[0,4],[1,2],[5,2],[-2,1],[-1,2],[-2,4],[1,1],[1,1],[4,3],[4,2],[3,0],[14,-3],[5,-2],[3,-1],[0,-1],[1,-3],[3,-8],[0,-3],[-1,-4],[-5,-8],[0,-5],[-5,-13],[-3,-4],[-3,-2],[-14,-5],[-10,-4],[-3,-1],[-3,0],[-8,2],[-10,3],[-6,-1],[-5,-2],[-4,-1],[-3,0],[-4,1],[-4,2],[2,1],[1,1],[-1,1],[-4,1],[-5,-3],[-14,-7],[-19,-3],[-5,-1],[-5,-2],[-2,-2],[-4,-4],[-5,-3],[-10,-3],[-12,-5],[-22,-5],[-14,-1],[-13,2],[-5,1],[-4,2],[-10,5],[-2,2],[-3,4],[1,3],[5,3],[8,2],[15,4],[13,6],[5,1],[13,1],[7,0],[5,0],[3,1],[4,2],[7,4],[5,4],[2,2],[-2,2],[-3,0],[-8,-4],[-4,-1],[-4,-1],[-6,-1],[-6,-1],[-1,0],[-7,4],[-3,1],[-1,0],[-2,-1],[-3,-3],[-1,-1],[-3,-1],[-11,-1],[-10,-1],[-2,1],[-2,1],[0,1],[0,4],[-1,1],[1,3],[1,2],[2,2],[7,4],[1,1],[-3,0],[-8,-2],[-2,1],[-1,2],[-1,0],[-1,-1],[-1,-1],[-1,-6],[-2,-3],[-3,0],[-4,2],[-1,0],[-1,0],[0,-1],[4,-5],[0,-2],[-2,-3],[-12,-5],[-4,-2],[-2,1],[-1,1],[-1,2],[-3,4],[-2,0],[-2,0],[-2,0],[-2,-2],[-1,-1],[-1,-3],[-2,-2],[-1,0],[-11,4],[-10,8],[-10,-1],[-4,0],[-14,3],[-2,1],[-1,3],[0,1],[1,1],[2,3],[3,4],[2,1],[2,1],[3,1],[7,0],[19,0],[3,1],[21,7],[2,1],[3,3],[1,1],[-25,-5],[-11,-2],[-17,1],[-3,1],[-1,2],[4,4],[2,2],[4,1],[12,2],[15,2],[10,0],[9,2],[5,2],[-17,0],[-21,-1],[-3,0],[-6,3],[0,1],[2,2],[1,2],[-1,3],[0,1],[4,3],[7,3],[4,1],[8,-1],[23,-1],[5,0],[-3,1],[-4,1],[-18,2],[-4,1],[0,1],[-1,1],[0,2],[2,2],[5,5],[16,3],[7,1],[6,0],[7,-2],[3,-1],[1,-2],[1,-2],[0,-2],[0,-2],[2,-1],[3,-5],[3,-1],[13,3],[5,0],[6,-1],[7,-2],[10,-8],[13,-8],[0,-1],[-5,-3],[-1,-1],[1,-1],[5,-1],[5,1],[4,-1],[1,0],[2,-3],[2,-5],[3,-4],[3,-3],[3,-1],[5,0],[4,1],[7,-1],[39,-2],[2,0],[1,2],[1,2],[1,3],[-1,3],[0,1],[-24,10],[-2,4],[11,5],[1,1],[0,2],[0,2],[-1,2],[-7,4],[-5,1],[-8,4],[-2,1],[-1,2],[0,2],[0,1],[1,2],[8,4],[3,2],[10,10],[5,4],[3,2],[3,1],[8,0],[7,-3],[2,-1],[1,0],[0,-2],[-1,-2],[-3,-3],[-1,-1],[0,-1],[2,-3],[1,-2],[0,-4],[1,0],[4,-3],[4,-4],[2,-5],[-1,-2],[-4,-3],[-2,-2],[0,-2],[0,-1],[3,-1]],[[2507,9579],[-1,-1],[-4,0],[-2,0],[-2,0],[-3,2],[-3,3],[-4,5],[-4,4],[0,1],[1,2],[3,2],[8,1],[5,0],[5,-3],[1,-1],[1,-1],[0,-2],[0,-1],[-2,-2],[-1,-2],[0,-2],[0,-2],[1,-2],[1,0],[0,-1]],[[1845,9593],[-4,-2],[-29,3],[-1,1],[-1,1],[5,3],[6,2],[15,1],[5,-1],[4,-2],[2,-1],[0,-3],[-2,-2]],[[2380,9603],[6,-1],[4,1],[4,0],[6,-2],[5,-4],[4,-2],[1,-1],[1,0],[0,-3],[0,-2],[0,-1],[-2,-2],[-1,-3],[-3,-3],[-2,-2],[-1,-3],[3,2],[12,9],[7,-1],[12,0],[14,4],[7,0],[7,0],[5,-1],[10,-5],[4,-2],[1,-2],[1,-1],[-3,-2],[-6,1],[-11,1],[-2,1],[-2,0],[-1,-1],[0,-2],[3,-1],[13,0],[44,-8],[1,-3],[0,-1],[-2,-1],[-3,-2],[-25,-2],[-14,2],[-12,2],[-4,0],[3,-4],[7,-1],[6,-2],[3,-2],[13,-1],[2,-1],[4,-4],[3,0],[3,-3],[3,-4],[1,0],[4,0],[7,-3],[2,-2],[0,-2],[-2,-2],[-3,-3],[-7,-4],[0,-1],[8,0],[2,0],[10,-7],[1,0],[1,1],[1,2],[0,2],[-2,3],[1,3],[2,1],[1,1],[2,0],[2,-1],[11,-8],[13,4],[2,-2],[2,-3],[1,-1],[5,7],[3,1],[12,-7],[8,-2],[3,-2],[5,-1],[8,-1],[2,3],[-5,3],[3,2],[10,3],[6,-1],[11,5],[7,0],[4,0],[13,7],[3,1],[2,2],[5,0],[15,-4],[4,0],[15,4],[5,1],[6,0],[14,-2],[10,-3],[4,-1],[-2,-3],[1,-1],[1,0],[4,-1],[13,0],[6,-1],[4,-3],[1,-1],[0,-1],[-4,-3],[0,-1],[5,-1],[10,0],[2,-1],[2,-4],[2,-5],[0,-2],[-3,-4],[-10,-4],[-10,-4],[-1,-1],[3,-2],[4,-1],[2,0],[9,2],[2,0],[4,-2],[1,-2],[2,-2],[-3,-3],[-12,-2],[-7,3],[-3,1],[-1,0],[1,-2],[3,-3],[1,-2],[-1,0],[0,-2],[0,-3],[-1,-3],[-1,-4],[-27,-1],[-3,-1],[-7,-3],[-6,-1],[-3,-1],[-4,1],[-10,3],[-6,-1],[-2,1],[-6,2],[-1,1],[-2,3],[-2,3],[0,3],[1,3],[-1,2],[-1,0],[-2,0],[-5,4],[-3,1],[-1,-1],[1,-2],[1,-1],[3,-2],[1,-2],[-2,-6],[0,-1],[-4,-4],[-2,-1],[-7,0],[-10,-3],[-5,-1],[-7,1],[-4,1],[-3,2],[-3,2],[-1,0],[-1,-4],[-1,-1],[-2,0],[-4,2],[-3,3],[-1,0],[0,-2],[-1,-1],[0,-1],[-8,-2],[-4,0],[-4,2],[-3,0],[-4,-1],[-8,2],[-2,0],[1,-4],[-3,0],[-6,0],[-10,1],[-6,-2],[-12,1],[-11,1],[-3,1],[-1,1],[0,2],[0,2],[2,4],[3,4],[1,3],[-3,1],[-1,1],[-2,1],[-4,-2],[-2,-5],[-2,-2],[-1,1],[-1,4],[-1,1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[1,-2],[0,-2],[0,-2],[-2,-2],[-5,-2],[-3,-1],[-8,0],[-5,1],[-9,2],[-6,1],[-6,5],[-5,1],[0,1],[2,4],[0,1],[-7,-5],[-1,-2],[1,-3],[-1,0],[-4,1],[-5,-1],[-1,0],[-4,3],[-5,2],[-3,3],[-4,10],[-2,6],[1,1],[3,2],[-1,1],[-4,3],[-3,3],[-2,2],[0,2],[-1,3],[0,2],[1,2],[2,4],[6,8],[1,1],[0,2],[-1,4],[-1,4],[-1,3],[-3,4],[-5,4],[-6,8],[-5,5],[-6,9],[-3,0],[-3,0],[-7,-3],[-2,-1],[-1,-1],[-5,0],[-15,1],[-6,0],[-4,0],[-7,-2],[-8,0],[-5,6],[-11,3],[-3,2],[-2,3],[1,1],[6,2],[3,1],[1,1],[-6,-1],[-3,1],[-19,7],[-5,2],[-1,1],[-1,0],[0,2],[1,1],[5,-2],[3,0],[4,1],[1,1],[-1,1],[-6,2],[-3,2],[-1,2],[1,2],[0,1],[2,1],[4,0],[5,1],[8,3],[6,1],[6,0],[14,-3],[15,-3],[8,-3]],[[1790,9630],[2,-3],[0,-1],[-1,-1],[-3,-1],[-16,-5],[-4,-3],[2,-2],[6,-4],[6,-4],[1,-2],[-3,-1],[-5,0],[-2,0],[-2,-1],[0,-1],[6,-6],[2,-3],[0,-1],[-1,-1],[-3,-2],[-4,-3],[-6,-2],[-15,-3],[-1,-2],[0,-1],[0,-4],[0,-2],[-2,-3],[-1,-2],[-3,-1],[-3,0],[-4,0],[-7,3],[-3,1],[-4,4],[-1,2],[1,3],[1,5],[2,4],[2,5],[1,3],[-1,1],[-2,1],[-5,-2],[-4,-1],[-2,-2],[-2,-2],[-1,-2],[-1,-4],[-1,-3],[-3,-1],[-4,0],[-2,-1],[-1,-1],[1,-2],[4,-2],[1,-4],[-1,-1],[-4,-4],[-2,-1],[-2,-5],[-2,-2],[-2,-1],[-2,0],[-3,2],[-3,4],[-2,3],[-1,3],[-1,1],[-2,-1],[-2,-3],[0,-2],[1,-3],[0,-2],[-3,-2],[0,-1],[5,-3],[1,-1],[0,-2],[-1,-1],[-2,0],[-1,-2],[-2,-2],[-5,-4],[-7,0],[-6,-2],[-1,0],[-1,3],[-2,5],[-1,3],[-2,2],[-3,6],[-1,2],[-1,0],[-1,1],[-2,-2],[-3,-8],[-5,-2],[-3,-1],[-3,1],[-8,2],[-6,1],[-4,-1],[-6,-4],[-3,0],[-4,0],[-1,1],[-2,2],[0,2],[1,0],[2,3],[0,1],[-2,1],[0,1],[1,1],[-1,0],[0,1],[-2,-1],[-6,-1],[1,2],[2,3],[8,8],[2,2],[2,1],[21,2],[1,1],[10,10],[3,2],[3,2],[14,6],[1,1],[3,4],[1,1],[3,2],[10,8],[10,7],[4,3],[7,4],[7,2],[23,3],[16,-4],[4,0],[2,1],[2,1],[2,0],[6,-1],[2,1],[2,2],[-2,1],[-7,2],[0,1],[0,1],[2,2],[3,1],[9,1],[5,0],[4,-1],[5,-4],[13,-5]],[[2504,9624],[-7,-3],[-4,0],[-21,7],[-4,3],[-1,2],[0,4],[0,4],[1,3],[1,1],[2,1],[5,1],[5,-1],[7,-1],[7,-2],[9,-6],[4,-3],[0,-4],[0,-2],[0,-2],[-1,-1],[-3,-1]],[[2095,9616],[-4,-1],[-8,3],[-6,1],[-4,4],[-5,6],[-4,6],[-2,4],[-2,2],[-1,4],[-5,6],[0,1],[5,1],[8,-1],[3,-2],[5,-4],[6,-5],[2,-3],[0,-3],[1,-2],[6,0],[6,-5],[1,-2],[1,-3],[0,-2],[-1,-3],[-2,-2]],[[2347,9655],[7,-2],[8,1],[8,0],[18,-1],[12,1],[3,-1],[5,-1],[3,-2],[2,-3],[-6,-2],[-5,-9],[-1,0],[-5,0],[-3,-1],[-16,1],[-44,1],[-1,1],[-6,5],[-1,2],[1,3],[2,2],[1,0],[13,4],[5,1]],[[2175,9649],[-4,0],[-7,0],[-8,2],[-2,3],[-1,4],[0,2],[1,0],[5,1],[10,0],[7,0],[9,-2],[4,-2],[2,-1],[2,-2],[1,-1],[0,-1],[-11,-1],[-5,0],[-3,-2]],[[1838,9653],[-8,-2],[-5,0],[-9,3],[-10,8],[-1,3],[3,1],[3,1],[2,1],[3,2],[8,2],[1,-1],[0,-2],[0,-1],[3,-1],[3,-1],[5,-4],[4,0],[1,-1],[1,-1],[2,-3],[0,-1],[-3,-2],[-3,-1]],[[1932,9673],[22,-1],[1,0],[0,-1],[-2,-4],[-2,-2],[-12,-3],[-16,-3],[-3,-2],[2,-1],[2,-2],[12,1],[3,-1],[1,-1],[1,-1],[0,-2],[0,-5],[-1,-3],[-1,-3],[-5,-2],[-9,-3],[-6,-1],[-4,1],[-5,-1],[-20,-5],[-6,0],[-6,2],[-7,4],[-8,2],[-3,2],[-4,1],[-1,2],[0,1],[1,2],[1,1],[1,1],[-2,2],[0,3],[-3,3],[0,2],[0,2],[0,1],[2,3],[1,0],[4,0],[6,2],[14,4],[31,5],[9,-1],[4,1],[8,0]],[[2139,9676],[-4,-1],[-3,0],[-1,1],[0,1],[0,1],[5,4],[3,1],[3,0],[2,-1],[1,-2],[-6,-4]],[[1949,9706],[5,-4],[2,0],[2,0],[1,-1],[3,-5],[1,-2],[0,-3],[-1,-2],[-1,-2],[-2,-1],[-7,-1],[-8,1],[-8,-1],[-3,0],[-10,1],[-2,0],[-5,3],[-4,1],[-2,0],[-2,-3],[-4,-3],[-2,0],[-7,0],[-10,5],[-12,-1],[-12,-3],[-5,-1],[-1,1],[-2,2],[0,1],[4,3],[8,4],[6,2],[12,3],[14,1],[5,2],[3,2],[9,4],[6,2],[7,1],[6,0],[7,-3],[6,-2],[3,-1]],[[2327,9699],[7,-2],[11,1],[4,-1],[11,-4],[3,-3],[1,-1],[0,-1],[-4,-2],[-7,-3],[-1,-2],[6,-3],[3,-3],[2,-1],[0,-2],[-5,-5],[-3,-2],[-4,1],[-3,-1],[-6,-2],[-9,-2],[-13,-1],[-4,-2],[-6,-2],[-4,0],[-2,1],[0,2],[0,1],[1,2],[-2,1],[-10,3],[-5,4],[-1,2],[0,1],[12,0],[5,1],[2,2],[1,0],[-2,1],[-9,2],[-13,2],[-1,2],[-6,4],[0,3],[-2,1],[-4,2],[-1,3],[0,1],[0,1],[7,2],[-1,2],[-6,6],[-1,4],[0,1],[4,2],[4,0],[13,-1],[6,0],[6,-2],[6,-2],[10,-2],[3,-1],[6,-4],[0,-2],[0,-1],[1,-1]],[[2127,9745],[6,-1],[8,-4],[7,-8],[1,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1],[4,-2],[0,-1],[0,-1],[0,-2],[3,2],[2,2],[0,1],[1,3],[5,2],[6,2],[3,1],[5,-1],[11,-6],[4,0],[2,-1],[1,-1],[0,-2],[-2,-3],[-1,-2],[1,-1],[6,-1],[13,2],[12,-6],[6,-6],[5,-2],[1,-1],[-2,-1],[-1,-3],[-4,-3],[-1,-1],[2,-2],[0,-2],[0,-2],[1,-2],[5,-1],[12,-10],[2,-2],[2,-4],[0,-1],[-2,-2],[-2,-5],[-1,-1],[-5,-1],[-9,-1],[-8,-2],[-9,2],[-8,4],[-3,2],[-2,3],[-1,1],[0,5],[-1,0],[-4,3],[-3,4],[-6,0],[-15,4],[-6,1],[-6,0],[-9,-2],[-2,0],[-2,2],[-1,1],[0,2],[1,2],[-26,-3],[-8,-3],[-10,0],[-5,2],[-7,3],[-4,3],[-2,4],[-1,3],[3,2],[2,1],[3,1],[14,-3],[12,-1],[6,1],[2,3],[-3,2],[-12,1],[3,2],[10,1],[5,3],[-1,1],[-3,1],[-13,0],[-5,1],[-1,0],[2,2],[7,5],[0,1],[-3,1],[-3,3],[-1,0],[-7,-2],[-10,-8],[-2,-1],[-2,0],[-2,1],[0,2],[2,2],[4,6],[0,2],[-4,2],[-11,-2],[-7,0],[-1,2],[0,3],[0,3],[2,5],[2,3],[1,2],[15,-1],[25,2],[7,0],[8,-2]],[[2256,9785],[0,-8],[0,-4],[-2,-3],[-1,0],[-2,-1],[-7,3],[-3,1],[0,1],[0,2],[-6,3],[-9,0],[-4,0],[-2,1],[-1,1],[-1,5],[1,2],[1,3],[1,0],[6,3],[2,0],[9,-1],[8,0],[3,-1],[4,-1],[2,-3],[1,-3]],[[2447,9853],[4,-5],[13,-12],[6,-4],[11,-5],[1,-2],[0,-1],[0,-3],[3,-1],[9,-2],[10,-3],[1,0],[4,2],[4,1],[5,-1],[3,-1],[2,-2],[1,-1],[0,-1],[-2,-2],[0,-1],[1,-1],[0,-1],[-2,-4],[1,-2],[5,-3],[4,-2],[9,-2],[6,0],[4,-2],[0,1],[-2,3],[-3,3],[-7,2],[-1,2],[0,3],[0,3],[4,2],[3,0],[8,0],[4,-1],[8,-2],[1,-2],[1,-2],[0,-6],[0,-1],[-7,-3],[-2,-2],[2,-1],[6,-1],[9,-1],[3,-1],[4,-4],[3,-5],[-2,-5],[-3,-8],[-2,-2],[-2,-3],[1,-1],[9,2],[2,0],[6,3],[8,-1],[3,-1],[2,-1],[2,-3],[3,-4],[1,0],[4,5],[2,2],[2,1],[1,0],[4,-5],[9,-9],[3,-3],[0,-3],[-3,-3],[-3,-1],[-23,-7],[-10,-3],[-5,-3],[-2,-1],[-6,1],[-1,-1],[-1,-4],[-2,-2],[-5,-4],[-6,-5],[-4,-3],[-7,2],[-2,3],[0,6],[-1,2],[1,1],[0,3],[3,5],[-1,0],[-5,-3],[-2,-1],[-1,-2],[-1,-4],[1,-8],[-1,-2],[-2,-2],[1,-1],[5,-2],[1,0],[1,-1],[0,-2],[0,-2],[-2,-2],[-3,-1],[-4,1],[-8,6],[-3,0],[-1,-1],[0,-2],[3,-5],[0,-4],[-1,-4],[-2,-5],[-2,-3],[-1,-1],[-4,0],[-3,2],[-11,9],[-5,4],[-7,8],[-2,2],[-1,0],[-1,-3],[2,-3],[6,-8],[5,-5],[2,-5],[1,-2],[-1,0],[-2,0],[-2,2],[-6,2],[-2,2],[-2,2],[-3,1],[-5,1],[-4,0],[-5,-1],[5,-3],[1,-1],[2,-2],[1,-2],[-2,-1],[-6,-1],[-9,1],[-13,1],[-14,3],[-13,5],[-9,4],[-3,3],[-1,2],[3,1],[12,2],[12,1],[-2,2],[-22,2],[-7,1],[-4,-1],[-4,0],[-3,2],[-5,4],[-2,3],[0,1],[2,0],[10,0],[1,0],[-5,2],[-16,4],[-6,3],[-1,2],[0,1],[0,1],[6,3],[18,6],[7,1],[6,0],[4,2],[4,5],[19,2],[14,3],[2,1],[-11,-1],[-16,1],[-6,4],[-5,0],[-5,0],[-5,-1],[-10,-4],[-5,-1],[-10,-3],[-3,0],[-2,0],[0,1],[2,3],[2,1],[0,1],[-4,0],[-5,0],[-4,0],[-12,-4],[-5,-2],[-2,0],[-6,4],[-9,2],[-2,1],[1,7],[3,1],[7,1],[22,6],[1,1],[2,3],[-4,0],[-11,-3],[-9,-2],[-7,0],[-6,1],[-3,0],[-4,2],[-13,9],[-3,4],[-1,3],[-1,3],[-3,7],[27,-4],[11,-1],[21,0],[1,0],[0,1],[0,2],[0,1],[0,1],[8,3],[1,0],[-9,1],[-16,-4],[-6,0],[-7,5],[-7,-1],[-4,1],[-5,1],[-2,2],[-2,1],[-1,1],[0,1],[2,2],[6,1],[3,0],[7,-1],[6,0],[-2,2],[-8,5],[-7,5],[0,8],[6,1],[6,1],[6,-2],[8,-1],[5,-2],[4,-4],[4,0],[7,-1],[16,0],[-3,1],[-5,2],[-11,2],[-5,6],[-12,4],[-8,1],[0,2],[6,8],[8,3],[13,-1],[9,1],[10,3],[11,-1],[3,0],[1,1],[2,2],[0,1],[-2,2],[-3,1],[-13,1],[-6,0],[-3,1],[0,2],[-1,1],[0,2],[1,1],[1,0],[3,1],[13,0],[7,1],[8,-1],[18,-5],[5,-2],[6,-3],[3,-3]],[[3069,9964],[23,-1],[7,1],[9,-3],[5,0],[8,0],[6,0],[23,-1],[5,-1],[0,-1],[-5,-3],[-7,-2],[-42,-9],[-3,-1],[8,0],[12,0],[10,1],[11,3],[3,0],[7,1],[14,4],[11,2],[5,-1],[4,-1],[3,0],[1,1],[3,3],[1,1],[4,1],[2,0],[3,-2],[4,-3],[4,-3],[2,0],[8,3],[4,0],[10,-1],[4,-1],[1,-1],[-3,-1],[-2,-2],[0,-1],[1,-1],[6,-2],[8,-5],[0,-2],[-4,-4],[0,-1],[21,4],[22,-2],[6,-1],[2,-2],[3,-2],[2,-4],[-1,-3],[-10,-6],[-10,-4],[-5,-4],[-9,-2],[-31,-10],[-15,-3],[-8,-3],[-4,-1],[-18,1],[-5,-2],[-3,-2],[-5,-2],[-9,-1],[-17,0],[-4,-4],[-1,-2],[-2,-1],[-1,-1],[-49,-12],[-1,-2],[5,0],[6,0],[72,14],[13,1],[13,-1],[-1,-3],[-18,-9],[-23,-8],[-12,-7],[-29,-10],[-24,-11],[-9,-5],[-12,-10],[-4,-3],[-5,0],[-6,0],[-6,1],[-7,4],[-6,4],[-3,1],[2,-2],[12,-14],[-1,-2],[-23,-3],[-11,-3],[-5,0],[-4,0],[-3,0],[-4,-1],[0,-1],[3,-1],[9,-1],[21,3],[3,0],[5,-2],[1,-1],[-6,-4],[-16,-5],[2,-1],[5,-2],[-1,-1],[-5,-4],[-2,-1],[-16,-4],[-7,-1],[-6,1],[-29,8],[-9,1],[-10,2],[-7,-1],[-7,-2],[3,-1],[14,-2],[11,-1],[5,-1],[2,-1],[5,-5],[0,-3],[-1,-3],[-1,-2],[-2,-1],[-3,0],[-11,0],[-4,0],[-5,-2],[-6,-1],[-11,1],[-13,-3],[-7,0],[-7,1],[-8,3],[-9,1],[-14,1],[1,-2],[5,0],[10,-4],[5,-5],[5,-1],[10,-4],[7,-1],[7,-1],[10,1],[7,0],[-2,-10],[-3,-1],[-16,0],[-8,1],[-3,2],[-8,2],[-7,-2],[-6,1],[-4,-1],[-7,0],[-17,-2],[-9,0],[-7,1],[-8,0],[-9,0],[1,-1],[3,-1],[6,-2],[5,-3],[4,-1],[5,1],[6,1],[19,3],[8,0],[7,-1],[5,-1],[4,-2],[4,-4],[11,-1],[9,-1],[13,-6],[4,0],[1,-2],[-3,-4],[0,-2],[-9,-4],[-15,-2],[-15,1],[-12,-1],[-1,0],[8,-2],[18,-5],[7,-3],[1,-1],[-10,-7],[-9,-12],[-3,-1],[-3,0],[-7,0],[-10,-3],[-7,-1],[-14,1],[-15,0],[-2,-2],[0,-4],[0,-6],[1,-7],[-1,-6],[-3,-4],[-3,-2],[-6,-3],[-6,-2],[-4,0],[-8,0],[-21,-2],[-10,0],[-8,1],[-9,2],[-14,8],[-4,1],[-4,1],[1,-1],[4,-4],[3,-3],[3,-1],[-1,-2],[-6,-2],[-7,0],[-8,0],[0,-1],[3,-2],[3,-2],[3,-1],[6,1],[7,2],[4,1],[9,-1],[4,0],[11,-6],[1,0],[9,3],[11,0],[5,-3],[1,-4],[1,-3],[-2,-3],[3,-3],[7,-2],[5,-1],[4,2],[5,3],[3,1],[2,0],[3,-3],[5,-5],[1,-5],[-4,-7],[-5,-4],[-18,-7],[-5,-3],[-5,-3],[-6,-3],[-12,-3],[-7,-1],[-14,-4],[-3,0],[-4,1],[-1,2],[1,3],[1,3],[2,3],[0,2],[-4,4],[-2,1],[-3,1],[-5,0],[-3,-1],[-4,0],[-3,0],[-3,2],[-6,6],[-2,1],[-3,0],[-3,1],[-2,2],[-4,2],[1,-2],[4,-4],[3,-3],[1,-4],[-1,-3],[-32,-1],[-13,1],[-3,2],[-7,11],[-1,-19],[-24,-3],[-6,0],[-9,2],[-12,6],[-5,3],[-2,3],[-2,2],[-1,0],[-3,-4],[-3,-8],[-8,2],[-11,2],[-4,9],[0,-12],[-17,1],[-8,0],[-2,10],[0,12],[-4,-8],[2,-6],[0,-7],[-7,2],[-16,1],[-5,1],[0,10],[2,10],[20,10],[6,4],[4,2],[7,1],[9,1],[6,0],[7,0],[8,2],[6,0],[1,1],[-1,1],[-7,6],[-2,2],[-2,0],[-5,1],[-4,2],[-3,3],[-3,3],[-4,7],[-4,7],[2,4],[7,3],[7,2],[8,1],[6,0],[7,-2],[10,-3],[6,-4],[7,-8],[5,-6],[4,-3],[18,-5],[6,-1],[7,1],[14,1],[7,2],[3,1],[2,3],[2,1],[6,5],[10,8],[5,7],[1,3],[2,3],[0,3],[-3,-2],[-16,-17],[-4,-3],[-9,-5],[-5,-1],[-6,0],[-9,2],[-11,-3],[-6,1],[-5,2],[0,12],[-8,10],[8,5],[7,3],[11,8],[3,0],[8,-1],[-4,2],[-5,2],[-10,-1],[4,18],[-7,-13],[-7,-7],[-4,-3],[-5,-2],[-17,-2],[4,6],[4,10],[-4,-4],[-10,-5],[-7,-3],[-7,-1],[-11,0],[-6,3],[1,6],[0,8],[4,4],[6,4],[5,7],[4,6],[16,3],[15,1],[13,4],[7,0],[6,-1],[24,-3],[10,-2],[4,-2],[4,0],[3,2],[4,2],[16,0],[4,0],[4,1],[4,3],[6,3],[1,1],[-4,0],[-4,-1],[-6,-2],[-5,-1],[-6,0],[-11,2],[-20,0],[-11,1],[-4,1],[-3,1],[-2,2],[-2,3],[1,2],[4,1],[3,0],[6,-2],[6,-2],[7,0],[-2,2],[-9,4],[-6,4],[-5,4],[-4,5],[-9,7],[-7,7],[-5,3],[-5,1],[-16,2],[-3,2],[-8,6],[-2,10],[-3,6],[3,8],[5,4],[32,-3],[14,0],[17,-1],[9,-2],[11,-5],[9,-5],[9,-4],[8,-5],[10,-7],[5,-4],[5,-2],[6,-2],[12,-2],[10,-1],[5,0],[6,2],[4,2],[-4,1],[-12,0],[-9,1],[-4,2],[-5,3],[-8,6],[-6,4],[-13,7],[-10,6],[-8,6],[0,3],[5,2],[7,1],[43,4],[26,5],[11,6],[1,1],[34,8],[25,3],[9,1],[9,1],[0,1],[-7,1],[-8,0],[-17,0],[-15,1],[-5,2],[1,3],[2,3],[4,4],[5,3],[21,9],[14,4],[4,2],[-30,-5],[-11,-5],[-10,-6],[-6,-2],[-4,1],[-3,-1],[-3,-2],[-3,-3],[-2,-4],[-2,-3],[-2,-2],[-4,-2],[-10,-5],[-24,-6],[-9,-2],[-7,0],[-22,-4],[-7,0],[-8,1],[4,3],[12,6],[3,3],[-8,-1],[-8,-2],[-17,-1],[-7,-2],[-6,-5],[-6,-2],[-4,-1],[-5,-1],[-20,0],[-5,0],[-12,3],[-10,-1],[-4,0],[-8,3],[-2,1],[0,2],[5,4],[5,4],[17,8],[11,3],[16,4],[36,3],[2,3],[-37,-3],[-32,-4],[-5,-1],[-8,-4],[-23,-13],[-7,-4],[-11,0],[-8,1],[-6,1],[-11,4],[-8,2],[-4,2],[-2,1],[-2,2],[-2,2],[3,2],[21,3],[28,-1],[13,1],[13,2],[18,5],[20,8],[4,2],[-7,0],[-6,0],[-13,-3],[-20,-7],[-19,-2],[-44,-2],[-15,-1],[-6,0],[-4,2],[-6,3],[1,3],[11,3],[8,1],[2,1],[-12,3],[-1,1],[7,4],[15,5],[7,2],[14,1],[14,-1],[0,1],[-14,2],[-10,0],[-14,-1],[-37,-8],[-3,0],[-5,1],[1,3],[20,8],[1,2],[-14,-1],[-5,1],[-4,1],[-5,-1],[-8,-3],[-5,-1],[-3,0],[-8,4],[1,3],[6,3],[6,3],[8,2],[12,3],[9,1],[15,0],[7,1],[6,3],[8,3],[9,3],[14,2],[11,-1],[7,-2],[5,-3],[6,-2],[0,2],[5,2],[5,1],[7,0],[6,-1],[8,-3],[7,-2],[3,1],[3,1],[10,0],[0,1],[-3,2],[-4,1],[-35,8],[-1,2],[12,2],[7,2],[4,1],[8,4],[6,2],[10,3],[5,-1],[5,-2],[5,-2],[15,-1],[7,-1],[11,-9],[5,-2],[6,-3],[4,-1],[8,-1],[1,2],[-9,4],[-3,2],[1,2],[2,1],[3,0],[7,-2],[19,-6],[29,-6],[11,-2],[7,-3],[6,-3],[6,-2],[1,1],[-5,4],[-14,6],[-37,10],[-15,5],[-7,3],[-5,4],[-1,2],[5,2],[7,2],[9,0],[1,1],[-8,3],[-4,2],[0,1],[9,2],[6,-1],[10,-3],[10,-1],[1,1],[-9,8],[-1,1],[1,1],[3,1],[10,0],[16,-4],[29,-2],[8,0],[-1,1],[-11,3],[-13,3],[-5,2],[-4,2],[-4,2],[-1,1],[8,2],[19,0],[18,-3],[16,1],[10,-1],[4,0],[7,-3],[22,-10],[2,-2],[3,-2],[3,-3],[3,-1],[8,2],[5,2],[-2,2],[-13,5],[-3,2],[-6,4],[-14,6],[-3,3],[-3,2],[39,2],[37,-2],[6,-1],[4,-2],[3,-3],[6,-3],[12,-5],[17,-3],[-3,2],[-13,5],[-5,4],[0,2],[1,2],[2,1],[14,5],[21,2],[2,-1],[16,-7],[8,-3],[5,-1],[-7,4],[-6,2],[0,1],[9,3],[6,1],[25,1],[3,0],[2,-1],[6,-4],[2,-1]],[[5264,7847],[-1,-6],[0,-4],[0,-2],[3,-1]],[[5290,7823],[-1,-8],[-1,-4],[1,-3],[1,-2],[-1,-2],[-2,0],[-2,1],[-2,3],[-2,0],[-1,-1],[-1,-3],[-1,-4],[1,-2],[1,-1],[0,-4],[1,-4],[0,-2],[0,-1],[-2,-1],[-1,1],[-2,5],[0,2],[-2,0],[-3,-1],[-4,-3],[-1,0],[-2,1],[-1,2],[-1,5],[-1,3],[-3,1],[-1,-1],[0,-5],[-1,-6],[-1,-4],[-4,-7],[-1,-3],[0,-2],[-1,-2],[1,-4],[1,-3],[-1,-1],[-2,-1],[-1,1],[-1,4],[-3,4],[2,4],[-1,1],[-4,2],[-3,3],[-3,5],[0,2],[0,8],[0,1],[-1,1],[-1,0],[-2,-2],[-2,-4],[-4,-4],[0,-1],[1,-4],[0,-2],[-3,-6],[0,-2],[-4,-4],[-2,-2],[-6,3],[-1,0],[-3,-2],[-3,-2],[-5,-1],[-3,1],[0,1]],[[5195,7767],[-1,2],[-1,4],[-2,2],[-1,2],[-1,2],[-1,2],[1,7],[-1,2],[-1,4],[1,2],[-1,0],[-5,2],[-4,-1],[-3,-2],[-2,-4],[-1,0],[1,-1],[1,-3],[-2,-4],[-3,-3],[-3,0],[-1,1],[0,3],[2,2],[2,2],[0,4],[1,2],[-2,3],[0,2],[1,3],[1,3],[1,3],[3,4],[4,4],[0,5],[0,5],[1,2],[5,3],[1,1],[0,2],[4,7],[4,6],[0,2],[1,1],[0,1],[-1,1],[-1,0],[-1,2],[2,4],[2,2],[3,0],[1,-1],[0,-1],[1,-1],[1,-1],[2,1],[3,1],[1,3],[1,2],[3,3]],[[5211,7866],[2,-1],[7,-1],[4,1],[3,2],[4,0],[2,-1],[1,0],[1,1],[2,1],[1,1],[-1,1],[-3,0],[-1,0],[0,2],[1,2],[2,2],[2,1],[1,-1],[3,-4],[1,0],[0,1],[1,0],[1,0],[1,-3],[7,1],[2,0],[4,-5],[5,-4]],[[3123,1736],[-1,0],[-3,1],[-4,0],[0,1],[0,1],[0,1],[2,0],[6,0],[1,-1],[-1,-2],[0,-1]],[[3131,1743],[-1,-1],[-1,1],[-1,1],[-5,2],[0,1],[0,1],[1,1],[2,2],[2,3],[1,-2],[1,-4],[1,-4],[0,-1]],[[3153,1775],[-2,-3],[-2,1],[0,2],[0,1],[1,1],[1,2],[1,0],[2,-2],[-1,-2]],[[3136,1779],[0,-2],[-2,-3],[-3,-2],[-2,-1],[-2,1],[0,3],[-1,2],[0,1],[-1,0],[-1,0],[-2,-1],[-3,-3],[-1,-1],[-1,0],[-8,2],[-1,1],[-1,2],[-1,6],[-4,6],[6,3],[6,0],[13,-3],[5,0],[4,-5],[0,-3],[0,-3]],[[3063,1793],[23,-6],[7,4],[5,0],[2,-5],[-6,-5],[0,-2],[1,-1],[5,-1],[2,-1],[1,-3],[-1,-3],[0,-1],[0,-2],[5,-4],[1,-3],[1,-2],[1,-4],[-1,-4],[-3,1],[-2,2],[-1,5],[-2,1],[-3,1],[-4,2],[-2,0],[-3,1],[-2,-1],[-1,1],[-1,4],[0,1],[1,5],[0,1],[-1,0],[-2,-1],[-1,1],[-3,4],[-1,0],[-3,1],[-2,-7],[0,-1],[2,-4],[3,-7],[-2,0],[-4,2],[-2,1],[-1,4],[-3,1],[-1,2],[0,1],[0,4],[-1,1],[-4,-1],[-1,1],[0,1],[-1,1],[-2,2],[0,1],[1,1],[0,3],[1,11],[5,-3]],[[3028,1796],[1,-3],[0,-1],[4,-2],[1,1],[4,1],[2,1],[4,1],[3,-9],[0,-3],[-3,-3],[-2,-1],[-2,1],[0,2],[0,1],[-1,2],[-2,0],[-1,-2],[-1,0],[-2,2],[-4,1],[-1,1],[0,2],[0,1],[-4,3],[-2,3],[-2,0],[-1,0],[-1,-1],[-1,-2],[-1,1],[0,1],[-1,1],[1,3],[1,0],[5,0],[3,-2],[3,0]],[[3017,1846],[6,-5],[4,0],[0,-3],[0,-5],[0,-2],[-2,-2],[-1,-3],[-1,0],[-4,3],[-5,5],[-2,-1],[-3,1],[-3,0],[-1,-3],[-4,-1],[-1,6],[-3,5],[-3,4],[2,6],[2,1],[2,3],[8,-3],[4,-2],[5,-4]],[[2974,1878],[1,-4],[0,-1],[2,1],[4,0],[5,-2],[1,0],[2,-6],[2,-2],[3,-5],[-3,-3],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[-3,-3],[-3,0],[-3,-1],[-2,-2],[-1,1],[-2,1],[0,2],[2,1],[3,5],[0,6],[-3,1],[-1,-1],[-2,0],[-1,2],[-1,-3],[0,-2],[0,-4],[0,-1],[-1,-1],[-3,2],[-3,2],[0,2],[1,5],[0,2],[-1,4],[-1,0],[-3,-1],[-3,5],[-2,5],[-6,2],[5,7],[7,1],[2,-4],[7,-2],[0,3],[0,2],[1,2],[1,-2],[2,0],[0,-1],[1,-3]],[[2933,1912],[1,-1],[1,0],[2,-1],[5,-1],[6,-3],[2,-2],[4,-1],[3,-3],[1,-1],[1,-1],[4,-6],[1,0],[4,-5],[0,-1],[-2,0],[-5,2],[-3,0],[-2,1],[-1,3],[0,1],[-5,7],[-2,1],[-4,2],[-4,-1],[-2,0],[-1,0],[-4,5],[-4,5],[-2,5],[-3,4],[0,1],[2,1],[2,-2],[3,-4],[1,-2],[1,-3]],[[3093,1797],[-5,0],[-1,-1],[-6,-2],[-11,3],[-3,3],[-4,6],[-1,-2],[-4,-3],[-4,-2],[-3,0],[-2,3],[-1,1],[-1,0],[-6,-3],[-6,3],[-5,2],[-9,2],[-6,4],[-11,0],[-2,1],[0,4],[0,2],[3,2],[0,2],[3,0],[3,-4],[1,0],[2,3],[3,3],[1,0],[5,-3],[2,0],[3,2],[1,1],[0,2],[1,2],[3,0],[3,-1],[0,-4],[0,-4],[3,-1],[5,0],[3,-2],[0,3],[-5,7],[-2,4],[-2,2],[-4,1],[-3,8],[0,7],[0,7],[6,3],[-1,6],[2,4],[2,2],[3,-16],[2,-5],[-3,-2],[-4,0],[2,-7],[5,-3],[3,-6],[0,-4],[3,-2],[5,0],[3,1],[2,3],[1,1],[4,-4],[5,-2],[2,-2],[1,-3],[0,-3],[0,-2],[2,1],[2,4],[1,2],[2,0],[1,1],[0,2],[-4,3],[-22,14],[-3,6],[-2,7],[0,8],[2,2],[4,3],[7,4],[8,6],[1,2],[0,3],[-1,3],[-3,2],[-4,0],[-3,0],[-3,-1],[-6,-4],[-4,0],[-3,3],[-2,4],[-2,6],[0,4],[1,3],[1,3],[2,2],[2,0],[2,1],[1,1],[1,1],[-1,2],[0,1],[-3,2],[-1,3],[-2,4],[1,1],[4,0],[3,-2],[2,-3],[2,0],[1,1],[4,4],[3,5],[2,6],[2,3],[3,0],[6,-10],[3,-1],[8,6],[1,0],[2,-3],[1,-1]],[[2940,1970],[-1,0],[-3,1],[-1,1],[-3,3],[0,4],[-1,4],[1,0],[2,-2],[1,-1],[1,-3],[4,-3],[1,-1],[0,-1],[-1,-2]],[[2921,1988],[1,-11],[1,-2],[3,-1],[3,-6],[0,-1],[-3,-10],[-1,-7],[-5,0],[-1,7],[-3,7],[-1,8],[-2,7],[3,4],[3,-1],[0,5],[2,1]],[[2929,2009],[0,-5],[-1,-1],[-1,-1],[-2,2],[-1,0],[-2,-3],[-2,-1],[-2,0],[-3,2],[-3,-8],[-1,-2],[-3,-4],[0,5],[2,6],[1,4],[1,6],[3,-2],[5,2],[4,4],[3,0],[1,-2],[1,-2]],[[2908,2044],[-1,-5],[-2,0],[-1,2],[0,3],[-1,2],[1,3],[1,4],[-1,3],[4,0],[4,-1],[1,-1],[-1,-2],[-1,-2],[-3,-1],[0,-5]],[[2915,2067],[-6,-5],[-1,2],[-4,0],[1,6],[0,3],[1,2],[0,3],[1,6],[4,-2],[2,-1],[3,-2],[4,-1],[1,-5],[-4,-2],[-2,-4]],[[2913,2154],[0,-5],[-4,-9],[-3,-5],[-4,-5],[-2,0],[-1,2],[1,4],[3,3],[-1,4],[-1,2],[-1,0],[-1,2],[0,4],[1,1],[2,2],[1,-1],[5,2],[2,2],[3,0],[0,-3]],[[2931,2135],[0,-8],[0,-9],[-1,-11],[0,-2],[1,-1],[0,-1],[0,-6],[-1,-4],[-1,-3],[-1,-5],[0,-1],[-3,0],[-2,0],[-1,5],[-1,3],[0,4],[-1,5],[0,2],[0,3],[2,2],[0,5],[0,2],[2,2],[0,1],[0,1],[-1,0],[-6,-7],[0,-1],[0,-3],[0,-9],[-2,-5],[0,-1],[-3,0],[-4,1],[-4,4],[-3,-1],[0,6],[1,4],[5,0],[1,8],[-2,2],[-2,3],[-1,3],[1,2],[3,3],[2,0],[1,-1],[4,1],[0,5],[-3,2],[0,4],[4,4],[3,3],[0,5],[-1,4],[0,1],[2,4],[3,1],[1,0],[3,-2],[2,0],[1,-1],[0,-3],[2,-20]],[[2902,2158],[-3,0],[-1,10],[4,16],[0,6],[-1,4],[0,4],[0,1],[5,3],[1,-3],[2,-9],[3,-12],[0,-12],[-2,-3],[-6,-3],[-2,-2]],[[2928,2168],[0,-1],[-4,1],[-5,-2],[-3,5],[-1,9],[-1,2],[-1,5],[-1,3],[-2,5],[0,5],[0,2],[1,3],[6,3],[2,5],[2,-1],[0,-10],[1,-3],[2,-3],[0,-1],[1,-4],[1,-6],[1,-2],[0,-2],[0,-1],[0,-2],[1,-10]],[[2913,2213],[-2,-1],[0,2],[-2,3],[2,2],[3,3],[2,-1],[2,-1],[1,-2],[-4,-3],[-1,-1],[-1,-1]],[[2935,2340],[-1,-3],[-3,-1],[-2,2],[-4,-1],[0,5],[1,3],[3,5],[1,6],[0,8],[2,2],[0,3],[4,2],[0,-6],[-1,-12],[2,-6],[1,-2],[-1,-3],[-2,-2]],[[2915,2387],[0,-1],[-1,1],[-1,2],[-1,3],[1,1],[1,0],[1,-2],[0,-2],[0,-2]],[[2954,2392],[-1,-1],[-1,2],[0,3],[-2,4],[-1,2],[0,2],[1,3],[2,1],[1,0],[1,-4],[0,-4],[1,-4],[-1,-4]],[[2972,2394],[-6,-5],[-4,2],[-1,3],[-1,3],[0,5],[1,3],[2,4],[1,2],[1,3],[-1,3],[1,2],[1,1],[5,-3],[5,-4],[2,-3],[0,-2],[-2,-6],[-1,-4],[-3,-4]],[[2952,2417],[-2,-3],[-2,0],[-3,-3],[-1,-3],[0,-3],[2,-4],[2,-4],[1,-7],[1,-6],[0,-2],[0,-3],[2,-5],[0,-2],[0,-3],[-1,-4],[-2,-1],[0,-2],[-1,-1],[-4,-1],[-3,2],[1,7],[-3,3],[-2,5],[-3,9],[-1,3],[-3,7],[-3,6],[4,4],[-1,6],[2,2],[4,3],[2,-2],[2,1],[1,1],[0,7],[1,5],[2,3],[3,0],[1,-3],[1,-3],[3,-2],[0,-3],[0,-4]],[[2949,2450],[1,-3],[-1,0],[-2,1],[-1,-3],[-1,0],[-4,2],[-1,1],[0,3],[5,0],[3,2],[1,0],[0,-3]],[[2926,2463],[-4,-1],[-1,2],[0,2],[0,1],[2,1],[2,-1],[0,-2],[1,-1],[0,-1]],[[2950,2479],[-2,-1],[-2,-1],[-2,1],[-3,0],[-3,3],[-4,3],[-1,2],[1,2],[2,7],[2,12],[2,17],[-1,6],[0,3],[0,3],[1,3],[-1,4],[1,3],[2,6],[1,3],[0,4],[1,6],[-1,2],[-1,2],[1,2],[9,-5],[5,-1],[1,-5],[1,-4],[0,-7],[1,-2],[0,-5],[-3,-2],[0,-5],[2,-4],[-2,-2],[-3,0],[0,-2],[-2,-1],[-2,-2],[1,-2],[2,-5],[3,-3],[2,-6],[2,-5],[-1,-3],[-2,-5],[-3,-3],[-3,-2],[0,-8],[-1,-3]],[[2811,3053],[-5,-1],[0,1],[0,1],[1,1],[1,3],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1]],[[1964,3439],[-4,-2],[0,3],[1,3],[3,-1],[2,-1],[-2,-2]],[[3098,1945],[-15,6],[-4,3],[-3,0],[-5,-4],[-4,-9],[-1,-2],[-4,-3],[-4,0],[-14,-9],[-4,-1],[-4,-2],[-3,-3],[-1,-7],[0,-5],[-3,-15],[-1,-9],[0,-5],[1,-7],[-1,-12],[-3,-3],[-6,-3],[-4,2],[-7,2],[-5,5],[-6,4],[-2,2],[-6,9],[0,3],[-1,4],[3,6],[2,0],[4,0],[4,1],[3,-3],[0,-7],[-1,-3],[-1,-2],[1,-2],[2,2],[2,15],[9,8],[3,4],[3,7],[1,2],[0,2],[-2,2],[-4,3],[-14,-14],[-7,-4],[-4,-4],[-5,-7],[-1,-2],[-1,-5],[-1,-5],[-4,2],[-8,8],[-2,3],[2,4],[2,3],[0,11],[1,4],[2,3],[2,3],[2,1],[1,-2],[0,-2],[5,0],[9,10],[4,0],[5,-2],[6,1],[1,1],[1,2],[-4,3],[-4,1],[-12,1],[-2,-1],[-3,-5],[-2,1],[0,3],[-4,2],[-2,0],[-2,-3],[0,-4],[-1,-4],[-3,-4],[-3,-7],[0,-5],[0,-2],[-1,-2],[-1,-1],[-6,1],[-4,5],[-1,4],[-4,4],[8,5],[3,2],[3,7],[2,4],[-2,2],[-1,0],[0,-4],[-2,-4],[-4,2],[-5,-5],[-4,1],[-5,-2],[-3,3],[-1,4],[1,4],[-1,6],[-1,2],[-2,0],[-1,3],[-1,7],[-1,2],[-1,3],[1,1],[2,-1],[1,-2],[3,0],[6,-5],[2,1],[1,1],[1,4],[0,4],[1,0],[3,-5],[2,1],[4,-2],[2,1],[3,2],[5,4],[3,6],[2,0],[1,0],[1,-2],[0,-3],[2,-4],[1,-2],[1,-4],[-1,-3],[-3,-4],[0,-2],[1,-2],[1,1],[2,2],[1,4],[0,1],[0,2],[0,3],[-2,8],[-1,2],[0,3],[3,4],[1,2],[0,5],[-1,4],[-6,8],[-11,7],[-1,0],[-1,-2],[1,-1],[2,0],[9,-7],[2,-4],[2,-1],[1,-2],[0,-4],[-9,-3],[-7,-8],[-6,-5],[-3,2],[-2,5],[-2,6],[-3,3],[-2,0],[-1,1],[-1,2],[-2,-2],[-5,4],[-1,2],[3,6],[4,-2],[1,17],[-1,4],[-5,4],[-3,-1],[-3,1],[-2,2],[-3,1],[-2,1],[-3,2],[-3,2],[-5,11],[-2,5],[-1,6],[7,1],[4,1],[1,2],[-1,5],[-2,4],[1,4],[2,2],[2,-1],[6,-6],[1,-4],[4,-13],[1,-2],[0,-1],[8,-7],[2,0],[-1,6],[2,8],[3,3],[1,0],[0,2],[-2,3],[1,5],[-1,0],[-2,-3],[-4,-15],[-2,-2],[-4,6],[-1,5],[-1,2],[0,7],[7,-2],[-3,3],[-7,4],[-2,2],[-2,1],[-2,5],[-3,4],[5,8],[3,5],[9,-3],[1,2],[-1,4],[-2,-1],[-3,2],[-4,8],[0,3],[1,7],[2,2],[3,1],[4,-2],[2,-2],[2,1],[-2,5],[-3,2],[-2,4],[0,4],[1,3],[0,4],[1,5],[0,4],[1,1],[1,1],[0,2],[-3,-1],[-1,-5],[0,-4],[-2,-4],[-1,-4],[0,-5],[-1,-6],[-2,2],[-2,3],[0,1],[0,3],[0,18],[0,15],[1,12],[3,5],[1,1],[2,-1],[2,0],[1,2],[-5,3],[-2,-2],[-2,-2],[-4,2],[-1,6],[-2,5],[0,7],[0,9],[5,-1],[4,-1],[11,0],[9,-10],[4,2],[0,2],[-3,2],[-2,5],[-1,2],[-1,3],[0,3],[-2,14],[-1,-1],[-1,-4],[-2,-8],[-2,-4],[-4,-1],[-4,-1],[-4,2],[0,3],[0,3],[-2,2],[-4,2],[-1,1],[-1,3],[2,5],[1,3],[2,-1],[2,-1],[2,-4],[2,-1],[3,3],[0,2],[-1,2],[-2,0],[-2,2],[-4,6],[2,6],[5,7],[2,2],[-2,6],[2,6],[-2,5],[-3,6],[-3,1],[-1,-1],[0,-3],[0,-2],[0,-1],[-1,0],[-5,2],[-3,3],[-6,4],[0,3],[-1,3],[2,7],[-1,0],[-4,-5],[-5,-3],[-4,-1],[-2,-2],[0,-1],[1,-2],[2,0],[2,-6],[-1,-3],[-1,-2],[-1,0],[-4,5],[-2,5],[0,4],[1,6],[6,7],[2,3],[4,4],[4,8],[4,4],[-2,4],[-2,5],[1,8],[8,3],[4,-1],[4,0],[3,2],[2,0],[4,2],[1,3],[1,3],[0,2],[-1,2],[0,7],[0,2],[2,2],[2,1],[1,0],[3,-3],[-1,-3],[-1,-4],[-2,-16],[-1,-3],[-2,-3],[2,-7],[-2,-4],[-8,-5],[-1,0],[1,-2],[4,1],[4,1],[3,4],[1,6],[2,12],[1,1],[3,1],[1,-3],[-1,-6],[0,-6],[-3,-19],[-3,-7],[0,-2],[0,-2],[2,0],[3,4],[1,5],[2,7],[-1,5],[1,3],[0,10],[1,6],[0,7],[-1,3],[-3,1],[-1,5],[2,8],[5,0],[4,6],[4,2],[1,0],[7,-6],[1,0],[0,2],[-1,2],[-3,2],[-4,6],[-6,1],[1,8],[1,7],[3,1],[5,3],[9,11],[2,8],[0,9],[-4,3],[-5,6],[-4,3],[-3,4],[0,6],[1,10],[4,2],[2,14],[-3,10],[1,8],[4,7],[0,4],[1,6],[4,0],[0,3],[-1,5],[-2,6],[0,8],[2,10],[4,-1],[-2,6],[-2,7],[0,2],[2,3],[2,1],[2,-4],[4,-10],[0,3],[-1,10],[-1,14],[-4,-2],[-3,1],[-1,2],[-1,3],[1,4],[1,2],[2,4],[5,1],[4,4],[1,9],[-1,-1],[-2,-7],[-3,-3],[-2,0],[-2,2],[-4,7],[-2,1],[-2,0],[-1,-1],[-5,-12],[-2,-2],[-8,-1],[-2,1],[-3,2],[0,3],[1,3],[2,2],[0,1],[-3,1],[-3,3],[-1,4],[0,8],[-3,12],[0,8],[1,6],[4,24],[1,13],[2,10],[0,7],[6,7],[2,4],[4,21],[1,12],[-7,36],[-2,6],[0,9],[2,14],[0,5],[-1,8],[-4,12],[-1,7],[2,6],[-1,9],[0,5],[1,4],[7,-2],[2,1],[2,2],[1,7],[1,10],[0,5],[1,6],[3,3],[1,6],[2,9],[3,24],[3,6],[2,7],[-1,11],[2,4],[2,4],[1,6],[2,6],[4,9],[2,10],[3,18],[1,12],[1,7],[0,8],[2,9],[2,7],[0,4],[5,10],[1,8],[-2,5],[0,9],[-1,11],[3,4],[1,4],[4,18],[0,7],[1,9],[-3,11],[0,24],[-2,18],[-2,19],[0,11],[-1,14],[0,7],[1,18],[7,11],[2,12],[1,17],[-1,12],[0,6],[-4,9],[-1,16],[1,4],[3,5],[2,6],[1,10],[2,8],[1,18],[2,15],[1,5],[3,7],[1,1],[0,5],[0,12],[0,7],[3,14],[0,7],[3,14],[0,10],[1,6],[0,6],[1,14],[-2,8],[-1,4],[3,14],[1,4],[3,6],[1,8],[0,4],[-3,24],[-1,8],[1,18],[1,12],[0,10],[0,5],[1,6],[2,7],[0,6],[0,2],[-3,3],[-2,6],[0,7],[0,5],[1,7],[3,1],[1,4],[2,7],[2,17],[1,22],[1,13],[1,6],[1,14],[1,8],[0,9],[0,6],[-3,31],[0,11],[1,18],[0,25],[0,6],[-1,6],[-1,7],[-1,13],[-2,26],[0,14],[-1,12],[-1,3]],[[3044,3960],[1,1],[2,0],[3,0],[4,3],[3,4],[3,7],[1,6],[0,5],[-1,7],[-1,5],[2,2],[3,1],[3,5],[2,4]],[[8079,6231],[2,-3],[1,-3],[0,-7],[1,-7],[-3,-4],[-2,-2],[-5,-16],[-1,-5],[-1,-2],[-1,-2],[0,-2],[-1,-8],[-1,-9],[-1,-4],[-1,-3],[-2,-1],[-1,0],[-1,-1],[-3,-5],[-3,-4],[1,-2],[0,-2],[-2,-1],[-1,0],[-4,-2],[-2,-2],[-2,-6],[-3,-2],[-2,0],[-3,4],[-2,1],[-4,1],[-4,3],[-3,3],[-6,7],[-1,12],[-1,7],[0,3],[0,21],[1,2],[0,2],[3,5],[3,4],[5,8],[3,3],[3,5],[-2,0],[-1,1],[1,4],[1,2],[2,2],[3,-1],[2,1],[2,4],[2,1],[7,-2],[5,2],[3,4],[1,0],[3,-1],[2,-4],[0,3],[0,2],[5,-5],[0,6],[0,1],[2,3],[1,0],[1,-5],[2,-3],[2,-1]],[[8065,6296],[1,-2],[3,2],[1,-3],[0,-1],[-1,-3],[-3,2],[-2,0],[-1,0],[-1,1],[1,3],[2,1]],[[8128,6329],[-3,-2],[0,1],[1,3],[2,2],[0,-4]],[[8132,6326],[0,-1],[-1,2],[0,3],[-1,2],[1,2],[1,2],[2,0],[0,-1],[-1,-2],[0,-1],[-1,-6]],[[8153,6398],[1,-3],[-2,4],[-1,0],[-1,2],[-1,2],[2,1],[2,-4],[0,-2]],[[8282,6498],[-1,-4],[-2,1],[0,2],[0,1],[1,2],[0,1],[2,-2],[0,-1]],[[8328,6555],[-3,-3],[-1,1],[0,4],[1,3],[-1,3],[1,2],[1,1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-3],[1,-2],[0,-1]],[[8367,6710],[-2,-1],[-1,0],[0,4],[2,4],[1,-1],[0,-2],[0,-4]],[[8393,6805],[0,-1],[-3,4],[-1,0],[1,2],[1,1],[2,-5],[0,-1]],[[8399,6817],[0,-2],[-1,0],[-1,5],[1,1],[1,0],[0,-4]],[[8396,6822],[0,-1],[-4,3],[-3,1],[-2,3],[0,4],[4,0],[5,-4],[1,-2],[-1,-4]],[[8384,6912],[-2,-1],[-7,5],[-5,5],[-3,7],[-1,3],[4,-1],[3,-2],[1,-4],[1,-1],[1,-2],[7,-5],[1,-2],[0,-2]],[[8625,7566],[-1,2],[-1,1],[-3,3],[-2,3],[-1,4],[0,7],[0,2],[-3,1],[0,2],[-1,1],[-2,0],[-1,0],[-1,2],[-2,0],[-1,-2],[0,-4],[-2,-7],[0,-5],[-1,-6],[-1,-7],[0,-2],[-2,0],[-1,0],[-1,-3],[-1,-1],[-1,2],[-2,2],[-1,0],[-2,-2],[-2,-3],[0,-3],[-1,-2],[0,-3],[-2,-3],[-1,-2],[-4,-4],[-1,-2],[-2,0],[-2,0],[-4,-1],[-5,-1],[-4,1],[-4,-1],[-3,-1],[-1,-2],[1,-3],[0,-2],[1,-2],[1,-4],[2,-4],[2,-3],[1,-3],[0,-2],[-1,-4],[-2,-4],[-1,-3],[-1,1],[-2,1],[-1,2],[-3,1],[-6,-1],[-3,0],[-2,2],[-2,0],[-5,2],[-2,1],[-1,1],[-1,3],[-1,3],[0,2],[-2,3],[-1,2],[-2,1],[-1,-2],[-2,-2],[-1,0],[-1,0],[0,-2],[-3,-3],[-1,-2],[-1,-6],[-1,-6],[0,-2],[-1,-1],[-1,-2],[-3,-5],[-2,-5],[-3,-4],[-1,-3],[-1,-3],[-2,-4],[-3,-1],[-3,-1],[-1,0],[-2,-2],[0,-3],[-1,-1],[-1,0],[-2,-2],[-3,-5],[-3,-1],[-3,-3],[-4,-2],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-2,0],[-3,-4],[-2,-4],[-6,-8],[-3,-5],[0,-6]],[[8454,7416],[-1,1],[-2,-5],[-4,-5],[-10,-1],[-3,3],[-1,-2],[-1,-3],[-3,-2],[-4,0],[-2,-2],[-1,-2],[-5,-1],[-2,-3],[-4,-1],[-14,-14],[-3,-6],[-3,-7],[-2,-3],[-1,-3],[-2,-1],[-2,-2],[-1,-1],[-2,2],[-2,-1],[-1,-3],[1,-3],[-1,-2],[-3,-2],[-6,-1],[-2,-3],[-1,-1],[-1,-1],[-1,5],[-1,6],[3,2],[2,1],[11,8],[-1,7],[1,3],[2,5],[2,2],[-1,1],[-7,-2],[-5,0],[-2,1],[1,4],[-1,4],[0,1],[4,5],[1,1],[2,0],[0,3],[-2,4],[2,5],[8,6],[1,6],[4,5],[5,13],[1,3],[1,6],[1,2],[-3,4],[-1,5],[-8,9],[-1,8],[-1,-6],[-1,-2],[-4,0],[-2,2],[-10,2],[-2,-4],[-3,-5],[-2,-4],[-2,-2],[-2,-4],[-8,-21],[-3,-2],[-15,-13],[-7,-5],[-5,-8],[-2,-6],[-2,-6],[-1,-9],[-5,-11],[-2,-2],[-2,-1],[-2,0],[-2,-1],[-4,1],[-4,-3],[-5,-3],[-4,8],[-3,1],[-5,-2],[-2,-3],[-5,-17],[-1,-9],[0,-4],[2,-12],[3,-7],[7,-7],[15,-6],[3,2],[4,0],[4,-5],[2,-8],[1,-6],[0,-1],[1,-2],[0,-3],[-1,-2],[-2,-2],[-1,-8],[0,-10],[2,-3],[3,-5],[5,-3],[4,-1],[9,2],[3,6],[0,2],[0,3],[8,9],[4,7],[-1,2],[0,2],[0,1],[3,0],[10,8],[9,-7],[4,-7],[5,-1],[3,-4],[4,-3],[5,0],[4,-1],[1,3],[2,2],[1,-1],[2,-3],[4,-3],[5,0],[3,1],[2,-2],[-3,-5],[0,-8],[-2,-2],[-2,-4],[2,-3],[1,-1],[-1,-4],[-1,-2],[-3,-4],[-2,0],[-1,1],[-1,1],[0,3],[-1,2],[-4,1],[-3,-1],[-7,-7],[-7,-6],[-8,-5],[-2,-3],[-2,0],[-3,2],[-2,0],[0,-2],[2,-4],[1,-3],[-1,-2],[-1,-1],[-2,1],[-2,-2],[-1,-5],[0,-10],[-1,-2],[-3,-1],[-4,-4],[-1,2],[0,2],[0,4],[0,3],[-2,0],[-2,-2],[-2,-3],[-1,-2],[3,-6],[2,0],[0,-2],[-1,-3],[-5,-4],[-1,-4],[-1,-3],[-2,-3],[-1,-3],[-2,-1],[-2,-2],[-3,-7],[-3,-7],[-2,-3],[-2,-11],[-4,-6],[-2,-10],[1,-6],[4,0],[3,-2],[4,-8],[5,-5],[5,-3],[7,-7],[2,-3],[1,-6],[3,-18],[2,-9],[1,-5],[3,-8],[3,-15],[4,-13],[0,-11],[-1,-4],[0,-7],[4,-5],[8,-7],[2,-2],[1,-3],[0,-9],[2,-4],[1,-2],[5,-4],[2,-3],[2,-6],[1,-5],[0,-6],[-3,0],[-2,0],[-9,9],[-2,0],[-4,-1],[-4,2],[-6,9],[-3,3],[-4,2],[-9,-9],[-3,1],[0,-1],[-2,-1],[5,-2],[4,2],[4,4],[6,-2],[1,-3],[1,-6],[5,-4],[3,-2],[4,-6],[4,-8],[9,-10],[3,-9],[1,-6],[2,-9],[-3,-3],[-3,0],[-4,-1],[-3,-3],[-3,-6],[-9,-8],[-1,-5],[-2,-5],[-2,-2],[-5,2],[-5,0],[-6,-6],[-1,-3],[1,1],[1,0],[2,-1],[4,4],[4,-10],[8,1],[7,9],[2,0],[3,-1],[2,-4],[7,-14],[4,-2],[4,-3],[2,-1],[1,-1],[-5,-5],[-6,-12],[-3,-3],[-2,-3],[5,2],[4,5],[2,2],[1,-2],[1,-6],[-1,-21],[-2,-1],[-2,6],[-2,2],[-2,-1],[-3,0],[-1,-3],[-1,-4],[2,0],[4,-7],[0,-3],[-1,-2],[-3,1],[4,-5],[-1,-5],[-1,-2],[-2,-1],[-2,-5],[2,-7],[2,-9],[0,-4],[-3,2],[-4,-6],[-2,0],[-2,7],[-2,-1],[-1,-2],[-2,-8],[-2,-7],[-2,-2],[-2,0],[-2,0],[1,-2],[2,-2],[0,-3],[-4,-9],[-1,-3],[0,-3],[-2,-3],[1,-6],[-1,-4],[-2,-6],[-1,-4],[-3,-6],[-3,-3],[-4,-13],[-1,-6],[0,-6],[-1,-3],[-2,-2],[-3,1],[0,4],[-1,1],[0,3],[-1,3],[1,3],[-1,-1],[-1,-3],[-2,-3],[-1,1],[-2,2],[0,-3],[1,-3],[0,-3],[3,-1],[2,-4],[1,-5],[0,-3],[1,-2],[0,-2],[-2,-2],[-3,-4],[-4,-7],[-2,-4],[-3,0],[-2,1],[-2,2],[-2,1],[3,-9],[2,-1],[2,0],[3,3],[3,0],[1,-5],[-1,-6],[-2,-7],[0,-6],[2,-9],[0,-3],[-1,-2],[-2,3],[-3,3],[-2,-1],[-2,1],[-2,-1],[-1,-2],[0,-3],[2,-3],[2,-5],[-2,-1],[-6,1],[-1,-1],[-2,-5],[1,-7],[-1,-5],[-2,-1],[-3,-3],[-2,-1],[0,-2],[1,-1],[1,-2],[-2,-8],[-2,-2],[-5,1],[-3,-2],[-3,3],[-3,1],[-2,-4],[0,-5],[-2,-1],[-1,1],[-1,-1],[0,-2],[1,-2],[4,-1],[0,-3],[1,-5],[-5,-8],[-2,-6],[-2,0],[-2,-4],[-1,-6],[-2,1],[-3,-1],[-1,-3],[1,-1],[0,-2],[-1,-7],[-2,-2],[0,3],[-1,4],[-1,0],[-2,-4],[-2,-2],[-2,-2],[-1,3],[-3,1],[-2,-11],[-3,-4],[-1,-1],[-2,-1],[1,-1],[1,-3],[-1,-3],[-2,-1],[-2,-2],[0,-10],[-2,-4],[-3,0],[-3,2],[0,-2],[-1,-2],[-1,-2],[-3,0],[-6,-5],[-2,2],[-4,1],[-2,-1],[-1,-4],[-1,-2],[-3,0],[-2,3],[-3,2],[-3,-2],[-2,-4],[-3,-2],[0,-2],[-1,-2],[-3,1],[-1,7],[-2,1],[-2,-4],[0,-2],[-1,-2],[0,-6],[-1,0],[-2,3],[-3,1],[-2,-3]],[[8173,6382],[-1,1],[-1,0],[-2,0],[-2,-1],[-1,-2]],[[8166,6380],[-2,1],[-3,5],[-2,7],[-3,4],[-1,4],[0,6],[-1,3],[1,4],[0,3],[-2,-2],[-3,-3],[1,-3],[-1,-3],[-3,-2],[0,-1],[1,-2],[2,-4],[1,-4],[1,-2],[1,-6],[0,-11],[1,-3],[0,-3],[-1,-5]],[[8153,6363],[0,1],[-1,0],[-1,-1],[0,-1]],[[8151,6362],[0,-1],[-1,-1],[-2,0],[-1,-1],[-2,-4],[-3,-1],[-1,8],[-3,-5],[0,-11],[-1,-2],[-2,-1],[-2,4],[-3,-3],[-1,-2],[-1,-3],[-1,-2],[-3,2],[-2,4],[1,3],[-1,1],[-1,2],[-1,0],[1,-4],[0,-7],[-1,-2],[-1,-1],[-3,1],[-2,2],[-3,3],[-2,0],[-1,-4],[-1,-4],[-2,0],[-1,0],[-2,-4],[-1,-2],[-2,-3],[-6,-2],[-2,-3],[-2,1],[-2,-1],[-2,0],[-1,2],[-1,0],[-1,-5],[-3,-2],[-3,0],[-3,-7],[-2,-4],[-2,0],[-2,1],[0,6],[-1,1],[0,-6],[-1,-4],[-1,-3],[-4,-5],[-1,-6],[1,-5],[5,-1],[1,-3],[-1,-2],[-1,-2],[-1,-3],[6,-9],[0,-3],[-1,-2],[-1,-5],[-3,-3],[-6,-2],[-5,2],[-2,4],[1,3],[1,-1],[1,0],[0,3],[-1,2],[-2,2],[-2,6],[0,6],[-1,4],[-1,3],[-1,2],[-1,3],[2,8],[-1,4],[2,6],[1,7],[4,2],[0,6],[-3,0],[-2,5],[0,-2],[-2,0],[-3,8],[0,2],[-2,0],[1,-9],[-3,-4],[-2,-1],[-4,-1],[-2,-1],[-2,1],[1,3],[1,3],[-1,3],[-2,2],[-3,0],[-2,0],[-2,0],[-1,1],[-2,5],[-2,2],[0,3],[0,3],[0,2],[-3,0],[0,-4],[0,-6],[1,-4],[-1,-2],[-1,-1],[-2,4],[-1,1],[-1,0],[0,-4],[-2,-4],[-3,0],[-2,-2],[-3,-1]],[[7998,6321],[-1,3],[-3,5],[-1,0],[-4,-2],[-4,-1],[-2,3],[-2,-2],[-2,6],[-3,0],[-3,5],[-1,2],[0,4],[-1,1],[-2,0],[-1,2],[-2,2],[-2,1],[-1,-1],[-1,0],[0,2],[0,7],[0,6],[-1,3],[-1,2],[-1,1],[0,3],[0,7],[1,4],[1,1],[2,3],[1,4],[1,4],[-4,6],[-2,2],[-3,-1],[-3,-2],[-2,0],[-2,6],[-1,0],[-2,1],[-2,0],[-1,-3],[-2,0],[-2,0],[-1,2],[-3,4],[-4,2],[0,3],[-1,4],[-2,3],[-2,4],[-2,3],[-1,-2],[-2,-2],[-5,-5],[-3,-2],[-1,-2],[-1,-2],[0,-5],[-1,-6],[-1,-3],[-2,-2],[-1,-1],[-2,0],[-1,0],[-5,-6],[-2,0],[-1,3],[-1,3],[-2,-1],[-2,-3],[-2,-5],[0,-4],[-1,-2],[-1,-1],[-8,14],[-2,-3],[-1,-7],[-1,-1],[-1,0],[-3,10],[-1,1],[0,-1],[-1,-3],[-2,-4],[-2,-3],[0,-3],[-2,-3],[-2,-2],[0,-1],[-1,2],[-2,3],[-1,4],[-3,3],[-4,3],[-2,3],[-1,0],[-2,-1],[0,-1],[-1,-4],[-2,-6],[-2,-4],[-2,-4],[-1,-2]],[[7836,6372],[-1,2],[-2,2],[-2,0],[-3,-3],[-2,6],[-1,0],[-1,0],[-1,-2],[0,-3],[-1,-5],[-1,-3],[-2,-1],[1,-3],[0,-2],[0,-3],[1,-4],[1,-4],[2,-6],[1,-3],[0,-3],[1,-10],[-1,-5],[0,-8],[0,-5],[1,-2],[1,-2],[0,-2],[-2,-3],[-1,0],[-1,1],[-1,1],[-1,1],[-1,2],[-3,-1],[-4,-2],[-1,0],[-1,2],[0,3],[0,4],[-1,2],[0,2],[0,7],[-1,2]],[[7809,6324],[0,1],[-1,7],[0,2],[0,1],[-1,0],[-2,-1],[-5,-5],[-4,-8],[-2,-2],[-2,-1],[-3,1],[-2,1],[-4,-2],[-2,1],[-1,2],[-1,3],[1,3],[0,3],[-2,1],[-2,1],[-1,4],[0,3],[0,5],[1,5],[-1,3],[-3,1],[-6,2],[-6,1],[-2,0],[-2,0],[-1,1],[-1,2],[0,2],[1,6],[1,5],[3,7],[0,6],[0,6],[1,8],[2,6],[1,2],[0,2],[-1,3],[-1,1],[-2,2],[-4,0],[-4,2],[-6,3],[1,7],[0,5],[-1,3],[-1,3],[0,2],[1,6],[-2,7],[-1,3],[-2,3],[0,4],[1,3],[4,8],[0,2],[-1,-1],[-1,0],[-5,-2],[-1,1],[-2,1],[-3,0],[-5,0],[-5,-3],[-5,-4],[-2,-4],[-2,-2],[-2,0],[-2,1],[0,5],[4,8],[0,6],[-1,5],[0,4],[-1,2],[-2,2],[-1,3],[0,8],[2,8],[2,3],[2,1],[0,2],[-1,6],[1,4],[1,7],[1,6],[3,-1],[1,1],[2,2],[1,3],[1,4],[1,9],[1,2],[4,-2],[1,1],[2,6],[1,6],[3,2],[2,1],[1,2],[0,3],[-2,5],[-1,4],[0,3],[3,1],[0,3],[0,7],[1,7],[1,9],[0,7],[0,5],[0,6],[-1,10],[-1,8],[0,4],[0,10],[0,9],[-2,2],[-3,2],[-1,1],[-1,-1],[-1,-3],[-1,-3],[-1,1],[-1,3],[-1,3],[-3,18],[0,6],[-1,5],[-1,2],[-1,2],[-2,6],[-2,2],[0,1],[-2,-1],[-1,0],[-1,3],[-1,4],[-1,2],[-2,1],[-1,0],[-1,-4],[-1,-1],[-1,-5],[-2,-6],[-1,-2]],[[7703,6718],[-1,1],[-4,7],[-2,1],[-3,-2],[-4,2],[-2,0],[-3,5],[-1,1],[-5,-4],[-1,-2],[-1,0],[-1,1],[-1,2],[0,1],[1,2],[0,2],[0,1],[2,5],[5,10],[-1,3],[-2,8],[0,4],[-1,2],[-2,-2],[-6,-7],[0,1],[0,2],[-1,7],[2,3],[2,2],[2,3],[1,2],[-1,1],[-3,-1],[-1,2],[-2,6],[-1,3],[-1,1],[-4,-3],[-5,-5],[-6,-6],[0,-3],[0,-1],[-1,-2],[-1,-3],[-1,-1],[-1,0],[-2,1],[-4,3],[-4,2],[-1,0],[-5,2],[0,2],[-1,2],[-2,3],[-1,1],[-5,-6],[-5,-4],[-2,-5],[-3,-5],[-2,-1],[0,-3],[-1,-3],[-2,-3],[-4,-4],[-3,-3],[-8,-2],[-3,-1],[-2,-3],[-1,-5],[-1,-6],[-2,-4],[-5,-6],[-5,-5],[-1,-3],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-3],[-3,-4],[-2,-2],[-2,-1],[-2,0],[-2,0],[0,1],[-1,-1],[-2,-1],[-1,0],[-4,-5],[-2,0],[-2,1],[-3,1],[-2,0]],[[7468,6665],[-1,3],[-2,4],[0,5],[2,15],[0,6],[0,2],[-1,6],[-1,2],[-4,3],[-1,0],[-2,-2],[-1,-2],[-1,-1],[-5,-2],[-3,-2],[-1,-1],[-1,-1],[1,-2]],[[7447,6698],[-3,0],[-2,1],[-2,0],[-5,-4],[-2,-1],[-2,1],[-2,0],[-5,0],[-4,1],[-4,5],[-2,2],[-2,2],[-3,2],[-1,3],[-1,1],[-2,0],[-1,-1],[-1,-7],[-1,-1],[-2,-1],[-3,2],[-3,4],[-1,4],[-1,1],[-2,-2],[0,-5],[0,-4],[-2,-1],[-1,1],[-1,4],[-2,8],[-3,5],[-2,4],[-7,0],[-6,1],[-2,1],[-1,3],[1,7],[1,5],[0,1],[-1,1],[-2,0],[-6,-3],[-1,1],[-1,1],[-2,1],[-1,1],[0,2],[-5,6],[-2,3],[-3,4],[-2,2],[-2,8],[-1,7],[-1,4],[-2,2],[-2,1],[-4,-3],[-4,-2],[-2,-1],[-3,8],[-3,8],[-4,6],[-2,4],[-4,0],[-4,4],[-6,9],[-4,6],[-8,8],[-2,3],[0,2],[-1,5],[-2,5],[-5,2],[-6,2],[-6,-3],[-5,-15],[-2,-3],[-2,0],[-1,4],[-1,4]],[[7250,6834],[-1,4],[-3,3],[-4,4],[-2,3],[-2,2],[-1,1],[-4,3],[-4,3],[-2,1],[0,2],[0,4],[0,5],[-1,2],[-2,-1],[-5,6],[0,1],[-1,2],[-2,2],[-4,0],[-3,-1],[-2,3],[-2,4],[-1,1],[-1,1],[-3,8],[-3,10],[-2,1],[-1,0],[-1,-5],[-1,0],[-1,0],[-2,-2],[-1,-1],[-1,1],[0,1],[0,7],[-1,2],[1,5],[1,4],[-1,3],[-2,4],[0,4],[1,5],[0,4],[0,1],[-1,3],[-5,11],[-1,1],[0,4],[-1,6],[0,4],[-1,3],[0,2],[4,1],[2,1],[2,1],[1,-3],[1,-3],[0,-2],[2,-3],[2,-3],[3,0],[2,1],[1,5],[1,2],[2,0],[0,4],[0,8],[0,3],[-1,3],[1,4],[-1,4],[-1,4],[-1,1],[0,2],[0,3],[0,4],[0,3],[-1,1],[-2,3],[-2,3],[-1,2],[-1,3],[-2,4],[0,9],[0,9],[-1,5],[-1,8],[0,2],[1,2],[5,6],[1,2],[0,2],[0,3],[-1,3],[-2,2],[-3,4],[-2,3],[-5,3],[-5,3],[-1,3],[-1,6],[-3,11],[-2,11],[-2,7],[0,3],[1,9],[0,1],[-1,1],[-2,-1],[-1,-1],[-1,0],[-1,2],[-1,0]],[[7160,7149],[-2,-1],[-4,0],[-1,0],[-2,0],[-5,2],[-5,3],[-6,3],[-3,3]],[[7132,7159],[-1,1],[-3,3],[-2,3],[0,7],[-2,-1],[-3,-2],[-4,-2],[-2,0],[0,1],[-2,7],[-1,2],[-1,1],[-2,1],[-1,2],[0,3],[1,2],[1,2],[0,13],[-1,4],[0,4],[-2,5],[-1,3],[-2,2],[-3,3],[-2,1],[-4,-2],[-1,1],[-1,9],[-1,1],[-5,4],[-3,1],[-3,-1],[-1,-1],[-2,1],[-2,2],[-2,2],[-2,0],[-2,-1]],[[7080,7252],[0,1],[3,3],[2,3],[1,2],[-1,4],[-3,5],[-2,2],[0,2],[0,5],[1,5],[-1,2],[0,2],[0,5],[-2,7],[-1,4],[-1,5],[0,5],[2,8],[-1,3],[-1,3],[-7,5],[-6,4],[-3,0],[-2,0],[-1,-3],[-1,-4],[-2,-1],[-3,2],[-2,3],[-1,5],[-1,7],[-1,2],[1,2],[0,2],[2,2],[0,1],[0,2],[-1,3],[-2,3],[-2,8],[0,4],[1,5],[0,4]],[[7045,7384],[2,0],[3,2],[1,3],[1,2],[0,2],[0,6],[-2,3],[0,2],[1,2],[1,3],[1,6],[2,4],[0,1],[2,1],[5,1],[4,2],[6,8],[2,3],[2,1],[2,0],[0,1],[-1,5],[0,1],[1,2],[1,0],[4,-2],[3,0],[3,2],[8,8],[1,0],[1,-1],[1,-5],[1,-11],[0,-2],[6,0],[4,4],[1,1],[3,0],[1,1],[2,2],[1,-5],[2,2],[3,4],[1,4],[1,3],[2,5],[0,5],[1,2],[1,3],[3,9],[3,3],[2,1],[5,-2],[3,0],[8,-1],[4,2],[3,2],[4,-1],[4,2],[7,12],[0,3],[0,2],[2,3],[3,3],[6,6],[11,9],[4,4],[2,0],[4,2],[7,5],[2,5],[2,2],[9,1],[0,1],[0,4],[-1,4]],[[7227,7546],[1,1],[1,2],[0,2],[-2,7],[-1,7],[0,7],[0,2],[1,4],[1,4],[5,3],[3,1],[1,3],[-3,1],[-2,2],[0,2],[0,1],[0,1],[4,3],[3,3],[3,-2],[1,1],[0,3],[0,2],[-1,4],[-2,2],[0,3],[1,4],[-1,8],[-2,8],[-3,12],[-2,3],[-1,6],[-1,3],[0,4],[1,3],[-1,7],[0,6],[0,7],[1,4],[0,2],[1,1],[1,1],[1,2],[-1,1],[-2,2],[-3,2],[-4,0],[-4,-1],[-1,2],[-2,2],[0,2],[2,3],[3,4],[5,1],[5,3],[3,2],[3,1],[4,0],[2,0],[5,2],[9,5],[7,4],[2,2],[2,-2],[1,-5],[2,-3],[3,-1],[1,0],[3,2],[4,1],[2,0],[2,-3],[2,-2],[2,0],[1,2],[1,3],[0,5],[0,5],[0,3],[-1,1],[-3,1],[-4,3],[0,3],[0,2],[1,4],[2,9],[2,11],[1,9],[4,14],[3,14],[5,20],[1,4],[0,6],[1,3],[1,1],[3,-1],[7,-5],[5,-4],[3,-1],[3,-1],[5,-2],[3,1],[3,1],[3,0],[5,-2],[2,0],[2,0],[2,-2],[0,-4],[1,-2],[2,1],[5,4],[2,3],[4,4],[3,1],[4,1],[1,2],[1,5],[3,4],[0,5],[-1,3],[-1,6],[0,4],[-1,11],[-1,10],[1,8],[2,9],[0,3],[2,4],[1,4],[2,1],[7,1],[6,2],[2,2],[4,1],[1,1],[4,7],[1,3],[1,10],[-1,5],[1,4],[2,2],[2,3],[1,0],[3,1],[5,0],[3,-2]],[[7425,7954],[2,0],[2,1],[1,2],[2,0],[2,1],[3,1],[2,0]],[[7439,7959],[0,-3],[0,-2],[0,-3],[1,-2],[0,-2],[-2,-1],[-1,-1],[0,-3],[1,-2],[1,-3],[3,-2],[2,-1],[1,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[0,-2],[2,-1],[3,-2],[4,-2],[3,-4],[3,-1],[1,-4],[1,-6],[3,-3],[4,-4],[2,-1],[2,-2],[2,-3],[2,-1],[2,0],[4,3],[4,0],[2,-2],[2,-5],[2,-2],[1,-2],[1,-1],[2,0],[2,1],[1,2],[2,0],[1,-2],[0,-3],[1,-3],[3,-3],[3,-1],[0,-1],[1,-4],[1,-2],[1,-3],[1,-6],[0,-5],[1,-2],[2,-4],[2,-7],[2,-6],[2,-1],[2,-2],[2,-4],[2,-8],[0,-5],[0,-4],[1,-2],[0,-2],[-2,-8],[-1,-4],[0,-3],[1,-6],[1,-4],[0,-4],[-1,-3],[-2,-4],[-1,-2],[-2,-2],[-2,-7],[-1,-8],[0,-4],[1,-3],[1,-4],[0,-3],[3,-6],[1,-4],[1,0],[1,1],[2,0],[3,-1],[2,-3],[3,-2],[3,1],[2,-2],[2,-1],[5,-1],[3,1],[5,-1],[4,-2],[7,-1],[4,0],[6,2],[3,-1],[11,-3],[6,-2],[4,-2],[3,-5],[3,-6],[2,-3],[7,-2],[4,-7],[4,-3],[6,-7],[4,-3],[6,-2],[8,1],[0,-1],[0,-4],[-1,-6],[0,-3],[1,-2],[3,-2],[2,-2],[1,-3],[1,-2],[2,-12],[5,-16],[0,-7],[1,-4],[5,-6],[3,-5],[3,-5],[1,-5],[1,-6],[1,-2],[6,2],[6,1],[10,1],[15,-3],[14,-3],[13,-2],[7,-2],[14,-3],[8,4],[7,3],[2,-1],[12,-3],[7,-1],[9,-3],[6,0],[6,0],[2,-1],[2,-2],[2,-2],[4,-10],[3,-5],[5,-3],[12,-4],[6,-2],[7,-3],[5,-4],[6,-5],[7,-6],[8,3],[9,3],[5,1],[0,-13],[8,-1],[2,1],[3,-3],[2,1],[2,3],[2,4],[4,2],[5,5],[2,1],[8,7],[12,9],[6,4],[2,1],[3,2],[2,2],[4,1],[5,1],[6,1],[12,3],[2,1],[7,1],[3,1],[4,0],[6,-1],[4,-1],[5,1],[8,1],[5,0],[3,1],[5,3],[2,3],[5,3],[5,3],[4,3],[3,2],[3,2],[1,2],[1,2],[1,3],[3,5],[2,5],[2,2],[2,5],[2,4],[3,5],[2,2],[3,1],[7,5],[2,1],[1,0],[2,4],[3,4],[1,2],[3,1],[1,2],[1,3],[-1,3],[-1,4],[-1,3],[-4,7],[-3,4],[-2,5],[-1,4],[-2,3],[0,3],[0,3],[2,5],[1,4],[1,6],[2,9],[1,4],[2,5],[4,5],[4,1],[2,-1],[5,0],[4,0],[2,-3],[3,-5],[3,-2],[9,-5],[5,-1],[2,0],[5,-1],[1,-1],[2,-1],[2,1],[3,4],[3,4],[2,1],[3,2],[1,2],[2,4],[4,4],[3,5],[2,5],[1,2],[0,3],[1,2],[3,1],[2,0],[5,-2],[7,1],[2,0],[6,1],[3,1],[4,2],[3,4],[4,6],[2,3],[2,0],[3,3],[1,4],[0,3],[-1,2],[2,4],[2,8],[3,4],[2,3],[1,5],[2,1],[2,1],[2,3],[2,1],[4,-2],[5,0],[3,0],[1,0],[1,2],[0,3],[1,5],[0,2],[1,1],[3,0],[2,-2],[2,-1],[2,-1],[2,2],[2,4],[5,3],[2,1],[5,2],[2,-1],[5,0],[2,0],[2,0],[2,3],[1,1],[4,-2],[2,-2],[3,-4],[5,-1],[4,1],[4,-2],[2,1],[1,1],[4,2],[1,4],[-1,4],[1,3],[-1,3],[-2,5],[-1,2],[0,4],[-2,4],[-3,4],[-2,2],[-4,7],[-1,2],[-1,1],[0,3],[-2,1],[-2,2],[-1,2],[-1,3],[0,3],[-2,1],[-2,2],[-2,1],[-3,2],[-2,4],[-3,7],[-2,2],[-7,1],[-3,2],[-3,-1],[-2,-1],[-3,0],[-2,-1],[-3,-4],[-3,-6],[-3,-4],[-2,-4],[-1,-1],[-2,0],[-2,5],[-4,4],[-3,1],[-2,1],[-3,1],[-3,0],[-4,-1],[-4,0],[-2,1],[-2,0],[-5,-4],[-2,-5],[-2,-1],[-3,3],[-3,3],[-2,5],[-2,4],[-1,11],[3,3],[4,4],[1,6],[0,6],[0,7],[4,7],[2,5],[0,4],[2,6],[2,6],[2,7],[5,14],[5,17],[2,8]],[[8240,7998],[6,-5],[4,-3],[6,-4],[6,-1],[7,-4],[3,-1],[1,0],[9,10],[7,9],[9,7],[6,1],[5,2],[3,4],[2,5],[0,7],[-1,5],[-3,1],[-1,2],[2,1],[1,3],[1,5],[1,4],[3,4],[2,5],[0,5],[2,5],[3,5],[1,4],[1,4],[1,6],[5,9],[2,10],[5,8],[8,7],[4,7],[2,8],[0,6],[-2,6],[0,6],[1,5],[-1,5],[-4,3],[-4,0],[-6,-1],[-3,2],[0,5],[1,4],[4,3],[5,7],[8,12],[8,7],[12,2],[9,4],[10,4],[6,2],[2,-1],[3,-1],[7,1],[6,2],[5,3],[4,0],[4,-1],[1,0],[2,0],[2,1],[3,-2],[7,-7],[5,-2],[2,0],[2,-1],[2,-5],[3,-2],[4,-1],[5,-5],[2,0],[1,3],[2,1],[2,0],[5,-2],[5,-5],[4,-2],[1,1],[1,-1],[2,-2],[0,-3],[-1,-2],[2,-2],[1,0],[3,-1],[2,-4],[1,-2],[1,-2],[1,-2],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-2],[4,-2],[1,-1],[0,-2],[1,-3],[2,-2],[1,-2],[-1,-2],[1,-2],[1,-1],[0,-4],[0,-3],[2,-2],[0,-6],[1,-6],[4,-9],[2,-5],[-1,-5],[1,-3],[2,-1],[1,-2],[-1,-4],[1,-2],[1,-2],[-1,-4],[1,-3],[1,-2],[0,-3],[1,-4],[2,-7],[5,-9],[3,-7],[2,-6],[0,-4],[-2,-3],[0,-3],[1,-1],[1,-2],[-1,-3],[2,-3],[5,-5],[-2,-8],[0,-6],[0,-6],[1,-4],[3,-3],[1,-2],[1,-3],[3,-3],[5,-3],[6,-1],[8,3],[5,0],[2,-1],[1,-3],[-1,-2],[1,-2],[4,-1],[2,-2],[1,-2],[2,-1],[2,1],[1,0],[2,-2],[1,1],[1,1],[2,0],[1,0],[1,-3],[2,-3],[2,0],[3,-5],[7,-13],[5,-5],[4,-2],[6,0],[1,-5],[-1,-6],[0,-4],[1,-2],[2,-5],[2,-3],[0,-3],[2,-3],[-1,-5],[-2,-7],[1,-7],[3,-5],[2,-5],[0,-5],[1,-3],[1,-1],[3,0],[6,2],[4,0],[2,-3],[7,0],[10,2],[6,1],[3,-1],[2,3],[2,8],[2,3],[2,0],[3,2],[4,5],[4,2],[4,0],[5,0],[2,2],[3,4],[5,4],[10,5],[2,1],[2,0],[3,-1],[3,-2],[3,-4],[0,-2],[0,-4],[-1,-2],[-1,-2],[-1,-4],[1,-2],[1,-6],[2,-5],[1,-5],[0,-2],[-1,-3],[-3,-6],[-2,-2],[-1,-3],[-3,0],[-1,-1],[-2,-1],[0,-2],[-1,-1],[-2,-3],[0,-3],[1,-4],[0,-4],[-2,-3],[-1,-5],[-1,-2],[0,-4],[-1,-2],[0,-8],[-2,-6],[-2,-7],[0,-4],[1,-4],[-1,-1],[0,-2],[-1,-4],[0,-1],[-3,-2],[-1,-3],[0,-4],[0,-4],[-1,-3],[-2,-2],[-1,-1],[-1,-2],[-1,-4],[0,-3],[-1,-3],[1,-3],[-1,-3],[-3,-2],[-1,-1],[-1,0],[-2,-3],[-2,-11],[-1,-6],[1,-5],[-3,-3],[-2,-3],[-2,1],[-1,1],[-3,1],[-2,1],[-3,2],[-5,2],[-5,2],[-3,2],[-3,1],[-2,2],[-1,3],[-2,-2],[-1,-3],[-3,-2],[-1,-4],[-1,-4],[-2,-4],[-2,-2],[-5,-2],[-1,-1],[-4,-1],[-1,-1],[-1,-3],[-1,-2],[1,-3],[2,-6],[0,-4],[2,-7],[3,-24],[-1,-4],[-1,-17],[0,-4],[0,-4],[0,-4],[1,-1],[1,-1],[0,-2],[0,-4],[0,-2],[-1,-5],[-1,-7],[-1,-2],[-1,-2],[-1,-2],[0,-5],[0,-3],[-2,-1],[-2,-2],[-2,1],[-1,-1],[-3,-1],[-4,-1],[-2,-2],[-1,-2],[-1,-1],[0,-2],[0,-1],[3,0],[1,-3],[0,-4],[-1,-2]],[[4913,5348],[-4,2],[1,2],[4,-2]],[[4914,5350],[-1,-2]],[[4925,5608],[0,-3],[-1,-4],[0,-3],[1,-1],[0,-4],[-2,-7],[0,-4],[2,-1],[1,-4],[1,-7],[0,-2],[0,-1],[1,-17],[2,-17],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[-2,-1],[-3,-5],[0,-3],[-1,-4],[-1,-3],[-1,-5],[-2,-14],[0,-11],[0,-4],[-1,-2],[-1,-3],[-4,-10],[-1,-8],[0,-4],[0,-3],[-1,-2],[1,-7],[0,-6],[1,-5],[2,-16],[2,-9],[0,-8],[1,-5],[1,-2],[0,-2],[4,-1],[1,-2],[1,-10],[0,-4],[-1,-2],[0,-3],[0,-5],[-1,-2],[-2,0],[-1,-2],[-2,1]],[[4916,5351],[-1,1],[-1,0],[-3,3],[1,8],[-1,1],[-1,-1],[-2,-11],[-1,-1],[-15,5],[-3,4],[-4,1],[-7,0],[-5,-2],[-2,-2],[14,1],[2,0],[0,-2],[-17,-3],[-7,-2],[-2,1],[-1,3],[-7,0],[-2,-1],[-1,-2],[3,0],[5,0],[1,-1],[-14,-3],[-10,-4],[-4,-4],[-13,-11],[-9,-6],[-2,-2],[-4,-5],[-4,-4],[-6,-6],[-3,-2]],[[4790,5304],[-1,3],[0,11],[0,14],[0,6],[0,5],[0,5],[2,1],[0,2],[1,6],[1,5],[0,9],[1,2],[0,2],[-1,6],[-1,12],[-1,0],[-4,4],[-2,0],[-2,4],[0,3],[-1,3],[-1,4],[-1,5],[-2,3],[-3,1],[-1,-1],[-2,0],[-3,2],[-1,2],[-2,4],[-1,3],[-1,-1],[-2,1],[-1,1],[0,1],[5,12],[2,6],[0,3],[0,4],[1,3],[0,6],[-3,20],[-1,6],[-1,2]],[[4764,5494],[1,3],[3,-1],[3,-2],[1,2],[2,10],[0,4],[0,3],[1,7],[1,2],[1,3],[0,4],[-1,2],[-1,-1],[-2,1],[-2,3],[-1,2],[1,9],[0,3],[0,1],[2,1],[3,0],[3,-1],[2,-1],[1,0],[1,-2],[2,-3],[1,0],[0,2],[0,9],[-1,5],[-2,4],[-4,4],[0,6],[0,6],[1,2],[3,4],[0,2],[-1,2],[-2,2],[0,7],[0,6],[-2,0],[-2,-1],[-1,2],[-2,4],[0,11],[0,12],[0,5],[1,3],[1,3],[2,3],[1,3]],[[4778,5649],[3,1],[1,3],[2,6],[3,5],[2,0],[1,1],[1,0],[1,-3],[2,-3],[1,-5],[5,-2],[2,-1],[2,-3],[1,0],[1,1],[0,2],[-1,3],[1,3],[0,2],[2,0],[2,1],[2,0],[2,0],[0,2],[0,7],[0,4],[0,4],[1,1],[2,-4],[2,-2],[2,0],[1,1],[-1,4],[0,2],[1,1],[1,0],[3,2],[0,-8],[0,-2],[1,-5],[1,-4],[-1,-2],[0,-3],[-1,-2],[0,-1],[1,-2],[3,-2],[2,0],[1,2],[1,2],[1,2],[1,3],[1,2],[4,3],[4,0],[1,-1]],[[5449,5181],[0,-4],[-2,-2],[-1,-4],[0,-5],[0,-6],[2,-7],[0,-4],[-1,-1],[-1,-1],[0,-1],[-3,5],[-2,3],[-4,6],[-4,2],[-5,1],[-2,-1],[-2,2],[-2,3],[-1,0],[-2,-2],[-1,0],[-2,1],[-3,0],[0,3],[0,1],[-3,0],[-1,2],[-1,0],[-1,1],[-3,4],[-2,-3],[-6,1],[-7,0],[-7,-1],[-7,1],[-6,0]],[[5369,5175],[-1,3],[-1,2],[-3,1],[-7,-1],[-6,0],[-1,1],[-2,1],[-5,1],[-6,-1],[-1,0],[-5,0],[-10,1],[-6,0],[0,-2],[-1,-2],[0,-4]],[[5314,5175],[-6,0],[-9,0],[-8,0],[-5,0],[-9,0],[-3,3],[-1,2],[0,1],[-1,2]],[[5272,5183],[0,14],[2,12],[0,10],[2,10],[-1,10],[-1,4],[-6,13],[3,5],[-4,0],[0,5],[-2,6],[1,1],[1,3],[3,-1],[0,2],[-3,5],[1,2],[1,3],[-1,1],[-2,-3],[-1,0],[-1,2],[-1,1],[0,-4],[-1,-4],[-1,-1],[-1,0],[-2,1],[0,2],[-2,1],[-3,3],[-4,3],[0,8],[-1,4],[-1,4],[0,4],[0,7],[-1,2],[-1,0],[-1,0],[-1,0],[-2,4],[-1,1],[1,-7],[-1,-2],[-2,1],[-1,3],[-1,2],[2,8],[-1,0]],[[5237,5328],[1,5],[1,6],[3,7],[2,9],[2,15],[1,10],[1,9],[1,8],[2,6],[5,10],[4,8],[2,3],[1,3],[2,3],[3,4],[2,7],[1,6],[1,2],[2,1],[4,7],[3,4],[1,-2],[0,-3],[1,-1],[2,-1],[4,0],[2,1],[1,2],[1,7],[0,1],[1,0],[4,-4],[3,-7],[3,-6],[1,-2],[1,-3],[1,-11],[1,-3],[1,-1],[3,1],[2,2],[2,3],[2,3],[2,4],[0,2],[1,10],[0,2],[2,3],[4,7],[2,3],[0,2],[-2,3],[-1,4],[1,5],[2,3],[4,11],[0,4],[0,4],[4,13],[2,17],[0,3],[2,8],[3,11],[5,2],[2,2],[2,5],[2,4],[0,4],[1,8],[1,9],[0,8],[2,7],[2,4],[4,3],[1,1],[1,5],[0,10],[0,6],[1,3],[0,4],[4,8],[2,13],[1,13],[5,16],[5,16],[3,4],[2,2],[2,0],[2,1],[6,8],[2,3],[2,2],[0,3],[1,3],[-1,8],[1,6],[1,10],[0,7],[0,2],[-1,4],[-1,1],[-1,4],[-3,3],[-4,1],[-2,1],[-1,4],[0,2],[0,3],[0,5],[-3,27]],[[5390,5821],[5,0],[6,-3],[2,-2],[0,-10],[3,-5],[3,-5],[3,-9],[1,-14],[2,-8],[0,-1],[3,-12],[0,-4],[1,-7],[-1,-5],[2,-6],[-2,-10],[-1,-6],[0,-9],[1,-16],[2,-12],[2,-9],[2,-8],[3,-8],[4,-8],[3,-4],[-3,-3],[-6,-1],[-4,2],[-1,0],[-2,-1],[-6,-1],[-7,0],[-6,2],[-4,0],[-3,-5],[-2,-7],[-2,-5],[0,-6],[2,-4],[3,-7],[3,-7],[2,-5],[5,-11],[6,-9],[1,-2],[1,-1],[1,-1],[3,-6],[4,-8],[4,-14],[3,-14],[2,-14],[2,-3],[1,-1],[1,-3],[-1,-4],[0,-4],[-2,-5]],[[5761,5349],[1,-4],[1,-4],[5,-7],[1,-4],[2,-5],[0,-3],[2,-3],[2,-2],[2,-2],[1,-3],[1,-3],[4,-5],[1,0],[2,0],[1,-1],[2,0],[3,3],[3,5],[2,3],[6,-2],[4,-2],[2,-3],[2,0],[5,6],[2,7],[2,1],[4,-3],[3,-6],[2,-9],[2,-3],[2,-6],[5,-11],[6,-6],[3,-3],[1,-3],[0,-4],[0,-4],[1,-2],[2,1],[1,1],[2,-2],[1,-3],[0,-2],[1,-3]],[[5856,5253],[2,-1],[0,-3],[-1,-4],[-1,-4],[-2,-7],[0,-7],[1,-3],[1,-2],[0,-2],[0,-2],[0,-3],[-2,-10],[-1,-8],[0,-5],[3,-3],[3,0],[2,-2],[1,-3],[1,-2],[1,0],[1,-1],[1,-2],[1,-3],[1,-2],[0,-4],[0,-2],[-3,-7],[-6,-15],[-13,-26],[-4,-3],[-3,-5],[-1,-8],[-4,-6],[-3,-3],[0,-1],[0,-7],[0,-11],[-1,-5],[-2,-9],[-1,-5],[-1,-2],[-1,-3],[-1,-9],[0,-3],[-1,-19],[0,-6],[-1,-9],[0,-6],[-1,-6],[0,-5],[0,-9],[0,-14],[0,-2]],[[5821,4964],[-1,-1],[-2,-3],[-2,-3],[-1,0],[-3,-6],[-2,-6],[-1,-6],[0,-3],[0,-7],[0,-9],[0,-3],[-1,-3],[-3,-4],[-2,-4],[-1,-2],[-1,-2],[1,-7],[0,-4],[1,-3],[2,-2]],[[5816,4783],[0,-3],[-1,-10],[-1,-10],[0,-4],[0,-5],[3,-11],[1,-8],[1,-5],[1,-6],[1,-9],[1,-4],[0,-3],[-3,-12],[-1,-3],[1,-9],[1,-8],[1,-5],[4,-13],[2,-5],[5,-6],[4,-7],[1,-3],[2,-4],[2,-10],[2,-8],[1,-7],[2,-10],[2,-9],[3,-12],[2,-7],[1,-6]],[[5854,4561],[-5,-1],[-7,-3],[-8,-2],[-8,-3],[-8,-2],[-7,-3],[-7,-2],[-2,-1],[1,-6],[0,-7],[-2,-5],[-2,-6],[-1,-2],[-2,-5],[-2,-4],[-3,-6],[-3,-3],[0,-3],[4,-14],[2,-10],[1,-9],[0,-5],[0,-11],[-1,-12],[0,-5],[1,-9],[0,-7],[-3,-8],[0,-8],[-2,-10],[-2,-15],[-1,-8],[1,-5],[1,-3],[0,-4],[2,-7],[1,-4],[1,-2],[6,-8],[2,-4],[3,-8],[3,-6],[3,-1],[5,-2],[2,-2],[1,1],[1,2],[0,4],[0,3],[0,2],[2,2],[3,0],[2,2],[1,1],[0,-9],[0,-9],[0,-10],[0,-12],[0,-10],[0,-10],[0,-12],[0,-2],[0,-2],[-2,-1],[-2,2],[0,2],[-1,5],[0,2],[-2,1],[-2,-1],[-2,-4],[-4,-2],[-1,-2],[-3,0],[-3,2],[-2,3],[0,6],[-2,5],[-2,9],[-2,3],[-1,4],[-2,0],[-1,1],[-2,6],[-1,7],[0,3],[-1,3],[-2,2],[-3,3],[-5,4],[-6,5],[-3,0],[-3,1],[-2,2],[-1,2],[-1,7],[-2,8],[-5,10],[-1,10],[-1,2],[-2,-1],[-1,-1],[-1,-3],[-1,-10],[-1,-4],[0,-1],[-2,-2],[-1,-1],[-3,-1],[-4,0],[-4,2],[-3,1],[-7,2],[-2,0],[-2,2],[-2,2],[-7,5],[-3,-1],[-1,4],[-2,1],[-1,3],[-1,4],[-1,9],[0,5],[1,5],[-1,1],[-1,0],[-2,-1],[-3,-1],[-6,-3],[-2,-1],[-2,-1],[-1,-1],[-4,-5],[-2,0],[-2,1],[-2,3],[2,3],[0,4],[-1,7],[-1,4],[-4,2],[-1,1],[-1,4],[-1,3],[-2,1],[-1,1]],[[5362,4699],[-1,2],[-4,-1],[-2,-2],[-3,-4],[-5,-3],[-2,0],[-1,1],[-2,5],[-3,6],[0,3]],[[5363,4772],[0,2],[1,0],[1,-1],[0,-2],[2,-3],[2,-4],[2,-3],[1,-1],[2,2],[2,3],[3,2],[1,2],[0,4],[0,5],[0,5],[1,1],[1,0],[2,-1],[1,-2],[2,0],[1,1],[2,3],[2,1],[3,3],[2,3],[1,0],[2,-4],[1,-3],[0,-2],[-1,-3],[-2,-5],[2,-6],[0,-5],[0,-4],[1,-1],[0,-1],[1,1],[2,0],[2,-2],[2,0],[2,3],[4,8],[5,14],[5,9],[3,4],[2,5],[2,5],[2,3],[4,3],[3,3],[4,10],[4,17],[1,16],[1,10],[0,34],[-1,11],[1,6],[2,4],[4,9],[3,7],[2,8],[5,19],[1,6],[1,3],[3,5],[4,5],[4,3],[8,14],[6,13],[-1,16],[1,14],[3,17],[1,18],[-1,18],[1,16],[3,18],[1,7],[0,11],[0,17],[4,24],[4,14],[4,16],[2,10],[2,12],[-1,11]],[[5333,4750],[0,2],[-1,1],[-2,5],[-2,7],[-1,3],[0,2],[0,6],[-3,8],[-8,14],[-1,4],[-6,13]],[[5309,4815],[1,9],[2,4],[1,3],[6,7],[1,0],[4,-9],[1,-1],[2,0],[2,0],[0,2],[1,2],[-2,3],[0,2],[1,4],[1,3],[1,4],[0,2],[-1,2],[-3,3],[-2,3],[-1,3],[1,4],[1,3],[0,2],[-1,3],[-1,3],[-1,2],[-3,1],[0,4],[2,5],[0,5],[-1,12],[0,2],[1,1],[2,-1],[1,-2],[5,2],[1,1],[2,-2],[2,-2],[10,5],[0,5],[1,4],[0,4],[0,2],[-1,1],[0,4],[0,3],[1,2],[3,4],[1,0],[3,-2],[2,-4],[2,-8],[1,-6],[2,-8],[5,-4],[5,-2],[3,1],[5,7],[2,5],[1,3],[1,-2],[2,-7],[1,-2],[0,-3],[0,-3],[0,-2],[3,-2],[3,2],[1,2],[2,4],[0,3],[-1,2],[0,3],[1,3],[1,6],[0,4],[1,3],[2,2],[1,2],[1,10],[0,4],[0,3],[1,4],[0,7],[-1,11],[0,7],[0,8],[1,10],[1,11],[0,3],[-2,3],[-2,3],[-4,2],[-2,4],[-1,4],[-1,2],[-4,1],[-2,3],[1,6],[0,10],[0,7],[1,5],[1,5],[2,4],[1,5],[1,1],[4,1],[1,2],[1,3],[1,3],[1,4],[1,4],[1,2],[-1,3],[-1,6],[-1,5],[-1,2],[-2,12],[-2,3],[-3,1],[-6,2],[-3,-2],[-6,-4],[-4,-3],[-3,-2],[-1,1],[-1,1],[1,2],[0,4],[0,5],[-1,5],[-1,6],[0,9],[1,7],[3,11],[0,4]],[[563,3788],[-1,0],[-1,0],[-1,1],[0,2],[1,1],[1,-1],[1,-1],[0,-2]],[[2830,5197],[-1,-1],[-1,2],[-1,3],[1,2],[1,0],[1,-2],[0,-4]],[[3019,5749],[-1,0],[-2,-2],[-3,-3],[-6,-3],[-6,-3],[-2,-4],[-6,-24],[-6,-5],[-2,-4],[-1,-4],[-3,-8],[-2,-7],[-3,-14],[-2,-17],[-1,-10],[-1,-14],[-2,-8],[-2,-6],[-2,-7],[-2,-7],[-2,-6],[0,-2],[1,-1],[4,1],[1,2],[2,2],[2,-1],[1,-6],[2,-1],[1,1],[2,-2],[2,-15],[1,-13],[4,-8],[3,-7],[1,-5],[1,-8],[0,-4],[-1,-3],[-2,-4],[0,-10],[0,-3],[-1,-8],[1,-6],[0,-4],[2,-2],[2,-1],[3,-2],[1,-7],[2,-9],[3,-4],[3,-2],[2,1],[5,1],[5,0],[6,-3],[3,1],[3,0],[6,5],[2,1],[2,-1],[3,-2],[2,-2],[2,-2],[4,-2],[2,1],[2,0],[1,-1],[5,-14],[5,-13],[4,-10],[4,-11],[0,-1],[2,2],[1,-1],[2,-2],[2,1],[3,4],[4,1],[5,-3],[8,0],[9,3],[5,2],[3,3],[3,0],[5,-3],[2,-3],[0,-4],[1,-5],[-1,-6],[-2,-6],[-2,-7],[0,-9],[-2,-7],[-2,-4],[-1,-6],[0,-8],[0,-12],[-1,-16],[0,-9],[1,-3],[0,-5],[0,-6],[1,-5],[1,-6],[2,-13],[2,-6],[1,-2],[2,-3],[4,-13],[1,-3],[0,-2],[-1,-2],[0,-1],[-5,-9],[-9,-17],[0,-2],[0,-4],[2,3],[3,-2],[1,-1],[1,-1],[1,-5],[1,-1],[1,-2],[3,-5],[2,-5],[2,-2],[1,-3],[0,-3],[0,-4],[1,-7],[1,-3],[0,-3],[0,-3],[1,-3],[1,-7],[2,-9],[0,-5],[1,-2],[0,-6],[2,-6],[-1,-4],[1,-4]],[[3056,4796],[-1,4],[-2,4],[-2,3],[-1,3],[-1,7],[-2,2],[-1,2],[-1,-1],[-1,-1],[-2,-2],[-1,1],[-5,4],[-1,1],[3,10],[6,19],[3,12],[4,13],[2,7],[0,1],[0,2],[0,2],[-2,1],[-3,2],[-1,3],[-2,2],[-1,2],[-3,2],[-2,2],[-2,1],[-1,4],[-6,7],[-2,1],[-1,-1],[-3,-1],[-2,-4],[-3,-2],[-3,0],[-1,3],[-1,1],[-2,3],[-3,2],[-2,2],[-2,-1],[-2,-3],[-1,-4],[-2,-2],[-2,0],[-2,-3],[-2,-2],[-3,0],[-2,-1],[-3,2],[-3,2],[-1,0],[-1,0],[-1,-2],[-3,-1],[-2,0],[-1,1],[-2,3],[-2,2],[-2,2],[-1,4],[0,3],[1,4],[0,5],[-1,7],[-1,3],[0,3],[-1,1],[-3,-1],[-2,3],[-2,2],[-1,4],[1,6],[-1,5],[-1,3],[-1,5],[-2,4],[-2,2],[-1,0],[-2,1],[-2,4],[-1,2],[-2,4],[-4,2],[-2,1],[-1,3],[-1,4],[0,3],[-1,2],[0,5],[-1,6],[-2,4],[-1,3],[-1,2],[-2,4],[-2,2],[-2,2],[-1,3],[0,3],[-1,0],[-2,0],[-1,1],[-2,1],[-1,3],[-2,4],[-2,0],[-1,0],[-2,-4]],[[2908,5040],[-5,4],[-4,6],[-4,2],[-3,4],[-3,5],[-1,4],[-1,2],[-6,6],[-1,0],[-2,-2],[-1,-2],[0,-4],[0,-3],[-2,-1],[-3,0],[-2,2],[-2,0],[0,-1],[-1,-1],[-1,0],[-3,2],[-2,1],[-3,4],[-2,-1],[-3,1],[-3,2],[-1,2],[-1,12],[-1,1],[-1,1],[-2,2],[-1,2],[-1,3],[-1,3],[-3,0],[-6,4],[-4,4],[-4,5],[-5,9],[-2,2],[-3,3],[-1,4],[-3,5],[-1,1]],[[2809,5133],[-1,4],[-3,6],[1,7],[5,6],[6,-4],[1,9],[-2,7],[0,15],[1,3],[1,4],[2,3],[1,1],[3,-2],[1,3],[5,-1],[1,1],[1,2],[1,2],[2,3],[1,5],[1,1],[1,0],[0,1],[1,3],[3,5],[0,3],[-1,5],[1,2],[1,0],[2,2],[1,5],[2,4],[1,7],[2,0],[1,8],[2,6],[5,19],[-2,0],[-1,-3],[-1,1],[-1,1],[0,9],[-1,1],[-2,-7],[-2,7],[0,4],[1,5],[-1,2],[-3,-2],[1,3],[1,2],[1,3],[2,3],[1,5],[0,7],[1,7],[-1,4],[-1,3],[0,14],[0,9],[-1,6],[0,6],[-4,7],[6,8],[2,6],[-3,13],[-3,11],[0,6],[1,-1],[1,0],[1,14],[0,4],[-2,7],[-3,0],[-2,9],[-1,2],[-1,5],[-3,10],[-3,6]],[[2836,5475],[2,13],[2,2],[0,3],[-1,8],[1,2],[0,1],[0,-1],[1,-1],[2,-3],[1,-4],[1,-1],[1,1],[5,8],[0,3],[0,5],[2,4],[2,2],[0,2],[0,4],[-2,9],[-2,5],[-1,4],[0,5],[-2,4],[0,4],[2,5],[0,1]],[[2850,5560],[1,-2],[3,-8],[3,-6],[4,-9],[2,-6],[1,-1],[1,-2],[-1,-2],[-1,-1],[0,-4],[1,-2],[1,-1],[2,1],[1,4],[-1,18],[-1,9],[-2,3],[-1,4],[1,2],[2,2],[3,3],[12,17],[4,17],[3,5],[3,4],[4,-1],[4,3],[1,5],[-1,7],[-2,4],[2,6],[1,10],[0,8],[1,4],[0,2],[-2,-4],[-2,-1],[1,3],[3,7],[2,12],[1,5],[5,7],[0,3],[4,6],[6,11],[2,3],[11,-7],[3,0],[-1,-1],[-1,-1],[-3,-2],[0,-4],[1,-4],[2,-2],[1,3],[2,8],[2,10],[1,9],[1,3],[3,1],[4,-1],[3,-2],[3,-1],[10,2],[17,24],[7,6],[5,5],[3,10],[1,8],[2,3],[3,0],[1,2],[0,2],[6,6],[3,1],[3,0],[6,-6],[3,-10],[1,-7],[-4,-7],[-1,-4]],[[6216,4318],[2,-4],[-6,1],[-1,4],[0,2],[2,0],[3,-3]],[[6235,4331],[1,-8],[0,-6],[0,-2],[-2,1],[-2,5],[-4,5],[2,0],[1,0],[1,0],[1,3],[0,1],[1,2],[1,-1]],[[6207,4342],[-1,-1],[-2,3],[-2,1],[-2,6],[1,18],[1,3],[0,1],[1,0],[2,-2],[-1,-12],[2,-9],[1,-6],[0,-2]],[[4324,5927],[-2,-3],[-1,1],[-2,3],[0,3],[0,3],[3,4],[2,-2],[1,-5],[-1,-4]],[[4356,5943],[-1,0],[-1,3],[0,3],[0,1],[1,4],[2,0],[0,-3],[0,-6],[-1,-2]],[[4348,5936],[-1,-6],[-4,1],[-2,2],[-2,7],[0,5],[1,5],[0,4],[0,1],[1,-1],[0,-3],[4,-6],[1,-1],[2,-8]],[[4363,6009],[2,-2],[1,1],[2,0],[1,-3],[1,-4],[-1,-4],[-3,-3],[-2,0],[-2,3],[1,6],[0,6]],[[4330,6031],[2,-1],[0,-2],[-2,0],[-4,2],[-1,-1],[-1,-5],[-2,7],[0,3],[0,1],[3,-2],[5,-2]],[[4364,6034],[-1,-3],[-1,4],[-1,1],[0,6],[2,2],[0,-6],[1,-4]],[[4308,6043],[-2,-1],[-1,0],[-2,2],[0,2],[2,3],[2,0],[1,-4],[0,-2]],[[4300,6051],[-2,-2],[-1,1],[-1,5],[0,3],[0,1],[6,6],[2,-1],[2,-5],[-1,-2],[-5,-6]],[[2676,5693],[1,-2],[1,-4],[0,-4],[4,-16],[3,-9],[6,-16],[2,-3],[5,-14],[1,-2],[1,-4],[5,-3],[1,-2]],[[2706,5614],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,2],[-2,3],[-1,-1],[-1,-4],[-1,-2],[-1,0],[0,-2],[0,-11],[0,-12],[1,0],[3,-4],[1,-2],[1,-2],[-1,-1],[-2,-3],[-2,-3],[-1,-4],[2,-6],[1,-4],[-1,-4],[0,-3],[-4,-5],[-1,-1],[1,-2],[2,-3],[1,-4],[0,-4],[1,-3]],[[2698,5525],[-2,6],[-3,7],[-2,3],[0,10],[-1,4],[-4,5],[-3,3],[-2,-1],[1,-5],[4,-6],[0,-3],[0,-3],[-2,0],[-2,2],[-3,0],[-2,2],[-3,8],[2,7],[1,4],[0,9],[-1,5],[-2,7],[-5,7],[-6,6],[-3,5],[-7,4],[-3,2],[-2,5],[0,3],[1,6],[-2,6],[-9,13],[-5,5],[-1,2],[-1,1],[1,-9],[2,-5],[6,-5],[1,-3],[1,-4],[-3,-7],[-2,-2],[-1,-4],[-1,-1],[-1,3],[-4,11],[-9,5],[-1,4],[-3,10],[-2,9],[1,7],[3,9],[1,5],[0,2],[0,4],[-1,3],[-4,3],[-2,3],[1,2],[4,3],[0,4],[0,1]],[[2618,5702],[1,0],[0,1],[0,1],[1,3],[1,2],[1,1],[2,-2],[4,-3],[6,-4],[7,-6],[3,4],[3,2],[2,0],[4,-3],[2,-1],[2,0],[2,-5],[2,-3],[0,-2],[1,-2],[2,0],[5,-2],[3,0],[2,3],[2,3],[0,4]],[[2706,6325],[-2,-4],[-6,-4],[-3,0],[-3,1],[-2,4],[-1,4],[0,2],[2,-3],[2,-2],[1,1],[1,2],[-3,12],[0,2],[2,7],[7,-2],[1,-2],[1,-4],[1,-3],[2,-8],[0,-3]],[[2842,6347],[-1,-2],[-1,3],[-1,0],[-1,1],[-2,3],[-1,3],[2,0],[2,0],[4,-2],[0,-3],[-1,-3]],[[2836,6357],[-1,0],[-2,3],[-1,2],[1,3],[0,3],[1,-4],[2,-1],[0,-1],[1,-3],[-1,-2]],[[2832,6367],[0,-1],[-2,2],[-2,1],[-1,3],[-1,2],[-1,1],[2,1],[2,-1],[1,-2],[1,-5],[1,-1]],[[2816,6383],[3,-2],[2,1],[1,0],[1,0],[2,-5],[-1,-1],[-2,0],[-1,1],[-3,0],[-2,2],[-2,1],[0,2],[2,1]],[[2796,6389],[0,-1],[-5,4],[-2,5],[-1,1],[1,0],[6,-8],[1,-1]],[[2726,6419],[8,-3],[6,1],[2,1],[0,-1],[3,-4],[1,-1],[4,2],[9,1],[1,-1],[2,-4],[3,-2],[2,-2],[3,-1],[3,1],[2,0],[4,-4],[1,-1],[2,1],[0,-3],[4,-5],[4,-10],[3,-4],[2,-3],[3,-3],[2,-1],[8,0],[2,0],[1,-1],[2,-1],[1,1],[15,-16],[5,-8],[3,-4],[6,-6],[3,-1],[1,0],[0,2],[-2,3],[0,1],[2,-1],[4,-7],[2,-2],[2,-2],[2,-2],[-1,-3],[-2,0],[-3,1],[2,-4],[1,-4],[1,0],[2,4],[1,3],[5,-8],[2,-4],[0,-2],[0,-2],[2,2],[1,0],[1,-1],[2,-3],[2,-1],[3,0],[5,-3],[6,-5],[4,-2],[5,0],[3,-3],[1,-4],[-1,-2],[-1,-3],[2,-4],[-4,-1],[-1,-3],[0,-2],[1,-1],[3,1],[3,-1],[5,-1],[3,1],[7,-3],[3,-1],[4,-5],[2,-3],[4,-8],[3,-3],[4,-1],[1,1],[1,-1],[0,-1],[1,-4],[0,-4],[-2,-3],[-1,-2],[-4,0],[-6,-1],[-6,-3],[-3,-3],[-2,-2],[-3,-1],[0,1],[0,2],[-1,3],[-1,-3],[-1,-2],[-2,-2],[-7,0],[-3,2],[-3,2],[-11,2],[-2,0],[-8,-2],[-7,-1],[-3,-1],[-3,-2],[-6,0],[-7,-2],[-7,0],[4,13],[10,13],[2,3],[1,4],[0,2],[0,3],[-2,4],[-1,3],[-1,2],[-3,1],[-3,1],[-4,0],[-7,2],[-4,0],[-3,3],[-6,9],[-2,3],[-2,2],[-1,3],[-1,14],[-1,7],[-2,6],[-2,5],[-3,1],[-10,-4],[-2,1],[-3,1],[-15,10],[-6,5],[-3,2],[-2,4],[-2,6],[-3,5],[0,-2],[0,-1],[-13,-1],[-2,1],[-2,2],[-1,2],[0,4],[-1,4],[-1,-4],[0,-4],[-2,-2],[-2,0],[-3,5],[-10,1],[-1,1],[-3,4],[-3,6],[3,2],[6,3],[1,1],[1,3],[-1,3],[-1,2],[-1,2],[-2,1],[-1,0],[-24,1],[-1,-2],[-2,-4],[-4,-5],[-3,-5],[-1,-2],[-1,-2],[-3,-3],[-2,-5],[-3,-2],[-2,1],[-2,0],[-1,-1],[-1,0],[-6,-1],[-1,-1],[-1,-4],[-1,-6],[0,-2],[-3,-1],[-3,-2],[-6,-6],[-2,-1],[1,4],[-1,5],[-1,0],[-2,-1],[-2,-1],[-2,-3],[-2,-1],[-1,1],[0,3],[10,8],[1,0],[1,0],[2,0],[1,2],[-1,11],[0,7],[3,6],[4,9],[2,2],[22,18],[2,1],[14,4],[3,1],[6,5],[7,2],[7,-1]],[[3090,5761],[-2,-1],[-5,6],[-4,9],[0,5],[1,0],[1,-2],[2,-7],[5,-4],[2,-6]],[[2739,6193],[1,-1],[1,0],[1,2],[4,-1],[1,-3],[-4,0],[-1,-1],[-1,-1],[-3,1],[0,5],[1,1],[0,-2]],[[2778,6214],[-1,0],[-2,-2],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1]],[[2782,6214],[-1,-1],[-1,1],[2,2],[1,1],[0,1],[1,0],[1,-1],[-3,-3]],[[5908,7130],[2,-1],[3,2],[1,5],[0,7],[6,-2],[5,-1],[4,0],[4,1],[13,7],[3,4],[2,2],[4,3],[4,2],[-2,-4],[-15,-18],[-1,-5],[1,-4],[2,-4]],[[5944,7124],[-1,-1],[-2,2],[-1,1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,1],[-2,-2],[0,6],[-1,2],[-1,2],[-2,-1],[-2,0],[-2,1],[-3,-1],[-2,-2],[-2,-2],[-2,0],[-2,2],[-2,2],[0,1]],[[5944,7124],[1,-1],[0,-4],[-3,-1],[-3,0],[-2,0],[-1,0],[-6,-9],[-2,-4],[-4,-2],[-3,-1],[-2,0],[-1,-1],[-1,-2],[0,-3],[-1,-1],[-2,0],[0,3],[-2,2],[-3,-1],[-1,0],[-6,4],[-1,1],[-1,3],[-3,10],[0,8],[2,-2],[2,2],[3,4],[2,2],[2,-1]],[[5411,8059],[2,1],[3,1],[0,3],[0,4],[0,1],[4,-2],[3,-2],[1,-4],[1,-2],[1,-2],[1,-1],[2,0],[5,-3],[2,-1],[3,-1],[2,-2],[1,-1],[1,-2],[1,-1],[2,1],[6,1],[2,-2],[1,-2],[1,0],[-1,-2],[-1,-2],[0,-1],[-2,-1],[-1,-1],[-1,-2],[0,-2],[2,-1],[1,-1],[1,-1],[3,-6],[3,-7],[2,-1],[1,-1],[1,1],[2,3],[1,2],[2,1],[2,2],[0,1],[-2,5],[-1,4],[0,1],[3,-1],[5,-2],[7,-7],[2,0],[2,0],[3,1],[1,2],[1,-1],[0,-4],[-1,-2],[-3,-2],[0,-1],[1,-2],[2,0],[1,-3],[2,-3],[1,-1],[1,-1],[3,2],[1,1],[0,1],[1,-1],[1,-1],[0,-1],[3,-1],[2,-3],[1,0],[1,0],[5,-1],[1,-2],[0,-2],[0,-1],[1,-4],[6,-8],[0,-5],[1,-1]],[[5523,7980],[-1,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-1,-3],[-2,-1],[-1,-2],[0,-2],[-6,-4],[-1,-2],[0,-3],[-1,-4],[0,-3],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-1,-3],[-2,-2],[-4,-3],[-4,-1],[-5,1],[-3,1],[-2,-1],[-2,-4],[-2,-6],[-1,-4]],[[5383,7936],[-1,2],[-2,4],[-4,5],[-3,0],[-1,1],[-1,2],[-1,3],[-1,2],[-2,1],[-3,3],[-3,6],[-3,4],[-3,0],[-1,2],[-2,3],[-2,3],[-2,6],[-1,4],[-2,3],[-1,2],[0,1],[1,4],[1,2],[1,1],[0,1],[0,1],[-1,4],[-3,3],[-3,2],[-1,3],[-1,3],[0,2],[-2,2],[-1,4],[0,1],[1,1],[1,0],[1,-1],[1,-3],[2,-4],[0,2],[2,4],[2,4],[3,3],[2,0],[2,1],[2,1],[3,0],[2,-1],[1,0],[0,3],[1,2],[5,1],[1,4],[1,0],[1,0],[1,2],[1,0],[1,0],[1,-1],[1,1],[1,5],[1,0],[4,1],[6,3],[2,2],[3,1],[3,3],[5,2],[0,1],[-2,2],[-1,1],[-1,2],[1,2],[1,0],[2,-1],[3,-1],[2,-1],[0,-2],[1,-2],[1,0],[-1,-4],[2,-1],[1,-1],[2,0],[0,2],[1,0]],[[5394,8238],[-1,0],[-3,-1],[-4,1],[0,4],[0,3],[-1,3],[-1,1],[-1,2],[1,2],[5,-5],[5,-5]],[[5394,8243],[0,-2],[0,-3]],[[5313,8270],[-4,0],[-2,3],[-2,0],[1,3],[1,1],[5,-2],[1,-3],[0,-2]],[[5380,8268],[1,-4],[-1,-2],[-3,4],[-3,0],[-2,-6],[-1,0],[-5,5],[-1,2],[0,2],[1,7],[-1,2],[2,2],[0,3],[3,4],[2,0],[1,-3],[1,-2],[4,-2],[1,-1],[0,-2],[-2,-3],[0,-1],[0,-2],[3,-3]],[[5238,8288],[-1,-2],[-3,0],[-1,2],[0,1],[2,1],[1,1],[2,-1],[0,-2]],[[5270,8294],[0,-1],[4,-1],[2,-3],[2,-4],[0,-5],[-2,-4],[-2,-2],[7,0],[1,-2],[1,-2],[4,2],[11,-8],[6,4],[1,0],[2,-6],[-2,-6],[-5,-6],[1,-4],[2,-1],[5,1],[8,-4],[2,1],[6,9],[3,2],[9,2],[1,3],[4,3],[2,4],[6,7],[5,-1],[4,-1],[3,-1],[4,-8],[8,-8],[8,1],[2,-8],[2,-10],[2,-3],[2,-2],[6,-2],[1,0]],[[5396,8230],[0,-2],[0,-5],[1,-4],[3,-16],[0,-4],[0,-1],[-1,-5],[-3,-5],[-2,-3],[-2,-3],[0,-3],[3,-6],[8,-8],[3,-7],[-2,-5],[0,-5],[0,-2],[1,-2],[2,-2],[1,-3],[0,-3],[0,-2],[1,-2],[0,-1],[-1,-2],[0,-4],[-1,-4],[-2,-4],[1,-3],[1,-5],[1,-2],[1,-2],[-1,-5],[0,-1],[6,-4],[0,-1],[1,-4],[2,-7],[-2,-10],[-1,-5],[-3,-8],[0,-1]],[[5211,7866],[-1,1],[-1,4],[0,6],[1,8],[1,5],[-1,4],[1,5],[3,8],[1,7],[1,9],[1,5],[3,4],[5,10],[1,1],[-1,5],[-1,1],[-2,1],[-6,2],[-5,1],[-2,1],[-3,4],[-1,0],[-2,-1],[-4,-1],[-2,1],[-1,0],[-1,-1],[0,1],[-1,3],[-1,1],[-2,1],[-1,-1],[-1,-1],[-1,-2],[-1,1],[-4,8],[-1,1],[0,2],[-1,3],[-2,3],[-2,1],[-1,-1]],[[5176,7976],[0,4],[1,5],[0,3],[1,2],[2,1],[0,3],[0,3],[-2,0],[-3,2],[-2,2],[-1,3],[-2,3],[-1,4],[0,3],[0,2]],[[5166,8053],[1,9],[-1,3],[-1,1],[-2,1],[-1,1],[0,2],[0,1],[2,-1],[1,1],[5,6],[0,1],[-1,0],[-1,1],[0,1],[0,1],[3,8],[1,3],[0,3],[0,2],[-2,3],[-1,3],[0,3],[-1,1],[-3,6],[0,2],[1,2],[3,1],[0,1],[2,1],[3,-2],[2,-1],[2,2],[3,-1],[6,4],[1,1],[0,2],[0,1],[-2,3],[0,1],[0,2],[1,1],[1,1],[2,1],[3,4],[1,4],[1,4],[0,3],[-1,2],[-1,1],[-1,0],[-3,0],[-2,2],[-1,2],[-1,1],[1,2],[0,1],[0,1],[0,2],[1,1],[7,0],[1,1],[0,5],[2,9],[2,4],[0,2],[0,11],[0,6]],[[5199,8203],[-1,3],[-3,3],[1,6],[1,4],[3,6],[2,2],[9,1],[11,-1],[4,-8],[-1,-5],[2,-2],[2,1],[0,4],[1,4],[1,1],[3,-3],[1,-2],[0,-7],[2,9],[-1,7],[0,7],[2,3],[1,2],[8,-2],[8,1],[3,-2],[8,-13],[2,-2],[3,-1],[-4,3],[-9,15],[-3,2],[-4,1],[-2,1],[-2,3],[0,2],[0,15],[-2,2],[-2,1],[-1,-1],[-2,0],[-1,4],[1,2],[5,2],[3,2],[0,4],[-2,4],[-2,6],[-3,5],[-1,7]],[[5240,8299],[6,0],[1,0],[8,-3],[2,-3],[2,0],[4,2],[4,1],[1,-1],[2,-1]],[[5230,8292],[0,-1],[0,8],[3,9],[1,0],[-1,-2],[0,-2],[-1,-3],[0,-2],[7,-1],[-1,-1],[-7,-1],[-1,-4]],[[6192,5698],[-3,0],[-1,1],[-1,2],[-3,2],[-2,0],[-3,-2],[-4,-2],[-4,-1],[-4,-2],[-2,-1],[-3,1],[-2,1],[0,12],[0,14],[0,10],[0,6],[1,2],[4,8],[1,3],[4,13],[4,12],[3,8]],[[6177,5785],[0,2],[2,1],[6,-8],[1,0],[1,3],[2,8],[1,3],[1,0],[3,3],[3,3]],[[6197,5800],[0,-3],[5,-12],[2,-6],[1,-10],[-1,-6],[-1,-4],[-2,-3],[-6,-9],[-7,-5],[-4,-11],[-3,1],[0,-4],[1,0],[2,0],[4,4],[3,1],[4,0],[3,-1],[3,-4]],[[6201,5728],[-3,-8],[-3,-10],[-3,-12]],[[3297,5950],[-2,-1],[-1,10],[-2,7],[0,5],[1,2],[3,-3],[2,-4],[0,-9],[-1,-7]],[[5315,8298],[5,-3],[3,0],[3,-2],[0,-2],[0,-5],[-2,-2],[-3,1],[-3,-2],[-12,8],[0,7],[1,3],[5,1],[3,-4]],[[5291,8296],[-2,-1],[-2,1],[-4,5],[0,2],[2,-1],[2,-3],[2,0],[2,-2],[0,-1]],[[5348,8303],[-1,-1],[-4,1],[-5,-5],[-2,2],[1,2],[0,1],[2,1],[1,2],[0,3],[1,-2],[3,0],[2,-1],[1,-1],[1,-2]],[[5279,8298],[-3,-1],[-1,2],[-3,0],[-1,9],[0,1],[2,-1],[4,-4],[2,-5],[0,-1]],[[5298,8290],[-2,0],[-1,4],[0,2],[1,3],[2,4],[3,5],[2,6],[1,0],[-1,-6],[-4,-15],[-1,-3]],[[5419,8306],[-1,-1],[-5,2],[-6,4],[1,8],[2,3],[10,-9],[0,-3],[-1,-4]],[[5295,8341],[1,-3],[2,-7],[2,-7],[-1,-3],[1,-4],[-1,-4],[-4,-5],[-5,0],[-6,2],[-7,4],[-1,3],[-1,1],[-2,8],[0,9],[4,2],[8,4],[2,-1],[2,-2],[2,0],[4,3]],[[5349,8345],[1,0],[1,-2],[0,-3],[-2,-2],[-1,0],[-1,3],[2,2],[0,2]],[[5294,8351],[0,-1],[-2,1],[0,4],[0,4],[0,3],[0,2],[3,-5],[1,-2],[-1,-3],[-1,-3]],[[5349,8345],[-1,-1],[-1,-1],[-3,-2],[-2,-1],[-2,-3],[-1,-5],[1,-3],[3,-1],[1,-6],[-2,-3],[-7,-3],[0,-7],[0,-6],[0,-4],[-1,-5],[-5,-3],[-3,9],[0,3],[-1,4],[-1,3],[-1,6],[-5,1],[-2,1],[-2,-1],[-1,0],[-3,7],[0,8],[-1,4],[-1,2],[0,2],[-1,2],[-2,1],[-1,5],[2,1],[5,-1],[2,0],[1,1],[4,8],[0,2],[0,2],[4,0],[2,-2],[0,-5],[0,-6],[3,-2],[1,0],[1,5],[1,2],[1,1],[0,4],[-1,2],[-1,2],[5,5],[5,4],[3,0],[3,-1],[2,-1],[2,-1],[1,-2],[-2,-4],[-1,-3],[2,-8],[0,-6]],[[5306,8438],[-1,-1],[-3,2],[1,3],[4,1],[3,-1],[-3,-2],[-1,-2]],[[5240,8299],[0,5],[-1,3],[-1,6],[2,1],[0,10],[-1,6],[-8,5],[-6,5],[2,18],[0,5],[-2,9],[0,11],[1,17],[2,1],[2,0],[5,-3],[2,-1],[2,-2],[1,-2],[2,3],[0,5],[4,7],[3,2],[2,1],[2,-3],[2,-2],[0,6],[2,12],[-4,2],[-4,-2],[-3,-7],[-3,-10],[-5,-1],[-3,-3],[-4,3],[-2,3],[0,3],[1,3],[4,7],[5,8],[5,0],[4,2],[2,0],[8,0],[4,2],[3,3],[7,15],[4,6],[8,2],[8,7],[2,0],[-3,-5],[-1,-2],[0,-3],[2,-7],[0,-4],[0,-8],[-3,-5],[-2,-8],[-2,-2],[0,-10],[0,-3],[0,-9],[3,-4],[3,-2],[10,0],[1,-2],[1,-3],[-1,-5],[-1,-3],[-3,-4],[-3,-2],[-3,0],[-3,4],[-1,-1],[-2,-2],[-2,-13],[-2,-8],[0,-1],[-2,2],[-2,0],[-3,-2],[1,-2],[2,-3],[-1,-2],[-3,-1],[-2,-4],[-1,-2],[-3,-3],[-2,-4],[1,-5],[0,-4],[1,-4],[-1,-4],[-4,-5],[-1,-5],[3,0],[2,-1],[2,-1],[1,-2],[-1,-2],[1,-7]],[[3006,6215],[1,1],[1,3],[1,3],[1,2],[2,1],[3,0],[5,-3],[1,0],[4,3],[4,1],[3,-1],[1,-2],[3,-4],[2,-1],[4,0],[1,0],[4,-6],[3,-2],[2,0],[3,2],[1,0],[2,-5],[1,-7],[1,-6],[2,-4],[12,2],[3,-4],[-1,-2],[-2,-2],[-5,1],[-3,-1],[0,-2],[0,-3],[3,0],[3,-2],[3,-2],[3,-1],[4,-1],[4,-1],[6,-5],[6,-12],[2,-2],[1,-4],[0,-4],[-3,-7],[-1,-3],[-2,-1],[-1,-3],[-1,-5],[-1,0],[-1,0],[-2,3],[-1,4],[-3,4],[-4,0],[-6,2],[-3,-1],[-3,0],[-4,1],[-3,0],[-4,-1],[-3,-3],[-2,-2],[-2,-4],[-1,-1],[-8,-2],[-2,3],[-3,4],[-3,0],[-4,-3],[-3,-1],[-1,-1],[-1,-2],[0,-5],[0,-4],[-5,-13],[-2,-9],[-2,-3],[-1,-1],[-2,6],[-1,2],[-2,1],[-1,2],[0,4],[0,4],[-1,3],[-2,2]],[[3006,6115],[0,10],[1,4],[-1,4],[-3,5],[-2,5],[-1,5],[0,1],[3,0],[2,2],[2,5],[0,5],[0,3],[-1,3],[-1,4],[2,4],[2,5],[1,2],[-1,2],[-2,5],[0,2],[1,6],[0,4],[-2,12],[0,2]],[[5264,6837],[-3,-3],[-3,-3],[2,-8],[5,-11],[2,-10],[1,-4],[2,-12],[2,-11],[0,-4],[1,-8],[-1,-24],[1,-31],[2,-15],[-3,-14],[-2,-13],[0,-7],[2,-10],[1,-8],[1,-4],[0,-13],[-1,-4],[-5,-7],[-5,-6],[-1,-6],[-1,-5],[1,-5],[4,-11],[5,-15],[6,-18],[1,-4],[0,-12],[3,-16],[2,-7],[1,-5],[2,-3],[2,-3],[1,0],[7,4],[12,-7],[11,-7],[1,-1],[2,-9],[4,-15],[3,-12],[3,-10]],[[5332,6440],[-14,-18],[-15,-18],[-14,-18],[-15,-19],[-14,-18],[-14,-18],[-15,-18],[-14,-18],[-10,-12],[-6,-10],[-7,-14],[-8,-13],[-5,-10],[-8,-14],[-3,-6],[-8,-15],[-3,-3],[-11,-4],[-10,-5],[-9,-3],[-6,-3],[-6,-2]],[[5117,6181],[-9,-4],[-6,-2],[-7,-3],[-1,0],[-1,-1],[-1,1],[-2,1],[-2,4],[-2,1],[0,3],[1,4],[1,3],[0,3],[1,2],[1,1],[0,3],[-1,3],[-1,5],[0,10],[0,3],[0,1],[-2,4],[-3,4],[-4,2],[-2,1],[-3,1],[-6,3],[-2,1],[-3,9],[-2,2],[-8,2],[-3,1],[-2,2],[-2,3],[-1,5],[0,4],[-1,1],[-9,10],[-2,3],[-1,3],[0,4],[0,6],[0,4],[-1,3],[-4,5],[-9,13],[-9,13],[-9,12],[-9,13],[-9,13],[-9,13],[-9,12],[-10,13],[-9,13],[-9,12],[-9,13],[-9,13],[-9,12],[-9,13],[-9,13],[-9,12],[-8,11],[-8,11]],[[4866,6527],[-7,9],[-6,8],[-7,9],[-4,5],[-5,7],[-6,6],[-5,7],[-5,6],[-5,7],[-5,7],[-6,6],[-5,7],[-5,6],[-5,7],[-6,6],[-5,7],[-5,6],[-5,7],[-5,7],[-6,6]],[[4758,6663],[0,12],[0,10]],[[4758,6685],[0,14],[0,13],[0,13],[0,8],[0,9],[0,4],[1,2],[3,3],[4,6],[2,3],[2,3],[7,9],[2,3],[7,10],[2,2],[4,1],[1,2],[2,4],[4,5],[2,2],[1,1],[7,-2],[3,-1],[3,-1],[1,1],[1,1],[1,4],[1,4],[0,3],[0,2],[1,0],[1,0],[2,-1],[4,1],[1,0],[5,1],[6,2],[5,3],[4,2],[4,6],[4,7],[3,9],[3,8],[5,6],[4,3],[3,1],[5,4],[5,7],[5,6],[3,1],[5,1],[1,1],[1,2],[0,4],[-2,3],[-1,1],[-1,2],[-1,0],[-1,2],[0,3],[1,3],[0,4],[0,4],[-1,4],[0,4],[0,3],[0,2],[2,2],[2,1],[2,-1],[5,1],[12,7],[1,3],[0,5],[1,5],[1,1],[1,1],[4,1],[5,2],[2,0],[7,-1],[4,0],[7,0],[5,-1],[4,0],[6,0],[1,1],[0,3],[-1,6],[1,4],[2,4],[3,4],[-1,5],[-3,3],[-3,4],[-1,2],[-3,5],[-1,5],[-2,12],[-2,6],[-1,8],[1,15],[-2,9],[0,4],[0,4],[0,8],[0,11],[-2,12],[1,3],[0,2],[0,2],[-2,4],[-1,3],[1,3],[1,4],[0,1],[-4,5],[-6,8],[-1,4],[-1,4]],[[4938,7126],[5,-1],[3,1],[7,5],[5,7],[4,4],[4,7],[3,5],[5,6],[14,11],[2,0],[4,-2],[4,0],[3,4],[3,10],[4,6],[6,6],[7,5],[5,6],[8,4],[20,3],[11,2],[7,0],[7,8],[3,3],[15,0],[7,6],[28,0],[3,-2],[3,-3],[6,-8],[3,-1],[3,1],[9,8],[9,3],[5,5],[2,6],[5,3],[2,-5],[10,-5],[6,1],[3,2],[-1,7],[6,-2],[5,-4],[5,-7],[3,-1],[6,3],[13,2]],[[5238,7235],[0,-3],[0,-3],[-2,-3],[-2,-2],[-2,-7],[-4,-5],[-1,-2],[0,-1],[3,-3],[1,-2],[0,-3],[-1,-11],[-1,-8],[0,-10],[0,-4],[1,-5],[1,-4],[0,-4],[-1,-11],[2,-6],[1,-6],[-3,-7],[-1,-6],[0,-9],[0,-6],[-2,-5],[-2,-5],[-2,-3],[-3,-2],[-3,-4],[-2,-9],[-6,-8],[-1,-2],[0,-7],[0,-8],[1,-7],[2,-10],[3,-11],[0,-6],[1,-2],[3,-3],[6,-5],[1,-2],[3,-8],[2,-13],[1,-9],[5,-8],[5,-6],[4,-6],[5,-6],[1,-2],[1,-14],[2,-13],[2,-15],[1,-15],[3,-17],[1,-10],[1,-12],[2,-14]],[[2774,4871],[-1,-3],[-2,0],[-1,1],[0,3],[1,8],[0,4],[2,3],[2,2],[3,-1],[2,-3],[-3,-5],[-1,-1],[-1,-1],[-1,-7]],[[2488,4967],[-1,0],[-2,3],[1,4],[2,-1],[1,-1],[0,-2],[-1,-3]],[[2516,4993],[-3,-3],[-2,1],[0,2],[0,1],[1,4],[2,2],[2,4],[3,2],[1,0],[0,-1],[0,-1],[-1,-4],[-1,-2],[-2,-5]],[[2490,5001],[-1,0],[-4,6],[0,5],[2,4],[5,2],[3,-4],[-1,-6],[-2,-5],[-1,-1],[-1,-1]],[[2460,5019],[-3,-1],[-2,2],[-1,4],[0,4],[0,2],[5,2],[2,-4],[0,-6],[-1,-3]],[[2484,5027],[-1,-2],[-6,2],[-1,4],[1,4],[1,2],[3,-2],[3,-5],[0,-3]],[[2464,5048],[2,-4],[1,-11],[6,-11],[0,-6],[0,-3],[0,-2],[3,-4],[2,-5],[-3,-11],[-7,-5],[-6,0],[-2,2],[-1,4],[-1,4],[1,3],[4,6],[5,5],[1,4],[-2,3],[-2,8],[-3,5],[-2,15],[-1,1],[-2,-2],[-1,2],[-1,1],[3,3],[0,3],[4,1],[1,-2],[1,-4]],[[2808,5121],[-2,-1],[0,3],[1,4],[1,0],[0,-6]],[[2908,5040],[-1,-2],[-2,0],[-2,-1],[-3,2],[-1,0],[0,-2],[2,-2],[2,-3],[0,-4],[2,-6],[2,-5],[2,-3],[0,-2],[0,-4],[-1,-3],[1,-15],[0,-1],[-1,0],[-1,0],[-1,2],[-1,1],[0,-2],[-1,-7],[-2,-14],[-1,-13],[-2,-5],[-3,-7],[-4,-9],[-6,-15],[-4,-6],[-3,-5],[-4,-6],[-5,-8],[-6,-4],[-8,-7],[-5,-4],[-4,-3],[-4,-3],[-6,-4],[-2,-4],[-4,-9],[-2,-5],[-1,-4],[0,-2],[0,-1],[1,-2],[0,-2],[-1,-1],[-1,0],[-1,1],[0,2],[-1,2],[-1,1],[-1,-1],[0,-2],[-1,-9],[0,-5],[-1,-2],[0,-4],[-1,-4],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-7],[-1,-5],[-1,-5],[0,-3],[1,-2],[0,-2],[-1,-4],[0,-3],[-2,-1],[-3,-5],[-1,-3],[-1,-3],[1,-3],[0,-2],[-2,-1],[-1,-2],[-1,-4],[-1,-1],[-3,2],[-2,0],[-2,2],[-2,5],[-1,4],[-2,6],[0,8],[-2,2],[-1,3],[-2,-1],[-3,-1],[-1,2],[-3,4],[-3,3],[-2,2],[-2,-1],[-1,-2],[-2,-4],[-2,-3],[-1,0],[-2,2],[0,2],[1,4],[3,7],[-3,1],[-1,2],[0,3],[-1,3],[1,3],[1,2],[3,-1],[1,-1],[1,4],[1,1],[1,1],[1,2],[-2,5],[0,3],[0,2],[0,3],[0,3],[0,2],[0,3],[-1,2],[0,2],[0,2],[-1,1],[-1,1]],[[2768,4846],[1,1],[4,3],[2,3],[2,2],[2,5],[1,4],[2,18],[3,12],[0,5],[-3,8],[0,11],[0,4],[0,2],[-2,-4],[1,-17],[-1,-7],[-2,-2],[-1,1],[0,12],[-1,-2],[-2,-8],[-3,-6],[-1,-2],[0,-3],[-3,3],[-2,2],[-7,14],[-4,3],[-2,4],[-1,2],[0,3],[2,3],[3,4],[0,8],[0,7],[-2,11],[1,15],[0,5],[-3,13],[2,6],[6,4],[2,3],[1,10],[2,6],[3,-2],[2,0],[-3,2],[-3,9],[0,4],[5,12],[2,3],[3,6],[2,10],[1,15],[-1,11],[-1,11],[2,3],[3,2],[3,3],[2,4],[3,-1],[4,5],[7,3],[9,6],[2,5],[-1,10]],[[5951,6895],[2,-12],[2,-10],[2,-14],[1,-5],[1,-4],[3,-15],[2,-12],[2,-10],[2,-15],[1,-5]],[[5969,6793],[-2,-3],[-3,-9],[-3,-31],[-5,-23],[0,-15],[-1,-6],[-2,-7],[-3,-8],[-5,4],[-8,13],[-4,12],[-5,8],[-5,11],[-1,8],[0,4],[-2,12],[-2,6],[-6,13],[-1,6],[-1,3],[-2,5],[-2,16],[-2,10],[-3,-3],[1,-4],[-2,-6],[-2,-7],[1,-6],[5,-9],[1,-3],[1,-9],[0,-11],[1,-4],[3,-8],[1,-5],[1,-4],[1,-4],[4,-7],[5,-14],[4,-10],[4,-4],[1,-5],[1,-11],[-1,-6],[3,-10],[1,-6],[3,-4],[2,-5],[1,-8],[2,-24],[2,-5],[8,-32],[7,-19],[3,-15],[5,-18],[9,-39],[6,-13],[2,-6],[4,-6],[4,-7],[-4,0],[-1,0],[-1,-1],[-1,-5],[0,-4],[0,-20],[1,-10],[4,-19],[3,-6],[1,-4],[2,-2],[9,-7],[5,-14],[11,-17],[2,-5],[0,-1]],[[6024,6350],[-10,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,0],[-10,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,0],[-5,0],[0,5],[1,4],[-1,2],[-1,1],[-2,-1],[-2,-11],[-2,0],[-3,0],[-11,0],[-10,0],[-11,0],[-10,0],[-11,0],[-11,0],[-10,0],[-11,0],[-10,0],[-11,0],[-11,0],[-10,0],[-11,0],[-10,0],[-11,0],[-11,0]],[[5693,6350],[0,13],[0,13],[0,14],[0,13],[0,13],[0,13],[0,14],[0,13],[0,13],[0,14],[0,13],[0,13],[0,14],[0,13],[0,13],[0,14],[0,13],[0,13],[0,13],[0,14],[0,13],[0,13],[0,14],[0,13],[0,13],[0,14],[0,13],[0,13],[0,13],[0,14],[0,13],[0,13],[0,3],[-1,9],[-2,11],[-1,15],[-1,4],[-2,15],[0,4],[0,3],[4,12],[2,6],[1,7],[0,6],[-1,9],[-2,8],[0,8],[0,8],[2,5],[3,6],[0,3],[2,3],[1,2]],[[5698,6922],[2,-7],[4,-2],[15,7],[15,-7],[9,-2],[13,-6],[8,-9],[3,-2],[5,1],[4,-6],[15,-3],[9,-6],[4,-5],[3,-2],[2,0],[4,2],[4,4],[4,5],[10,13],[3,2],[2,-1],[3,0],[1,4],[1,2],[1,3],[2,3],[5,1],[9,6],[-1,-3],[-9,-6],[4,-1],[4,2],[5,1],[0,3],[1,5],[1,1],[3,-1],[9,-8],[2,0],[7,4],[1,1],[2,-2],[5,-10],[-2,0],[-5,9],[0,-4],[-3,-8],[4,-3],[3,-1],[1,-4],[1,-3],[3,1],[2,5],[-1,3],[-1,2],[1,1],[2,-3],[6,-9],[2,-2],[2,0],[5,3],[1,0],[7,3],[0,-2],[1,-3],[6,3],[8,0],[6,3],[8,7],[0,1]],[[5949,6902],[1,-2],[1,-5]],[[6114,5976],[2,-3],[0,1],[1,1],[0,2],[5,-4],[0,-3],[-3,-1],[-3,2],[-3,-1],[-3,2],[-1,4],[2,-2],[1,1],[-1,4],[-2,0],[0,3],[1,1],[1,1],[-2,4],[3,-1],[1,-2],[1,-3],[0,-6]],[[6113,5999],[1,-5],[-3,2],[-1,1],[2,2],[0,2],[1,-2]],[[6072,6113],[8,-34],[4,-20],[3,-21],[2,-32],[2,-16],[3,-8],[3,-15],[2,-1],[1,-4],[3,-14],[2,-5],[0,4],[0,3],[0,4],[0,6],[2,3],[3,-4],[2,-4],[0,-7],[1,-4],[3,-8],[3,-2],[4,-1],[3,-2],[2,-3],[5,-8],[10,-7],[9,-23],[5,-15],[16,-23],[3,-12],[1,-11],[4,1],[5,-12],[2,-9],[5,-4],[1,6],[2,-5],[1,-6]],[[6177,5785],[-3,6],[-2,6],[-2,6],[-3,3],[-2,4],[-3,8],[-2,10],[-4,7],[-8,11],[-6,14],[-5,15],[-4,8],[-1,2],[-7,4],[-5,7],[-3,6],[-3,1],[-2,0],[-4,-1],[-4,4],[-2,0],[-2,1],[-3,1],[-2,-2],[-5,-2],[-2,0],[-1,4],[-1,2],[-1,3],[-2,0],[0,-2],[-5,-6],[-9,-4],[-2,0],[-2,3],[-4,10],[-1,2],[-1,0],[-2,2],[-2,2],[-2,4],[-1,3],[-2,-9],[-3,-15],[-2,-8],[-2,-10],[-1,0],[-1,0],[-4,13],[-3,5],[-2,-1],[-1,-2],[-1,-4],[-1,-3],[-1,-1],[-2,1],[-4,2],[-4,-1],[-4,-3]],[[6014,5891],[-1,17],[-1,12],[0,12],[-1,11],[3,7],[1,7],[3,21],[2,5],[2,11],[0,3],[3,15],[0,10],[-1,9],[1,6],[2,5],[0,4],[0,9],[0,2],[2,0],[3,-1],[2,1],[3,0],[2,0],[1,3],[1,11],[1,2],[1,1],[2,2],[2,3],[2,2],[2,1],[2,1],[1,1],[2,2],[2,-1],[1,1],[1,1],[1,0],[1,1],[0,2],[1,1],[2,3],[0,2],[1,2],[0,2],[1,3],[2,6],[3,4]],[[4503,6694],[-3,-10],[-3,4],[-1,1],[-1,2],[3,1],[4,4],[1,-2]],[[4572,6714],[0,-4],[0,-5],[0,-7],[-1,-4],[-4,-4],[-2,1],[-2,2],[-3,6],[0,6],[3,4],[1,5],[6,-1],[1,1],[0,1],[1,-1]],[[4522,6707],[-1,-1],[-1,2],[-2,4],[1,4],[1,1],[1,0],[3,-2],[0,-3],[1,-2],[-3,-3]],[[4546,6728],[-3,-14],[-2,-5],[-1,-2],[-3,-1],[-4,8],[-2,9],[-1,2],[2,3],[2,-1],[6,2],[1,1],[5,8],[6,1],[0,-2],[-6,-9]],[[4605,6715],[-4,-6],[-3,1],[-1,1],[4,2],[3,5],[2,11],[4,13],[1,5],[1,2],[2,0],[1,0],[0,-3],[0,-6],[-1,-10],[-1,-10],[-8,-5]],[[4504,6735],[-1,-1],[0,5],[-3,11],[2,5],[3,1],[2,-4],[0,-4],[-1,-2],[1,-4],[-1,-3],[-2,-4]],[[4619,6759],[-2,-4],[-2,2],[1,8],[1,3],[3,4],[4,1],[0,4],[2,2],[1,-3],[-1,-2],[-1,-9],[-2,-3],[-4,-3]],[[5044,7338],[-1,-1],[-2,0],[-2,0],[-1,3],[1,2],[0,1],[2,-3],[3,-1],[0,-1]],[[5040,7352],[-1,-3],[-5,1],[-1,1],[1,4],[2,1],[0,3],[1,3],[6,2],[1,-2],[1,-3],[-4,-6],[-1,-1]],[[5087,7404],[3,-2],[2,2],[2,-1],[1,-1],[1,-4],[-2,-4],[-1,-4],[-2,-5],[-1,-5],[-3,-3],[-2,-2],[-5,4],[-3,1],[-1,1],[0,6],[-1,2],[-2,1],[-2,-2],[-2,-3],[-1,3],[-2,1],[-1,2],[0,2],[12,15],[3,3],[7,3],[1,0],[-1,-2],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-3]],[[5119,7407],[-1,-1],[-8,7],[-3,1],[-1,1],[0,3],[1,2],[5,1],[5,-3],[2,-7],[1,-1],[-1,-3]],[[4950,7618],[0,-2],[1,-3],[1,-1],[2,-1],[2,-1],[3,0],[1,-2],[0,-2],[0,-3],[-1,-3],[-1,-2],[1,-1],[1,-1],[1,0],[1,2],[1,2],[0,-1],[1,-2],[3,-2],[7,-4],[2,0],[2,-1],[1,-1],[4,-7],[1,0],[2,0],[2,1],[2,1],[1,0],[1,-2],[2,-1],[2,-2],[1,-3],[1,0],[7,1],[2,-1],[1,0],[2,0],[4,-1],[3,1],[1,6],[0,2],[1,1],[2,-1],[7,-3],[2,-2],[3,-2],[2,0],[2,-1],[2,-6]],[[5047,7565],[4,-3],[2,-2],[1,-2],[1,-2],[1,0],[2,2],[3,2],[4,-2],[6,-3],[2,0],[0,1],[1,2],[1,1],[1,0],[2,1],[2,2],[2,0],[2,-1],[3,-1],[2,0]],[[5089,7560],[0,-4],[2,-1],[0,-3],[-2,-2],[-2,0],[0,-6],[1,-1],[1,-2],[0,-1],[1,-9],[-3,-5],[-4,-5],[-19,-18],[-5,-9],[-2,-2],[-14,-5],[-10,-6],[-5,-2],[-6,-10],[-3,-4],[3,-1],[2,-5],[-1,-2],[-3,-3],[-2,-1],[-1,0],[-1,0],[-6,-18],[-6,-12],[-3,-6],[-4,-8],[-7,-21],[0,-6],[4,-21],[2,-6],[3,-4],[5,-4],[1,-4],[-2,-4],[-5,-7],[-9,-8],[-4,-7],[-1,-7],[-2,-3],[-1,-10],[-2,-6],[0,-2],[-2,-5],[0,-3],[2,-5],[-1,-2],[-1,-1],[-4,-1],[-10,0],[-9,-11],[-4,-9],[-4,-17],[-5,-10],[-2,-2],[-4,5],[-4,0],[-4,-1],[-2,-3],[-3,-2],[-3,1],[-7,1],[-3,0],[-5,-3],[-4,2],[-7,1],[-15,-2],[-2,-1],[-2,-4],[-4,-8],[-8,0],[-6,-5],[-2,-3],[-3,-8],[0,-6],[-1,0],[-1,2],[-1,-1],[0,-4],[-3,-2],[-2,-1],[-5,3],[-4,6],[-2,0],[-4,9],[-1,6],[-2,5],[1,3],[-1,2],[-3,2],[-1,5],[3,8],[2,3],[1,0],[-3,0],[-2,-4],[-3,7],[-11,14],[1,3],[0,2],[-2,-4],[-1,-1],[-6,1],[-6,-2]],[[4794,7249],[-2,15],[-1,6],[0,3],[2,9],[2,3],[2,7],[3,6],[3,2],[1,0],[2,5],[0,4],[-4,-1],[-6,17],[0,2],[1,4],[0,5],[0,4],[2,3],[3,4],[2,4],[1,5],[0,4],[-1,3],[-4,2],[-3,12],[-1,8],[-1,0],[-2,4],[-2,6],[-1,1],[2,1],[10,0],[2,2],[2,5],[2,8],[0,6],[-1,2],[-3,5],[0,1],[1,3],[2,2],[2,3],[1,3],[0,2],[-1,2],[0,1],[1,3],[0,8],[0,2],[0,7],[-1,6],[-2,8],[0,2],[1,1],[3,3],[3,6],[3,5],[5,5],[3,4],[1,4],[1,1],[0,2],[-1,2],[-2,2],[-2,2],[-3,0],[-1,0],[-1,2],[1,5],[-1,5],[0,3],[-1,1],[-3,0],[-2,1],[-1,1],[-1,-2],[-5,1],[-2,1],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[-4,-2],[-3,0],[-3,1],[-1,1],[-1,1],[-6,-1],[-1,1],[-1,-2],[-3,-2],[-2,0],[-1,0],[0,1],[-1,4],[0,1],[3,6],[-1,1],[-1,2],[0,2],[-1,2],[-1,0],[-2,-1],[-6,-3],[-1,-1],[-3,-3],[-2,-4]],[[4756,7531],[-2,-1],[-1,2],[0,9],[3,6],[2,4],[-1,1],[-2,0],[0,3],[1,1],[1,3],[-1,1],[-1,3],[0,5],[0,2],[0,3],[-5,-4],[-1,1],[0,4],[2,6],[1,2],[-4,1],[-2,3],[-1,3],[-2,4],[0,3],[2,8],[2,3],[2,1],[4,6],[6,-1],[3,1],[4,3],[1,0],[3,3],[0,3],[-1,3],[1,2],[3,3],[4,4],[4,1],[5,3],[3,-2],[2,1],[3,-3],[4,-6],[5,-2],[5,2],[8,0],[4,-1],[7,2],[4,-1],[6,3],[5,-4],[10,-1],[6,-3],[16,-5],[6,0],[8,2],[3,3],[4,-2],[4,3],[3,-1],[3,-3],[10,-5],[3,4],[2,1],[7,-3],[8,-5],[3,0],[6,1],[5,4],[1,0]],[[5628,8519],[2,-1],[1,0],[2,1],[4,-1],[9,-7],[1,-2],[-5,-1],[-1,-2],[-2,-1],[-1,-1],[-3,-3],[-3,-3],[-1,-2],[-7,1],[-3,-2],[-3,-3],[-1,-6],[-2,-5],[-2,-2],[-3,-1],[0,2],[0,2],[5,7],[1,3],[-3,1],[-1,2],[-5,3],[0,2],[1,1],[2,2],[0,2],[-3,7],[1,1],[3,0],[2,-2],[2,2],[1,0],[2,0],[2,4],[4,1],[2,2],[2,-1]],[[5648,8515],[-2,0],[-6,4],[1,3],[2,1],[5,-2],[0,-4],[0,-2]],[[5636,8531],[-2,-2],[-1,1],[-1,1],[-3,-6],[-3,-2],[-2,2],[0,2],[-2,7],[-3,2],[-4,0],[-3,2],[11,2],[2,3],[2,4],[2,0],[1,-1],[0,-2],[1,-1],[5,-2],[2,-4],[1,-5],[-3,-1]],[[5778,8570],[1,-1],[2,-3],[0,-2],[0,-1],[-2,-1],[-1,-1],[0,-1],[-3,-1],[-1,-1],[-1,-5],[-3,-8],[-3,-7],[-3,-3],[-2,-3],[-1,-3],[0,-3],[3,-18],[0,-3],[-1,-3],[0,-3],[0,-3],[2,-5],[2,-8],[1,-4],[1,-2],[2,-1],[0,-1],[0,-1],[-1,-1],[-6,-2],[0,-2],[-1,-3],[-2,-3],[-1,-3],[-1,-4],[0,-1]],[[5759,8455],[-1,-1],[-3,1],[-5,3],[-2,1],[-1,0],[-3,-1],[-8,-3],[-2,1],[-4,3],[-2,4],[-6,7],[0,2],[-1,1],[-5,2],[-2,2],[-2,1],[-2,1],[-7,6],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,2],[-2,2],[-6,-3],[-2,-1],[-1,0],[-9,-5],[-3,-2],[-1,0]],[[5675,8475],[0,2],[4,12],[1,9],[1,1],[0,2],[0,2],[-4,2],[-2,0],[-1,-3],[-1,-2],[-4,-2],[-3,3],[-6,3],[-2,4],[0,4],[-4,5],[-2,5],[1,3],[3,2],[1,2],[-4,0],[-1,0],[0,2],[-2,6],[2,2],[1,3],[-2,2],[1,2],[1,2],[-1,5],[4,3],[4,2],[8,1],[0,5],[3,0],[6,6],[5,-1],[8,4],[16,0],[2,2],[0,2],[0,3],[3,-1],[5,0],[18,-4],[5,0],[6,-5],[4,-2],[10,0],[15,-2],[3,4],[1,0]],[[6192,5698],[-1,-2],[-1,-3],[-1,-4],[-2,-3],[-3,-10],[0,-1],[1,-2],[1,-5],[2,-7],[1,-7],[0,-3],[2,-4],[3,-7],[2,-5],[3,-3],[1,-7],[2,-9],[3,-8],[2,-6],[3,-2],[1,0],[6,-11],[4,-9],[1,-1],[8,-6],[9,-6],[7,-5],[10,-6],[9,-7],[8,-6],[12,-9],[10,-6],[8,-6],[1,-2],[9,0],[10,0],[9,0]],[[6332,5520],[-7,-14],[-7,-16],[-9,-16],[-5,-11],[-8,-17],[-7,-14],[-7,-16],[-7,-14],[-8,-20],[-5,-12],[-9,-20],[-5,-12],[-1,-1],[-8,1],[-7,1],[-10,1],[-1,0],[-2,-1],[-2,-1],[-7,-4],[-1,-1],[-6,-5],[-6,-6],[-3,-5],[-2,-7],[-1,-5],[-1,-2],[-2,-2],[-12,-5],[-4,0],[-5,-4],[-3,-7],[-1,-3]],[[6163,5282],[-4,0],[-7,-1],[-3,-1],[-2,0],[-3,0],[-2,1],[-1,2],[-2,4],[-4,8],[-3,5],[-7,-6],[-6,-5],[-8,-8],[-5,-6],[-1,-6],[-4,-10],[-3,-7],[-2,-1],[-7,2],[-3,1],[-4,1],[-6,3],[-4,2],[-5,0],[-6,1],[-4,2],[-4,6],[-5,7],[-5,7],[-5,7],[-7,9],[-6,9],[-2,1],[-1,0],[-7,1],[-8,0],[-5,0],[-2,1],[-1,2],[-2,7],[-2,5],[-2,6],[0,9],[0,9],[1,3],[0,3],[0,4],[-2,4],[-7,5],[-2,-1],[-1,-1],[-1,-2],[-1,2],[-1,1],[0,3],[0,2]],[[5979,5372],[0,1],[-3,4],[-2,6],[-1,6],[-2,5],[-1,11],[-1,7],[-2,8],[-2,16],[-1,5],[-2,4],[-3,3],[-2,7],[-5,7],[-3,4],[-3,9],[-1,4],[-1,4],[-1,4],[-2,5],[-6,9],[-2,1],[-3,1],[-3,1],[-5,2],[-4,4],[-2,3],[0,2],[0,3],[2,5],[3,12],[2,9],[1,2],[3,1],[4,0],[3,-1],[4,0],[5,1],[1,3],[2,3],[0,2],[1,6],[0,4],[-1,17],[0,11],[0,12],[0,2]],[[5946,5607],[0,3],[1,13],[1,7],[1,4],[3,12],[0,4],[1,4],[-1,16],[1,8],[3,8],[2,3],[2,2],[1,-1],[2,-3],[2,-4],[2,1],[1,3],[2,3],[0,6],[1,12],[0,7],[1,8],[1,12],[1,8],[1,4],[4,8],[3,12],[2,8],[4,14],[2,5],[2,3],[2,1],[5,1],[3,2],[1,1],[0,3],[0,7],[1,10],[1,11],[2,8],[1,3],[1,4],[1,6],[2,13],[0,8],[2,16]],[[5600,8607],[-2,0],[-2,2],[1,1],[2,1],[1,0],[1,-2],[-1,-2]],[[5606,8609],[-3,-2],[-1,1],[0,3],[2,2],[3,0],[-1,-4]],[[5615,8623],[4,-1],[1,0],[2,-3],[-3,-2],[0,-2],[1,-2],[1,-2],[-3,0],[-2,2],[0,2],[-2,2],[-1,1],[1,2],[0,2],[1,1]],[[5610,8621],[-2,0],[-2,3],[-1,1],[1,0],[0,3],[0,1],[2,-2],[1,-2],[-1,-1],[2,-2],[0,-1]],[[5595,8632],[0,-2],[-2,0],[-2,-1],[-1,3],[-1,5],[0,1],[1,1],[1,-3],[4,-4]],[[5589,8793],[0,-1],[2,0],[2,2],[1,-1],[0,-3],[-1,1],[-1,-2],[-1,-1],[-1,0],[-3,3],[-2,4],[4,0],[0,-1],[0,-1]],[[5690,8897],[-4,-2],[-4,1],[0,4],[2,2],[4,0],[5,-2],[1,-1],[-3,0],[-1,-2]],[[5804,9135],[-2,0],[-6,-3],[-3,-2],[-4,-2],[1,-1],[7,-1],[1,0],[1,-1],[0,-2],[-1,-2],[-7,-14],[-1,-3],[3,-8],[3,-10],[11,-4],[8,-3],[5,-8],[8,-11],[4,-4],[0,-1],[-1,-7],[-5,-7],[-5,-6],[-5,-7],[-4,-7],[-5,-7],[0,-2],[0,-3],[1,-2],[5,-9],[2,-5],[3,-5],[2,-6],[1,-4],[3,-5],[1,-3],[2,-3],[3,-5],[1,-4],[4,-14],[1,-4],[-1,-2],[-1,-1],[-5,-1],[-4,-1],[0,-1],[3,-3],[-3,-6],[0,-8],[-3,-4],[0,-1],[0,-1],[0,-1],[5,-1],[1,-1],[0,-2],[-1,-2],[-2,-2],[-3,-2],[0,-3],[0,-2],[1,-3],[1,-4],[3,-2],[8,-3],[1,-2],[0,-2],[0,-3],[-4,-5],[0,-2],[2,-5],[2,-4],[8,-5],[2,-3],[1,-2],[0,-4],[0,-3],[0,-4],[-3,-4],[-5,-9],[-6,-3],[0,-1],[1,-2],[10,-11],[7,-6],[9,-6],[6,-6],[1,-4],[3,-4],[3,-4],[2,-3],[0,-2],[0,-2],[-2,-7],[-2,-5],[-3,-7],[-2,-5],[-7,-9],[-11,-12],[-2,-3],[-5,-7],[-8,-12],[-2,-3],[-7,-9],[-3,-4],[-2,-2],[-7,-10],[-7,-7],[-7,-6],[-2,-4],[-3,-2],[-3,-3],[-1,-1],[-8,-9],[-9,-12]],[[5772,8633],[-1,0],[-3,-2],[-4,-1],[-2,-1],[-6,4],[-1,0],[-3,-1],[-4,-3],[-6,-1],[-3,-1],[-2,-2],[-1,4],[1,4],[1,3],[0,2],[-1,0],[-2,-4],[-1,-5],[-2,-3],[-5,-1],[-4,4],[-3,0],[2,-3],[1,-3],[0,-2],[-3,1],[-3,-2],[-2,-3],[-1,0],[-2,4],[-3,-2],[-2,-3],[-6,0],[-3,-4],[-5,-2],[-3,0],[-7,-2],[-3,-4],[-2,-2],[-2,1],[-9,-1],[-9,-3],[-3,0],[-4,1],[-4,-3],[-4,-5],[-4,-2],[-2,1],[2,2],[3,3],[2,3],[0,3],[-2,1],[-1,1],[-3,3],[-2,6],[-1,1],[-1,-2],[-1,-5],[0,-1],[-2,-2],[-1,-1],[-2,0],[-5,0],[0,2],[0,1],[1,4],[-1,0],[1,3],[1,0],[1,0],[1,2],[0,1],[-2,1],[0,1],[2,4],[0,2],[-1,0],[-1,-1],[-7,2],[-9,6],[-2,0],[-2,5],[-2,0],[-3,-4],[-3,3],[-2,1],[-1,3],[0,3],[0,4],[-1,5],[0,7],[0,6],[2,4],[1,2],[1,7],[0,8],[0,2],[0,2],[1,0],[0,1],[-1,1],[0,2],[0,1],[2,0],[1,1],[-2,5],[0,2],[-2,6],[-3,6],[-3,5],[1,7],[2,7],[-1,3],[0,4],[-5,4],[0,6],[-1,6],[0,4],[1,3],[1,3],[7,10],[1,5],[5,0],[-2,4],[-1,3],[0,3],[7,2],[3,-2],[6,2],[5,4],[0,2],[-1,2],[-1,4],[1,1],[2,-1],[-1,2],[0,2],[3,-1],[3,5],[0,4],[7,2],[7,8],[3,3],[3,2],[7,8],[3,0],[1,6],[6,7],[2,1],[3,7],[7,7],[4,10],[3,4],[1,3],[2,1],[3,2],[5,2],[6,0],[2,-1],[2,0],[0,3],[-2,2],[1,2],[3,2],[0,3],[-1,2],[-2,3],[1,6],[0,6],[2,8],[-3,4],[-12,6],[-2,0],[-2,1],[-3,5],[1,4],[1,2],[-1,0],[-2,-2],[-4,-3],[-4,2],[-3,0]],[[5670,8945],[-3,11],[-1,4],[-2,5],[-5,3],[-1,1],[0,2],[0,3],[-1,5],[0,4],[1,2],[2,1],[2,5],[1,3],[0,4],[1,4],[2,2],[-1,2],[-1,2],[-2,4],[-3,4],[-2,4],[-1,3],[0,4],[0,3],[1,2],[2,2],[1,1],[-1,6],[-2,1],[-4,0],[-2,0],[0,1],[0,1],[0,2],[1,3],[1,2],[0,1],[-1,5],[0,6],[0,5],[4,3],[0,1],[-5,4],[-3,4],[-1,3],[-4,0],[-2,7],[-3,4],[-4,3],[-2,1],[-11,4],[-5,1],[-6,3],[-4,3],[-3,2],[-3,2],[-4,3],[-1,2],[-5,4],[-2,2],[-7,5],[-1,1],[0,2],[0,1],[-8,3]],[[5572,9136],[2,2],[6,0],[5,-1],[1,0],[0,2],[-2,6],[1,2],[2,2],[3,1],[6,1],[3,-1],[1,0],[6,-7],[4,-6],[3,-3],[6,-8],[2,-5],[1,-3],[2,0],[9,-2],[7,-1],[2,-2],[5,0],[4,2],[7,2],[2,3],[2,3],[4,-1],[4,-2],[5,-3],[5,-1],[6,-2],[2,-3],[4,-1],[4,3],[3,7],[2,4],[3,2],[3,1],[3,0],[2,2],[3,5],[0,5],[0,9],[0,3],[2,5],[4,13],[1,4],[2,2],[2,1],[4,4],[6,8],[2,1],[4,0],[6,0],[4,-1],[1,0],[2,1],[4,2],[7,5],[4,1],[4,0],[5,-5],[6,-6],[4,-3],[10,-6],[10,-3],[5,-12],[-2,-5],[-2,-1],[-4,-5],[-5,-6],[-1,-4],[2,-3],[2,-3]],[[9850,3761],[-1,0],[0,1],[0,1],[1,0],[0,-2]],[[36,3822],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[41,3911],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[9957,3923],[0,-3],[-4,-2],[-1,3],[-1,0],[-2,-4],[0,-1],[0,-1],[-1,-1],[-4,-2],[-2,2],[1,1],[2,3],[1,-1],[2,2],[1,4],[2,1],[2,1],[2,-1],[2,-1]],[[6,3925],[0,-2],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,2],[1,-1]],[[34,3967],[0,-2],[-1,2],[-1,1],[2,1],[0,-2]],[[9981,3974],[-3,5],[0,1],[1,2],[1,2],[1,-3],[0,-4],[0,-3]],[[28,3982],[-1,-1],[-1,1],[0,2],[0,1],[2,-2],[0,-1]],[[49,3983],[-2,0],[-1,2],[1,3],[1,-1],[0,-2],[1,-2]],[[9966,3996],[-1,-1],[-1,4],[1,4],[2,0],[0,-4],[-1,-3]],[[9951,4018],[0,-3],[1,-1],[1,0],[2,-5],[3,-5],[2,-3],[0,-3],[-1,-3],[1,-5],[1,-6],[1,-8],[-2,-2],[-3,0],[-1,-2],[-1,1],[-2,-1],[-3,-3],[-2,-3],[-3,0],[-3,-1],[-3,0],[-2,2],[-4,3],[-5,2],[-2,1],[-1,3],[-2,6],[0,3],[0,3],[1,1],[2,2],[0,2],[0,1],[1,1],[0,1],[0,3],[0,3],[3,6],[3,4],[5,5],[4,-1],[5,4],[2,1],[1,-1],[1,-2]],[[9983,4018],[-1,-2],[0,8],[1,0],[1,-3],[-1,-3]],[[29,4023],[-1,-2],[0,1],[0,4],[1,1],[-2,2],[0,1],[1,1],[1,-2],[1,-2],[0,-1],[0,-1],[-1,-2]],[[9922,4031],[-1,-1],[1,5],[0,1],[1,0],[1,1],[-1,-4],[-1,-2]],[[9999,4042],[-2,-2],[-1,2],[1,5],[2,5],[0,-4],[0,-6]],[[1,4044],[-1,-2],[0,3],[0,3],[0,2],[0,2],[3,5],[1,1],[1,-4],[-1,-6],[-3,-4]],[[2,4069],[-2,-2],[0,3],[2,3],[1,0],[-1,-3],[0,-1]],[[9999,4089],[-4,-8],[-2,-4],[-1,-5],[-4,-4],[-1,-7],[0,-6],[4,6],[4,6],[1,1],[1,0],[0,-2],[-1,-2],[0,-5],[1,-4],[-3,0],[-3,0],[-3,-3],[-4,-1],[-1,0],[-1,1],[-1,1],[-1,3],[0,1],[-3,0],[-4,-6],[-2,-5],[-1,-1],[-2,1],[-2,-4],[-3,-1],[-1,3],[-1,4],[-1,3],[-3,1],[1,4],[1,1],[0,3],[1,2],[1,-2],[2,-1],[1,2],[2,0],[1,6],[3,3],[4,3],[3,2],[2,0],[2,1],[3,5],[3,3],[2,2],[2,1],[2,-1],[2,0],[4,4],[0,-1]],[[1,4090],[-1,-1],[0,1],[1,1],[1,0],[-1,-1]],[[9919,4306],[-1,-1],[-2,1],[0,1],[2,1],[1,-1],[0,-1]],[[3342,1953],[-2,-2],[0,1],[-1,2],[0,3],[0,1],[1,0],[2,-2],[0,-3]],[[3376,1966],[1,-6],[-3,2],[0,3],[1,1],[1,0]],[[3305,1979],[2,-1],[2,0],[-1,-6],[-1,-3],[-3,1],[-2,4],[-1,2],[3,1],[1,2]],[[3325,1998],[4,-1],[4,4],[2,2],[2,-1],[2,-3],[2,0],[6,3],[1,-1],[2,3],[2,-1],[1,-3],[0,-3],[-2,-2],[-1,-2],[-1,-3],[-3,-2],[-1,-3],[-4,-7],[-6,-10],[-2,-1],[-4,0],[-1,0],[-2,0],[-1,-5],[-2,-4],[-1,-1],[-2,0],[0,-1],[-1,-1],[-5,0],[-4,3],[-4,5],[6,6],[5,0],[4,5],[3,2],[1,2],[1,2],[0,2],[-1,1],[-1,0],[-2,-1],[-3,-1],[-2,2],[1,1],[2,0],[5,3],[1,1],[-1,3],[-4,2],[-2,4],[-1,1],[1,2],[-2,4],[2,1],[2,-3],[4,-4]],[[3330,2002],[-4,0],[-1,2],[0,5],[3,0],[3,-2],[0,-2],[-1,-3]],[[3365,2010],[4,-4],[5,1],[3,-1],[1,-3],[-1,-2],[-1,0],[-2,-1],[0,-3],[1,-2],[6,-4],[1,0],[0,2],[-1,3],[0,2],[0,3],[2,1],[6,1],[2,-1],[3,-7],[-3,-1],[-1,-3],[2,-1],[2,-2],[-1,-3],[0,-2],[-5,-2],[-4,-1],[-1,-3],[-4,-3],[-9,-4],[1,-3],[0,-2],[-1,-5],[-13,6],[-2,-1],[4,-9],[-3,-2],[-2,1],[-3,0],[-1,-7],[-4,4],[-3,6],[0,4],[3,6],[-1,3],[7,8],[2,3],[2,1],[2,1],[1,1],[0,2],[-1,4],[0,5],[6,8],[-1,5],[2,1]],[[6549,3783],[-4,-2],[-2,0],[-6,5],[-1,4],[-2,9],[0,4],[2,5],[4,3],[4,-1],[2,-2],[2,-7],[2,-7],[0,-8],[-1,-3]],[[6254,4278],[-1,-1],[-1,2],[-1,4],[1,3],[0,3],[-1,5],[1,3],[1,-3],[1,0],[2,-3],[-1,-4],[0,-1],[-1,-5],[0,-3]],[[3483,5185],[1,0],[1,0],[1,5],[2,2],[5,15],[1,7],[0,3],[1,7],[-1,9],[0,2],[4,10],[1,6],[0,5],[1,3],[-1,2],[0,1],[-2,4],[0,4],[-3,4],[-1,4],[-3,9],[0,5],[-1,2],[0,2],[0,2],[-1,6],[-1,5],[0,3],[1,6],[-1,7],[0,3],[-1,5],[1,5],[0,2],[0,4],[3,10],[3,6],[2,4]],[[3495,5364],[2,3],[3,16],[2,5],[2,1],[11,-13],[5,-1],[10,-7],[4,-9],[9,-15],[4,-5],[0,-3],[-1,-7],[3,6],[5,-9],[1,-4],[1,-8],[0,-5],[-1,-2],[0,-3],[1,3],[1,2],[0,6],[2,6],[1,0],[1,-4],[3,-16],[0,-4],[1,-5],[0,-3],[0,-2]],[[3310,5905],[0,-3],[-1,-1],[-1,3],[-5,0],[0,2],[0,1],[2,5],[-3,1],[-1,2],[-2,9],[0,2],[1,2],[2,0],[2,-3],[3,-4],[0,-1],[0,-3],[1,-3],[1,-2],[1,-7]],[[3299,5988],[-2,0],[-1,4],[2,2],[0,1],[1,-3],[1,-2],[-1,-2]],[[3289,5995],[-2,-3],[-2,1],[-1,5],[-1,14],[1,3],[0,1],[3,-2],[2,-2],[1,-1],[-1,-3],[1,-11],[-1,-2]],[[3296,6008],[-3,-1],[-2,1],[-1,4],[1,4],[0,4],[0,3],[1,2],[2,-3],[0,-3],[1,-3],[5,-6],[-4,-2]],[[5263,7582],[-1,-8],[1,-3],[1,-2],[0,-2],[1,-23],[0,-2],[-4,-9],[0,-3],[-1,-11],[0,-3],[-1,-3],[-2,-10],[-2,-5],[-5,6],[-3,2],[-2,3],[-1,1],[1,3],[1,2],[0,2],[-3,2],[-1,2],[0,2],[1,4],[-1,3],[-2,0],[-1,1],[0,1],[1,2],[1,3],[0,3],[-1,2],[-2,2],[-1,4],[2,2],[1,2],[-1,3],[-1,0],[-1,1],[1,2],[1,2],[3,7],[2,4],[5,2],[2,1],[1,2],[1,2],[2,0],[2,-1],[0,-1],[1,1],[1,3],[-1,3],[1,8],[1,4],[1,0],[1,-2],[0,-2],[1,-5],[0,-4]],[[4967,7766],[-1,-5],[-2,5],[-3,4],[0,4],[0,1],[3,-3],[3,-6]],[[5160,7981],[1,-2],[2,-1],[1,0],[1,-2],[1,0],[2,0],[1,2],[2,1],[2,0],[1,-1],[2,-2]],[[5195,7767],[-3,-3],[-4,-3],[0,-2],[0,-3],[1,-2],[2,-2],[2,-5],[1,-5],[3,-4],[1,-2],[0,-1],[-1,-2],[-1,-6],[-1,-1],[-2,-1],[-3,-5],[-2,1],[-3,0],[-1,-2],[0,-3],[1,-2],[1,-3],[1,-3],[1,-3],[3,-1],[1,0],[1,-1],[1,-1],[1,-6],[-1,-2],[-1,-1],[-1,-2],[-2,-4],[0,-4],[1,-2],[0,-2],[-1,-3],[1,-3],[2,-3],[5,-5],[5,-4],[1,0],[7,2],[1,0],[0,-3],[1,-2],[-1,-3],[-2,-4],[-2,-3],[-1,-3],[1,-2],[0,-4]],[[5208,7639],[-2,-1]],[[5206,7638],[0,1],[-1,1],[0,-1],[-1,0],[0,-2]],[[5204,7637],[-3,-2],[-2,-2],[-9,-13],[-4,-4],[-1,-2],[-1,-5],[-2,-3],[-2,-2],[-5,-2],[-6,-4],[-2,2],[-6,0],[-4,4],[-7,3],[-3,7],[-3,1],[-2,0],[-2,1],[0,2],[0,2],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[1,-2],[-3,0],[-2,1],[-6,3],[-1,1],[-4,1],[-2,2],[-1,3],[-1,1],[-1,1],[-4,-2],[-1,-2],[-2,-4],[-15,-16],[-3,-6],[-3,-10],[0,-5],[1,-14],[3,-8],[1,-2]],[[4950,7618],[4,2],[4,7],[4,27],[3,32],[2,6],[3,2],[-3,4],[-1,-2],[0,-2],[-1,-1],[1,29],[2,11],[1,11],[4,-5],[4,-4],[1,-4],[2,-13],[2,-3],[2,-3],[-1,3],[-1,3],[-3,17],[-1,5],[-3,4],[-8,9],[-1,2],[0,3],[3,0],[2,-2],[0,2],[-1,2],[-1,7],[-1,17],[0,3],[0,3],[-3,1],[-2,0],[-2,1],[-11,10],[-4,10],[-4,8],[-1,3],[0,3],[2,7],[-1,5],[-2,0],[-2,3],[2,3],[1,2],[2,1],[3,-1],[3,-2],[2,0],[-6,5],[-11,-2],[-2,1],[-2,1],[-1,4],[2,2],[1,4],[-1,2],[-2,1],[-4,0],[-2,-1],[-1,2],[2,4],[-2,1],[-2,-1],[-3,-1],[-3,2],[-2,4],[-2,0],[-1,-1],[-2,2],[-2,1],[-1,-1],[-2,3],[-11,5],[-5,0],[-4,-2],[-2,1],[-2,3],[-1,5],[-7,4],[1,3],[3,1],[4,2],[1,2],[-3,3],[-2,1],[-1,1],[-1,2],[2,1],[1,0],[2,-1],[5,1],[-2,3],[-2,0],[-1,1],[-3,0],[-2,-1],[-4,1],[0,2],[-1,3],[1,5],[6,5],[13,5],[5,-1],[4,1],[5,3],[2,3],[7,2],[6,-3],[6,-11],[3,-4],[7,7],[10,-1],[2,-3],[1,3],[2,3],[1,-1],[1,-3],[11,1],[1,1],[-3,2],[-2,7],[0,23],[-3,7],[-4,10],[-1,7],[-1,2],[1,3],[4,0],[3,-1],[7,2],[3,-1],[-1,-5],[1,-6],[1,-3],[2,-4],[5,1],[5,-2],[7,-1],[10,-3],[4,2],[4,4],[8,3],[1,1],[-5,0],[-4,2],[0,3],[0,3],[2,6],[12,9],[8,3],[9,6],[5,5],[3,7],[1,1],[1,2],[-1,2],[0,26],[1,5],[2,4],[3,3],[4,3],[14,5],[3,2]],[[4813,8687],[1,-2],[-1,0],[-2,2],[-3,5],[-1,4],[0,2],[1,0],[0,-2],[3,-1],[1,-1],[0,-2],[1,-2],[0,-3]],[[4816,8708],[-1,-2],[-1,0],[-2,3],[-2,1],[-1,1],[-1,2],[1,1],[2,-1],[3,-2],[1,-2],[1,-1]],[[4800,8728],[2,-3],[1,-1],[-1,-2],[-2,0],[-2,0],[-3,2],[-2,4],[3,0],[3,0],[1,0]],[[4815,8733],[0,-8],[-1,0],[-3,2],[-1,1],[0,-1],[0,-2],[0,-1],[3,-5],[0,-2],[-3,1],[-5,7],[-5,11],[6,2],[5,-3],[4,-2]],[[4822,8735],[-2,-4],[-2,0],[0,1],[-1,1],[1,3],[-1,5],[3,-4],[2,-2]],[[9526,5362],[1,-3],[-2,2],[0,1],[1,1],[0,-1]],[[9397,5450],[-2,-1],[-2,1],[-1,4],[-1,2],[1,2],[1,2],[3,-2],[1,-3],[0,-2],[0,-3]],[[9212,5482],[-1,-1],[-1,0],[-1,1],[1,1],[0,1],[1,0],[1,-1],[0,-1]],[[9218,5487],[-1,0],[0,1],[1,1],[1,0],[0,-1],[-1,-1]],[[8836,5609],[-2,-4],[0,1],[1,3],[1,3],[1,2],[1,1],[0,-3],[0,-2],[-2,-1]],[[5309,4815],[-3,5],[-2,10],[-3,6],[-6,9],[-1,7],[-7,16],[-10,16],[-6,13],[-1,3],[1,0],[6,-7],[1,1],[1,2],[-3,3],[-3,3],[-2,2],[-3,0],[-1,2],[-1,5],[-1,4],[-1,3],[-3,9],[-1,3],[-2,4],[1,0],[4,-4],[0,2],[0,2],[-4,4],[-2,1],[-1,2],[1,3],[-3,12],[-3,9],[-1,4],[8,-19],[1,0],[2,0],[3,2],[-1,3],[-1,2],[-1,-1],[-2,0],[-1,1],[-1,2],[2,9],[-1,0],[0,-2],[-1,-1],[-2,0],[-4,5],[-3,13],[-1,3],[-1,5],[-1,2],[-4,19],[2,-2],[2,-5],[3,1],[1,3],[2,0],[1,1],[1,3],[5,13],[1,17],[0,11],[-1,10],[1,3],[1,-2],[0,-4],[1,-2],[1,-3],[3,-1],[5,-3],[2,-3],[0,5],[5,4],[-1,2],[-5,-2],[-6,6],[-2,4],[-2,8],[-3,3],[1,4],[4,3],[1,0],[1,-4],[1,-2],[1,1],[0,3],[0,9],[-2,12],[1,3]],[[5266,5108],[1,1],[1,1],[1,1],[2,-1],[0,-3],[1,-1],[1,-1],[2,-1],[1,0],[1,2],[1,0],[4,0],[4,0],[8,0],[7,0],[8,0],[5,0],[0,7],[0,11],[0,13],[0,13],[0,11],[0,14]],[[4970,8049],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[-2,0],[-6,5],[-1,0],[1,2],[4,2],[2,2],[5,-2],[2,-3]],[[4883,8205],[1,-1],[3,0],[-1,-2],[-3,-3],[-2,-2],[-3,-3],[-1,3],[-2,0],[-2,5],[0,7],[3,2],[4,0],[3,-6]],[[4827,8251],[-3,0],[-1,-1],[-1,-1],[-1,0],[-3,0],[-3,0],[-1,2],[1,4],[-1,2],[-2,0],[-1,1],[-2,3],[0,2],[-1,2],[-1,3],[-2,2],[-1,0],[-3,-3],[-2,-4],[1,-1],[1,-2],[-1,-2],[-3,-3],[-1,-2],[-1,0],[-1,1],[-4,-1],[-2,1],[-2,3],[-5,1],[0,4],[-1,1],[-6,7],[-1,2],[1,2],[2,2],[7,3],[1,2],[0,1],[-2,1],[-2,2],[0,1],[0,1],[1,1],[2,0],[2,0],[1,1],[2,1],[2,1],[1,3],[2,4],[0,1],[1,6],[1,1],[4,4]],[[4799,8310],[1,-2],[2,0],[2,2],[3,6],[1,0],[2,-1],[3,1],[7,3],[2,0],[4,-1],[3,0],[3,-5],[1,-6],[3,-7],[5,-6],[0,-4],[-2,-2],[-3,-2],[0,-2],[2,1],[2,0],[4,0],[2,-3],[1,-4],[1,-3],[-1,-3],[-1,1],[-1,3],[-1,1],[-2,1],[1,-4],[-1,-6],[1,0],[2,0],[-1,-6],[-3,-2],[-3,0],[-1,-3],[-1,-2],[-1,-4],[-3,-2],[-2,0],[-3,2]],[[4858,8331],[-4,0],[-1,1],[-2,1],[-1,8],[0,3],[1,2],[1,1],[2,0],[1,-1],[1,-2],[2,-5],[0,-5],[0,-3]],[[4829,8360],[1,-8],[1,-4],[0,-2],[-1,-2],[-4,-3],[-2,0],[1,4],[-1,3],[1,3],[-1,0],[-4,-4],[-1,-1],[0,1],[1,3],[0,3],[0,1],[1,1],[1,1],[1,1],[1,-1],[3,2],[2,2]],[[4834,8353],[-1,-1],[-1,1],[-1,1],[0,1],[0,3],[1,2],[3,3],[-1,1],[1,3],[3,3],[1,1],[1,0],[-2,-7],[-4,-11]],[[4839,8384],[-11,-3],[-4,0],[0,2],[1,1],[3,1],[1,8],[-5,4],[0,1],[0,2],[1,0],[3,2],[1,1],[1,-1],[2,-2],[2,-4],[3,-1],[2,-2],[0,-9]],[[4816,8399],[-2,-1],[0,1],[3,4],[2,1],[0,-1],[-1,-2],[-2,-2]],[[4793,8421],[-2,-1],[-1,1],[0,1],[1,2],[1,0],[2,-1],[0,-1],[-1,-1]],[[4825,8421],[-1,-1],[-1,1],[-1,1],[-1,2],[3,2],[1,-1],[1,-1],[0,-2],[-1,-1]],[[4798,8430],[-1,0],[-2,0],[-1,1],[0,4],[-1,2],[1,4],[0,5],[3,0],[1,-1],[0,-14],[0,-1]],[[4829,8453],[0,-2],[-1,-4],[1,-3],[0,-2],[1,-1],[1,-1],[5,-1],[5,0],[1,-1],[0,-1],[-1,-2],[-2,-3],[-4,-5],[-1,-1],[-1,0],[-1,0],[0,9],[-4,-1],[-3,0],[-1,1],[-1,2],[-2,6],[-7,2],[-2,3],[0,1],[0,1],[1,3],[2,-1],[1,0],[1,1],[0,1],[-1,2],[0,1],[6,2],[1,4],[1,0],[2,-1],[2,-4],[1,-5]],[[4799,8464],[3,-4],[-2,-5],[-4,0],[-5,4],[0,1],[0,1],[1,1],[1,0],[1,-1],[2,2],[2,-1],[1,2]],[[4827,8504],[-3,-10],[-2,-1],[-1,-2],[-4,-3],[4,0],[1,-1],[0,-2],[-1,-1],[-4,-5],[-3,-2],[-3,-5],[-2,0],[-1,-3],[-2,-1],[-1,0],[-2,3],[3,4],[1,1],[2,2],[0,1],[-4,2],[-2,2],[1,1],[1,2],[-1,1],[-1,0],[0,1],[-1,3],[1,2],[1,1],[0,2],[1,0],[1,-1],[2,-2],[2,1],[3,0],[-2,5],[0,1],[1,2],[6,3],[7,6],[1,1],[1,-1],[0,-3],[0,-4]],[[4913,8513],[0,-5],[0,-1],[-1,-2],[-2,-3],[-5,-5],[-10,-11],[-6,-6],[-1,-3],[-1,-3],[4,-1],[1,-1],[0,-2],[-6,-7],[-1,-6],[4,1],[3,1],[7,4],[6,2],[3,0],[6,-2],[1,0],[3,1],[2,0],[17,0],[5,1],[3,-2],[3,-3],[2,-7],[0,-2],[-1,-3],[-3,-4],[-3,-5],[0,-3],[-1,-4],[-1,-3],[-4,-14],[-5,-8],[-2,-5],[-3,-5],[-2,-2],[-3,-2],[-7,-2],[-2,-2],[-3,-2],[-2,-1],[3,0],[3,1],[5,1],[7,-5],[-1,-4],[-2,-3],[-6,0],[-6,-7],[-2,-2],[-3,-1],[-3,0],[-6,2],[-3,2],[3,-3],[2,-2],[16,-4],[1,1],[5,4],[6,0],[13,-8],[3,-5],[6,-8],[2,-4],[3,-2],[1,-5],[2,-14],[3,-14],[4,-15],[1,-4],[2,-3],[11,-6],[3,-3],[4,-6],[4,-7],[4,-5],[4,-4],[-2,-3],[-1,-3],[1,-5],[1,-4],[4,-8],[3,-8],[-1,2],[-1,0],[-2,0],[-2,0],[-2,3],[-3,3],[-5,-1],[-3,0],[-3,0],[5,-2],[5,0],[12,-13],[4,-8],[2,-10],[-1,-5],[-3,-3],[-2,-3],[-2,-4],[6,-6],[2,0],[1,1],[1,2],[3,5],[1,1],[4,1],[3,0],[4,-1],[3,0],[6,-2],[3,-2],[8,-8],[1,-5],[1,-6],[0,-6],[-1,-6],[-2,-5],[-1,-7],[0,-3],[-1,-2],[-4,-5],[-3,-2],[-1,1],[-1,-1],[0,-1],[1,-3],[0,-3],[-2,-3],[-3,-1],[-4,2],[-6,-5],[4,-2],[1,-3],[-1,-4],[-2,-2],[-3,-1],[-3,0],[-2,-1],[-3,-3],[3,2],[2,-1],[1,-4],[2,-1],[5,-2],[4,0],[6,1],[4,0],[1,-1],[0,-3],[-1,-7],[-1,-2],[-8,-6],[-2,-5],[-1,-3],[-5,1],[-2,-3],[-5,-2],[-3,-2],[-3,-2],[-3,-1],[-11,3],[-7,0],[-9,-3],[-3,0],[-3,3],[-4,2],[-4,0],[-4,3],[2,-5],[-5,-4],[-2,-1],[-2,0],[-5,-1],[-5,1],[1,-4],[1,-2],[-1,-1],[-1,-1],[-9,2],[-1,0],[-1,-2],[-3,1],[-3,3],[-4,2],[-3,1],[-3,0],[-11,-5],[-2,-5],[-1,-7],[-2,-6],[-3,-5],[-3,-1],[-3,4],[-5,3],[-2,3],[-1,0],[-1,-1],[-2,-1],[-2,0],[-4,-1],[-6,-3],[-2,-2],[-6,-6],[-1,-1],[-2,-6],[-3,-1],[-2,4],[-3,1],[-4,-1],[-2,-2],[-1,1],[0,3],[3,4],[6,3],[6,8],[2,4],[2,3],[1,2],[2,0],[0,3],[8,12],[1,2],[0,5],[1,5],[6,2],[3,10],[1,1],[9,2],[6,-1],[7,-1],[3,-1],[3,1],[3,3],[4,9],[3,4],[3,4],[3,4],[4,8],[-3,-3],[-4,-4],[-2,-3],[-6,-2],[-3,-3],[-5,-6],[-1,0],[-7,1],[-6,8],[-4,3],[-1,0],[-2,-1],[-3,-1],[-3,1],[2,3],[2,2],[-5,1],[-2,1],[-1,3],[-4,0],[-2,0],[-4,-4],[-5,-3],[-6,5],[-1,2],[0,4],[-1,3],[-2,1],[3,4],[2,3],[6,3],[9,6],[5,3],[4,5],[2,2],[2,4],[1,5],[2,4],[-2,1],[-1,3],[0,3],[1,3],[0,3],[-2,4],[0,2],[1,3],[-4,0],[-4,-1],[-3,-2],[-3,-3],[-3,0],[0,2],[2,3],[3,4],[3,3],[1,3],[1,3],[2,2],[4,4],[9,5],[1,1],[3,-1],[3,1],[3,2],[3,0],[6,-5],[-1,8],[2,2],[4,-8],[2,0],[3,1],[-1,1],[-2,0],[-1,1],[-2,2],[-3,8],[1,4],[1,5],[2,4],[-1,1],[-2,1],[0,4],[0,4],[4,3],[1,5],[0,6],[0,2],[-4,0],[-1,-1],[-2,-2],[-1,0],[-5,6],[-2,5],[-5,9],[0,6],[3,12],[6,8],[6,3],[-1,1],[-10,0],[-3,-1],[-3,-4],[-2,-1],[-2,0],[-1,-2],[-2,-2],[-1,-1],[-4,0],[-1,0],[-1,1],[-1,2],[-2,1],[-1,-1],[-3,-3],[-3,-2],[-4,2],[-4,4],[-1,-2],[-1,-3],[-1,-5],[-3,5],[-3,5],[-1,4],[0,4],[1,2],[2,-2],[3,10],[5,12],[1,4],[2,4],[-1,4],[-1,2],[-4,6],[0,5],[0,6],[1,3],[1,0],[6,0],[-2,2],[-5,5],[0,2],[1,4],[-1,-2],[-2,-5],[-2,-1],[-3,-2],[-1,-2],[0,-1],[-2,0],[0,-3],[-1,0],[0,3],[0,4],[0,4],[2,3],[5,7],[-3,-2],[-5,-7],[-3,-4],[-1,-1],[0,-1],[0,-2],[1,-7],[0,-4],[-5,-22],[-1,-2],[-1,-2],[-3,1],[-1,1],[0,2],[1,3],[2,11],[1,3],[1,2],[3,5],[0,1],[-2,-1],[-1,0],[-1,1],[1,14],[1,5],[1,7],[1,6],[2,4],[1,6],[1,2],[1,4],[2,4],[1,4],[-10,-11],[-2,-2],[-4,0],[-2,1],[-2,3],[-1,5],[-3,0],[-2,1],[0,1],[3,2],[4,1],[4,5],[-3,3],[3,3],[4,8],[1,8],[-2,4],[-1,2],[-3,3],[-1,3],[0,2],[2,2],[1,1],[3,2],[-2,1],[-1,2],[-1,2],[0,2],[1,6],[1,3],[2,3],[7,0],[1,2],[1,0],[3,-2],[0,2],[-6,8],[-1,2],[2,4],[0,2],[0,2],[0,2],[2,0],[6,0],[1,1],[0,2],[-2,3],[0,2],[0,2],[1,4],[0,2],[1,3],[1,1],[2,0],[3,-1],[1,-1],[2,-2],[1,0],[4,3],[1,0],[1,-3],[7,3],[9,1],[6,1],[6,1],[5,2],[6,-1],[0,-1],[0,-2],[-2,-4]],[[4918,8526],[-1,1],[-2,4],[3,1],[1,0],[0,-2],[-1,-4]],[[4912,8530],[-2,-1],[-2,0],[-2,3],[-1,3],[0,1],[1,1],[3,-1],[1,-3],[0,-2],[2,-1]],[[4915,8544],[-1,-2],[2,0],[3,-1],[2,0],[2,-2],[-1,-3],[-1,-1],[-1,0],[-4,3],[-4,-1],[-1,0],[-1,1],[0,1],[0,2],[-1,1],[-1,-2],[-1,0],[0,1],[-1,2],[1,3],[1,4],[1,0],[3,0],[3,-2],[1,-2],[0,-1],[-1,-1]],[[4929,8555],[-3,0],[1,4],[2,1],[4,-1],[-1,-1],[-3,-3]],[[4924,8553],[-3,-2],[-1,2],[0,3],[-3,2],[-1,1],[-1,2],[0,1],[2,0],[3,-3],[1,-3],[3,-1],[0,-2]],[[4963,8633],[1,-4],[1,1],[2,-4],[1,0],[2,1],[0,-3],[-2,-11],[-1,-2],[0,-3],[-1,-7],[-1,-2],[-1,-5],[-1,0],[-1,2],[1,7],[1,5],[0,2],[-1,2],[-3,0],[-2,-1],[0,1],[0,2],[-1,1],[-2,0],[-1,0],[-1,2],[0,1],[3,1],[2,-1],[3,3],[-2,8],[-3,1],[0,2],[2,0],[2,4],[2,1],[1,0],[0,-4]],[[4971,8631],[-1,0],[-3,6],[2,7],[3,-1],[0,-1],[0,-2],[-2,0],[0,-1],[1,-3],[0,-4],[0,-1]],[[4978,8649],[0,-1],[-1,-5],[0,-1],[-3,0],[-1,3],[1,3],[0,1],[1,0],[2,1],[1,-1]],[[6206,7482],[0,1],[0,2],[-1,1],[-1,1],[-2,-1],[-2,1],[-2,2],[0,2],[1,2],[-1,1],[-3,2],[-4,7],[-2,2],[-1,4],[-1,1],[-2,0],[-2,0],[-1,-1],[-2,-6],[-1,-1],[-3,0],[-2,2],[-2,0],[-4,1],[-4,0],[-3,-4],[-1,1],[-2,1],[-4,2],[-2,1]],[[6152,7506],[6,11],[1,7],[0,4],[0,5],[-2,10],[-3,15],[-2,16],[-2,4],[-8,6],[-2,6],[-6,8],[-9,3],[-2,2],[-7,9],[-6,7]],[[6110,7619],[1,4],[2,4],[2,1],[5,-2],[5,-2],[3,2],[5,-4],[4,-3],[4,-3],[7,-2],[3,-4],[3,-3],[13,-2],[1,1],[1,0],[5,1],[4,0],[4,-4],[2,0],[3,1],[4,-2],[3,-3],[0,-2],[2,-4],[7,-5],[6,-3],[2,-2],[5,-4],[0,-1],[0,-2],[-1,-2],[-1,-3],[1,-1],[2,-1],[3,-1],[2,2],[2,1],[3,2],[4,3],[5,3],[2,0],[1,-1],[2,-1],[2,-6],[2,8],[1,1],[2,-2],[3,-2],[3,-1],[1,-2],[4,-7],[6,0],[3,-1],[1,-1],[1,-1],[-2,-7],[-1,-7],[0,-2],[3,-3],[3,-3],[2,-2],[1,-2],[2,-2],[4,-1],[1,0],[2,-2],[4,-3],[0,-1]],[[4930,7979],[-1,-4],[-3,1],[0,1],[3,2],[1,0]],[[4998,5705],[1,-3],[1,-2],[-1,-8],[-1,-6],[-1,-5],[0,-2],[1,-3],[3,-4],[1,-2],[2,-4],[1,-4],[4,-5],[1,-1],[0,-1],[0,-2],[-1,-18],[0,-5],[0,-3],[-1,-6],[0,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[-2,-1],[-1,-2],[1,-3],[-1,-2],[0,-1],[1,-1],[1,0],[2,4],[1,0],[1,-1],[2,-5],[0,-2],[-1,-8],[-1,-6],[0,-9],[1,-4],[0,-3],[-1,-2],[-2,-3],[0,-3],[1,-4],[2,-4],[4,-6],[2,-7],[0,-3],[-2,-3],[-1,-3],[0,-4],[0,-25],[-3,-10],[0,-3],[1,-4],[0,-2],[2,-1],[1,-2],[0,-7],[-1,-8],[0,-4],[0,-1],[-2,-2],[0,-2],[0,-3],[0,-2],[1,-3],[1,-4],[2,-9],[1,0],[0,-2],[0,-2],[1,-4],[2,-4],[3,-3],[2,-1],[0,-3],[2,-4],[1,-2],[1,-1],[1,0],[0,-4]],[[5032,5407],[-2,-2],[-1,-3],[-2,-5],[-1,-6],[-6,-3],[-2,0],[-11,0],[-11,-11],[-6,-4],[-4,-7],[-5,-4],[-4,-6],[-7,-2],[-12,-9],[-4,-3],[-4,-6],[-6,-7],[-3,0],[-4,6],[-4,4],[-9,5],[-7,2],[-3,2],[-1,0]],[[4914,5350],[2,1]],[[4683,5781],[-1,-1],[0,-4],[-1,-4],[-1,-3],[0,-2],[2,-3],[3,-6],[2,0],[1,1],[2,4],[2,5],[2,2],[2,0],[1,-3],[2,-7],[2,-7],[1,-1],[1,0],[1,1],[1,1],[0,3],[4,9],[2,2],[1,1],[2,1],[3,-2],[4,-4],[6,-4],[2,-1],[1,1],[1,6],[2,2],[3,3],[2,1],[2,1],[0,1],[0,3],[0,2],[-1,5],[0,1],[0,1],[2,1],[3,-1],[2,-2],[2,-3],[2,-3],[1,-7],[1,-7],[3,-11],[0,-7],[-1,-8],[2,-1],[1,-1],[1,-1],[1,-6],[1,-2],[2,0],[2,-4],[2,-2],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-3],[-3,-9],[0,-1],[0,-1],[1,0],[2,0],[2,3],[2,-1],[2,-2],[1,-3],[0,-3],[-1,-4],[0,-5],[1,-7],[1,-8],[1,-3],[6,-7],[1,-2],[0,-3],[0,-4]],[[4764,5494],[-1,2],[-1,2],[-1,3],[-1,1],[-1,0],[-1,-2],[-1,-3],[0,-3],[0,-3],[-1,-2],[-2,-4],[0,-5],[-1,-3],[-2,0],[0,1],[-1,-1],[-2,-2],[-2,-1],[0,2],[-1,2],[-1,3],[-2,3],[-2,2],[-1,-1],[-2,0],[0,1],[0,2],[1,4],[1,3],[0,4],[0,4],[0,5],[-2,5],[0,2],[0,4],[0,3],[0,2],[-1,3],[0,3],[-1,1],[0,5],[0,5],[-1,2],[-1,1],[-1,2],[-1,3],[-1,0],[0,-1],[-1,-1],[-1,5],[-1,-1],[-7,-5],[0,2],[-1,3],[-1,0],[-3,-1],[-1,-1]],[[4714,5549],[-2,1],[-1,-1],[-3,-7],[-2,-3],[-1,1],[-1,0],[-1,0],[-1,0],[0,2],[1,2],[1,8],[4,8],[0,1],[-2,5],[-1,6],[0,7],[0,4],[-3,2],[-1,0],[0,2],[1,4],[1,4],[0,2],[0,1],[-2,5],[-3,7],[-3,9],[-2,7],[-2,4],[-2,5],[-1,3],[-2,1],[-5,0],[-7,0],[-5,0],[-1,-5],[-6,-2],[-4,3],[-4,-2],[-2,-2],[0,-5],[-1,-4],[-1,-2],[-1,-3],[0,-2],[-1,-2],[-1,-4],[-2,-7],[-2,-4],[-3,-3],[-2,-6],[0,-3],[-2,-2],[-1,-1],[-2,0],[-1,1],[-2,-1]],[[4630,5583],[0,1],[1,6],[-1,3],[-3,5],[0,3],[-1,4],[-3,7],[-4,0],[1,6],[0,8],[-1,4],[0,5],[0,-1],[-2,-3],[-1,1],[-4,5],[-2,5],[0,4],[-1,1],[-1,0],[-2,0],[-7,7],[-5,18],[0,4],[0,7],[0,1],[-2,-4],[-1,3],[-1,7],[-1,4],[-2,2],[-1,0],[-1,-1],[-1,-8],[-1,0],[-2,1],[1,7]],[[4582,5695],[1,3],[1,5],[5,19],[2,5],[1,1],[2,1],[4,2],[4,5],[1,1],[4,0],[5,1],[6,4],[0,6],[0,7],[0,3],[-2,3],[-2,2],[-1,3],[-1,2],[0,2],[2,2],[1,1],[2,0],[1,1],[1,2],[0,5],[1,5],[-2,7],[0,4]],[[4618,5797],[9,0],[1,-1],[4,-1],[3,0],[1,0],[1,-1],[0,-2],[-1,-3],[1,-2],[1,-1],[1,1],[1,1],[0,1],[2,-1],[2,-4],[2,-1],[3,-2],[2,-1],[2,0],[2,-2],[3,-1],[4,3],[3,1],[4,0],[3,-1],[6,3],[3,-1],[2,-1]],[[4534,5821],[0,5],[-2,11],[2,5],[3,3],[1,-2],[0,-5],[2,-3],[4,-2],[4,1],[2,0],[0,2],[1,4],[4,1],[6,1],[5,2],[4,0],[1,1],[-4,1],[-8,-2],[-8,-1],[-6,-6],[-2,1],[-3,6],[-1,8]],[[4539,5852],[8,0],[8,0],[9,0],[5,0],[2,8],[4,4],[5,1],[2,0],[3,-2],[4,-7],[3,-1],[3,-2],[2,-3],[2,-3],[3,-1],[1,0],[2,2],[2,1],[4,0],[4,-4],[0,-4],[0,-4],[-5,-3],[-6,-3],[-6,2],[-6,5],[-4,3],[-1,2],[-3,2],[-2,2],[-2,2],[-1,1],[-1,-2],[-1,-2],[-1,-4],[-1,-2],[-6,-1],[-4,-1],[-3,-1],[-2,-1],[0,-10],[-6,0],[-5,0],[-6,0],[-6,0],[-1,-2],[-2,-3]],[[4558,5703],[0,-1],[-2,0],[0,1],[0,1],[1,5],[0,1],[1,-2],[0,-1],[0,-4]],[[4552,5702],[-2,-1],[-1,3],[0,1],[1,1],[1,2],[1,2],[1,0],[1,-5],[-1,-2],[-1,-1]],[[4563,5711],[0,-2],[-1,0],[-1,1],[1,4],[1,2],[1,0],[1,-1],[-1,-1],[0,-2],[-1,-1]],[[4558,5726],[-1,-2],[-2,1],[-1,2],[1,3],[1,4],[1,-1],[1,-7]],[[4568,5730],[-1,-1],[-1,1],[2,5],[1,1],[0,-4],[-1,-1],[0,-1]],[[4555,5751],[-1,-8],[-2,1],[-1,4],[0,2],[3,1],[1,0]],[[4582,5695],[-2,4],[1,8],[-1,0],[-2,-7],[-1,0],[0,8],[-1,0],[-2,-1],[-2,4],[0,3],[0,4],[1,3],[0,1],[-1,0],[-2,-1],[0,2],[1,5],[5,4],[2,1],[3,1],[-2,3],[-3,2],[-2,-1],[-1,-3],[-2,0],[-2,6],[0,3],[1,4],[1,2],[6,0],[2,2],[1,0],[1,2],[0,2],[-1,0],[-2,-3],[-7,1],[-2,-1],[-4,-6],[-5,-3],[-3,1],[1,8],[-1,1],[-1,1],[-5,-2],[-4,3],[-1,5],[0,5],[2,4],[0,2],[-2,0],[-3,-2],[-8,9]],[[4535,5779],[2,0],[4,-1],[3,1],[2,2],[2,3],[3,1],[9,-2],[7,4],[5,5],[5,6],[7,0],[7,0],[10,0],[8,0],[9,-1]],[[5266,5108],[0,1],[-2,4],[-2,0],[-2,1],[2,9],[1,9],[3,6],[1,1],[0,3],[2,11],[3,8],[-1,8],[1,14]],[[5242,5269],[1,0],[4,0],[1,-3],[0,-4],[-4,-14],[-1,-6],[-2,-4],[-1,-1],[-5,3],[-1,2],[0,2],[0,5],[1,2],[2,1],[1,1],[1,6],[0,5],[1,4],[2,1]],[[5662,7152],[2,-1],[2,0],[1,1],[2,3],[2,0],[1,-3],[-2,-2],[-1,-1],[1,0],[1,-2],[2,1],[0,-3],[1,-2],[1,-1],[1,-1],[2,1],[3,1],[3,1],[2,1],[8,-1],[3,-3],[5,-1],[5,-2],[3,1],[4,2],[1,-2],[-1,-8],[1,-3],[1,-1],[1,1],[2,3],[3,2],[4,0],[4,5],[1,1],[-1,-3],[-1,-7],[0,-3],[-1,-3],[-2,-2],[-3,0],[-6,1],[-6,-2],[-11,-2],[-12,-2],[-1,1],[0,4],[0,2],[-1,2],[-4,2],[-3,3],[-13,3],[-3,2],[-5,-1],[-2,0],[-1,1],[-1,3],[0,7],[0,7],[1,2],[1,-3],[1,-1],[1,3],[0,3],[1,3],[1,-1],[0,-5],[2,-1]],[[5754,7148],[-1,-4],[-1,3],[1,3],[-2,5],[3,8],[0,4],[2,2],[-1,-7],[-1,-5],[1,-4],[1,-5],[-2,0]],[[5640,7191],[-1,-3],[-2,2],[-1,2],[0,6],[0,3],[1,1],[1,-3],[3,-5],[-1,-3]],[[5773,7175],[-2,-1],[-1,0],[-1,3],[1,6],[-1,5],[0,1],[2,3],[1,4],[3,4],[7,5],[2,0],[0,-4],[-3,-9],[-2,-5],[1,-4],[-4,-1],[-3,-7]],[[5707,7203],[-1,-4],[-2,2],[1,1],[0,1],[0,2],[0,2],[2,-2],[0,-2]],[[5734,7214],[-2,-1],[-1,-3],[-2,2],[0,3],[2,-1],[1,1],[0,2],[1,-1],[1,-2]],[[5773,7212],[0,-1],[-2,3],[0,1],[2,2],[1,-1],[0,-2],[-1,-2]],[[5681,7225],[0,-4],[0,-1],[-6,-2],[1,4],[0,1],[2,-2],[1,1],[0,2],[2,1]],[[5704,7219],[0,-1],[-2,4],[-1,2],[1,2],[3,-4],[-1,-3]],[[5748,7222],[-1,0],[1,3],[3,4],[4,3],[2,1],[2,-2],[-4,-4],[-1,-2],[-4,0],[-2,-3]],[[5718,7226],[-3,0],[1,1],[1,1],[1,1],[2,3],[2,3],[1,-2],[-2,-2],[-3,-5]],[[5686,7234],[-1,2],[0,2],[0,2],[1,0],[1,-5],[-1,-1]],[[5750,7236],[-3,-1],[1,5],[-2,4],[2,-2],[2,-3],[1,0],[-1,-2],[0,-1]],[[5702,7243],[-3,-5],[-1,0],[-1,3],[1,4],[2,2],[2,0],[-1,-4],[1,0]],[[5709,7237],[-2,-3],[-2,4],[-1,5],[4,7],[2,-1],[0,-1],[0,-7],[-1,-4]],[[5681,7246],[-1,-1],[-2,1],[0,4],[2,1],[1,-1],[0,-2],[0,-2]],[[5678,7259],[-1,-2],[0,4],[-1,2],[1,2],[1,2],[1,-2],[0,-2],[-1,-4]],[[5692,7268],[0,-6],[-1,0],[0,1],[0,2],[0,4],[1,-1]],[[5705,7263],[-3,0],[1,4],[1,2],[3,-3],[0,-1],[-2,-2]],[[5722,7270],[-1,0],[1,2],[2,4],[4,0],[3,2],[-1,-3],[-3,-3],[-5,-2]],[[5701,7274],[-1,-4],[-2,1],[-3,4],[-1,2],[0,2],[1,0],[1,-2],[4,-1],[1,-2]],[[5676,7273],[-2,-3],[0,4],[1,5],[2,0],[0,-2],[-1,-4]],[[5745,7287],[3,-2],[1,0],[2,-1],[0,-3],[-2,-1],[-4,-3],[-1,0],[-2,3],[-3,1],[-1,0],[1,4],[3,1],[3,1]],[[5580,7286],[3,-6],[-3,2],[-2,-4],[-3,5],[-2,4],[-1,2],[2,5],[2,-5],[2,-1],[2,-2]],[[5694,7284],[-1,-4],[-2,4],[-3,3],[-1,3],[-1,2],[0,3],[1,2],[1,0],[2,-4],[3,-1],[-1,-3],[1,-3],[1,-2]],[[5654,7293],[-1,-1],[-2,0],[-1,0],[0,2],[1,0],[0,3],[1,0],[1,0],[0,-1],[1,-3]],[[5572,7320],[0,-6],[2,-2],[3,-6],[0,-3],[-1,-1],[-4,3],[-1,-1],[-1,0],[-1,3],[0,2],[-1,2],[0,1],[-2,-3],[-1,-1],[0,3],[1,7],[1,1],[1,-2],[1,0],[1,4],[0,4],[1,1],[1,-6]],[[5576,7317],[-1,0],[-2,5],[-1,4],[1,0],[1,0],[0,-2],[0,-1],[1,-2],[1,-2],[0,-2]],[[5724,7311],[-2,-4],[-3,5],[-1,2],[2,2],[1,3],[0,3],[-3,6],[-1,4],[5,1],[3,-3],[1,0],[0,-3],[0,-2],[0,-9],[-1,-2],[0,-2],[-1,-1]],[[5574,7334],[-1,-1],[-1,1],[-1,-1],[-1,-1],[0,5],[1,6],[2,3],[1,2],[1,-3],[0,-9],[-1,-2]],[[5685,7346],[-3,-2],[-1,0],[1,2],[0,1],[-3,3],[0,5],[1,1],[2,-2],[0,-4],[3,-4]],[[5650,7355],[1,-7],[2,-2],[3,-3],[1,0],[6,-5],[6,-1],[1,-1],[0,-3],[2,-3],[0,-2],[-1,-3],[1,-7],[2,-7],[2,-4],[3,-1],[3,0],[0,-1],[0,-6],[-1,-2],[-1,-1],[-1,1],[-1,1],[0,1],[-2,0],[-1,2],[-3,4],[-1,2],[0,3],[-1,2],[-1,5],[-1,1],[-1,2],[0,1],[-4,0],[-4,1],[-3,2],[-1,6],[-1,2],[-2,2],[-1,3],[-3,4],[-3,4],[-3,3],[-3,1],[-2,-2],[-2,1],[0,1],[3,3],[4,5],[3,2],[2,0],[3,-4]],[[5660,7364],[-1,-2],[-2,1],[-2,6],[5,-5]],[[5663,7366],[-1,0],[1,4],[2,3],[-1,-4],[-1,-3]],[[5733,7376],[0,-3],[3,-6],[2,-4],[0,-3],[0,-1],[-2,2],[-1,0],[1,-2],[1,-2],[-2,-2],[-3,0],[-6,4],[-1,3],[3,5],[1,2],[-2,-1],[-3,-5],[-5,2],[-1,3],[-1,1],[2,5],[3,0],[2,1],[2,2],[0,2],[5,1],[2,-4]],[[5557,7383],[1,-4],[-4,2],[-2,3],[-2,8],[-5,8],[0,2],[2,2],[4,2],[1,-2],[1,-1],[0,-2],[-2,-3],[0,-1],[1,-3],[0,-1],[1,-6],[1,-2],[2,-2],[1,0]],[[5706,7415],[-1,-2],[-1,-3],[0,-5],[-2,0],[-1,1],[0,2],[0,2],[-1,0],[0,-3],[-1,-1],[-2,0],[-1,1],[0,4],[-1,4],[0,1],[5,1],[2,-3],[2,1],[0,2],[2,1],[0,-3]],[[5713,7441],[-3,-1],[-4,5],[4,2],[1,-2],[1,-1],[1,-3]],[[5688,7453],[-4,-2],[-4,4],[0,2],[2,5],[1,1],[3,0],[2,-4],[0,-1],[-1,-3],[1,-2]],[[5723,7459],[-1,3],[-4,4],[-10,3],[-5,3],[-2,-1],[-4,4],[-3,-1],[-6,-7],[-3,1],[-3,4],[-3,0],[-2,-2],[-4,-7],[-5,-4],[-3,2],[-5,0],[-1,-5],[1,-3],[3,-5],[-2,-3],[1,-4],[2,-1],[3,0],[5,-4],[2,-5],[2,-6],[-3,4],[-2,4],[-3,1],[-4,3],[-3,1],[-2,-2],[-1,-3],[3,-5],[3,-3],[1,-2],[1,-5],[0,-2],[-1,-2],[-3,4],[-5,11],[-7,3],[-1,-3],[1,-6],[1,-2],[6,-7],[0,-2],[-1,0],[-7,4],[-2,6],[0,7],[-6,5],[-6,6],[-1,5],[1,2],[1,4],[-3,-1],[-2,-2],[-3,-2],[0,-4],[0,-4],[-1,-5],[-1,-10],[1,-5],[7,-14],[2,-10],[2,-4],[3,-4],[4,-8],[1,-4],[1,-7],[-3,-4],[-1,0],[-1,2],[1,4],[0,3],[-5,5],[-2,-2],[-2,-3],[1,-5],[2,-3],[0,-5],[3,0],[-4,-5],[-3,-3],[-4,0],[-2,-1],[-1,-1],[2,-1],[2,0],[2,-3],[7,-3],[3,-5],[3,0],[4,-8],[5,-2],[3,-8],[5,-2],[3,-3],[1,-3],[1,-5],[0,-11],[1,-8],[0,-3],[0,-3],[-1,-2],[-2,0],[-2,6],[-4,6],[-5,7],[-1,2],[-1,0],[-2,-3],[-6,-2],[-3,-2],[-1,-1],[-1,-1],[2,-2],[1,-3],[0,-5],[2,-6],[2,-1],[2,0],[1,-1],[1,-2],[1,-3],[1,-2],[0,-1],[-7,-4],[-1,-2],[-1,-1],[-2,2],[0,5],[-2,2],[-2,2],[-3,1],[-2,3],[-1,-2],[1,-9],[2,-6],[4,-17],[2,-9],[0,-5],[-1,-8],[2,-5],[2,-6],[-2,0],[-1,2],[-2,3],[-4,9],[-2,6],[-2,0],[-3,-1],[-3,-12],[0,-7],[-2,1],[-1,3],[0,8],[0,3],[-4,11],[-2,1],[-1,3],[-1,4],[-2,-1],[-2,-1],[0,-6],[0,-5],[-1,-4],[-5,7],[-4,13],[0,7],[3,7],[0,4],[-3,10],[-5,5],[-2,2],[-1,6],[-3,4],[-1,1],[-1,2],[1,2],[4,6],[3,10],[1,1],[3,-3],[3,1],[3,6],[2,3],[3,0],[8,-8],[9,-5],[4,-3],[3,-4],[1,-1],[2,-1],[0,3],[-1,3],[2,1],[5,0],[1,1],[0,3],[-1,2],[-1,1],[-2,1],[-1,1],[-2,-1],[-2,2],[-2,1],[-1,2],[-4,3],[-5,6],[-1,-3],[-2,-2],[-2,0],[-7,3],[-5,-3],[-2,0],[-2,0],[-2,-1],[-3,-1],[-2,5],[-1,4],[-1,1],[0,-4],[-1,-3],[-3,-2],[-2,3],[-2,7],[-1,8],[-4,8],[-2,2],[-1,4],[1,3],[3,0],[5,-3],[1,1],[1,1],[0,4],[-1,3],[-1,0],[-1,0],[-3,0],[-4,-2],[-2,2],[-1,2],[-3,5],[-3,6],[-5,4],[-3,13],[-2,6],[-3,4]],[[5582,7467],[4,0],[1,0],[5,1],[2,2],[2,0],[3,-2],[1,1],[4,4],[5,9],[1,1],[4,1],[2,1],[1,0],[5,-2],[2,-1],[3,2],[4,2],[1,8],[0,1],[2,0],[2,0]],[[5731,7518],[2,-1],[1,-2],[1,-2],[2,-2],[1,0],[1,-5],[0,-7],[-1,-3],[-1,0],[-6,-6],[0,-6],[0,-3],[0,-2],[0,-1],[0,-3],[0,-2],[-3,-4],[-1,-4],[-2,-4],[-1,-1],[-1,-1]],[[3285,5758],[-1,0],[0,2],[0,4],[1,5],[2,3],[1,-1],[0,-10],[-3,-3]],[[3714,8647],[-3,-7],[-3,2],[-2,3],[-3,1],[-3,0],[0,1],[11,8],[5,2],[0,-3],[-1,-3],[-1,-4]],[[3971,8929],[-4,0],[-2,4],[1,5],[5,2],[2,-4],[-1,-5],[-1,-2]],[[3583,9167],[-5,-2],[-1,0],[-1,2],[-2,7],[0,4],[0,4],[-1,3],[4,3],[3,1],[5,-1],[7,-4],[-1,-1],[-1,-2],[-5,-2],[-1,-6],[0,-2],[0,-2],[-1,-2]],[[3535,9190],[9,-5],[10,-3],[1,-2],[1,-2],[0,-1],[0,-1],[-1,-1],[1,-2],[2,-1],[0,-2],[-2,-3],[-4,-4],[-18,-7],[-7,-2],[-16,-5],[-5,1],[-1,0],[-3,2],[-4,2],[-2,2],[-1,2],[0,1],[3,1],[5,0],[6,2],[-2,1],[-1,1],[-1,2],[-3,0],[-2,1],[-4,1],[-10,0],[-7,2],[-2,1],[-1,3],[-2,2],[2,12],[2,2],[3,1],[9,-2],[1,1],[-9,4],[-4,2],[-1,2],[0,3],[0,2],[0,2],[1,1],[2,3],[9,3],[10,-1],[18,-5],[2,0],[6,-4],[10,-12]],[[3564,9244],[-3,0],[-9,1],[-1,1],[0,1],[1,4],[4,0],[5,-2],[4,-3],[1,-1],[-2,-1]],[[4293,9248],[1,-4],[0,-1],[0,-2],[-1,-1],[-1,0],[3,-3],[0,-1],[1,-2],[-2,-2],[-11,-3],[-3,-2],[-4,-3],[-5,-4],[-1,0],[-2,4],[-7,2],[-14,-1],[-17,-3],[-5,-2],[-3,1],[-1,1],[0,2],[2,5],[0,1],[4,1],[3,5],[-1,4],[1,7],[2,1],[7,-3],[4,0],[7,-1],[10,1],[8,3],[14,7],[3,0],[2,-3],[1,-1],[4,-2],[1,-1]],[[3513,9255],[-3,0],[-8,3],[-1,1],[0,1],[0,2],[2,3],[5,4],[3,1],[2,-3],[2,-3],[0,-2],[0,-3],[0,-1],[-1,-2],[-1,-1]],[[3471,9359],[-4,-4],[-3,-3],[-7,-6],[-1,-1],[-2,1],[-1,2],[-3,0],[-1,2],[-1,1],[-2,0],[-3,0],[-3,0],[-2,3],[4,2],[2,2],[9,1],[3,-1],[2,0],[2,1],[5,2],[1,1],[5,-2],[0,-1]],[[4500,9514],[2,-7],[1,-5],[3,-4],[7,1],[3,-7],[-5,-3],[-21,1],[-9,0],[-6,4],[0,7],[1,7],[6,5],[5,-4],[6,3],[7,2]],[[4483,9551],[-3,-1],[-11,24],[0,9],[1,7],[5,1],[4,-4],[2,-14],[2,-22]],[[3009,9627],[-10,0],[-10,2],[-3,2],[0,3],[2,1],[5,1],[4,0],[3,-1],[7,-1],[5,-2],[3,-1],[0,-2],[-6,-2]],[[4501,9646],[-6,0],[-2,2],[2,2],[7,9],[3,1],[3,-1],[2,-5],[-3,-4],[-6,-4]],[[4472,9666],[-4,-2],[-2,6],[-2,8],[-1,10],[6,4],[3,1],[2,-1],[-1,-4],[0,-8],[2,-6],[-3,-8]],[[4510,9775],[-11,-6],[-18,0],[-10,3],[-3,5],[4,5],[12,4],[16,3],[14,-2],[2,-5],[-6,-7]],[[4481,9895],[-3,-2],[-7,1],[-9,5],[-7,5],[0,5],[3,2],[5,1],[7,-5],[7,-6],[4,-6]],[[3753,9909],[-5,-1],[-12,6],[-19,7],[-16,4],[-15,11],[-2,4],[3,3],[13,1],[11,1],[27,-7],[14,-5],[5,-5],[-1,-9],[-3,-10]],[[4168,9997],[26,-4],[14,-4],[3,0],[19,-1],[19,-2],[30,-5],[4,-2],[-3,-1],[-8,-1],[-38,-2],[-70,-2],[-40,-4],[-13,0],[-1,-7],[5,0],[9,1],[32,6],[11,1],[22,0],[29,-3],[11,1],[21,-1],[23,2],[29,4],[7,-8],[11,-9],[8,1],[7,0],[3,-3],[3,-1],[8,0],[25,-2],[17,-4],[6,-2],[3,-3],[2,-2],[-3,-3],[-10,-5],[-14,-5],[-18,-4],[-20,-2],[-159,-7],[-5,-2],[-4,-5],[2,-5],[8,-1],[17,3],[30,3],[22,0],[53,-3],[16,-7],[8,-10],[18,2],[4,2],[3,3],[2,3],[2,4],[2,3],[2,1],[4,1],[11,1],[27,2],[7,-1],[5,-5],[1,-3],[0,-3],[0,-5],[-1,-6],[-2,-5],[-8,-10],[-6,-5],[-6,-4],[-13,-9],[-4,-2],[-14,-10],[-4,-5],[0,-3],[2,-1],[4,3],[2,2],[3,3],[20,6],[4,2],[14,8],[8,2],[7,3],[4,2],[21,15],[10,5],[12,0],[2,-8],[13,-1],[6,1],[9,-2],[4,-2],[7,-1],[8,-1],[6,2],[2,1],[6,5],[8,5],[8,6],[3,2],[4,1],[4,1],[11,2],[3,1],[7,-1],[27,-1],[15,-1],[21,-4],[14,-3],[7,-2],[10,-4],[7,-4],[4,-2],[0,-1],[-3,-2],[-19,-7],[-7,-4],[-18,-9],[-9,-3],[-10,-1],[-11,0],[-7,-1],[-1,-2],[5,-3],[2,-3],[0,-2],[-5,-3],[-2,-1],[-20,-2],[-9,-5],[-13,0],[-9,0],[-12,-4],[5,-4],[4,-2],[14,-3],[0,-2],[-7,-4],[-8,-4],[-11,-3],[-4,-1],[-5,1],[-5,0],[-10,-2],[-9,0],[-18,2],[-9,2],[-5,1],[-6,0],[-3,-1],[-9,-6],[-5,-4],[-3,-4],[-1,-4],[0,-5],[1,-3],[2,-2],[2,-1],[4,0],[9,0],[4,0],[1,-1],[2,-3],[0,-3],[-2,-4],[-1,-5],[-1,-5],[0,-3],[4,0],[2,0],[2,-1],[2,-2],[1,-3],[2,-2],[-1,-2],[-2,-1],[-6,-2],[-12,-4],[-2,-1],[-1,-2],[0,-3],[-2,-3],[-2,-2],[-2,-2],[-5,-1],[-5,0],[-6,-1],[-14,-9],[-1,-1],[6,-2],[-1,-3],[-6,-10],[-2,-5],[-1,-7],[-3,-6],[-3,-5],[-3,-6],[-4,-6],[1,-5],[4,-3],[6,2],[7,9],[7,4],[8,-1],[7,-2],[9,-3],[8,-3],[6,-2],[3,-3],[3,-3],[0,-2],[-5,-1],[-2,0],[-12,6],[-6,1],[-7,-2],[-7,-2],[6,-10],[7,-5],[11,-2],[6,-3],[5,-2],[3,-2],[5,1],[6,3],[9,0],[4,-2],[3,-2],[1,-5],[0,-7],[-1,-6],[-1,-3],[-4,-5],[-2,-1],[-4,0],[-3,1],[-4,2],[-5,1],[-9,2],[-10,3],[-6,1],[-12,-1],[-12,-2],[-1,-2],[-18,-9],[-4,0],[-5,3],[-7,3],[-4,0],[-6,-4],[-1,-1],[0,-2],[4,-3],[2,-1],[2,-1],[8,0],[4,-1],[3,-10],[5,-7],[3,-1],[2,-1],[6,1],[8,2],[3,-2],[6,-2],[4,-1],[4,1],[5,-1],[7,-6],[-3,-7],[4,-6],[7,-6],[2,-3],[0,-4],[0,-2],[1,-3],[1,-2],[1,-4],[1,-7],[-1,-5],[-1,-4],[-3,-3],[-4,-2],[-3,1],[-3,3],[-4,3],[-5,3],[-7,0],[-12,-9],[-5,-1],[-5,-1],[-4,-4],[-7,-2],[-6,1],[-10,5],[4,-3],[5,-4],[3,-2],[3,-1],[3,1],[4,1],[8,5],[3,0],[2,0],[1,-1],[2,-4],[2,-6],[0,-5],[-3,-4],[-2,-3],[-2,-1],[0,-1],[5,-1],[7,5],[2,7],[3,8],[6,3],[6,-3],[6,-7],[7,-14],[3,-1],[4,-3],[2,-4],[-1,-5],[-1,-3],[-1,-2],[-1,-2],[-3,-1],[-5,0],[-11,1],[-6,0],[1,-5],[-12,-4],[-13,-1],[-13,3],[-10,5],[3,6],[2,8],[-5,5],[-1,0],[2,-8],[-2,-3],[-5,-3],[-4,-2],[-1,-1],[2,-1],[1,-1],[1,-2],[-1,-3],[-2,-2],[-1,-2],[0,-2],[2,-2],[4,-2],[4,-1],[19,-1],[8,-1],[18,-6],[1,-1],[-3,-10],[-2,-10],[-4,-1],[-19,-1],[-6,-1],[-9,-5],[-9,-5],[-4,0],[-18,5],[-7,3],[-14,8],[-11,13],[-6,-5],[-3,-3],[-3,-1],[-3,0],[-3,1],[-3,2],[-6,5],[-7,4],[-4,3],[-1,-1],[3,-3],[4,-3],[11,-10],[3,-2],[0,-2],[-7,-1],[-8,-3],[-3,-3],[-6,-6],[-2,0],[-9,-2],[-3,0],[-7,4],[-10,2],[-6,2],[-8,3],[3,-4],[16,-5],[1,-2],[-3,-4],[-2,-1],[-4,0],[-5,1],[-6,0],[-6,-1],[-2,-2],[1,-1],[1,-2],[2,-1],[2,0],[4,4],[4,0],[8,-1],[9,3],[7,2],[5,0],[17,4],[4,6],[6,2],[13,1],[12,-1],[7,0],[5,-5],[7,-4],[6,-3],[7,-2],[4,-5],[11,-6],[7,-1],[4,-3],[1,-11],[0,-6],[-2,-13],[-5,-4],[1,-7],[-2,-6],[-5,2],[-6,4],[-14,6],[-13,4],[-5,4],[-6,2],[-8,12],[-5,13],[-3,7],[-4,1],[-6,-2],[-5,-2],[-2,-3],[-17,-5],[-6,-3],[-3,0],[-13,-5],[5,-2],[2,0],[6,1],[3,2],[11,4],[9,1],[4,2],[7,3],[4,0],[1,0],[0,-2],[4,-17],[-2,-4],[-3,-2],[-8,-3],[-3,-2],[3,-3],[7,3],[5,3],[3,-1],[4,-5],[5,-2],[13,-6],[5,-4],[9,-3],[9,-5],[2,-2],[9,-2],[2,-1],[3,-9],[3,-1],[9,0],[-2,-4],[-8,-7],[-4,-2],[-2,-2],[1,-2],[0,-5],[2,-8],[2,8],[1,3],[2,1],[2,0],[6,4],[5,-2],[2,-8],[1,-8],[-1,-7],[1,-10],[-1,-4],[2,-3],[1,-13],[2,-3],[-3,-4],[-9,-1],[-3,1],[-9,0],[0,3],[-1,3],[0,3],[0,2],[-1,12],[-2,-3],[0,-2],[-1,-3],[-1,-13],[-3,-4],[-7,1],[-7,0],[-3,0],[-13,6],[-5,6],[-5,8],[-2,8],[-1,7],[-4,6],[-5,5],[-6,4],[-7,2],[-6,4],[-5,5],[-6,3],[-6,2],[-10,2],[-13,-1],[-9,3],[-2,0],[-2,-2],[2,-4],[10,-2],[8,0],[10,0],[7,-1],[2,-2],[2,-5],[1,-6],[-2,-5],[-8,-5],[-4,-2],[-12,-5],[-4,-1],[-9,-1],[-8,1],[-10,2],[-5,1],[-12,0],[-2,-1],[3,-2],[5,-2],[3,-2],[0,-3],[-1,-5],[-1,-3],[-2,-3],[-8,-5],[-3,-1],[-14,-5],[-1,-1],[3,0],[9,2],[3,0],[14,-5],[12,0],[24,5],[2,-1],[1,0],[2,-2],[1,-2],[-2,-2],[-5,-3],[-8,-2],[-4,-1],[-4,-3],[-6,-5],[-2,-6],[7,-2],[3,3],[4,6],[3,3],[7,3],[10,-2],[7,2],[15,6],[2,0],[22,-3],[20,-7],[10,-2],[14,-2],[25,1],[2,-1],[-1,-3],[-2,-2],[-4,-2],[-5,-2],[-3,-1],[-2,-1],[-6,-1],[-2,-2],[2,-4],[-1,-1],[-5,0],[-9,-3],[-7,0],[-1,0],[1,-1],[1,-2],[2,-4],[-1,-2],[-3,-1],[-3,-1],[-8,2],[-1,0],[1,-2],[1,-2],[0,-2],[-2,-3],[-5,-2],[-8,-5],[-3,-2],[-8,-1],[-1,0],[3,-4],[0,-2],[-5,-4],[-8,-3],[-1,-2],[-1,-4],[0,-1],[-2,-2],[-7,-5],[-6,-2],[-2,-2],[-3,-3],[-4,-1],[-5,0],[-4,-1],[-8,-3],[-5,-1],[-16,-6],[-8,-1],[-6,-2],[-14,-5],[-6,-1],[-5,-2],[-5,-1],[-8,1],[-4,0],[-3,0],[-2,-2],[-4,-4],[-4,-1],[-11,4],[0,-2],[3,-3],[0,-3],[-6,-3],[-4,0],[-5,1],[-7,3],[-9,6],[-11,9],[-5,3],[0,-3],[1,-3],[2,-3],[1,-2],[-2,-1],[-1,-1],[-2,0],[3,-5],[2,-4],[0,-5],[-3,-4],[-3,-2],[-2,-1],[-13,-10],[-3,-1],[-2,-1],[-1,-2],[-4,-9],[-2,-2],[-3,-3],[-1,-1],[0,-1],[0,-2],[-1,-4],[-2,-5],[-8,-14],[-6,-13],[-2,-4],[-2,-2],[-2,1],[-3,0],[-1,-2],[-1,-5],[-2,-3],[-1,-2],[-13,-9],[-3,-2],[-3,1],[-3,0],[-7,5],[-1,2],[-5,4],[0,-3],[1,-1],[1,-1],[1,-2],[4,-11],[-3,-3],[-2,-2],[-7,-4],[-6,-8],[-3,-2],[0,6],[0,2],[-4,3],[0,-2],[0,-2],[-3,-8],[-1,-1],[-1,0],[-3,-1],[-3,1],[-3,3],[-1,2],[-5,-5],[-2,0],[0,-4],[-3,-4],[-3,-2],[-4,1],[-2,-3],[-6,3],[-1,4],[4,6],[2,3],[-1,3],[1,4],[8,13],[6,6],[0,2],[-8,1],[-7,2],[-6,1],[-3,-1],[4,-3],[7,-4],[-3,-4],[-3,-3],[-3,-10],[-2,-4],[-7,4],[-3,2],[2,-5],[6,-5],[0,-2],[0,-6],[-12,-5],[-12,-1],[-9,-1],[-15,-2],[-6,0],[-1,-2],[15,-9],[2,-2],[-2,-3],[-3,-2],[-5,-6],[-2,-3],[-7,-3],[-11,4],[-6,-2],[-6,1],[0,-4],[2,-3],[2,-7],[3,1],[5,2],[4,-5],[2,-9],[5,-5],[2,-3],[0,-4],[-2,-3],[-6,-5],[-6,-1],[0,-3],[-2,-3],[-6,1],[-2,2],[-3,1],[-11,1],[11,-8],[4,-3],[2,2],[4,1],[5,-2],[-1,-12],[3,-10],[0,-2],[-6,-6],[0,-6],[-4,-1],[-4,0],[0,-6],[-3,-4],[1,-2],[1,-2],[-3,-4],[-2,-5],[-3,-4],[-2,1],[-5,0],[-6,0],[-5,5],[-2,2],[-2,1],[1,-3],[1,-2],[5,-4],[8,-5],[0,-3],[-2,-2],[-6,-9],[-1,0],[-3,-2],[-7,0],[-3,1],[-9,0],[-3,1],[-2,-1],[2,-2],[5,-3],[6,-2],[9,-2],[-1,-3],[-2,-3],[1,-4],[-1,-3],[0,-3],[-2,-8],[2,-6],[3,-3],[0,-3],[1,-6],[-4,-5],[-3,0],[-5,-1],[-1,-2],[7,-2],[-1,-4],[-2,-5],[-2,-10],[-4,-18],[-2,-18],[-9,-14],[-3,0],[-1,-1],[-5,1],[-6,3],[-6,1],[-3,0],[-1,-1],[3,-3],[5,-1],[3,-2],[7,-2],[2,-3],[2,-3],[0,-2],[0,-2],[1,-12],[-3,-5],[-3,-3],[-8,0],[-1,2],[-8,4],[0,-2],[6,-6],[2,-2],[-1,-1],[-3,0],[-3,-2],[-6,1],[0,3],[2,3],[-3,-1],[-3,-1],[-2,0],[-1,0],[-1,1],[-1,6],[1,3],[5,7],[2,3],[-2,2],[-3,-4],[-4,-6],[-1,-4],[-3,-1],[-5,2],[-16,9],[1,6],[-1,4],[5,1],[3,2],[3,2],[4,5],[3,7],[-1,0],[-9,-9],[-5,-3],[-3,-1],[-1,2],[-5,3],[-3,1],[-6,2],[-1,2],[-2,0],[-3,10],[3,12],[3,3],[1,4],[1,5],[-1,2],[-2,-1],[0,-1],[0,-3],[-1,-2],[-8,-4],[-8,-4],[-4,-3],[-3,-3],[-1,-3],[-3,1],[-4,-1],[-3,-2],[-4,1],[-3,3],[-3,0],[-4,-1],[-2,0],[0,-2],[2,-4],[-3,0],[-5,0],[-3,1],[-2,2],[-1,2],[1,3],[8,5],[4,3],[-3,1],[-8,-1],[-1,1],[-5,0],[0,7],[-2,2],[0,1],[-1,3],[-2,0],[-1,1],[-9,2],[-1,4],[-1,5],[-2,5],[-4,2],[-3,2],[2,3],[1,3],[-2,1],[-1,3],[0,1],[-2,4],[0,3],[2,3],[5,3],[2,1],[0,2],[6,2],[-5,2],[-3,0],[-2,-1],[-2,-3],[-2,-2],[-8,-1],[-1,1],[0,5],[0,3],[3,5],[-4,3],[-3,0],[-4,3],[-3,2],[-3,3],[-3,3],[-1,0],[1,4],[1,3],[0,6],[-2,2],[3,5],[4,6],[7,8],[-8,-4],[-7,-8],[-1,-1],[-1,2],[-2,5],[-2,2],[-1,2],[-4,3],[-2,2],[-2,5],[-3,5],[-5,11],[-8,12],[-2,7],[2,8],[-2,6],[7,3],[11,3],[5,3],[4,1],[6,0],[3,3],[-4,-1],[-3,0],[0,2],[1,2],[1,2],[-2,0],[-6,-5],[-10,-4],[-8,-2],[-1,0],[-3,-1],[-1,0],[-1,0],[-3,4],[-1,2],[5,7],[4,8],[5,6],[3,1],[6,0],[2,-1],[-1,3],[0,2],[5,2],[5,1],[4,-1],[2,-4],[3,-7],[5,-3],[-1,4],[-2,5],[-1,7],[-2,3],[-3,1],[-6,-1],[-3,5],[-1,2],[0,3],[-4,7],[-1,4],[-2,5],[-1,0],[1,-6],[2,-4],[3,-10],[1,-4],[-2,-3],[-3,-3],[-3,-2],[-6,-2],[1,5],[1,4],[-3,-1],[-3,-3],[-1,-5],[-2,-4],[-6,-11],[-2,-5],[-2,-3],[-3,-1],[-2,2],[-2,5],[0,5],[0,10],[0,5],[-1,7],[-3,16],[-1,5],[-5,3],[0,1],[-2,3],[-1,4],[1,1],[1,1],[8,4],[6,6],[7,8],[3,2],[10,2],[4,1],[0,1],[-1,1],[-7,-1],[-9,-3],[-2,-1],[-4,-5],[-3,-3],[-8,-6],[-6,0],[-6,7],[-6,-1],[-5,0],[-1,1],[-1,11],[3,12],[-3,0],[-1,1],[-2,2],[-1,1],[1,2],[9,6],[14,11],[6,4],[4,2],[3,2],[3,5],[1,2],[2,2],[4,2],[5,3],[7,6],[1,3],[-2,0],[-3,-2],[-7,-6],[-5,-3],[-16,-15],[-8,-6],[-3,-3],[-3,-3],[-4,-3],[-3,-1],[-7,-1],[-4,-1],[-2,1],[-1,7],[1,4],[0,4],[2,6],[2,4],[1,2],[1,2],[5,4],[3,2],[2,4],[12,2],[4,0],[1,0],[1,2],[-1,1],[-3,0],[-10,0],[-9,1],[-4,1],[-2,-1],[-3,1],[-4,3],[-5,9],[2,11],[0,5],[7,5],[4,2],[5,3],[7,6],[9,4],[4,1],[4,-1],[13,-5],[7,-1],[5,1],[8,-2],[13,-7],[3,1],[-1,2],[-15,8],[0,2],[4,1],[4,2],[-2,1],[-10,-1],[-3,-2],[-9,-1],[-5,2],[-5,1],[-6,3],[-6,-1],[-3,-1],[-7,-2],[-2,0],[-12,-11],[-5,-3],[-4,1],[3,7],[0,3],[0,3],[1,4],[7,8],[4,9],[1,5],[3,1],[4,-1],[13,-3],[11,-5],[7,-1],[5,0],[3,1],[1,3],[1,1],[0,4],[1,1],[2,1],[3,5],[1,4],[-1,2],[-2,0],[-5,-2],[0,-1],[-5,-6],[-4,-1],[-11,-2],[-5,0],[-9,2],[-2,1],[0,2],[-11,0],[-4,-1],[-2,1],[1,3],[4,3],[4,12],[4,3],[8,3],[9,-1],[14,-9],[5,0],[4,0],[9,3],[2,2],[3,3],[5,7],[-1,1],[-6,-3],[-3,-1],[-3,0],[3,11],[1,10],[1,2],[8,-1],[11,1],[2,2],[0,1],[-4,1],[-2,3],[-4,-1],[-5,-2],[-6,1],[0,3],[5,9],[0,3],[2,8],[0,3],[3,4],[7,3],[3,1],[0,2],[-4,7],[1,1],[3,2],[2,1],[-1,1],[-3,1],[-5,-2],[-6,0],[-4,2],[-4,1],[-2,-1],[-7,-3],[-2,0],[-3,1],[-18,3],[-2,1],[-7,6],[-5,3],[-7,4],[-10,3],[-11,2],[-7,2],[-3,3],[-6,6],[-4,5],[-1,3],[2,3],[3,2],[5,2],[9,-1],[4,0],[5,-2],[4,-1],[8,1],[8,-1],[5,-1],[6,-3],[17,-11],[7,-4],[4,0],[12,-4],[3,0],[5,2],[0,1],[-1,1],[-6,1],[-7,5],[-4,3],[0,6],[0,3],[1,2],[1,5],[-4,3],[-3,1],[-7,4],[-1,1],[4,1],[3,-1],[8,-2],[3,0],[3,1],[0,1],[-4,2],[-5,5],[-12,0],[-8,0],[-4,1],[-5,3],[-4,0],[-6,-1],[-4,0],[-3,0],[-3,8],[1,3],[2,1],[2,2],[1,3],[4,2],[22,6],[6,4],[-1,1],[-3,-1],[-5,-2],[-3,0],[-13,2],[-2,0],[-5,-4],[-7,-4],[-3,1],[-5,2],[0,2],[-1,2],[5,2],[1,2],[4,4],[-1,1],[-5,-1],[-1,2],[1,3],[-1,4],[-1,4],[-5,6],[-1,1],[-2,2],[-3,8],[1,2],[3,2],[-7,-1],[0,-1],[1,-2],[1,-3],[0,-3],[1,-3],[3,-3],[2,-2],[3,-5],[2,-4],[-1,-3],[-2,-3],[-4,-3],[-2,-2],[0,-2],[-3,-2],[-2,0],[-2,1],[2,-4],[1,-4],[-1,-4],[-4,-3],[-2,0],[-4,-2],[-10,-1],[-4,1],[-7,2],[-7,1],[-4,3],[-4,4],[-2,5],[0,4],[1,2],[3,2],[2,11],[4,9],[10,10],[2,3],[1,2],[0,1],[-1,1],[-12,-11],[-7,-2],[-2,3],[0,5],[2,1],[5,-1],[3,3],[-4,4],[-4,1],[-1,1],[4,3],[9,-1],[3,3],[3,2],[4,4],[1,3],[0,3],[0,3],[0,2],[0,3],[-1,2],[-2,3],[-6,3],[-2,-3],[-2,-2],[-2,0],[-2,1],[-3,1],[-2,1],[-3,1],[-1,1],[0,2],[0,4],[2,1],[4,2],[3,2],[2,4],[0,3],[-1,5],[-4,3],[-5,-3],[-3,-1],[0,2],[-1,2],[-2,3],[-4,2],[-3,1],[0,2],[1,2],[1,3],[2,5],[2,0],[2,0],[-1,4],[-2,4],[-2,2],[0,1],[0,1],[-2,3],[-1,2],[-3,5],[-2,2],[-3,1],[-3,0],[-4,-1],[-8,-2],[-7,-1],[-1,1],[3,2],[5,2],[6,1],[2,4],[0,3],[0,3],[-2,3],[2,1],[6,2],[2,0],[3,3],[-7,5],[-8,3],[-2,2],[-2,2],[-1,3],[-3,3],[-3,3],[-5,3],[-12,6],[-5,4],[-3,6],[-2,2],[-2,2],[-9,4],[-1,2],[9,6],[1,2],[-4,6],[-4,4],[-4,2],[-6,1],[-5,2],[-6,3],[-5,2],[-7,3],[-13,5],[-19,7],[-9,3],[-5,1],[-7,1],[-13,3],[-11,1],[-7,0],[-2,0],[-5,4],[-8,2],[-5,-1],[-5,-4],[-6,-3],[-3,-1],[-5,3],[-2,3],[-3,1],[-2,-1],[-4,-3],[-4,-2],[-6,-3],[-5,-1],[-7,-1],[-1,0],[-3,0],[-3,0],[-3,2],[-3,3],[-2,1],[-2,0],[-5,-1],[-7,-4],[-3,-1],[-2,0],[-3,2],[-6,3],[-3,-1],[-3,-1],[1,-2],[6,-6],[5,-5],[-5,0],[-36,6],[-5,1],[-7,4],[-5,2],[-10,5],[-7,3],[-3,3],[0,1],[2,3],[15,7],[5,2],[12,1],[3,1],[1,1],[-3,2],[-16,-1],[-13,1],[-12,3],[-2,1],[-2,2],[-2,3],[1,3],[3,3],[1,2],[1,1],[-15,-8],[-6,-2],[-5,0],[-3,2],[-2,1],[0,2],[1,1],[1,1],[-8,3],[-3,3],[-1,2],[3,3],[3,2],[2,1],[7,2],[27,2],[19,-2],[6,6],[4,2],[13,3],[20,0],[13,-1],[7,-2],[9,-3],[0,1],[-2,3],[0,2],[3,5],[2,3],[-1,2],[-4,4],[-7,3],[-4,1],[-4,-1],[-5,-2],[-10,-6],[-5,-1],[-8,0],[-4,0],[-4,1],[-7,3],[-2,1],[-3,-2],[-4,-3],[-3,-2],[-4,-1],[-3,-1],[-4,1],[-17,4],[-4,3],[0,3],[-6,3],[-6,0],[0,2],[7,4],[6,2],[-1,1],[-8,0],[-6,-3],[-3,0],[-7,0],[-8,1],[-3,1],[-4,3],[-4,1],[-11,3],[-3,1],[-2,2],[-10,5],[-5,4],[-1,3],[7,5],[0,1],[-3,2],[-1,2],[1,2],[6,5],[2,1],[10,3],[10,4],[4,1],[4,0],[13,0],[4,1],[4,2],[6,2],[12,3],[27,5],[2,1],[0,1],[-2,2],[-1,1],[6,2],[12,4],[9,1],[5,1],[5,0],[6,2],[4,1],[21,1],[10,-1],[4,0],[3,0],[4,3],[8,6],[3,4],[4,5],[5,9],[3,9],[3,9],[2,5],[1,2],[4,2],[5,2],[8,2],[-1,0],[-3,2],[-3,0],[-3,0],[-6,-2],[-6,-1],[-7,0],[-5,-1],[-4,-1],[-7,-2],[-5,1],[-9,2],[-4,1],[-11,-1],[-3,1],[-3,2],[-2,3],[-2,3],[0,3],[4,7],[2,1],[10,7],[7,3],[7,3],[4,1],[5,1],[4,1],[8,5],[8,4],[11,8],[5,2],[17,3],[5,0],[4,0],[3,-2],[11,-8],[1,0],[-2,3],[-4,9],[1,3],[6,4],[2,1],[7,0],[10,-1],[7,-2],[5,-2],[7,-1],[3,0],[2,1],[3,3],[5,6],[1,6],[0,9],[-2,5],[-1,4],[1,3],[5,4],[5,3],[11,4],[9,1],[6,-1],[7,-2],[10,-1],[9,-3],[15,-8],[9,-4],[8,-2],[8,-3],[12,-7],[6,-2],[4,-1],[3,-1],[-1,2],[-6,4],[-8,5],[-19,7],[-11,6],[-9,6],[-7,4],[-13,3],[1,2],[15,5],[27,4],[32,4],[10,-1],[19,2],[1,2],[4,1],[17,3],[5,0],[8,-1],[8,-3],[4,-3],[5,-4],[2,-6],[0,-19],[0,-4],[1,-1],[3,2],[5,4],[3,2],[3,5],[2,5],[1,5],[-4,4],[-1,8],[3,4],[7,0],[28,-14],[11,-3],[13,-8],[15,1],[13,-1],[7,0],[2,1],[-4,4],[-19,8],[-9,7],[-6,9],[-2,5],[5,0],[22,0],[32,-4],[42,-13],[21,-5],[37,-16],[11,-2],[4,-1],[4,2],[2,2],[0,3],[-2,4],[-1,4],[0,4],[2,10],[6,3],[3,3],[-3,6],[-7,4],[-27,11],[0,1],[6,2],[8,1],[67,-3],[11,-1],[5,-1],[3,-1],[2,0],[15,1],[-1,3],[-1,1],[-78,5],[-15,2],[-7,0],[-8,-2],[-16,0],[-7,0],[-9,6],[8,6],[7,0],[14,-2],[8,3],[13,3],[13,1],[28,7],[5,0],[6,0],[15,-2],[5,-1],[7,-4],[4,-1],[4,0],[6,-2],[9,5],[8,6],[10,3],[13,-2],[8,-2],[7,-3],[11,-2],[18,-11],[4,0],[1,1],[2,2],[1,3],[2,4],[-2,1],[-15,5],[-3,1],[-3,3],[0,2],[3,2],[3,1],[10,-1],[3,1],[3,1],[4,3],[3,1],[6,0],[10,-2],[9,0],[3,1],[1,2],[1,1],[1,0],[32,0],[8,1],[6,1],[8,0],[6,0],[8,-2],[9,0],[12,3],[11,1],[64,0],[21,-2]],[[2530,5988],[2,-1],[1,-1],[3,-3],[3,-2],[1,5],[-1,3],[0,1],[0,2],[10,-14]],[[2549,5978],[-1,-2],[-3,-4],[-5,-8],[-4,-7],[-4,-7],[-3,-6],[-1,0],[-4,-4],[-1,-2],[-1,-9],[-1,-2],[1,-4],[1,-7],[0,-4],[-3,-5],[-2,-4],[-1,-2]],[[2517,5901],[-1,1],[-2,-1],[-1,-1],[-1,-1],[0,-2],[0,-5],[0,-2],[0,-1],[-3,-2],[-1,-3],[-1,-3],[-2,-2],[-1,0],[-1,0],[-2,-3],[-3,-6],[-1,-4],[0,-3],[0,-3]],[[2497,5860],[-11,10],[-3,2],[-15,0],[-7,3],[-7,8],[-5,7],[-11,18]],[[2438,5908],[0,2],[1,3],[1,4],[-1,4],[0,3],[1,5],[0,4],[0,2],[1,2],[1,3],[-3,9],[0,3],[0,2],[3,11],[3,12],[4,13],[3,9],[8,0],[5,0],[8,0],[7,0],[5,0],[2,0],[0,5],[0,6],[1,5],[0,3],[-1,3],[-3,1],[-2,3],[0,3],[-1,4],[-1,4],[-3,5],[-4,5],[-4,6],[-3,8],[-3,6],[-2,2],[0,1],[6,0],[5,0],[0,11],[0,11],[0,11],[10,0],[13,0],[12,0],[10,0],[6,0]],[[9020,5832],[-1,0],[-1,2],[-1,1],[0,7],[4,6],[1,6],[1,-1],[1,-1],[1,-1],[-4,-10],[-1,-9]],[[3312,5355],[-5,14],[-6,14],[-6,14],[-1,1],[3,7],[2,5],[2,2],[1,3],[-1,10],[0,4],[-1,4],[0,4],[0,4],[1,2],[1,1],[3,1],[2,1],[1,1],[1,2],[1,0],[3,-1],[1,2],[3,3],[5,5],[1,4],[1,5],[0,2],[-1,1],[-1,1],[-2,0],[-2,-1],[-1,1],[-2,3],[0,3],[1,3],[0,3],[-3,8],[0,2],[2,4],[1,3],[2,7],[1,3],[3,0],[1,2],[2,4],[3,4],[4,4],[1,6],[1,2],[3,3],[1,2],[0,2],[-5,14]],[[3333,5553],[1,-1],[4,-9],[2,-2],[0,2],[2,-1],[6,-6],[7,-11],[11,-20],[3,-8],[2,-3],[3,-9],[1,-4],[0,-17],[-3,-12],[0,-9],[0,-11],[-2,-7],[2,4],[1,10],[2,7],[2,7],[3,1],[4,-3],[3,0],[2,-2],[5,-11],[5,-9],[2,-7],[6,-4],[3,-5],[1,-5],[1,-13],[-1,-19],[0,-1]],[[3411,5375],[-2,-3],[0,-3],[-1,-4],[-1,-2],[2,-6],[1,0],[1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-3],[0,-3],[-1,-2],[-2,-1],[-5,0],[-2,0],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-4],[0,-2],[1,-3],[1,-4],[-1,-5],[-1,-4],[0,-4],[-1,-6],[-2,-6],[-1,-4],[0,-4],[1,-6],[3,-9],[1,-4],[1,-7],[3,-5],[2,-4],[0,-6],[0,-1],[2,-2],[1,-1],[2,0],[1,1],[1,1],[3,0],[0,-2],[0,-8],[1,-3],[0,-1],[1,-2],[0,-2],[0,-4],[1,-3],[-1,-5],[1,-1],[1,-1],[1,-4],[1,-2],[1,-4],[0,-2],[1,0],[0,-2],[0,-4],[1,-1],[1,-4],[0,-3],[1,-5],[2,-2],[0,-3],[2,-7],[2,-5],[2,-1],[1,-1],[2,-1],[1,-2]],[[8172,6362],[0,-1],[-2,5],[0,1],[1,0],[2,-1],[0,-2],[-1,-2]],[[8166,6362],[-4,0],[0,1],[-1,1],[2,3],[4,3],[-1,-4],[0,-4]],[[8173,6382],[1,-2],[0,-3],[1,-1],[0,-3],[-1,-1],[0,-3],[-1,-2],[-3,4],[-3,1],[-3,0],[-1,1],[0,2],[3,4],[0,1]],[[7047,1899],[-4,-3],[-3,0],[-1,2],[-3,7],[-1,1],[-1,2],[2,1],[2,-2],[5,-2],[4,-3],[3,-2],[-1,-1],[-2,0]],[[2690,5935],[-7,1],[-4,-2],[-1,-4],[-1,-2],[-2,0],[-2,-1],[-3,-4],[-3,-1],[-2,1],[-1,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-3],[-1,0],[-1,1],[-2,-1],[-1,-3],[-3,0],[-3,1],[-2,3],[-2,5],[-1,1],[-4,-3],[-1,-4],[-1,-3],[1,-2],[-1,-1],[-2,-1],[-1,-3],[-1,-5],[0,-3],[1,-3],[-1,-2],[-2,-1],[-3,-4],[-3,-7],[-2,-4],[-3,-3],[-2,-3],[0,-3],[0,-1],[0,-1],[-1,0],[-6,7],[-1,5],[-2,-1],[-1,-2],[-3,-6],[-2,-8],[-2,0],[-6,1],[-4,-1],[0,-1],[-1,-3],[1,-4],[1,-13],[0,-6],[0,-1],[-2,-1],[-2,0],[-2,-3],[0,-3],[0,-3],[-1,-4],[-1,-3],[-2,-1],[-7,0]],[[2574,5816],[0,6],[-2,2],[-2,6],[-1,3],[1,2],[-1,3],[-3,2],[-3,-2],[-1,1],[-2,1]],[[2560,5840],[3,4],[0,1],[-1,2],[-1,1],[1,3],[0,4],[1,10],[0,2],[-2,2],[-3,1],[-2,-1],[-2,1],[-1,4],[-2,1],[-3,-2],[-4,-4],[-1,-2],[-1,0],[-1,3],[0,4],[0,1],[-2,1],[-2,1],[-1,1],[-1,2],[-3,3],[-1,3],[-3,5],[-1,3],[-1,2],[-2,2],[-1,-1],[-5,3],[-1,1]],[[2549,5978],[3,-1],[2,4],[1,1],[3,4],[1,1],[5,2],[2,0],[2,-4],[2,-3],[3,2],[2,1],[11,-5],[4,2],[7,1],[4,-1],[5,6],[3,1],[4,3],[-1,3],[-1,1],[6,-1],[8,-6],[9,1],[3,3],[2,1],[9,-6],[3,-5],[2,-1],[1,1],[1,1],[-2,1],[-1,2],[7,-3],[14,-23],[0,-2],[-6,7],[-3,0],[-1,-2],[0,-3],[1,-2],[1,0],[1,1],[2,-1],[2,-3],[2,-4],[1,-4],[1,0],[2,3],[2,0],[1,-3],[1,0],[-1,5],[-4,4],[1,0],[8,-8],[2,-9],[2,-2],[2,-3]],[[2599,6017],[-4,-5],[-2,0],[2,4],[4,3],[2,2],[3,-1],[-5,-3]],[[2614,6022],[-2,-4],[0,2],[1,3],[1,2],[1,0],[0,-2],[-1,-1]],[[5489,7580],[3,-4],[-11,6],[1,0],[2,0],[5,-2]],[[5462,7594],[5,-2],[4,1],[3,-1],[2,-2],[1,-1],[-3,0],[-3,1],[-3,-2],[-4,1],[-1,1],[-1,2],[0,2]],[[5512,7568],[0,-2],[1,-3],[1,-3]],[[5514,7560],[-5,6],[-5,6],[-9,10],[-7,2],[-9,8],[-6,3],[2,0],[3,0],[14,-10],[-2,3]],[[5477,7601],[-2,0],[-12,0],[-4,1],[-4,4],[-1,1],[4,1],[4,-1],[1,-3],[10,-2],[4,-1]],[[5466,7610],[-5,0],[-3,1],[-2,2],[0,1],[0,3],[5,0],[6,-2],[2,-2],[-1,-1],[-2,-2]],[[5426,7652],[2,-5],[-1,1],[-2,3],[-1,3],[2,-2]],[[5423,7657],[0,-2],[-3,4],[-2,2],[0,2],[5,-6]],[[5421,7649],[1,-1],[0,-1],[-2,1],[-7,13],[-1,2],[3,-3],[6,-11]],[[5421,7673],[0,-2],[-2,3],[-2,2],[-1,3],[-2,3],[-1,3],[-4,8],[0,1],[2,-2],[1,-2],[1,-1],[3,-4],[3,-6],[4,-5],[-1,0],[-1,-1]],[[5411,7698],[1,-2],[-2,2],[-3,1],[0,2],[0,1],[1,1],[1,0],[1,-1],[1,-4]],[[5402,7692],[0,-2],[-2,3],[-1,5],[-2,9],[0,2],[1,2],[0,3],[-2,7],[2,1],[1,-5],[0,-3],[2,-3],[0,-6],[0,-9],[1,-2],[0,-2]],[[5411,7711],[-4,-1],[-1,2],[-1,2],[-2,1],[-2,2],[0,1],[2,3],[1,5],[2,-3],[2,-5],[1,-2],[2,-5]],[[5525,7768],[-1,-2],[0,-2],[-1,-2],[1,-4],[2,-7],[-1,-3],[1,-3],[3,-1],[0,-1],[-1,-1],[-1,-2],[0,-4],[3,-4],[5,-3],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[-3,0],[-2,2],[0,-1],[0,-2],[-2,0],[1,-10],[0,-3],[-1,-1],[-1,1],[-1,0],[0,-1],[0,-2]],[[5488,7590],[-1,2],[-6,9],[-6,5],[-6,11],[-8,4],[-6,5],[-4,-1],[-3,-1],[-3,0],[-2,1],[-1,3],[0,2],[0,3],[-3,5],[-5,4],[-4,6],[-9,15],[-1,5],[1,1],[2,0],[1,1],[2,0],[3,-1],[-2,4],[-3,3],[-8,13],[-3,6],[0,7],[1,9],[-2,6],[-6,9],[-2,4],[-5,3],[-2,-1],[-1,-3],[-1,-7],[-4,-10],[-1,-4],[-3,-5],[-1,-1],[-2,1],[-3,9],[-3,7],[0,3],[-1,4],[-2,15],[2,2]],[[5377,7743],[1,-2],[7,-3],[2,1],[1,2],[0,1],[0,1],[3,-2],[2,0],[3,0],[3,0],[1,1],[2,6],[1,3],[1,0],[1,0],[0,-2],[1,-3],[3,-3],[1,-2],[2,-1],[1,2],[2,0],[4,-3],[4,0],[3,1],[-1,2],[-1,2],[0,3],[0,2],[2,2],[0,1],[-2,3],[0,1],[5,4],[4,2],[1,1],[1,3],[0,5],[0,4],[-2,3],[0,2],[0,2],[1,2],[2,0],[2,2],[2,1],[2,1],[2,2],[2,4],[1,0],[3,0],[1,1],[-1,5],[1,2],[1,1],[1,0],[3,0],[2,-2]],[[5458,7801],[2,-1],[5,-4],[3,-4],[2,-5],[3,-4],[3,-3],[2,-4],[2,-5],[3,-2],[3,-1],[3,-1],[0,-3],[2,-3],[3,-2],[4,-1],[9,0],[1,0],[1,-1],[3,1],[2,2],[1,1],[3,5],[1,0],[4,0],[1,2],[1,0]],[[2977,6159],[0,-4],[-7,5],[-6,6],[0,3],[3,1],[3,-2],[4,-4],[3,-5]],[[3006,6115],[-2,5],[-3,4],[-1,2],[-2,1],[-12,-1],[-2,-1],[-1,-1],[-1,-1],[-3,-1],[-4,0],[-8,3],[-3,2],[-3,1],[-3,0],[-4,-1],[-3,-3],[-2,-4],[0,-4],[-2,-1],[-3,6],[-2,5],[-3,3],[-6,4],[-2,3],[0,4],[2,10],[3,2],[2,0],[3,-1],[4,-2],[3,-2],[5,-1],[2,-2],[19,-4],[4,-1],[1,0],[1,2],[1,2],[2,3],[5,0],[1,1],[1,3],[0,3],[-3,4],[-5,9],[-5,10],[2,4],[-1,6],[1,6],[1,6],[-4,5],[-6,5],[-7,2],[-2,1],[-1,4],[1,5],[2,3],[3,2],[3,1],[6,1],[7,-1],[6,-6],[6,-4],[7,-1],[3,-2],[2,2]],[[2981,6234],[1,-2],[0,-1],[-3,1],[-3,2],[-1,-1],[-2,2],[2,2],[1,0],[2,0],[3,-3]],[[5614,7914],[3,1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-3],[1,-2],[2,0],[3,-3],[2,-4],[2,-2],[1,0],[2,1],[0,-1],[2,-2],[0,-2],[0,-2],[0,-2],[1,-1]],[[5635,7887],[-1,-1],[-5,-8],[-2,-2],[-1,0],[-2,1],[-2,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-4],[-2,-3],[-2,-2],[-1,-2],[-1,-7],[-1,-2],[-1,-1],[-1,-2],[-2,-10],[-2,-3],[-2,-3],[0,-2],[0,-2],[-2,-5],[-2,-6],[-1,-2],[1,-3],[-3,-3],[-1,-2],[-1,0],[-1,-2],[-1,-6],[0,-2],[0,-2],[-2,-1],[0,-2],[-1,-3],[-1,-2],[-2,-2],[-6,1],[-2,-1],[-1,-1],[0,-2],[0,-1],[-2,-2],[-1,0],[-3,2],[-6,-2],[-1,-2]],[[5562,7778],[-1,1],[-2,1],[-6,1],[-2,-1],[-4,1],[-3,1],[-2,-1],[-2,-4],[-1,-2],[-1,0],[-2,-2],[-1,-1],[-2,-1],[-2,0],[-1,2],[-1,-1],[0,-1],[-1,-2],[-3,-1]],[[5458,7801],[0,2],[-2,5],[-2,1],[1,3],[-1,1],[-1,1],[0,4],[-1,3],[0,1],[-6,1]],[[5476,7890],[1,1],[2,-1],[1,0],[5,-7],[4,-4],[4,-2],[5,-1],[5,0],[10,1],[7,1],[0,1],[1,2],[-1,3],[0,3],[1,3],[4,3],[10,1],[5,3],[1,3],[2,3],[2,0],[2,-1],[3,-3],[2,-1],[2,1],[5,4],[5,5],[4,11],[1,2],[4,2],[6,-1],[3,-1],[3,-1],[3,0],[5,3],[2,0],[2,-2],[1,-2],[2,-1],[0,-3],[1,-1],[1,-1],[1,-2],[1,-1],[10,3],[0,1]],[[8414,4400],[-2,0],[-1,1],[0,5],[1,3],[6,4],[2,3],[3,8],[2,1],[1,1],[0,-5],[1,-4],[0,-1],[-3,-3],[-2,-6],[-6,-5],[-2,-2]],[[8385,4419],[-2,0],[-3,1],[0,1],[2,3],[2,4],[3,1],[1,-1],[0,-5],[-3,-4]],[[8427,4436],[-2,-2],[0,5],[2,5],[2,2],[1,-2],[0,-1],[-3,-2],[0,-5]],[[8333,4491],[1,-2],[5,-5],[0,-3],[1,-3],[1,-3],[2,0],[2,0],[1,-1],[2,-3],[2,-5],[2,-6],[2,-3],[2,-5],[-1,-4],[-3,-6],[-2,-1],[-2,-1],[-3,-3],[-2,2],[-3,1],[-3,2],[-3,5],[-2,5],[-1,4],[-4,3],[-6,9],[-3,0],[-2,0],[-1,0],[-8,4],[-1,2],[-1,3],[-1,3],[0,3],[1,3],[1,1],[4,4],[3,1],[3,0],[6,1],[5,-2],[1,1],[3,4],[1,-2],[1,-3]],[[8473,4483],[-2,-3],[-1,-6],[-3,-5],[-4,-10],[-3,-4],[-2,-6],[-3,-4],[-2,-1],[-5,-1],[-5,-6],[-3,-3],[-3,0],[-3,2],[-1,2],[0,4],[1,2],[1,3],[1,3],[-4,3],[0,3],[1,8],[1,8],[2,5],[4,10],[3,4],[2,2]],[[8445,4493],[0,-2],[1,-2],[1,-1],[0,1],[4,-1],[1,1],[2,4],[1,2],[1,4],[0,3]],[[8456,4502],[4,2],[2,3],[1,3],[5,5],[1,2]],[[8469,4517],[0,-5],[1,-2],[1,0],[3,3],[1,0],[1,-2],[0,-5],[-2,-4],[-3,0],[-1,-1],[0,-3],[0,-2],[1,-2],[1,-3],[1,-8]],[[8211,4527],[-1,-2],[-2,4],[-1,1],[2,3],[2,-2],[0,-4]],[[8415,4540],[-1,-3],[-1,1],[0,3],[1,2],[2,3],[2,1],[2,-1],[0,-1],[-3,-2],[-2,-3]],[[8318,4529],[-1,-1],[-2,1],[1,5],[-1,4],[1,3],[1,5],[0,1],[1,-1],[0,-1],[1,-1],[1,0],[0,-2],[0,-2],[0,-2],[-2,-2],[-1,-3],[1,-4]],[[8425,4552],[-1,-3],[-7,0],[0,4],[2,3],[1,2],[2,1],[3,-2],[0,-5]],[[8239,4536],[-3,-12],[1,-2],[1,-2],[-6,-2],[-3,1],[-1,0],[-6,2],[-4,3],[-1,2],[1,3],[1,-1],[3,-1],[2,2],[0,8],[-1,10],[5,8],[2,4],[3,2],[6,-5],[1,-1],[1,-2],[1,-3],[-3,-14]],[[8452,4553],[-2,-3],[-1,-7],[-1,-2],[-3,-1],[-1,6],[-2,0],[1,6],[1,2],[2,0],[0,-2],[1,-1],[3,10],[1,0],[1,-1],[0,-1],[0,-6]],[[8442,4557],[-4,-2],[-3,-7],[-2,0],[-1,-4],[0,-1],[0,-1],[0,-2],[-1,-1],[-2,2],[-1,-2],[-1,-1],[-2,3],[-2,0],[-1,0],[3,6],[3,5],[1,2],[-1,0],[-1,1],[0,1],[2,1],[2,0],[1,-2],[1,1],[4,5],[2,-1],[2,-1],[1,-2]],[[8857,4550],[-1,-1],[-7,2],[-1,2],[0,1],[2,3],[1,4],[3,1],[1,0],[2,-9],[0,-3]],[[8265,4551],[-1,0],[-1,1],[0,3],[0,4],[0,3],[1,2],[4,0],[0,-2],[-3,-11]],[[8307,4559],[-1,0],[-1,2],[1,2],[1,1],[0,1],[1,-3],[0,-1],[0,-1],[-1,-1]],[[8460,4564],[0,-3],[2,2],[2,0],[5,0],[4,-1],[2,-1],[0,-8],[-1,-1],[-18,-6],[-2,2],[-1,2],[2,5],[0,3],[1,4],[2,3],[2,-1]],[[8550,4567],[5,-2],[2,0],[1,-2],[-3,-5],[-5,3],[-1,5],[1,1]],[[8410,4537],[-4,-3],[-3,-2],[-2,-2],[-1,-1],[-3,0],[-4,1],[-2,-1],[-7,-7],[-3,-1],[-3,-1],[0,2],[-1,2],[-3,1],[-2,-1],[-3,-6],[-3,2],[-2,-1],[-1,-1],[-2,-1],[-1,1],[-6,4],[-6,3],[-7,-1],[-5,3],[-3,-2],[-3,-3],[-1,3],[-1,3],[-1,3],[0,5],[0,3],[1,3],[1,3],[0,3],[1,-2],[1,1],[4,3],[4,6],[3,1],[2,1],[2,-1],[2,0],[1,2],[3,-4],[1,-1],[4,-1],[4,-2],[3,-3],[4,-4],[3,-4],[2,-1],[1,-1],[1,1],[2,3],[2,1],[2,0],[3,1],[2,0],[1,2],[2,-1],[1,-2],[5,-7],[2,0],[3,1],[1,2],[0,3],[1,3],[1,2],[2,2],[4,3],[3,3],[2,5],[-5,2],[1,3],[2,2],[2,0],[1,-3],[1,-11],[-1,-1],[-1,-2],[-1,-2],[-2,-4],[1,-5],[-1,-2],[-1,0]],[[8634,4554],[-2,-2],[1,5],[6,10],[1,-2],[3,0],[-4,-5],[-4,-2],[-1,-4]],[[8284,4554],[1,-2],[1,0],[3,3],[2,2],[1,0],[2,-1],[2,-2],[0,-5],[1,-1],[1,5],[1,2],[1,0],[3,0],[1,-2],[2,-7],[0,-6],[0,-3],[2,-1],[0,-3],[0,-2],[-1,-2],[-2,-1],[-1,1],[-1,2],[-1,0],[-2,0],[-2,-2],[0,-2],[2,-1],[0,-1],[0,-2],[-1,0],[-2,2],[-1,0],[-6,-3],[-1,0],[-1,3],[0,6],[-1,2],[-4,-8],[-1,-2],[-1,-1],[-2,0],[-6,-4],[-2,0],[-2,0],[-6,-5],[-3,-1],[-2,0],[-1,0],[-2,0],[-1,-3],[-3,-1],[-3,1],[-2,2],[-3,2],[0,3],[0,4],[1,5],[-1,8],[1,4],[1,4],[1,2],[2,0],[3,3],[3,5],[1,0],[4,-4],[2,0],[4,1],[1,-2],[1,-5],[1,-2],[1,-1],[3,-7],[2,0],[2,-1],[4,4],[3,0],[0,4],[-1,4],[-2,3],[-1,0],[-2,0],[-1,1],[-4,6],[-2,4],[0,5],[0,3],[3,3],[2,0],[5,-1],[1,-2],[2,-7],[1,-3]],[[8206,4564],[3,-4],[4,-9],[0,-2],[-1,-3],[-3,-4],[-6,-6],[-1,-3],[-2,-5],[0,-2],[0,-2],[-1,-1],[-1,-1],[-2,2],[2,3],[0,4],[-1,4],[-2,4],[-3,4],[-3,4],[-3,2],[-3,1],[-1,2],[-2,5],[-1,3],[0,3],[0,3],[1,0],[3,-1],[6,-3],[3,0],[2,0],[4,7],[1,0],[4,-3],[3,-2]],[[8606,4575],[-2,-5],[-2,0],[-3,8],[0,5],[0,1],[2,1],[4,-2],[1,-4],[0,-4]],[[8521,4592],[1,-2],[0,-2],[-4,-1],[-3,-3],[-1,-4],[-2,-4],[-4,2],[-4,0],[-2,2],[-2,0],[-2,-2],[-4,-4],[0,6],[1,4],[3,9],[4,-2],[3,-1],[4,2],[3,4],[4,2],[3,-5],[2,-1]],[[8539,4595],[-2,-1],[0,4],[0,4],[3,-1],[0,-3],[0,-1],[-1,-2]],[[8847,4557],[-6,-8],[-9,1],[-3,0],[-5,-2],[-1,2],[1,7],[4,20],[5,17],[2,4],[3,5],[3,3],[7,4],[6,-1],[1,-2],[2,-5],[2,-5],[1,-6],[-3,-11],[-3,-11],[-5,-8],[-2,-4]],[[8647,4573],[0,-1],[-4,1],[-2,0],[0,4],[-1,4],[2,5],[0,5],[1,1],[1,3],[1,9],[1,2],[2,1],[1,5],[1,1],[1,4],[2,2],[0,3],[1,2],[2,1],[1,-1],[1,-4],[-2,-4],[1,-10],[-2,-11],[-1,-3],[-2,-3],[-1,-3],[-3,-5],[0,-5],[0,-2],[-1,-1]],[[8665,4620],[0,-3],[-1,2],[-1,3],[-2,1],[-1,0],[-1,2],[5,1],[1,-6]],[[8177,4624],[0,-2],[-2,0],[-1,4],[1,1],[1,1],[1,-1],[0,-3]],[[8573,4621],[-1,-1],[-2,3],[-1,1],[2,3],[1,1],[1,-1],[0,-2],[0,-1],[0,-3]],[[8354,4625],[-3,0],[-1,0],[0,6],[3,-3],[1,0],[0,-3]],[[8162,4626],[-1,-1],[-5,0],[-3,-4],[-2,-2],[-7,0],[-1,1],[-1,0],[0,-1],[-3,0],[-7,5],[-2,4],[2,4],[2,6],[6,1],[25,1],[3,-6],[0,-1],[-5,-4],[-1,-3]],[[8204,4634],[-2,-1],[-2,2],[0,3],[0,2],[3,2],[2,-1],[2,-1],[1,-2],[1,-2],[-4,0],[-1,-2]],[[8740,4647],[0,-1],[-1,2],[0,1],[1,3],[1,2],[1,0],[0,-2],[-2,-5]],[[7923,4653],[-2,-1],[-1,1],[-1,2],[2,4],[1,1],[1,0],[1,-2],[-1,-5]],[[8741,4659],[-1,-1],[-1,5],[1,1],[2,-3],[-1,-2]],[[8744,4666],[-1,-1],[0,3],[1,3],[1,1],[1,0],[-2,-6]],[[8736,4665],[0,-4],[-1,-5],[-2,-5],[-2,-8],[-1,-2],[-3,-4],[-3,5],[-1,4],[1,17],[2,0],[1,1],[-2,2],[-1,10],[1,4],[1,1],[2,-3],[2,-5],[3,-5],[3,-3]],[[7982,4691],[3,-7],[2,-4],[3,-2],[3,0],[3,-1],[3,-2],[4,-1],[2,0],[1,1],[1,1],[1,-2],[3,-5],[3,-6],[0,-2],[2,-13],[2,-4],[3,-1],[3,0],[3,0],[8,-3],[3,0],[3,3],[2,-2],[7,-3],[3,-1],[4,1],[3,0],[2,-1],[2,-1],[1,-1],[2,0],[2,3],[2,6],[1,6],[1,7],[1,4],[1,2],[2,2],[1,1],[4,-1],[1,-1],[4,-12],[1,-1],[4,-1],[1,0],[3,3],[2,0],[2,-3],[2,-3],[1,-2],[7,-2],[3,-5],[1,0],[5,0],[3,0],[3,-2],[2,-7],[1,-8],[0,-2],[3,-3],[1,-2],[0,-8],[0,-7],[6,-6],[7,-4],[7,0],[7,1],[3,2],[5,3],[1,0],[8,-9],[1,-1],[1,-6],[0,-7],[-1,-15],[-1,-4],[1,-4],[1,-9],[1,-3],[3,-5],[0,-2],[0,-3],[-3,2],[-3,2],[-1,3],[-1,2],[-4,0],[-6,3],[-7,5],[-12,12],[-3,0],[-3,-2],[-4,-3],[-3,-2],[-3,0],[-2,0],[-7,3],[-7,2],[-16,1],[-5,2],[-8,2],[-6,2],[-6,3],[-16,15],[-5,4],[-16,7],[-3,1],[-5,-1],[-4,2],[-3,0],[-5,-2],[-1,-2],[-2,-3],[-3,0],[-4,1],[-8,3],[-3,2],[-3,3],[-3,4],[-1,2],[-8,4],[-6,1],[-12,2],[-2,2],[-3,1],[-1,4],[0,4],[1,4],[1,3],[1,4],[-9,7],[-7,4],[-3,1],[-3,0],[-3,-1],[-4,1],[-1,1],[-2,0],[-2,-1],[-1,1],[0,3],[0,3],[2,3],[1,1],[1,-5],[0,-1],[2,-1],[3,6],[1,4],[1,8],[1,-1],[2,1],[1,1],[2,20],[2,6],[2,5],[2,1],[2,-3],[5,-1],[3,-2],[3,0],[3,-1],[5,-4],[1,1],[2,1],[2,4],[1,6],[3,-3],[5,-1],[1,-2]],[[8445,4693],[0,-3],[-1,3],[-1,2],[0,3],[1,-1],[1,-4]],[[8347,4674],[-1,-10],[-1,3],[0,9],[0,5],[0,5],[0,13],[1,6],[1,-8],[1,-4],[-1,-19]],[[8130,4702],[0,-2],[-3,1],[0,2],[1,4],[1,0],[2,-1],[-1,-4]],[[8688,4700],[-1,-6],[-2,2],[-1,4],[1,7],[-2,8],[2,-1],[1,-2],[0,-1],[2,-7],[0,-4]],[[8742,4709],[0,-3],[0,-4],[0,-4],[-1,-4],[1,-6],[0,-3],[0,-4],[0,-2],[-1,-5],[-1,-2],[0,-1],[-1,-1],[-5,1],[-3,4],[-2,4],[0,2],[-3,5],[0,2],[0,2],[2,1],[2,0],[0,2],[1,8],[-3,5],[-1,3],[1,1],[3,-2],[3,9],[1,2],[0,6],[2,0],[1,-1],[1,-3],[1,-2],[-1,-3],[2,-1],[1,-6]],[[8692,4697],[-3,-5],[2,12],[1,6],[2,4],[3,18],[1,-2],[-1,-14],[-4,-9],[-1,-10]],[[7843,4722],[-3,0],[-4,7],[0,2],[1,3],[1,-1],[5,-4],[1,-3],[-1,-4]],[[8433,4734],[0,-6],[-1,1],[-1,2],[0,2],[0,1],[0,2],[2,-2]],[[8389,4725],[-2,-2],[-3,7],[-1,5],[0,3],[1,3],[1,1],[-1,3],[2,1],[1,0],[1,-4],[1,-1],[1,-4],[-1,-12]],[[8406,4735],[-1,-4],[-1,-3],[-2,-1],[-1,1],[-2,3],[-1,-3],[-1,0],[-1,4],[1,10],[2,4],[0,5],[-2,9],[1,4],[5,4],[3,4],[2,1],[1,-3],[0,-16],[-4,-12],[1,-7]],[[8421,4777],[0,-13],[0,-3],[-1,5],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,-5],[0,-4],[-1,-3],[0,-11],[0,-3],[2,2],[3,-4],[1,-3],[0,-3],[-2,-4],[-2,-1],[-2,1],[0,-1],[-1,-1],[-1,-3],[0,-2],[-1,-7],[-1,-2],[-3,2],[-1,-2],[-1,0],[-2,7],[0,4],[2,3],[0,3],[1,3],[1,4],[1,3],[0,2],[1,7],[0,3],[1,4],[1,6],[0,13],[2,10],[3,3],[1,1],[0,-3],[3,-7]],[[8709,4795],[2,-3],[-3,2],[-5,6],[-1,3],[4,-5],[3,-3]],[[8423,4803],[-3,-7],[-2,0],[-2,5],[-1,5],[0,2],[2,3],[5,-1],[1,-3],[0,-4]],[[8570,4834],[-4,-3],[1,6],[0,1],[3,-1],[0,-3]],[[8562,4829],[0,-2],[-2,-2],[-1,1],[0,2],[0,1],[-1,-1],[-2,-1],[-2,-4],[-1,2],[0,3],[0,1],[2,4],[3,1],[4,5],[2,-1],[-1,-2],[0,-2],[-1,-3],[0,-2]],[[8575,4837],[0,-3],[0,-1],[-2,1],[-1,0],[-1,5],[0,1],[2,-2],[1,0],[1,-1]],[[8233,4841],[-1,-10],[-2,6],[2,7],[1,1],[0,-4]],[[8544,4850],[0,-2],[-2,1],[-2,3],[2,1],[0,1],[2,-4]],[[8230,4818],[-6,-11],[-1,2],[1,12],[-2,6],[0,6],[1,9],[2,7],[3,5],[1,0],[0,-8],[0,-4],[1,-2],[-1,-3],[1,-11],[0,-2],[-1,-4],[1,-2]],[[8523,4864],[5,-5],[1,-3],[0,-3],[1,-2],[1,-2],[2,-3],[1,-5],[-1,-10],[-2,0],[-2,-2],[-4,-5],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-4,3],[-3,4],[-6,6],[-1,2],[-1,3],[-2,6],[-1,4],[0,11],[1,2],[1,2],[3,-3],[3,3],[7,2],[7,0],[1,-1]],[[8554,4873],[-1,-5],[-2,0],[-1,1],[3,3],[1,1]],[[7968,4869],[0,-2],[-2,1],[-1,2],[-1,1],[0,2],[2,2],[3,-2],[-1,-4]],[[7985,4875],[-2,-2],[0,2],[0,1],[0,3],[2,0],[0,-1],[0,-3]],[[8603,4877],[7,-7],[3,-1],[6,1],[2,0],[5,-9],[2,-6],[0,-5],[1,-4],[1,-1],[2,-1],[2,-7],[0,-2],[-1,-17],[-7,7],[-6,7],[-2,3],[-7,6],[-1,2],[-1,3],[-3,4],[-6,0],[-2,0],[-1,-1],[0,-2],[0,-4],[-2,-1],[-3,3],[-4,1],[-3,2],[-3,2],[-1,1],[0,2],[0,2],[-1,0],[-1,0],[-2,-2],[-1,-2],[-2,-6],[-2,-2],[-3,-1],[-1,1],[-2,1],[-4,11],[-1,2],[-1,2],[-2,1],[-1,-2],[-1,-3],[0,-4],[0,-2],[-2,-6],[-2,-4],[0,1],[1,5],[0,4],[-1,3],[-1,4],[7,17],[2,4],[11,1],[6,-1],[3,1],[2,1],[2,0],[1,-4],[1,-2],[1,0],[3,3],[3,4],[1,1],[2,1],[2,-1],[1,-1],[4,-3]],[[7789,4858],[1,-9],[-3,6],[0,5],[-1,2],[-2,4],[-1,4],[-1,10],[1,2],[1,0],[6,-13],[0,-2],[0,-5],[-1,-1],[0,-3]],[[8005,4869],[0,-6],[-1,-3],[-2,-3],[-1,-1],[-2,0],[-1,3],[0,2],[-3,3],[0,-1],[-1,-4],[-4,-2],[-2,0],[1,5],[-1,3],[0,5],[0,2],[-1,2],[1,3],[0,4],[1,4],[1,10],[5,2],[1,-2],[5,-2],[4,-6],[2,-8],[-2,-10]],[[7783,4884],[-2,-4],[-4,0],[0,3],[0,7],[-1,2],[0,1],[1,4],[0,1],[6,-10],[0,-4]],[[8732,4921],[-1,-1],[0,3],[0,3],[1,1],[0,-1],[1,-1],[-1,-4]],[[7773,4908],[0,-2],[-5,6],[-2,1],[-2,6],[1,2],[0,4],[0,2],[2,0],[1,-3],[2,-6],[2,-7],[1,-3]],[[8501,4901],[-1,-1],[-1,4],[-2,9],[-1,2],[-1,9],[1,2],[1,4],[1,0],[1,-3],[-1,-9],[3,-11],[0,-6]],[[8439,4931],[1,-3],[-2,1],[-1,4],[1,2],[1,-4]],[[8500,4941],[8,-2],[-1,-2],[-9,-4],[-3,1],[-10,-2],[-2,0],[0,3],[-1,2],[2,3],[2,0],[5,-1],[9,2]],[[8420,4939],[-2,-5],[0,3],[0,2],[1,2],[1,1],[0,-3]],[[8620,4947],[0,-4],[2,-3],[-1,-5],[0,-1],[0,-2],[1,-2],[-1,-1],[-1,0],[-2,-1],[-1,-3],[-3,-1],[-1,3],[-6,2],[-4,5],[0,2],[7,6],[3,2],[3,0],[3,2],[1,1]],[[8471,4946],[2,-2],[1,0],[1,2],[2,-1],[0,-4],[2,1],[1,-2],[0,-1],[0,-4],[-5,0],[-3,-3],[-5,2],[-6,-5],[-3,-1],[-3,0],[-2,9],[1,10],[1,1],[2,1],[5,1],[9,-4]],[[8762,4952],[11,-3],[3,1],[6,-1],[6,-4],[9,-1],[3,-1],[2,-3],[-5,-2],[-3,-2],[-4,-1],[-4,1],[-3,-2],[-1,3],[-4,2],[-5,4],[-10,5],[-1,3],[0,1]],[[8026,4951],[-4,-3],[0,6],[2,1],[2,-1],[0,-3]],[[7945,4948],[1,-4],[1,-4],[1,-4],[1,-19],[5,-16],[12,-7],[-2,-2],[-1,-3],[0,-3],[-2,-11],[0,-2],[1,-4],[0,-4],[-1,0],[-2,1],[-2,1],[-1,2],[-1,2],[-2,1],[-2,3],[-4,3],[-3,1],[-2,5],[-1,6],[1,9],[-1,2],[-1,3],[-2,6],[0,7],[-3,3],[-2,2],[-2,2],[-6,-3],[-1,0],[-1,2],[-3,3],[0,4],[1,3],[4,3],[1,3],[1,4],[-1,3],[0,2],[1,3],[2,2],[3,3],[2,-5],[0,-4],[1,-3],[2,4],[-1,8],[3,1],[2,1],[2,-3],[1,-3],[1,-4]],[[8432,4946],[-1,-1],[-2,2],[0,9],[2,2],[0,-1],[0,-2],[1,-3],[1,-2],[-1,-4]],[[8559,4948],[-2,-2],[-1,-1],[-4,2],[-4,0],[-5,-3],[-3,2],[-2,3],[0,3],[2,9],[3,6],[2,1],[3,-2],[4,-5],[4,-5],[3,-4],[0,-4]],[[8422,4977],[0,-3],[-1,-4],[1,-6],[3,8],[3,1],[1,-1],[1,-2],[1,-3],[-1,-6],[-2,-3],[-2,-1],[-1,4],[-2,1],[-1,-9],[0,-1],[-1,-1],[-2,2],[0,1],[2,4],[-1,11],[-1,-2],[-4,-10],[-2,-4],[-1,2],[-1,7],[0,9],[2,6],[2,-1],[5,2],[2,-1]],[[8047,4977],[-6,-6],[-1,0],[-1,2],[0,12],[1,3],[4,1],[2,-2],[2,-2],[0,-4],[0,-2],[-1,-2]],[[8748,4981],[-1,-2],[-2,2],[-1,4],[0,4],[2,2],[1,-2],[1,-3],[1,-1],[-1,-4]],[[7754,4941],[-3,0],[-5,7],[-2,3],[0,5],[-5,16],[-1,4],[2,13],[6,3],[1,-2],[1,-6],[3,-11],[1,-6],[1,-2],[0,-2],[0,-2],[2,-7],[2,-4],[0,-6],[-3,-3]],[[8638,4969],[-1,-2],[-3,2],[-2,3],[-1,5],[-1,4],[0,3],[-1,4],[0,2],[6,4],[1,-2],[3,0],[1,-3],[-1,-13],[-1,-7]],[[8635,5001],[0,-3],[-2,-2],[-12,-4],[1,2],[1,2],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[2,-1],[3,0],[0,3],[2,0]],[[8760,5008],[6,-2],[2,0],[2,-3],[2,2],[2,-1],[5,-9],[2,-6],[4,-5],[2,-2],[-2,-5],[-4,-2],[-1,0],[-3,2],[-2,0],[-3,3],[0,6],[-2,12],[-3,-4],[-3,6],[-1,0],[0,-1],[-2,2],[-1,4],[0,3]],[[8535,5000],[0,-1],[-3,2],[-1,1],[2,8],[1,0],[1,-8],[0,-2]],[[8628,5015],[-2,0],[-3,3],[2,2],[1,1],[1,1],[1,-1],[1,-2],[-1,-4]],[[8384,5023],[1,-3],[0,-3],[-1,1],[-3,0],[-1,-1],[-1,-1],[-1,0],[1,2],[2,5],[1,-1],[2,1]],[[8915,4892],[0,-11],[0,-12],[0,-12],[0,-13],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-5],[-1,-7],[-2,-9],[0,-8],[2,-6],[1,-3],[0,-10],[0,-12],[0,-12],[0,-12],[0,-12],[0,-13],[0,-12],[0,-12],[0,-12],[0,-12],[0,-12],[0,-1]],[[8915,4506],[-1,2],[-4,7],[-4,8],[-2,7],[-2,6],[-11,19],[-3,6],[0,2],[0,2],[1,3],[2,9],[-2,-6],[-3,-4],[-4,-1],[-4,-1],[-3,-2],[-4,-1],[-2,1],[-1,3],[-1,4],[0,4],[-1,-6],[-3,-4],[-5,-7],[-1,2],[-1,2],[0,3],[1,3],[1,3],[0,8],[2,4],[1,9],[1,3],[1,3],[-1,4],[-2,1],[-2,2],[-1,6],[-1,2],[-2,2],[-1,3],[2,2],[1,1],[2,0],[3,-1],[1,0],[3,2],[-2,-1],[-1,0],[-6,4],[-4,4],[-3,8],[0,1],[2,2],[5,1],[-1,4],[-2,4],[-1,6],[-2,4],[-3,6],[-2,7],[-2,13],[-2,10],[0,4],[2,3],[-3,0],[-2,2],[1,5],[3,2],[-3,0],[-2,-2],[-1,0],[-1,0],[-1,2],[0,3],[1,5],[-1,5],[-2,2],[-2,4],[-1,1],[-1,0],[-1,2],[-1,3],[-13,15],[-1,4],[-1,-2],[-1,-1],[-1,2],[-2,2],[-2,0],[-1,1],[-2,1],[-1,0],[-7,4],[-6,7],[-5,3],[-3,4],[-4,3],[-7,3],[-7,2],[-3,1],[-2,-1],[-2,0],[-13,15],[-2,7],[0,4],[1,3],[5,1],[-4,1],[-1,0],[-3,-3],[-1,0],[-3,2],[-2,2],[-3,-2],[-2,3],[-1,4],[-1,2],[-1,0],[-2,-2],[-1,0],[-2,3],[0,3],[-2,3],[-1,1],[-2,5],[-2,6],[1,10],[0,3],[2,6],[2,6],[-2,0],[-2,-2],[-1,-3],[0,-3],[0,-11],[-2,-3],[-2,1],[1,-7],[-1,-6],[-3,-6],[0,-4],[0,-3],[0,-3],[-5,-10],[-1,0],[-3,0],[-3,-2],[-2,2],[-1,3],[-1,4],[-1,7],[-1,7],[3,9],[-1,8],[-2,8],[-6,9],[-6,9],[-2,2],[-4,1],[-2,1],[-1,3],[-1,4],[3,2],[4,5],[3,0],[7,-3],[2,-2],[2,-2],[5,8],[4,10],[2,3],[2,0],[2,-1],[4,-3],[3,-2],[2,0],[2,-3],[1,-2],[0,5],[1,5],[3,2],[1,1],[1,1],[0,5],[-3,1],[1,4],[2,2],[0,2],[0,3],[-6,-5],[-6,-2],[-4,0],[-3,0],[-7,-3],[-3,0],[-7,2],[-3,1],[-3,-1],[-3,0],[-2,4],[-3,5],[-1,3],[-2,3],[0,3],[-2,13],[0,9],[-3,0],[-3,1],[-12,9],[-1,-2],[-2,-1],[-2,-1],[-1,1],[-2,1],[0,3],[1,6],[2,2],[1,1],[1,4],[2,9],[0,3],[0,4],[0,2],[1,1],[5,3],[9,5],[3,3],[2,4],[2,3],[1,3],[1,2],[8,6],[3,0],[3,-1],[7,-3],[6,-6],[5,-7],[6,-5],[7,-1],[3,0],[4,0],[1,-2],[2,-4],[0,-3],[-1,-7],[2,-6],[2,-6],[1,-6],[1,-3],[-1,-7],[-1,-3],[-2,-5],[-1,-6],[1,-8],[0,-7],[0,-7],[1,-6],[1,-7],[4,-19],[3,-12],[1,7],[0,8],[1,2],[1,2],[2,-2],[0,-3],[0,-7],[2,-13],[2,-1],[2,2],[0,-4],[0,-7],[1,-6],[1,-3],[3,-5],[2,-1],[4,-1],[3,0],[4,2],[2,4],[2,5],[6,11],[2,6],[2,8],[0,2],[7,9],[0,3],[1,6],[2,6],[1,3],[6,3],[6,1],[7,6],[2,5],[1,3],[-2,5],[0,3],[2,2],[5,7],[7,7],[5,5],[3,0],[3,-5],[3,-3],[14,-10],[3,-4],[2,-4],[3,-3],[3,-1],[3,-3],[3,-4],[7,-6],[8,-8],[2,-1],[8,0],[2,-1],[1,-2],[1,-1],[9,-1],[2,-2],[1,-2],[1,-6],[6,0]],[[7901,5027],[3,-6],[0,-2],[-1,-3],[-1,-5],[0,-1],[-2,2],[-2,-4],[-1,7],[-2,4],[1,5],[1,0],[1,0],[0,-1],[3,4]],[[8543,5028],[3,-9],[-2,-8],[1,-5],[4,0],[1,-2],[1,-2],[0,-3],[-1,-3],[-2,-2],[-3,3],[0,3],[-1,1],[-3,-2],[-1,0],[-1,4],[1,6],[-3,2],[-2,6],[0,2],[1,5],[0,3],[1,0],[3,-4],[1,4],[1,2],[1,-1]],[[8534,5017],[-2,-1],[-2,0],[0,6],[0,8],[2,2],[3,-2],[-1,-2],[1,-4],[-1,-7]],[[7881,5026],[-4,-2],[-4,1],[1,4],[2,4],[1,0],[3,-3],[2,-2],[-1,-2]],[[8633,5046],[5,-2],[1,0],[7,-6],[1,-3],[-1,-3],[1,-3],[-2,-4],[-1,0],[-1,1],[-2,1],[-3,-2],[-1,2],[-2,4],[-2,2],[-4,9],[-1,0],[0,-4],[1,-2],[2,-7],[2,0],[1,0],[1,-3],[0,-4],[-4,-2],[-1,3],[-1,6],[-2,-2],[-1,-2],[-2,6],[-4,0],[-3,3],[1,4],[0,3],[2,1],[2,-1],[2,2],[1,0],[1,1],[4,1],[3,1]],[[7734,5015],[-1,-3],[-3,3],[1,4],[0,5],[2,4],[0,5],[-3,14],[2,0],[1,-1],[2,-9],[2,-6],[-1,-7],[-2,-9]],[[7910,5036],[1,-1],[1,3],[1,-4],[1,-2],[2,-2],[-1,0],[-1,-2],[-1,0],[-5,6],[-4,-2],[-3,2],[0,1],[1,4],[1,9],[3,-2],[0,-3],[0,-1],[2,-1],[2,-5]],[[8598,5036],[-1,-1],[-1,4],[-3,4],[-2,6],[7,-11],[0,-2]],[[8540,5046],[-1,-1],[0,2],[-1,1],[1,6],[0,1],[0,-4],[1,-5]],[[7907,5050],[0,-1],[-1,1],[-1,1],[0,1],[-3,8],[1,0],[3,-7],[1,-3]],[[7868,5079],[-3,-1],[-1,1],[1,6],[1,3],[1,0],[2,-5],[-1,-4]],[[8539,5085],[-1,-1],[-1,0],[0,3],[1,4],[1,0],[0,-1],[0,-3],[0,-2]],[[8537,5094],[-1,-2],[-1,0],[0,3],[0,2],[1,1],[1,-1],[0,-3]],[[7873,5086],[-1,-1],[-2,8],[0,4],[1,1],[1,-2],[1,-3],[1,-4],[-1,-3]],[[7883,5094],[0,-2],[-2,4],[0,2],[0,1],[2,-2],[0,-3]],[[7895,5096],[-2,-2],[-2,6],[0,1],[0,1],[1,1],[1,-3],[1,-1],[1,-3]],[[7861,5091],[0,-2],[-1,1],[-6,3],[-2,0],[-4,3],[-2,1],[-1,2],[1,4],[0,2],[1,6],[1,3],[2,-5],[3,-4],[1,-1],[5,-4],[1,-2],[1,-7]],[[7872,5109],[0,-3],[-2,0],[-1,4],[1,3],[1,1],[1,-4],[0,-1]],[[7865,5098],[-1,-1],[-1,0],[-2,2],[-2,4],[-2,3],[-3,2],[-1,0],[-1,1],[1,6],[1,1],[6,-6],[2,-3],[3,-9]],[[7889,5117],[2,-3],[1,2],[0,-2],[0,-3],[-2,-6],[-3,2],[-1,2],[0,1],[1,1],[0,3],[1,0],[1,3]],[[7904,5119],[1,-5],[1,-2],[1,-3],[-1,-5],[-1,-6],[-1,-2],[-2,1],[-1,2],[0,2],[0,1],[-1,1],[1,3],[-1,3],[-4,-2],[-1,0],[0,3],[0,2],[3,5],[2,1],[2,-1],[2,2]],[[7844,5105],[-1,-1],[-1,2],[-2,4],[0,5],[-1,7],[0,5],[1,2],[3,-3],[1,-5],[1,-1],[0,-5],[-1,-5],[0,-5]],[[7707,5133],[6,-16],[3,-2],[3,-8],[1,-3],[-1,-5],[-1,-15],[-2,-4],[-3,2],[0,3],[-3,11],[-4,6],[-1,1],[-1,6],[-2,8],[-6,14],[4,0],[3,3],[0,3],[1,1],[3,-5]],[[7846,5133],[0,-7],[-2,1],[-1,4],[-3,2],[-3,0],[-2,2],[-2,4],[0,2],[0,1],[1,1],[12,-7],[0,-3]],[[8468,5106],[-5,-10],[-2,-5],[-1,-6],[-2,-5],[-3,-5],[-1,-2],[-3,-3],[-1,-1],[-4,0],[-9,-4],[-3,-1],[-4,0],[-6,1],[-1,1],[-2,5],[-3,4],[-2,1],[-3,-1],[-17,0],[-6,-1],[-6,-1],[-4,0],[-3,2],[-2,1],[-3,0],[-11,-3],[-3,0],[-6,4],[-3,1],[-4,-1],[-3,-4],[-1,-2],[-3,-8],[-2,-6],[-1,-8],[-1,-8],[-1,-6],[0,-7],[0,-7],[1,-7],[1,-6],[4,-13],[1,-2],[4,-3],[3,-5],[2,-13],[2,-6],[2,-1],[2,1],[3,-1],[3,-2],[3,4],[2,8],[2,5],[4,11],[3,5],[1,2],[2,-1],[1,-3],[2,-2],[3,-1],[3,0],[4,4],[1,2],[1,3],[3,2],[7,0],[3,-1],[7,1],[0,2],[-2,2],[0,2],[1,1],[4,2],[5,2],[3,-1],[2,-4],[1,-3],[1,-4],[-1,-11],[-1,-3],[-2,-1],[-2,1],[-2,6],[-3,2],[-4,-2],[-1,-1],[-2,-3],[-2,-5],[-2,-7],[-4,-10],[-5,-9],[-2,-3],[-3,-3],[-8,-6],[-2,-4],[-2,-6],[-2,-2],[-2,0],[-1,1],[-4,3],[-1,-3],[0,-4],[2,-1],[2,-4],[2,-7],[2,-1],[2,-2],[2,-2],[2,-5],[3,-13],[1,-7],[2,-5],[6,-10],[0,-2],[0,-3],[1,-3],[2,-5],[0,-4],[-2,-4],[0,-7],[-2,-8],[0,-3],[0,-3],[1,-2],[1,-2],[2,-1],[1,-2],[3,-7],[1,-1],[1,-3],[0,-3],[1,-2],[1,-4],[2,-1],[1,1],[0,2],[2,-1],[0,-3],[1,-3],[0,-4],[0,-7],[-1,-3],[-1,1],[-3,3],[0,-3],[0,-2],[-1,0],[-2,0],[-4,0],[-7,-5],[-3,-2],[-1,-5],[-1,-3],[1,-7],[-1,-3],[-3,-1],[-5,2],[-3,2],[-1,2],[-2,4],[-1,6],[1,18],[1,2],[0,2],[1,3],[0,4],[-2,5],[-3,2],[-3,3],[-11,22],[-1,2],[0,4],[1,3],[3,12],[1,2],[0,9],[0,8],[0,8],[-2,4],[-3,2],[-3,0],[-3,-1],[-3,-4],[-6,-8],[-2,-5],[0,-6],[1,-6],[2,-6],[0,-6],[2,-21],[0,-2],[-2,-7],[0,-13],[0,-20],[1,-12],[0,-6],[-3,-14],[-1,-8],[0,-3],[3,-15],[1,-6],[0,-6],[-3,3],[-1,0],[-2,-1],[-3,-1],[-4,0],[-1,-1],[-3,-4],[-1,-1],[-1,-1],[-5,5],[-2,6],[-3,5],[0,7],[1,7],[1,7],[2,12],[0,8],[1,6],[1,7],[1,6],[0,23],[0,2],[-4,13],[0,3],[0,3],[0,4],[0,3],[0,3],[-2,2],[-1,1],[-4,-1],[-6,-4],[-2,3],[-2,5],[-1,7],[0,8],[0,7],[1,6],[-1,5],[-1,5],[0,2],[0,3],[2,2],[1,1],[2,2],[3,7],[1,6],[1,7],[1,7],[1,6],[3,6],[0,7],[-1,9],[1,5],[-1,5],[0,5],[2,10],[4,20],[4,11],[1,2],[3,-5],[1,-5],[0,5],[0,5],[-2,12],[-1,23],[0,3],[2,-1],[1,2],[1,4],[-2,9],[0,3],[3,12],[2,4],[1,3],[1,8],[1,3],[2,2],[2,5],[1,6],[1,1],[2,-6],[1,-2],[3,-2],[2,2],[1,3],[1,3],[1,2],[1,3],[2,7],[2,6],[1,2],[1,1],[2,1],[2,0],[3,-4],[2,0],[2,0],[1,-1],[1,-1],[1,-4],[2,-3],[1,-1],[1,-1],[7,1],[7,-3],[9,-1],[3,-2],[3,-3],[4,-4],[1,-1],[2,0],[2,4],[1,1],[2,0],[6,0],[15,-6],[3,1],[9,10],[4,10],[3,3],[2,4],[0,5],[1,2],[3,1],[1,2],[3,6],[2,6],[1,1],[3,0],[2,-3],[2,-8],[0,-2],[-3,-4],[0,-2],[-3,-11],[-2,-6],[-2,-5]],[[7824,5170],[2,-5],[0,-3],[-1,-4],[0,-5],[-3,-5],[-3,1],[-1,2],[-2,8],[0,7],[1,3],[3,0],[3,4],[1,-3]],[[8547,5097],[2,-1],[2,0],[1,3],[1,3],[1,6],[2,5],[2,0],[1,2],[0,5],[0,5],[2,5],[5,7],[4,2],[4,1],[0,-3],[0,-4],[1,-5],[-1,-16],[-1,-2],[-4,-5],[-5,-5],[-1,-1],[-1,-5],[0,-4],[4,-5],[6,-6],[1,-2],[1,-4],[0,-5],[1,-2],[2,-1],[2,-2],[1,-4],[-10,8],[-3,3],[-3,0],[-3,1],[-3,3],[-4,1],[-1,-2],[-1,-4],[0,-5],[0,-5],[0,-3],[0,-6],[2,-18],[3,-14],[5,-15],[2,-5],[3,-4],[-5,1],[-1,5],[-5,5],[-1,3],[-3,14],[-1,2],[-3,5],[-2,3],[0,5],[0,5],[0,7],[0,6],[1,9],[-2,3],[-1,2],[-2,7],[0,7],[0,4],[1,4],[1,3],[0,3],[-3,4],[-2,13],[0,7],[3,13],[0,6],[0,3],[1,4],[1,9],[3,7],[5,10],[2,2],[2,2],[0,-3],[0,-2],[-4,-10],[0,-2],[0,-5],[1,-2],[2,-6],[0,-7],[0,-7],[0,-7],[-1,-3],[-2,-7],[-7,-9],[0,-2],[0,-3],[1,-3],[1,-2]],[[7703,5170],[0,-2],[-3,7],[-3,3],[1,1],[3,-1],[1,-1],[1,-3],[0,-4]],[[8567,5168],[-4,-1],[-1,3],[-1,13],[3,10],[4,6],[2,1],[1,1],[3,-8],[-2,-15],[-2,-7],[-3,-3]],[[8483,5204],[-1,-2],[-1,7],[1,4],[1,-1],[1,-2],[-1,-3],[0,-3]],[[7679,5186],[-2,0],[-2,1],[-1,4],[-7,9],[-3,1],[-1,2],[-2,1],[-3,7],[0,3],[2,2],[1,3],[2,-1],[3,-7],[3,-2],[1,-1],[1,-4],[6,-8],[1,-3],[1,-3],[0,-4]],[[8024,5219],[-2,-3],[-1,2],[2,6],[1,0],[0,-5]],[[7937,5216],[-1,0],[-1,2],[1,3],[-1,2],[0,2],[0,3],[1,-1],[1,-2],[1,-1],[1,-1],[-1,-4],[-1,-3]],[[7952,5234],[0,-4],[-2,2],[-1,5],[1,1],[1,-1],[1,-3]],[[8267,5241],[0,-2],[-2,5],[-1,3],[0,3],[3,0],[1,-1],[-1,-8]],[[8490,5250],[-1,-2],[-3,4],[0,5],[-1,3],[-1,2],[0,3],[0,3],[2,-4],[2,-6],[1,-5],[1,-3]],[[8523,5270],[-1,-1],[-1,2],[0,2],[0,1],[0,1],[2,-2],[0,-2],[0,-1]],[[8519,5276],[0,-2],[-1,5],[-1,7],[1,-2],[2,-5],[-1,-3]],[[8274,5295],[1,-6],[0,-2],[-5,-3],[-3,7],[0,3]],[[8267,5294],[3,0],[4,1]],[[8008,5265],[-4,-2],[-2,3],[2,4],[1,0],[1,1],[0,1],[-4,3],[-2,2],[-1,6],[0,3],[6,10],[1,0],[0,-3],[4,-10],[0,-7],[0,-2],[-2,-9]],[[8265,5294],[0,-1],[-2,-1],[-1,-4],[3,-5],[0,-4],[2,-3],[2,-4],[0,-2],[1,-2],[1,-3],[-2,-2],[-2,-1],[-2,3],[-2,3],[0,-4],[-1,-2],[-5,0],[-3,0],[-3,-1],[1,0],[2,-2],[5,-9],[1,-4],[-2,-7],[1,-3],[2,-2],[2,-3],[2,-1],[1,-2],[0,-3],[1,-4],[-2,-1],[2,-1],[2,-1],[-1,-2],[-1,-2],[1,-1],[2,-2],[1,-2],[1,-4],[2,-8],[4,-9],[1,-4],[0,-3],[-1,-3],[-2,-3],[-2,-5],[0,-1],[-3,-2],[1,-2],[1,-2],[2,-6],[4,-10],[2,-3],[9,-13],[5,-6],[6,-13],[3,-3],[0,-4],[-2,-6],[-4,-3],[-6,-1],[-6,2],[-4,1],[-2,4],[-3,6],[-3,4],[2,-4],[0,-4],[0,-5],[-1,-3],[-2,-3],[-2,-2],[-1,-1],[-5,-23],[-1,-6],[-2,-26],[0,-8],[2,-13],[1,-7],[0,-3],[0,-3],[-1,-2],[-5,-4],[-3,-3],[-3,-5],[-2,-6],[-2,-5],[-2,-2],[-2,1],[-1,2],[-1,3],[-1,5],[0,-3],[0,-3],[0,-4],[1,-3],[-1,-4],[-1,-3],[-3,-3],[-1,-3],[0,-4],[-1,-3],[-1,-2],[-4,-5],[-1,-2],[-1,-2],[2,0],[2,0],[0,-5],[1,-3],[-1,-8],[-3,-5],[2,-1],[1,-2],[3,-1],[1,-6],[0,-6],[-1,-6],[-2,-2],[-1,1],[-2,0],[-1,-1],[0,-4],[2,2],[0,-8],[-1,-7],[0,-4],[-2,-4],[-1,-1],[-2,3],[0,-3],[0,-3],[3,-6],[-2,-1],[-1,-2],[0,-3],[-3,-7],[-1,-5],[-1,-5],[-1,-4],[-19,-19],[-16,-15],[-1,1],[-1,2],[0,24],[-2,13],[-1,7],[-2,-7],[-1,1],[-2,2],[-1,2],[0,2],[1,8],[-1,-4],[-2,-3],[-1,0],[-2,2],[0,2],[-1,0],[-3,-6],[-5,-4],[-2,0],[-2,2],[0,5],[0,5],[-1,3],[-1,1],[-1,0],[-4,-3],[-1,1],[0,-2],[-9,19],[-2,-15],[-6,-8],[-4,-5],[-4,2],[-5,3],[-4,-4],[-5,-8],[-1,-2],[-2,0],[-1,1],[1,7],[0,7],[-1,15],[0,2],[-1,5],[-2,3],[-1,-3],[-1,-3],[-4,1],[-3,2],[-3,-1],[-6,-6],[-3,-1],[-2,1],[-1,3],[0,3],[2,2],[-3,-1],[-2,-3],[-1,-2],[-1,1],[-2,6],[-6,-2],[-1,-1],[-1,-2],[-1,1],[-1,2],[0,14],[-3,27],[-1,14],[0,3],[-3,5],[0,7],[1,6],[1,7],[-1,8],[-1,7],[-1,6],[-2,4],[-2,6],[-3,4],[-6,4],[-4,0],[-1,2],[-1,2],[1,4],[1,3],[1,1],[0,2],[-3,3],[-3,5],[0,3],[-1,4],[0,7],[1,5],[1,2],[0,8],[2,3],[0,1],[-1,1],[-1,3],[-1,3],[-2,5],[-4,6],[0,10],[-1,16],[1,7],[1,13],[2,4],[1,1],[2,2],[-1,0],[-1,0],[-2,-1],[2,12],[0,3],[3,7],[3,6],[1,7],[1,6],[7,6]],[[8044,5167],[-2,-8],[0,-3],[1,-2],[2,-2],[0,-10],[2,-5],[3,-5],[1,-3],[2,-3],[2,-3],[1,-3],[2,-3],[6,-11],[2,-4],[2,-3],[1,-1],[3,1],[9,8],[1,0],[3,2],[5,-1],[6,-2],[2,0],[1,1],[3,0],[2,-1],[1,1],[3,6],[4,1],[2,6],[1,6],[0,6],[2,2],[3,2],[4,3],[12,0],[2,-1],[0,-3],[0,-2],[0,-1],[2,-1],[2,-1],[6,-5],[3,-1],[1,0],[3,-4],[2,1],[2,3],[2,4],[2,4],[3,1],[3,0],[4,1],[4,2],[3,-3],[1,1],[1,2],[1,6],[1,5],[1,7],[0,2],[2,1],[1,2],[0,2],[1,3],[0,2],[-1,2],[-1,7],[0,3],[1,2],[1,1],[4,5],[3,6],[2,2],[1,2],[0,3],[-2,2],[-1,2],[0,3],[0,2],[0,2],[0,2],[0,3],[1,3],[2,5],[1,3],[2,-2],[2,1],[2,1],[1,6],[0,3],[0,2],[1,8],[0,1],[1,5],[0,3],[0,8],[0,6],[0,12],[1,2],[1,6],[1,7],[3,4],[2,4],[1,1],[1,0],[3,-3],[3,4],[3,0],[2,0],[2,-2],[1,-1],[3,4],[1,-1],[1,-1],[1,0],[2,1],[4,-1],[7,0],[5,-3],[5,-6],[2,-1],[1,0]],[[8522,5286],[-1,-2],[-2,1],[0,3],[2,5],[1,6],[-2,1],[-1,4],[0,4],[1,8],[2,-1],[1,-3],[1,-6],[1,-5],[-2,-7],[-1,-8]],[[7680,5356],[3,0],[6,3],[4,0],[3,-3],[3,-1],[7,2],[2,-1],[1,-1],[1,-2],[3,-8],[6,-9],[2,-6],[0,-7],[1,-2],[6,-13],[1,-5],[-1,-8],[2,-6],[6,-6],[4,-4],[1,-2],[0,-3],[2,-5],[3,-3],[7,-7],[11,-16],[6,-8],[4,-11],[2,-6],[2,-6],[3,-8],[5,-11],[1,-3],[1,-5],[2,-5],[2,-4],[2,-3],[2,-1],[4,-7],[2,-3],[-1,6],[-1,5],[0,4],[0,3],[1,2],[2,1],[3,-3],[5,-9],[2,-5],[2,-8],[1,-7],[2,-4],[3,-1],[3,-1],[3,-2],[6,-11],[2,-5],[2,-6],[1,-7],[1,-7],[0,-2],[4,-8],[3,-4],[2,-2],[8,-2],[3,-3],[2,-5],[1,-5],[-1,-5],[-7,-7],[-6,-5],[6,2],[3,2],[3,3],[3,4],[5,6],[2,1],[2,0],[2,-2],[2,-5],[3,-6],[2,-7],[1,-8],[-2,-3],[-3,-3],[-5,-8],[0,-3],[1,-1],[-1,-6],[2,-3],[0,-3],[-2,-4],[1,-2],[2,-11],[1,-2],[4,-6],[6,-5],[4,-3],[4,-2],[1,0],[3,1],[1,-2],[1,-10],[1,-7],[0,-14],[2,-6],[-1,-7],[2,-6],[3,-4],[3,-3],[2,-3],[0,-5],[-1,-4],[-1,-3],[-3,-6],[-1,-2],[0,-7],[0,-3],[1,0],[2,1],[3,9],[2,2],[1,1],[2,1],[7,0],[3,-1],[3,-3],[2,-4],[9,-23],[4,-13],[0,-4],[0,-3],[0,-3],[-4,-8],[-1,-3],[-1,-9],[1,-7],[1,-3],[1,-3],[0,-3],[-3,-14],[0,-3],[1,-23],[1,-6],[-1,-8],[1,-13],[-2,-40],[-1,-2],[-1,-6],[-2,0],[-2,1],[-1,2],[-1,3],[-1,3],[-4,7],[-2,-1],[-5,-9],[-1,-2],[-1,1],[-3,3],[-8,10],[-1,-3],[0,-5],[2,-10],[0,-4],[-1,-1],[-1,0],[-4,6],[-3,7],[-3,9],[-3,4],[-2,5],[-7,18],[-1,3],[-10,12],[-2,3],[-3,6],[-3,4],[-6,8],[-11,19],[-4,11],[-5,17],[-2,4],[-9,14],[-4,7],[-2,5],[-5,16],[-1,5],[-2,5],[-2,4],[-3,4],[-5,15],[-1,5],[-1,7],[0,12],[-10,38],[-3,11],[-2,17],[-1,1],[-6,15],[-2,5],[-2,4],[-2,5],[-4,17],[-1,4],[-2,4],[-7,6],[-3,4],[-2,5],[-2,6],[-1,13],[-4,21],[-3,27],[-3,12],[-3,10],[-1,2],[-13,18],[-2,2],[-3,2],[-3,1],[-3,4],[-1,8],[-1,11],[0,7],[-1,3],[-5,8],[-3,6],[-1,7],[-2,5],[-6,17],[-2,5],[-3,3],[-8,4],[-2,3],[-3,10],[-3,5],[-6,11],[-12,24],[-2,6],[-2,6],[-1,6],[-5,19],[0,3],[1,4],[0,3],[-1,3],[0,3],[2,2],[3,2],[3,0],[4,-1],[3,-2],[2,-4],[6,-9],[3,-4],[3,-1],[7,-3]],[[7648,5391],[0,-2],[-2,1],[-2,6],[1,1],[1,-1],[2,-1],[0,-2],[0,-2]],[[4877,8257],[-6,-8],[-2,1],[-2,0],[1,3],[1,6],[2,2],[3,7],[3,2],[0,-1],[1,0],[1,-8],[-1,-2],[-1,-2]],[[7607,5451],[-1,-5],[-4,15],[-1,1],[0,7],[1,3],[3,3],[1,-1],[2,-14],[-1,-9]],[[7603,5482],[-3,-5],[-1,3],[1,3],[1,1],[1,2],[1,-4]],[[7595,5513],[-2,0],[-1,3],[-1,2],[1,3],[1,1],[2,-4],[0,-3],[0,-2]],[[7597,5524],[-1,-2],[0,2],[0,1],[-1,2],[0,4],[1,3],[1,-1],[0,-3],[0,-6]],[[7029,5537],[0,-1],[-1,0],[0,1],[0,-1],[1,1],[0,2],[0,-1],[0,-1]],[[7586,5535],[1,-2],[-1,1],[-2,3],[1,3],[0,1],[1,-6]],[[7577,5588],[-2,0],[0,2],[0,2],[0,1],[1,1],[1,0],[0,-4],[0,-2]],[[7569,5672],[-1,-2],[-3,1],[0,7],[0,6],[0,2],[2,4],[2,2],[1,-6],[1,-5],[-2,-9]],[[7574,5721],[-1,-1],[-2,1],[1,3],[1,4],[1,-2],[0,-3],[0,-2]],[[7583,5760],[1,-8],[-2,3],[-1,3],[1,1],[1,1]],[[7575,5809],[-1,-4],[0,8],[0,1],[1,0],[0,-5]],[[7575,5730],[-1,-1],[-1,1],[-2,11],[-1,7],[0,2],[1,3],[1,2],[0,3],[1,6],[1,5],[0,1],[2,0],[1,1],[-1,4],[-1,2],[0,2],[0,11],[0,4],[1,3],[-1,7],[1,2],[1,4],[1,7],[-1,2],[2,11],[0,8],[1,8],[3,3],[1,0],[0,-6],[1,-2],[-2,-4],[2,-5],[-1,-2],[0,-4],[-1,-4],[-2,-2],[-1,-5],[-1,-2],[3,-5],[0,-19],[-1,-5],[-2,-1],[0,-12],[0,-3],[-2,-6],[0,-2],[-1,-3],[0,-3],[1,-1],[0,-3],[-1,-6],[0,-8],[-1,-6]],[[7186,6936],[-2,4],[2,-4]],[[7186,6936],[-1,-5],[0,-4],[2,-4],[1,-3],[-1,-4],[-1,-5],[1,-2],[0,-7],[0,-1],[1,-1],[1,1],[2,2],[1,0],[1,0],[1,5],[1,0],[2,-1],[3,-10],[3,-8],[1,-1],[1,-1],[2,-4],[2,-3],[3,1],[4,0],[2,-2],[1,-2],[0,-1],[5,-6],[2,1],[1,-2],[0,-5],[0,-4],[0,-2],[2,-1],[4,-3],[4,-3],[1,-1],[2,-2],[2,-3],[4,-4],[3,-3],[1,-4]],[[7250,6834],[-2,0],[-1,0],[-2,-2],[-1,-1],[-3,-8],[-2,-2],[-2,-3],[-4,-10],[-3,-10],[-1,-8],[0,-7],[-1,-7],[-2,-4],[-1,-1],[-1,-7],[-1,-7],[0,-2],[3,-4],[2,-3],[3,-3],[2,-3],[2,-1],[0,2],[1,2],[2,-1],[2,-3],[2,-3],[0,-1],[4,-4],[4,-3],[4,-5],[1,-3],[1,-2],[2,-4],[5,-7],[4,-5],[3,-4],[3,-3],[1,1],[2,1],[1,1],[1,-1],[2,-2],[5,-6],[5,-5],[5,1],[1,-1],[1,-5],[0,-4],[6,-3],[4,-2],[4,-2],[2,-2],[2,2],[0,2],[2,2],[3,-1],[6,-3],[2,-2],[2,4],[3,1],[2,2],[4,-4],[7,-4],[4,-3],[0,-3],[1,-3],[0,-6],[1,-3],[7,-7],[2,-3],[2,-1],[1,0],[1,-1],[0,-4],[1,-1],[1,-1],[2,0],[4,3],[3,3],[2,-1],[2,-3],[0,-4],[1,-4],[1,-2],[2,-1],[4,3],[4,-2],[3,-1],[3,-1],[2,-1],[3,-4],[5,-3],[1,0],[7,7],[1,-1],[1,-6],[3,-3],[3,-2],[3,4],[3,-1],[4,0],[3,1],[3,1],[4,-3],[1,2],[2,10],[1,8],[0,5],[-1,7],[-3,9],[-1,3],[1,16],[2,10],[1,4],[1,6],[0,3],[0,3],[-1,2]],[[7703,6718],[-1,-3],[0,-5],[1,-3],[0,-3],[0,-2],[-1,-2],[-2,-1],[-2,-3],[-3,-5],[-2,-4],[-2,-3],[-1,-3],[0,-4],[1,-5],[6,-16],[0,-3],[-2,-1],[-3,2],[-2,3],[-2,7],[-2,2],[-2,0],[-10,-3],[-3,-1],[-3,-3],[-3,-5],[-2,-5],[-2,-2],[-2,-4],[-8,-11],[-4,-5],[-3,-2],[-2,-3],[-1,-4],[-1,-3],[0,-8],[0,-9],[1,-6],[1,-1],[0,-2],[-1,-3],[-2,-3],[0,-1],[-1,-9],[-1,-4],[-3,-6],[-2,-5],[-3,-3],[-1,-3],[-2,-5],[0,-5],[0,-2],[0,-1],[1,-2],[2,-1],[1,-3],[0,-2],[-1,-7],[-2,-10],[-3,-8],[-3,-7],[0,-3],[-3,-9],[-2,-12],[-1,-8],[-1,-6],[-2,0],[-1,2],[-5,2],[-2,2],[-2,2],[-2,0],[-2,-1],[-2,-1],[-1,1],[-3,5],[0,-1],[-1,-2],[2,-15],[1,-5],[0,-10],[-1,-11],[0,-12],[-1,-3],[-1,-3],[-1,-1],[-2,1],[-1,0],[0,-2],[0,-5],[-1,-6],[-1,-6],[0,-5],[0,-5],[2,-11],[0,-4],[0,-3],[-1,-2],[-1,0],[-1,-1],[-1,-2],[-1,-9],[-2,-1],[-1,2],[-3,5],[-1,2],[-1,0],[0,-2],[-1,-3],[-1,-2],[-1,-2]],[[7473,6355],[-1,-9],[-2,0],[2,-6],[1,-4],[0,-7],[-2,0],[-2,0],[-1,6],[-1,-5],[-3,-5],[0,3],[-1,2],[0,4],[1,16],[0,2],[-1,1],[-1,1],[0,3],[-3,-17],[1,-7],[0,-3],[-4,-3],[-4,7],[0,2],[-1,-4],[0,-4],[-4,0],[-2,4],[1,6],[3,14],[0,6],[-3,5],[-2,3],[-2,6],[1,-7],[1,-2],[2,-2],[2,-4],[-1,-4],[-2,-3],[-3,-10],[-3,-6],[-4,-5],[-14,-6],[-2,-3],[-4,-8],[-3,-7],[0,-8],[1,-8],[1,-13],[1,-3],[-1,-5],[-3,-5],[-2,-7],[1,-3],[-1,-3],[-7,-8],[-1,-5],[-2,-5],[-3,3],[-1,0],[2,-4],[0,-3],[-1,-1],[-2,-2],[-10,-6],[-8,-6],[-2,0],[1,2],[1,2],[0,7],[-2,1],[-1,0],[-6,-8],[-2,-8],[0,-2],[2,1],[4,4],[2,-1],[0,-2],[-6,-7],[-13,-22],[-1,-5],[-1,-5],[-2,-5],[-5,-11],[-7,-17],[-3,-7],[-12,-13],[-2,-4],[-5,-13],[-6,-10],[-6,-9],[-10,-11],[-7,-11],[-2,-7],[0,-2],[1,-3],[1,-4],[0,-2],[-1,-5],[0,-2],[-2,-6],[-3,-5],[-11,-9],[-1,0],[-9,2],[-3,-2],[-1,-4],[-3,-18],[-3,-5],[-1,-4],[0,-3],[-2,0],[-1,2],[-2,-1],[-1,6],[-2,1],[-2,0],[-7,-6],[-2,-5],[-6,-23],[-1,-14],[1,-17],[2,-13],[0,-6],[0,-7],[-1,-4],[0,-4],[0,-9],[3,-12],[0,-5],[0,-6],[2,-11],[-1,2],[-1,5],[-2,6],[-3,-6],[2,-5],[5,-5],[1,-5],[-3,-40],[-3,-14],[-2,-9],[-2,-4],[-3,-14],[-3,-18],[0,-7],[1,-7],[-1,-5],[-2,-3],[3,1],[1,-4],[0,-4],[0,-25],[0,-27],[-2,-1],[-3,0],[-2,1],[-2,1],[-3,-2],[-3,-3],[-1,-5],[0,-8],[-7,-21],[-2,-7],[-1,-6],[1,-4],[2,-3],[3,-2],[4,-1],[3,-2],[1,-4],[-5,4],[-7,1],[-15,-10],[-4,-7],[-3,-6],[-1,-13],[-1,-9],[-1,-8],[-8,-11],[-6,-4],[-1,-3],[-6,4],[-7,10],[-3,6],[-9,26],[-2,3],[-2,11],[0,4],[-1,2],[-1,1],[0,2],[-3,13],[0,13],[-2,15],[1,-1],[2,-5],[1,-7],[0,-10],[1,-1],[1,1],[-3,22],[-3,6],[-1,4],[0,5],[0,2],[-2,7],[-1,5],[-5,23],[-2,16],[-3,18],[-2,6],[-4,14],[-3,6],[-3,9],[-2,4],[-1,2],[-7,30],[-2,17],[-2,7],[-1,6],[-2,26],[0,4],[-1,5],[-1,11],[-3,12],[-1,7],[0,3],[-2,11],[-1,5],[-1,5],[-1,4],[-2,4],[-4,11],[-1,3],[-3,8],[-1,13],[-3,6],[4,0],[-2,5],[-1,3],[-1,2],[1,5],[-3,0],[-1,3],[-2,10],[-4,11],[0,5],[-4,19],[-2,43],[-3,20],[0,6],[-3,16],[-1,12],[-1,9],[-1,7],[0,12],[-1,4],[-1,2],[1,6],[2,9],[1,5],[-1,8],[-2,-8],[-2,-2],[0,6],[0,8],[-1,2],[1,3],[5,-1],[-6,5],[0,3],[-1,2],[2,4],[-3,3],[0,11],[-1,2],[0,2],[1,15],[5,29],[0,6],[0,10],[-1,7],[-1,8],[0,2],[-2,0],[-1,3],[-2,12],[1,3],[2,3],[-2,-1],[-2,0],[3,5],[3,4],[6,5],[2,3],[-4,-3],[-3,-1],[-9,1],[2,11],[1,3],[2,2],[-3,0],[-2,1],[1,10],[2,3],[2,0],[3,2],[-3,2],[-3,0],[-4,-1],[-3,1],[-5,0],[2,-2],[2,-3],[-1,-6],[-1,-3],[-2,-3],[-2,-4],[-1,-3],[-1,-3],[2,-1],[2,-1],[1,-3],[1,-4],[0,-8],[-5,-18],[-1,-4],[-13,-11],[-4,-6],[-11,-8],[-4,-1],[-4,1],[-7,6],[-10,15],[-2,5],[-8,20],[-6,10],[-4,9],[-6,9],[-5,13],[-1,5],[1,6],[1,3],[3,-1],[1,-5],[2,-2],[1,-1],[7,7],[3,0],[2,3],[3,0],[5,5],[2,1],[3,1],[4,14],[3,9],[2,2],[0,3],[-1,2],[-1,0],[-1,-3],[-1,-3],[-1,-2],[-2,1],[-2,0],[-2,-1],[-7,-5],[-3,-5],[-3,-1],[-11,5],[-12,12],[-5,8],[-3,11],[-3,12],[1,3],[5,8],[4,6],[-4,-3],[-4,-4],[-2,-2],[-2,-5],[-3,-1],[-1,7],[-1,8]],[[6893,6460],[2,3],[1,1],[3,1],[3,1],[2,0],[4,0],[0,18],[1,2],[0,1],[1,0],[1,-3],[1,0],[1,2],[3,-1],[1,0],[2,-1],[4,0],[5,1],[4,0],[2,-3],[2,-3],[2,-1],[4,1],[2,1],[2,3],[0,2],[6,5],[5,3],[2,0],[0,-2],[0,-3],[1,-3],[2,-2],[2,-1],[1,1],[1,1],[2,5],[2,1],[1,0],[2,2],[0,2],[-1,1],[-1,2],[0,2],[0,3],[0,3],[1,2],[1,2],[-1,4],[-2,8],[-2,10],[-2,9],[-3,7],[-1,6],[0,12],[0,2],[-1,2],[-1,0],[-2,-1],[-2,0],[-3,0],[-2,1],[-4,13],[-1,4],[0,5],[1,9],[1,7],[0,8],[0,2],[-1,2],[-2,2],[-4,1],[-5,2],[-3,4],[-3,3],[-1,2],[0,2],[1,8],[1,10],[1,3],[1,4],[1,2],[2,3],[5,9],[4,13],[3,9],[1,3],[2,2],[2,3],[2,3],[2,0],[3,-3],[1,-2],[1,-6],[1,-4],[1,-3],[2,-1],[2,0],[9,7],[3,2],[7,1],[4,2],[5,3],[0,5],[2,8],[5,10],[1,4],[2,9],[1,8],[2,3],[8,8],[7,8],[2,4],[5,16],[2,11],[1,4],[2,9],[2,10],[2,2],[5,4],[5,3],[2,4],[1,4],[0,4],[-1,4],[0,2],[0,3],[3,5],[6,14],[3,8],[1,0],[4,4],[3,4],[0,2],[0,3],[-2,1],[-1,3],[1,5],[1,12],[0,3],[-2,11],[0,3],[1,4],[3,4],[2,3],[10,9],[1,1],[4,2],[2,4],[0,4],[-1,2],[-2,3],[-3,3],[-4,3],[-5,-1],[-3,3],[-1,1],[0,5],[0,9],[-1,1],[-1,-1],[-3,1],[-3,0],[-2,2],[1,3],[0,4],[-1,4],[0,1],[-2,1],[-3,3],[-2,4],[-1,3],[0,2],[0,1],[1,3],[2,5],[1,5],[0,3],[-1,2],[-1,3],[-2,2],[-1,2],[0,3],[1,4],[2,3],[4,3],[1,4],[0,2],[-1,1],[-3,0],[-5,1],[0,1],[-1,2],[0,2],[1,2],[1,3],[0,3],[-1,3],[-3,2],[-1,3],[1,3],[1,4],[1,2],[2,7],[2,2],[4,2],[3,3],[6,-2],[2,-1],[6,-2],[4,-2],[5,0],[2,0],[2,-3],[5,-3],[4,-2],[3,0],[5,3],[2,3],[3,3],[3,0],[8,6],[2,-1],[2,-1],[3,3],[1,4],[0,2],[1,1],[3,2],[3,4],[1,4],[1,3]],[[7140,7127],[3,3],[3,4],[4,4],[4,4],[4,4],[2,3]],[[7160,7149],[1,0],[1,-2],[1,0],[1,1],[2,1],[1,-1],[0,-1],[-1,-9],[0,-3],[2,-7],[2,-11],[3,-11],[1,-6],[1,-3],[5,-3],[5,-3],[2,-3],[3,-4],[2,-2],[1,-3],[0,-3],[0,-2],[-1,-2],[-5,-6],[-1,-2],[0,-2],[1,-8],[1,-5],[0,-9],[0,-9],[2,-4],[1,-3],[1,-2],[2,-3],[2,-3],[1,-1],[0,-3],[0,-4],[0,-3],[0,-2],[1,-1],[1,-4],[1,-4],[-1,-4],[1,-3],[0,-3],[0,-8],[0,-4],[-2,0],[-1,-2],[-1,-5],[-2,-1],[-3,0],[-2,3],[-2,3],[0,2],[-1,3],[-1,3],[-2,-1],[-2,-1],[-4,-1],[0,-2],[1,-3],[0,-4],[1,-6],[0,-4],[1,-1],[5,-11],[1,-3],[0,-1],[0,-4]],[[7691,4324],[0,1],[0,1],[1,0],[0,-1],[-1,-1]],[[7689,4325],[1,0],[-1,-1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[0,-1]],[[7936,4425],[-1,-4],[-1,2],[-2,1],[0,3],[2,0],[0,1],[1,1],[1,-4]],[[7013,4610],[-1,-3],[-1,-1],[0,6],[-2,4],[1,0],[1,-2],[1,-5],[0,1],[0,2],[0,2],[0,2],[-1,2],[1,1],[1,-3],[0,-1],[0,-5]],[[4723,8240],[0,-1],[-2,2],[-1,2],[-6,1],[3,3],[1,-1],[4,0],[1,-1],[0,-5]],[[4827,8251],[1,-2],[0,-2],[-2,-1],[-2,0],[-1,-1],[0,-3],[1,-3],[1,-3],[1,-6],[1,-6],[2,-3],[0,-5],[0,-2],[0,-5],[0,-1],[0,-4],[2,-8],[1,-4],[0,-10],[-1,-4],[-2,-3],[-1,-4],[-1,-5],[0,-7],[-4,-8],[-1,-2],[-2,-1],[4,-6],[-3,-3],[-4,-1],[-4,2],[-2,0],[-2,-2],[-1,-1],[-1,0],[-1,5],[-1,-5],[-2,-2],[-4,1],[-6,-2],[-3,-1],[-1,-2],[0,-3],[-1,-1],[-1,-1],[-5,-2],[-1,-1],[-2,-4],[-3,-2],[-3,-1],[-2,2],[-1,2],[-1,1],[-3,-1],[1,0],[1,-2],[0,-3],[0,-3],[-2,-2],[-2,0],[-3,-4],[-4,0],[-2,-4],[-14,-5],[-2,2],[-2,0],[-2,0],[-6,-3],[-3,0],[4,8],[4,3],[1,1],[-2,1],[-8,-3],[-4,-2],[-3,-1],[2,4],[4,4],[2,2],[1,1],[2,3],[4,3],[-14,-6],[-3,0],[-1,2],[-3,-1],[-1,4],[4,7],[3,2],[3,2],[2,2],[1,2],[-1,1],[-8,0],[-4,0],[0,2],[1,2],[4,4],[2,1],[2,-1],[2,-1],[1,-1],[5,1],[-2,2],[0,5],[-2,2],[2,2],[2,2],[4,4],[1,1],[7,1],[8,3],[8,3],[-4,2],[-2,3],[-3,-5],[-2,-2],[-6,-1],[-2,0],[-3,2],[-1,-1],[-1,-1],[-4,-3],[-4,0],[5,4],[6,8],[2,3],[2,4],[-1,2],[-1,1],[4,9],[2,2],[3,0],[2,1],[1,0],[1,1],[1,3],[-2,1],[-3,1],[-10,-1],[-1,0],[-1,1],[-1,1],[0,3],[-1,1],[-2,0],[-2,-1],[-1,0],[-2,2],[2,3],[-2,0],[-3,0],[-3,1],[0,2],[1,2],[-1,1],[0,3],[1,1],[2,0],[3,1],[5,1],[-4,2],[-2,1],[0,2],[0,2],[5,4],[4,1],[0,2],[0,2],[-4,1],[-5,-2],[1,5],[1,4],[0,2],[0,3],[-2,-1],[-1,4],[-1,3],[-3,-2],[0,3],[1,3],[2,1],[2,-1],[3,0],[3,2],[4,1],[7,-1],[4,-5],[2,1],[2,3],[0,1],[8,-2],[4,-2],[1,1],[0,4],[-2,2],[2,3],[2,3],[2,1],[3,1],[2,2],[1,4],[2,4],[-9,-2],[-9,4],[1,3],[2,2],[3,1],[1,2],[1,1],[3,3],[-1,5],[0,3],[2,2],[1,3],[1,2],[3,1],[4,2],[1,0],[5,1],[1,-1],[0,4],[3,0],[1,-1],[0,-2],[1,-2],[1,-3],[-1,-2],[-2,-2],[2,-2],[-2,-3],[2,1],[3,4],[0,2],[-1,3],[-1,3],[1,3],[1,2],[5,1],[-2,4],[1,0],[2,0],[3,-3],[2,-2],[3,-2],[-2,-4],[-4,-2],[-1,-3]],[[6560,6641],[-2,-7],[-4,-6],[-2,2],[-1,0],[-3,-2],[-2,0],[-4,-5],[-3,-2],[-2,1],[-1,0],[-1,3],[0,1],[2,-1],[5,4],[6,6],[1,3],[-1,4],[0,1],[4,-2],[5,4],[4,1],[2,-3],[-3,-2]],[[6357,7324],[0,-3],[1,-15],[0,-7],[1,-8],[2,-7],[2,-6],[2,-4],[6,-5],[3,-1],[7,-1],[7,-2],[4,-2],[1,-2],[1,-2],[4,-12],[5,-8],[11,-12],[5,-4],[18,-7],[12,0],[33,15],[11,3],[4,0],[-2,-3],[-5,-1],[3,-2],[4,-1],[2,1],[1,2],[0,3],[0,3],[-2,13],[-1,10]],[[6497,7259],[8,-1],[3,1],[4,4],[3,2],[2,0],[2,1],[1,2],[3,13],[1,4],[5,7],[4,5],[5,4],[5,3],[7,-1],[6,-1],[4,0],[1,0],[1,1],[1,0],[1,6],[1,2],[2,2],[3,0],[4,0],[2,0],[4,-3],[5,0],[3,1],[2,-3],[1,-3],[1,-2],[0,-3],[0,-3],[0,-1],[2,-1],[3,-1],[5,-2],[5,-3],[3,-1],[3,-3],[5,-7],[1,-1],[2,-1],[2,0],[3,3],[3,-2],[1,0],[3,2],[3,-2],[9,-8],[1,1],[1,-1],[0,-2],[1,-2],[0,-7],[3,-5],[3,-4],[3,-2],[8,-6],[3,-5],[3,-8],[4,-10],[0,-1],[11,0],[11,0],[1,-4],[0,-8],[1,-9],[1,-5],[0,-6],[-1,-3],[-1,-3],[0,-1],[1,-2],[2,-5],[0,-6],[-1,-3],[0,-3],[1,-2]],[[6701,7157],[1,-4],[0,-3],[-1,-2],[-1,-3],[-1,-4],[0,-2],[-1,-2],[-1,-1],[0,-4],[0,-3],[1,-3],[-1,-3],[0,-3],[-1,-5],[0,-4],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-1,-2],[0,-1],[1,-1],[1,-3],[3,-6],[-7,-1],[-2,-5],[-3,-8],[2,-15],[-2,-7],[1,-5],[2,-3],[2,-1],[4,0],[3,-2],[0,-2],[-1,-2],[-3,-6],[-1,-2],[-4,-11],[0,-5],[0,-4],[2,-12],[2,-11],[3,-21],[0,-5],[-1,-10],[0,-7],[0,-8],[0,-5],[1,-10],[1,0],[7,-2],[6,-2],[9,-2],[3,-6],[1,-13],[0,-9],[0,-5],[-7,-14],[-6,-14],[-6,-14]],[[6697,6831],[-7,-14],[-1,-2]],[[6689,6815],[6,-11],[3,-7],[5,-10],[0,-3],[0,-4],[5,-15],[2,-8],[1,-5],[4,-7],[3,-7],[4,-4],[3,0],[6,-4],[3,-3],[3,-8],[4,1],[1,0],[1,0],[0,-3],[-1,-12],[1,-11],[1,-18],[0,-4],[-1,-5],[0,-3],[-1,-2],[1,-1],[1,-1],[3,-1],[7,2],[1,0],[1,-3],[2,-3],[0,-2],[-2,-2],[0,-5],[0,-7],[0,-1],[-2,-2],[0,-10],[0,-1],[-2,-1],[-9,1],[-1,0],[-3,-3],[-5,-2],[-2,-1],[-2,-3],[-1,-4],[-1,-3],[0,-1],[-3,1],[-1,-3],[-6,-5],[-1,-1],[-1,-3],[-1,-10],[0,-9],[-1,-2],[-2,-3],[0,-1],[0,-3],[0,-7],[-1,-17],[-1,-5]],[[6710,6540],[-1,-1],[-2,-2],[-2,-3],[-4,2],[-4,3],[-13,5],[-1,3],[-1,5],[-2,2],[-3,-8],[-10,4],[-4,-1],[-2,2],[-6,1],[-4,4],[-6,-3],[-5,-1],[-7,8],[-8,3],[-6,-1],[-3,1],[-5,3],[-2,3],[-4,-3],[-2,5],[-11,4],[-2,7],[-2,7],[0,7],[-2,13],[-1,18],[-1,7],[-2,7],[-2,5],[-3,5],[-2,3],[-10,4],[-2,-1],[-5,-2],[-5,-7],[-8,-3],[-1,-3],[-2,-6],[-3,-3],[-4,0],[-4,-3],[-7,-10],[-4,-3],[-3,0],[-3,5],[-8,6],[-5,2],[-7,-1],[-3,1],[-5,7],[-2,6],[-3,3],[-10,9],[-8,10],[-1,4],[-1,6],[-4,8],[-8,6],[-4,6],[-6,1],[-4,0],[-3,1],[-2,3],[-6,13],[0,5],[-4,13],[-1,5],[-1,12],[-1,4],[-5,5],[0,3],[1,5],[0,3],[-3,4],[-3,1],[-1,4],[1,8],[-1,4],[-3,8],[-4,8],[-4,11],[-2,3],[-1,8],[-2,9],[-2,0],[-12,-10],[-4,6],[-10,10],[-1,2],[0,2],[1,1],[1,1],[3,-2],[1,2],[0,4],[-3,2],[-3,0],[1,-3],[-4,-4],[-1,-4],[1,-5],[0,-7],[-1,-3],[-1,-2],[-5,0],[-2,-4],[-1,0]],[[6348,6822],[-2,2],[-1,2],[-1,4],[-1,3],[1,2],[-1,2],[-1,4],[-2,2],[-1,0],[-1,2],[-1,4],[-2,2],[-2,0],[0,12],[0,10],[0,9],[-5,1],[-4,0],[0,8],[0,16],[2,12],[2,11],[-3,9],[-4,9],[-2,3],[-2,11],[-2,5],[-1,2],[-1,1],[-5,0],[-4,6],[-5,7],[-6,9],[-5,5],[-3,2],[-5,0],[0,1],[-1,3],[0,4],[2,5],[0,3],[-3,11],[-1,3],[-3,2],[0,3],[0,2],[0,2],[-1,0],[-1,1],[-2,-2],[-2,5],[-5,14],[-2,2],[-1,1],[2,4],[2,7],[0,4],[0,4],[-2,7],[0,4],[1,3],[0,3],[2,0],[2,0],[1,2],[0,8],[0,3],[7,14],[3,3],[3,3],[0,4],[0,2],[-1,3],[0,2],[-3,6],[-1,3],[0,3],[1,5],[1,4],[4,2],[2,2],[1,2],[-3,3],[-6,1],[-5,-1],[-2,1],[-2,5],[-2,3],[-2,2],[-2,-1],[-2,1],[0,2],[-3,18],[-1,3],[-1,0],[-2,1],[0,1],[-1,2],[-1,3],[0,5],[0,3],[0,3],[-1,2],[-2,2],[-1,2],[-2,15],[-1,4],[0,1]],[[6243,7247],[0,1],[0,3],[1,3],[0,2],[-3,4],[-3,4],[0,4],[0,4],[-1,3],[0,1],[0,1],[1,4],[-1,2],[-4,5],[-2,2],[-3,1],[-1,1],[1,4],[1,4],[2,4],[0,2],[1,4],[0,3],[2,4],[0,1],[0,1],[-2,1],[-2,0],[0,1],[0,2],[0,8],[-1,5],[0,3],[0,8],[-1,2],[-2,4],[0,4],[0,1],[0,2],[1,3],[0,3],[-2,2],[-1,2],[0,2],[-1,3],[0,3],[-1,1],[1,1],[2,1],[3,-1],[3,0],[1,2],[2,14],[2,4],[2,3],[4,-6],[1,-1],[1,0]],[[6348,6822],[-3,-2],[-2,1],[-6,5],[-2,0],[-3,-1],[0,-2]],[[6332,6823],[-6,5],[-2,1],[-1,1],[-4,0],[-5,-1],[-3,-3],[-2,-2],[-1,-2],[0,-2],[-2,-7],[-2,-9],[-2,-8],[-3,-11],[-3,-5],[-4,-10]],[[6292,6770],[-5,-2],[-11,2],[-13,2],[-12,2],[-9,2],[-1,1],[-9,13],[-8,11],[-9,14],[-9,14],[-9,14],[-7,10],[-8,13],[-8,12],[-6,10],[-8,8],[-5,7],[-9,9],[-7,8],[-6,6],[-9,10],[-3,3],[-10,3],[-9,3],[-9,3],[-6,2]],[[6087,6950],[4,7],[-1,6],[-3,-1],[-3,-2],[-2,10],[2,2],[-2,12],[-2,14],[-2,12],[-2,14]],[[6076,7024],[8,8],[6,6],[8,9],[8,9],[8,8],[8,9],[8,7],[6,4],[2,2],[3,11],[3,9],[0,2],[0,14],[0,15],[1,8],[2,8],[1,5],[0,5],[0,5],[-1,8],[-2,8],[0,7],[1,4],[0,7],[2,5],[2,3],[6,3],[4,2],[5,8],[3,5],[5,8],[3,6],[0,2],[0,1]],[[6176,7245],[3,1],[5,7],[3,7],[1,1],[2,-3],[2,0],[4,2],[3,-1],[2,-2],[1,0],[6,-4],[2,-1],[3,0],[4,0],[3,2],[2,3],[1,0],[2,-1],[1,-1],[1,-2],[0,-2],[0,-9],[1,-3],[0,-1],[1,-1],[2,2],[2,3],[2,3],[2,3],[1,1],[2,0],[2,-1],[1,-1]],[[4568,8970],[3,0],[5,2],[2,1],[6,5],[3,1],[5,0],[2,0],[-3,-2],[-2,-1],[-4,-3],[-3,-6],[-2,-3],[0,-2],[3,-2],[3,-1],[3,1],[1,-1],[1,-1],[1,-2],[0,-2],[0,-4],[-2,-3],[-3,-4],[1,-1],[2,0],[9,2],[1,0],[0,-1],[0,-2],[1,-2],[1,-1],[0,-2],[-4,-5],[4,3],[4,1],[6,-1],[3,-2],[2,-3],[2,1],[1,0],[1,-2],[0,-2],[-1,-3],[0,-2],[-1,-1],[-2,-1],[-1,-1],[1,-2],[1,-2],[2,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[5,-3],[1,-1],[0,-2],[0,-2],[-1,-2],[-2,-1],[-3,0],[-2,-1],[0,-2],[0,-3],[0,-3],[-3,-5],[-3,-2],[-2,-2],[-5,1],[-2,1],[0,-4],[-2,-2],[0,-2],[1,-2],[0,-2],[-2,-3],[-2,-3],[-2,-1],[-4,-3],[-4,-3],[-3,-2],[-6,1],[-7,-3],[-9,-5],[-7,-3],[-4,-5],[-7,-7],[-5,-3],[-2,-1],[-6,0],[-4,-2],[-15,-4],[-5,-2],[-1,-2],[-2,-3],[0,-1],[1,0],[0,-1],[-2,-4],[-4,-2],[-1,0],[-3,2],[-1,0],[0,-1],[1,-2],[-2,-1],[-10,-3],[-16,2],[-7,2],[-8,3],[-5,1],[-7,1],[-5,4],[-3,3],[0,2],[0,1],[1,1],[1,1],[2,0],[-1,2],[-2,0],[-3,-4],[-2,0],[-2,2],[0,2],[-4,0],[-4,2],[-4,3],[0,1],[2,2],[-1,0],[-1,1],[-3,-1],[-4,-4],[-1,0],[-26,-1],[-6,-1],[-2,0],[-1,2],[-1,6],[0,3],[0,2],[1,2],[1,0],[2,-2],[1,-2],[1,-2],[9,3],[4,2],[1,2],[2,3],[2,2],[1,1],[2,5],[1,2],[2,2],[1,1],[4,0],[-2,2],[-3,0],[-8,-5],[-3,0],[1,2],[3,2],[-2,0],[-1,1],[0,3],[2,3],[7,5],[2,1],[1,1],[-1,1],[-2,0],[-6,-5],[-5,-1],[-2,0],[-3,2],[0,1],[-2,2],[1,1],[2,4],[0,1],[-2,0],[-5,4],[-7,0],[-17,2],[-4,-1],[-5,-3],[-4,-1],[-2,0],[-1,2],[-2,2],[-1,3],[1,2],[2,1],[2,1],[4,-1],[6,2],[4,0],[1,1],[2,2],[1,0],[2,0],[1,-2],[5,2],[2,1],[1,1],[1,1],[2,-1],[3,0],[3,1],[5,0],[11,0],[2,2],[1,1],[1,4],[0,1],[-8,-3],[-1,0],[-9,2],[-3,2],[1,2],[5,3],[4,4],[7,3],[2,1],[0,2],[-5,2],[-8,0],[-2,3],[-7,2],[-5,-1],[-3,2],[-6,-3],[-13,-4],[-5,-3],[-3,-1],[-4,3],[-5,2],[-7,1],[0,1],[3,5],[3,1],[3,-1],[4,-3],[4,-1],[-4,5],[0,1],[-1,3],[-1,1],[-1,3],[0,1],[2,1],[3,-1],[9,-6],[4,1],[2,2],[3,2],[-1,0],[-7,0],[-4,1],[-2,2],[-1,2],[0,2],[2,1],[6,-1],[-4,5],[-3,2],[0,1],[0,2],[1,1],[0,1],[7,-3],[2,0],[-2,2],[-3,2],[0,1],[1,1],[1,1],[0,1],[2,1],[2,0],[2,-1],[7,-4],[1,-2],[0,-2],[0,-2],[0,-1],[3,1],[2,-1],[1,0],[2,4],[2,-1],[1,-2],[1,-1],[0,-2],[-1,-4],[2,2],[3,0],[1,1],[0,4],[-1,4],[0,1],[-10,4],[-2,2],[-2,2],[1,1],[2,1],[2,1],[7,0],[1,0],[-1,1],[-3,1],[-1,1],[-1,1],[-3,0],[-5,0],[-4,0],[0,2],[2,1],[3,3],[2,1],[4,-1],[5,1],[4,-1],[3,-3],[4,-4],[5,-3],[1,-1],[3,-3],[6,-6],[6,-4],[0,-1],[-1,-1],[-2,-1],[0,-1],[3,-1],[3,-3],[0,-1],[-2,-8],[-1,-2],[-1,0],[-6,1],[1,-2],[4,-3],[1,-2],[0,-1],[0,-1],[1,1],[1,-1],[0,-2],[-1,-2],[-1,-2],[1,0],[1,0],[2,-1],[2,-2],[2,-7],[1,-2],[0,2],[1,5],[1,3],[1,0],[0,1],[1,1],[1,6],[4,4],[1,1],[2,0],[1,0],[3,-4],[1,-1],[1,0],[2,3],[1,6],[0,6],[0,7],[0,5],[2,3],[2,1],[3,-1],[2,-2],[4,-7],[4,-3],[3,-4],[1,-2],[3,0],[1,0],[0,1],[1,1],[-1,11],[1,3],[1,2],[5,1],[3,2],[3,2],[2,1],[2,0],[2,-1],[2,-2],[3,-3],[4,-7],[5,-4],[2,-8],[1,-1],[1,0],[0,1],[1,1],[0,3],[-2,5],[-4,11],[0,2],[0,2],[4,0],[7,-1],[3,-2],[5,-7],[1,-1],[1,-1],[0,1],[2,1],[2,2],[2,4],[5,6],[1,1],[2,-1],[2,-2],[1,-1],[3,-1],[2,0],[4,3],[4,1],[1,3],[0,2],[-3,10],[1,2],[7,2],[6,1],[2,-1],[3,-5],[3,-2],[1,-2],[0,-5],[2,-1],[3,-2]],[[5993,6986],[-1,-1],[-3,-2],[-1,-1],[0,-2],[-1,-1],[0,-13]],[[5987,6966],[-2,0],[-2,3],[-1,3],[-2,1],[-3,1],[-4,-4],[-1,-8],[0,-3],[-2,-7],[1,-5],[0,-5],[0,-5],[0,-3],[-1,-1],[1,-1],[0,-1],[2,2],[2,-2],[2,-2],[0,-2],[-1,0],[-3,-4],[-3,-4],[0,-4],[-2,-8],[0,-2],[1,-1],[5,1],[5,3],[4,4],[1,-1]],[[5984,6911],[-1,-9],[0,-5],[0,-1],[1,-5],[-2,-9],[-1,-7],[-1,-4],[-2,-7],[-2,-9],[0,-6],[0,-2],[-1,-12],[1,-3],[-2,-9],[-1,-5],[-1,-7],[-1,-14]],[[5971,6797],[-2,-4]],[[5951,6895],[3,5],[0,5],[4,9],[0,1],[-1,3]],[[5957,6918],[6,18],[3,18],[3,25],[3,12],[2,9],[1,7]],[[5975,7007],[3,0],[2,-1],[3,0],[2,3],[1,7],[2,2],[0,-2],[1,2],[3,3],[1,2],[2,3],[1,1]],[[5996,7027],[-1,-4],[0,-2],[0,-3],[0,-2],[1,-3],[1,-3],[-1,-3],[0,-3],[0,-3],[1,-2],[-2,-6],[-1,-4],[-1,-3]],[[5334,7224],[-1,-1],[-2,2],[0,3],[0,1],[2,-1],[1,-3],[0,-1]],[[5432,7311],[-2,-7],[-1,-3],[-6,-16],[-1,-4],[-1,-4],[0,-4],[-1,-3],[-1,-4],[0,-5],[0,-3],[1,-1],[2,-2],[1,-2],[-2,-2],[2,-4],[1,-3],[0,-2],[0,-3],[-3,-4],[-1,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[-3,0],[-3,2],[-3,-1],[-5,4],[-1,0],[-2,2],[-3,10],[-3,4],[-4,4],[-3,0],[-3,-1],[-3,3],[-6,7],[-6,5],[-3,4],[-1,2],[-2,2],[-3,2],[-4,3],[-1,1],[-3,-1],[-2,0],[-1,2],[-4,4],[-2,6],[0,3],[1,7],[2,7],[2,2],[1,1],[1,2],[1,3],[3,-7],[2,-2],[1,0],[3,3],[0,2],[3,4],[4,0],[1,-1],[1,-3],[2,-1],[1,0],[6,-6],[1,-1],[1,0],[5,2],[3,1],[6,-1],[4,1],[2,0],[4,3],[3,4],[1,1],[2,0],[4,0],[3,-1],[2,1],[1,2],[2,1],[2,0],[4,4],[2,0],[2,-1],[-2,-3]],[[5235,7361],[-2,-6],[-1,4],[0,4],[0,1],[2,-2],[1,-1]],[[5387,7458],[-2,0],[-1,1],[1,2],[2,-1],[0,-1],[0,-1]],[[5230,7478],[-1,-3],[-2,0],[1,2],[1,4],[2,2],[0,-2],[0,-2],[-1,-1]],[[5267,7468],[1,-3],[4,-16],[0,-3],[-1,-4],[-1,-2],[-3,-8],[1,-6],[1,-4],[0,-5],[0,-5],[-2,-34],[-1,-6],[-1,-5],[-2,-2],[-3,2],[-3,3],[-2,0],[-1,-1],[-2,0],[-1,2],[-1,-11],[-1,-5],[-3,-3],[-2,0],[-2,1],[-2,0],[-2,2],[-1,4],[-2,5],[-2,5],[0,5],[0,12],[0,2],[1,2],[1,5],[-1,5],[1,1],[1,-1],[1,0],[0,3],[0,4],[-2,3],[-2,1],[0,4],[0,3],[1,3],[1,3],[0,10],[-2,3],[-1,5],[0,4],[-2,3],[-2,3],[-1,3],[0,7],[0,6],[1,2],[1,0],[1,-3],[2,-1],[3,0],[3,1],[3,2],[4,3],[4,10],[3,2],[2,2],[1,4],[1,1],[1,-4],[2,0],[3,-3],[1,-2],[1,-3],[1,-2],[2,-1],[-1,-1],[-1,-4],[0,-1],[2,-2]],[[5288,7586],[1,-3],[0,-1],[0,-2],[0,-3],[-2,3],[-4,-2],[-2,1],[-1,2],[1,2],[3,0],[1,1],[2,-1],[1,3]],[[5380,7802],[-1,-3],[-1,-1],[-2,-2],[-2,-2],[-2,-4],[-1,-3],[1,-2],[0,-1],[1,1],[1,-1],[2,-1],[2,-1],[0,-1],[0,-1],[-2,-3],[-2,-3],[0,-2],[0,-1],[1,-1],[2,0],[1,-1],[-2,-7],[1,-1],[2,-2],[2,-1],[3,-5],[1,-4],[-1,-1],[-2,-1],[-1,0]],[[5381,7747],[1,3],[-4,8],[-2,0],[-3,-4],[-7,4],[-1,-1],[-1,-3],[-3,-4],[-3,-1],[-4,-4],[-4,-3],[-3,-2],[-2,0],[3,5],[-2,0],[-3,-3],[-3,-3],[0,-5],[-1,-7],[2,-2],[3,-10],[3,-4],[0,-5],[-1,-3],[-3,-3],[-1,3],[-1,-1],[-1,-6],[1,-17],[3,-13],[2,-5],[6,-8],[6,-4],[11,-14],[6,-5],[1,-2],[4,-11],[3,-12],[3,-20],[3,-9],[4,-11],[10,-16],[9,-11],[9,-7],[6,-1],[16,1],[3,-1],[2,-1],[1,-5],[-1,-4],[-3,-3],[-3,-5],[-1,-6],[3,-5],[15,-12],[16,-10],[4,-5],[6,-8],[13,-11],[2,-5],[9,-12],[3,-9],[1,-7],[-2,-7],[-1,-4],[-1,-5],[-3,1],[-4,5],[-6,21],[-11,2],[-2,1],[-4,4],[0,2],[-1,3],[-1,1],[-4,1],[-3,-4],[-4,-7],[-4,-12],[-3,-16],[-1,-7],[3,-6],[6,-4],[5,-5],[3,-6],[0,-15],[2,-8],[-3,-5],[-4,1],[-5,-3],[-4,-5],[-2,-5],[1,-13],[-1,-5],[-7,-9],[-4,-10],[-1,-4],[-2,-5],[-9,0],[-2,6],[0,8],[2,5],[3,3],[2,10],[0,8],[1,4],[1,2],[3,1],[3,2],[1,10],[-3,5],[-1,7],[-1,13],[-5,16],[-3,15],[-2,7],[-3,3],[-5,0],[-3,1],[-9,10],[-1,2],[0,3],[2,4],[-1,5],[-1,5],[-2,5],[-2,2],[-5,-2],[-1,-1],[-3,1],[-2,-2],[-1,0],[3,7],[-1,2],[-3,3],[-5,1],[-1,0],[-1,-2],[0,1],[0,4],[-6,15],[-3,6],[-2,2],[-3,-2],[-5,3],[-4,1],[-1,-1],[-3,-2],[-1,1],[-1,2],[-5,7],[-6,3],[-11,21],[-4,7],[-8,9],[-4,12],[-4,4],[-6,4],[-1,-1],[-2,-1],[-1,0],[-1,1],[1,2],[1,1],[0,4],[-7,12],[-3,4],[-1,3],[-1,3],[-1,2],[-2,1],[-1,0],[-2,1],[0,6],[0,4],[0,4],[-2,10],[-4,8],[-2,20],[-2,6],[-3,4],[-9,5],[-12,13],[-3,0],[-7,5],[-5,1],[-6,-4],[-7,-13],[-6,-13],[-2,-2],[-8,-5],[-6,-2]],[[5344,7649],[1,-2],[1,0],[1,3],[0,3],[-2,-1],[-1,-3]],[[2854,6140],[3,-2],[3,-1],[2,0],[1,-1],[4,-5],[2,-3],[10,-6],[3,-11],[1,-3],[-3,-2],[-3,-1],[-3,0],[-3,2],[-1,2],[-3,0],[1,2],[-1,1],[-2,-1],[-1,-4],[-2,-3],[-2,0],[-1,3],[-1,-1],[-2,-2],[-1,-8],[-2,4],[-2,3],[-3,1],[-6,1],[-3,1],[-2,6],[-1,2],[-2,2],[-2,7],[-1,1],[-6,2],[-1,4],[0,4],[2,4],[1,2],[3,-1],[4,2],[1,2],[2,1],[11,-3],[3,0],[3,-1]],[[4943,7963],[1,-3],[-2,-1],[-1,1],[-2,0],[-2,0],[1,5],[4,-1],[1,-1]],[[6087,6950],[-4,-7],[-1,-1],[-6,-3],[-11,-6],[-7,-4],[-9,-5],[-8,-4],[-8,-4],[-7,-4],[4,-8],[6,-12],[4,-8],[5,-11],[5,-10],[4,-10],[-3,-3],[-5,-6],[-1,-1],[0,-1],[-2,-10],[-2,-7],[-1,-1],[-7,-3],[-8,-3],[-5,-2],[-1,-2],[-3,-10],[-3,-10],[-6,-8],[-6,-10],[-1,0],[-4,1],[-8,3],[-7,2],[-5,2],[-6,2]],[[5970,6786],[1,7],[0,4]],[[5984,6911],[1,5],[0,7],[2,5],[-1,13],[0,7],[2,8],[-1,10]],[[5993,6986],[3,-1],[2,-3],[3,-8],[5,-2],[1,-3],[3,-4],[3,-1],[9,-3],[8,9],[6,7],[7,9],[5,5],[8,10],[6,6],[7,9],[7,8]],[[8441,6485],[-2,-1],[-2,1],[-2,0],[0,2],[2,2],[0,3],[0,1],[5,-3],[0,-2],[-1,-3]],[[8452,6499],[-2,-9],[-1,-2],[-2,1],[-1,5],[1,2],[1,-1],[1,1],[3,7],[1,-1],[-1,-3]],[[8484,6512],[-3,-1],[-2,1],[0,8],[1,-1],[1,-3],[2,-2],[1,-2]],[[8949,6623],[-1,0],[-1,7],[1,-1],[1,-4],[0,-2]],[[8562,6626],[-3,-3],[-1,-3],[-2,-2],[-3,-4],[-2,-1],[0,-4],[1,-3],[-2,0],[-1,-4],[0,-3],[0,-2],[0,-1],[-2,-3],[-2,-1],[0,4],[0,3],[2,6],[0,8],[2,0],[1,1],[3,6],[0,2],[-1,2],[0,3],[0,1],[3,-1],[1,-2],[1,1],[1,3],[3,5],[1,5],[2,-4],[-1,-5],[-1,-4]],[[8582,6689],[-1,-1],[-1,1],[-1,7],[1,3],[1,1],[1,-6],[1,-2],[-1,-3]],[[8591,6712],[1,-2],[-3,1],[-1,6],[2,-1],[0,-2],[1,-2]],[[8595,6718],[-2,-5],[-3,4],[-3,3],[2,1],[0,1],[0,2],[2,3],[4,2],[2,0],[1,2],[1,2],[0,1],[3,2],[0,-3],[0,-2],[-2,-1],[-2,-3],[-1,-4],[-2,-2],[0,-1],[0,-2]],[[8628,6839],[-4,-1],[-1,2],[-2,7],[3,4],[4,-4],[1,-1],[-1,-7]],[[8637,6847],[-3,0],[0,3],[2,8],[1,6],[1,7],[1,1],[1,1],[0,-2],[0,-9],[-2,-7],[-1,-8]],[[8602,6922],[0,-1],[0,5],[2,4],[1,-3],[-3,-5]],[[8621,6967],[-3,0],[-1,1],[0,2],[3,4],[3,-1],[-1,-4],[-1,-2]],[[8613,6956],[-3,-2],[0,2],[-1,1],[2,3],[0,1],[-1,2],[1,7],[0,3],[4,1],[1,-3],[0,-9],[-3,-6]],[[8573,6989],[1,-2],[2,1],[1,0],[1,0],[1,-5],[1,-2],[-2,0],[-1,-1],[-1,-3],[-2,1],[-1,2],[0,2],[0,7]],[[8884,7005],[-1,-1],[-1,2],[0,2],[0,1],[1,0],[1,-2],[0,-2]],[[8585,6992],[-1,-1],[-1,6],[-1,2],[1,1],[3,9],[0,-3],[1,-4],[1,-1],[-1,-3],[-1,-1],[-1,-5]],[[8596,7015],[-2,-3],[-1,0],[1,3],[0,2],[1,4],[2,2],[1,0],[-1,-5],[-1,-3]],[[8605,7046],[-2,-3],[-2,2],[1,6],[0,1],[2,-1],[1,-5]],[[8643,7037],[4,-2],[1,0],[2,1],[2,2],[2,2],[2,-1],[1,-2],[1,-3],[0,-3],[-3,-6],[-2,-7],[5,-2],[5,1],[-1,-5],[0,-3],[1,-2],[1,-3],[0,-2],[-1,-2],[3,-3],[0,-2],[-1,-3],[-7,-15],[-2,-7],[-1,-8],[-1,-6],[-1,-7],[-1,-7],[-1,-7],[0,-6],[0,-6],[-4,-16],[-2,0],[-3,2],[-2,0],[-1,-4],[2,-7],[-6,-8],[-6,-6],[0,3],[1,2],[1,1],[0,2],[1,7],[0,7],[-2,8],[0,3],[1,2],[1,0],[0,1],[0,3],[0,2],[-2,1],[-2,0],[-1,-4],[-1,-6],[-1,-6],[0,-3],[1,-3],[2,-5],[0,-3],[-1,-2],[-8,5],[-2,0],[-1,1],[-2,7],[3,2],[1,1],[1,2],[0,7],[-1,5],[-2,2],[-1,3],[1,4],[0,6],[0,9],[0,1],[3,2],[2,4],[2,5],[3,9],[2,10],[-2,0],[-2,2],[2,5],[-1,6],[-3,7],[-1,8],[-3,4],[-1,1],[-2,-2],[-1,-2],[1,-6],[0,-4],[0,-5],[1,-1],[2,2],[1,-1],[1,-3],[0,-3],[0,-3],[-1,-2],[-2,0],[-1,2],[-2,3],[-2,1],[-3,-3],[-3,-6],[-2,-3],[1,5],[0,4],[-1,4],[-2,5],[-1,3],[0,4],[0,4],[3,-4],[1,-6],[2,-2],[3,0],[-2,8],[-1,2],[-2,3],[-4,7],[-2,3],[0,6],[2,1],[1,0],[4,-2],[0,3],[0,1],[-1,2],[3,3],[4,2],[1,2],[1,2],[1,1],[3,0],[2,2],[2,6],[1,3],[1,3],[5,5],[1,1],[4,-1],[3,-3],[1,-5],[2,-7],[3,-4]],[[8673,7058],[2,-3],[3,1],[-1,-2],[-1,-2],[-3,1],[-1,0],[-1,4],[1,1],[1,0]],[[8682,7068],[-1,-3],[-2,1],[1,2],[0,3],[1,0],[0,-3],[1,0]],[[8590,7068],[-2,-2],[0,3],[0,11],[4,-2],[0,-4],[-2,-6]],[[8731,7076],[4,-2],[4,0],[0,-11],[1,-3],[1,-3],[-1,-5],[2,-2],[-5,-5],[-5,-7],[-2,-5],[-2,-5],[-1,-6],[-1,-6],[-1,3],[-5,9],[-3,3],[-4,1],[-2,0],[-9,-9],[-2,-7],[-2,-10],[-2,-3],[-1,-1],[-1,-1],[-1,-9],[-3,-5],[-2,0],[-3,1],[-1,-1],[1,9],[-2,1],[-3,0],[-1,5],[-1,3],[1,4],[0,3],[1,2],[0,3],[0,2],[-2,1],[-1,1],[0,6],[-1,0],[-2,-1],[-6,-4],[-1,0],[2,3],[5,4],[2,3],[5,7],[3,3],[1,6],[1,4],[1,3],[1,5],[1,2],[3,4],[1,0],[2,-5],[2,-5],[2,1],[3,2],[1,0],[4,0],[3,3],[1,3],[0,4],[-1,6],[2,0],[1,0],[4,4],[3,2],[3,1],[4,-2],[4,-4]],[[8731,7089],[0,-1],[-1,1],[-2,-3],[0,2],[-1,2],[-1,2],[4,0],[2,0],[-1,-3]],[[8747,7078],[-3,-5],[-2,0],[-2,2],[0,3],[2,5],[3,6],[1,3],[2,1],[1,0],[-3,-9],[1,-6]],[[8593,7082],[0,-3],[-2,2],[-1,2],[2,9],[-1,3],[1,2],[3,4],[1,0],[0,-2],[0,-2],[0,-4],[-3,-8],[0,-3]],[[8873,7104],[0,-3],[-2,1],[-1,1],[1,4],[1,0],[1,-3]],[[8704,7191],[-1,-2],[-3,1],[-1,3],[0,4],[3,2],[2,-5],[0,-3]],[[8842,7287],[-3,0],[0,1],[1,1],[0,3],[1,4],[0,1],[-2,0],[0,5],[2,5],[4,8],[1,1],[1,-3],[-2,-8],[0,-3],[3,0],[-2,-10],[-4,-5]],[[8922,7498],[1,-2],[5,3],[-1,-9],[0,-9],[0,-15],[1,-7],[1,-7],[2,-4],[3,-4],[4,-11],[2,-13],[2,-6],[1,-7],[0,-3],[0,-3],[0,-4],[0,-4],[0,-11],[-2,-12],[0,-6],[-2,-2],[-1,-3],[-1,-1],[-1,-1],[-1,0],[-1,-2],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-8],[0,-8],[-1,-5],[-3,-2],[-3,0],[-4,-2],[-1,-2],[-3,-9],[-1,-6],[0,-6],[1,-8],[1,-7],[1,-14],[-1,-21],[-1,-6],[-2,-5],[-2,-2],[-1,-3],[-2,-6],[-3,-14],[0,-3],[0,-4],[-1,-5],[0,-4],[0,-5],[1,-5],[4,-13],[2,-4],[1,-3],[-6,-4],[-1,-2],[-4,-7],[-2,-7],[1,-7],[-1,-3],[-1,-2],[-1,-2],[-5,-3],[-2,-4],[-3,-5],[-1,-3],[-2,1],[-2,2],[2,4],[-1,3],[1,10],[-1,4],[2,2],[1,5],[3,4],[1,3],[1,3],[-2,3],[-1,2],[-3,0],[-2,-1],[-1,-3],[0,-3],[0,-2],[0,-2],[-4,-5],[1,-5],[1,-3],[1,-1],[0,-2],[-2,-4],[-1,-1],[-2,6],[-3,4],[-3,0],[-3,-2],[-2,-3],[-1,-4],[-1,-3],[1,-9],[-1,-7],[-2,-6],[-1,-2],[-3,-4],[-1,-1],[-1,2],[-1,3],[1,11],[0,6],[3,3],[-3,4],[-3,1],[-4,-2],[-1,-2],[0,-4],[-3,-4],[-2,-4],[-3,-7],[-1,-8],[-6,3],[-3,0],[-4,0],[-5,1],[-6,-2],[-8,-3],[1,3],[6,4],[0,2],[-1,3],[-1,0],[-4,-1],[-1,0],[-1,3],[-1,1],[-1,-1],[0,-5],[-1,-1],[-1,1],[0,5],[0,6],[0,4],[1,3],[-1,2],[-2,-1],[-1,-2],[-2,-2],[-3,-11],[-1,-7],[2,-5],[6,-8],[1,-2],[0,-3],[0,-3],[-2,-1],[-7,-3],[-6,-5],[-2,-5],[-5,-18],[-4,-13],[-7,-5],[-6,4],[-2,5],[-1,5],[-3,5],[-2,6],[-1,6],[0,11],[-1,6],[1,2],[4,3],[1,2],[2,5],[1,3],[0,4],[-2,3],[-4,-1],[-5,-1],[-3,2],[-4,5],[-1,1],[-4,0],[-4,-1],[-3,-1],[-3,-1],[-1,-1],[-4,-6],[-3,-4],[-2,-2],[-6,0],[-2,-2],[-3,-2],[-1,0],[-3,-2],[-4,-3],[-1,-2],[-4,1],[-7,-4],[-3,-1],[-3,3],[-3,4],[-4,-2],[-2,-6],[-1,-11],[-1,-6],[0,-6],[-2,1],[-9,11],[0,1],[-8,-2],[-2,-1],[-2,-2],[-3,-1],[-2,1],[-2,3],[-2,-1],[-2,-2],[-1,17],[0,3],[2,3],[1,2],[4,1],[3,-1],[3,1],[2,4],[2,4],[3,4],[3,3],[4,4],[3,5],[3,5],[2,4],[3,3],[4,8],[6,9],[2,7],[2,2],[4,3],[7,3],[3,0],[3,-6],[2,1],[1,1],[4,1],[3,-1],[3,0],[4,1],[6,2],[4,2],[3,3],[12,2],[8,5],[1,0],[1,-1],[1,-4],[-1,-4],[1,-2],[1,-2],[8,0],[2,-1],[3,3],[3,3],[3,4],[3,5],[-2,7],[-1,7],[2,7],[2,6],[3,4],[3,5],[5,12],[4,10],[2,13],[-1,14],[3,11],[4,2],[6,5],[4,1],[0,-2],[0,-3],[-5,-9],[-3,-3],[-2,-2],[-1,-1],[-1,-4],[3,-5],[0,-4],[0,-4],[0,-3],[3,-4],[4,-1],[1,0],[1,1],[4,9],[1,2],[11,6],[5,5],[4,2],[2,2],[7,11],[2,4],[2,6],[2,6],[1,6],[2,4],[10,10],[3,6],[1,2],[2,8],[0,7],[2,7],[1,5],[3,6],[2,5],[1,6],[3,13],[1,8],[0,2],[1,2],[1,3],[1,3],[0,3],[1,10],[0,7],[-2,7],[-2,1],[-1,1],[-2,-1],[-2,3],[0,2],[2,0],[1,1],[1,3],[2,6],[1,8],[0,3],[-1,6],[-1,7],[0,4],[1,4],[2,4],[1,0],[2,1],[2,1],[1,2],[1,2],[1,6],[1,4],[-1,9],[1,3],[1,1],[1,-1],[2,0],[2,0],[1,-1],[1,-2],[1,-16],[1,-2],[1,-2],[1,1],[1,2],[1,3],[2,1],[5,-4],[2,3],[1,4],[1,7],[0,6],[-2,2],[-1,-1],[-1,-1],[-1,-1],[-8,-3],[0,6],[2,11],[1,3],[1,1],[3,-1],[2,-2],[3,-4]],[[8874,7539],[-1,0],[-1,1],[0,4],[0,3],[2,1],[2,1],[-2,-9],[0,-1]],[[8924,7719],[-2,0],[-2,3],[0,3],[1,2],[2,-1],[1,-3],[1,-2],[-1,-2]],[[8918,7732],[-1,-4],[-2,6],[0,6],[1,0],[1,-1],[1,-3],[0,-4]],[[8994,7660],[4,0],[1,0],[3,-1],[10,-9],[4,-1],[3,0],[2,1],[2,2],[7,11],[6,10],[1,0],[0,-3],[0,-3],[-3,-9],[-4,-13],[0,-6],[1,-6],[2,-5],[1,-7],[2,-9],[3,-1],[1,0],[3,2],[3,4],[2,0],[2,0],[-3,-3],[-3,-3],[-2,-6],[-1,-1],[-3,1],[-1,-1],[-4,-2],[-3,-3],[-2,-3],[-3,-2],[-3,0],[-5,-3],[-4,0],[-6,2],[-2,-1],[-7,-5],[-6,-8],[-5,-9],[-4,-10],[-1,-6],[-1,-6],[-1,-4],[0,-4],[-1,-3],[-1,-2],[-4,1],[-5,6],[-11,8],[-12,13],[-7,6],[-12,-2],[-12,-12],[-1,1],[-4,8],[-2,4],[-3,1],[-2,-1],[-2,0],[-2,-4],[-1,-4],[-1,-3],[0,-3],[0,-2],[3,-5],[3,-4],[1,-1],[3,0],[1,0],[5,-9],[6,-7],[1,-3],[-2,-3],[-2,-1],[-3,0],[-2,2],[-5,3],[-2,-3],[-2,-6],[-2,-6],[-1,-3],[-3,-4],[-4,-1],[-2,0],[-1,3],[-1,2],[0,4],[1,7],[1,6],[1,7],[-1,9],[-1,2],[-4,5],[-2,5],[0,7],[0,3],[1,8],[1,4],[2,1],[1,1],[3,3],[3,4],[3,4],[3,5],[2,6],[-3,7],[0,4],[0,4],[3,2],[2,-2],[6,-5],[1,-1],[3,0],[6,-1],[3,0],[1,1],[2,4],[1,7],[0,7],[0,8],[1,6],[4,10],[2,6],[0,15],[2,6],[1,7],[1,14],[-2,13],[-2,6],[-2,7],[0,6],[2,5],[0,2],[0,1],[3,1],[2,1],[1,3],[2,2],[1,-2],[1,-3],[4,-6],[7,-12],[8,-18],[5,-9],[5,-8],[6,-8],[7,-7],[4,-4],[2,-5],[2,-1]],[[7140,7127],[-2,5],[0,3],[-2,6],[-1,5],[-2,8],[-1,5]],[[6393,7704],[-1,-2],[-1,0],[-3,7],[1,6],[1,1],[1,1],[0,-1],[-1,-3],[-1,-4],[2,-4],[2,-1]],[[6397,7711],[-1,-1],[-1,4],[1,3],[2,0],[-1,-5],[0,-1]],[[6463,7737],[-1,-1],[-2,2],[-1,2],[2,4],[1,-1],[1,-3],[0,-3]],[[7227,7546],[-4,7],[-4,6],[-3,2],[-6,1],[-3,0],[-1,1],[-2,4],[-2,4],[-3,3],[-1,6],[-1,1],[-2,-1],[-3,0],[-1,1],[-3,1],[-4,2],[-3,2],[-5,0],[-2,0],[-7,-1],[-7,3],[-5,0],[-3,0],[-1,0],[-3,0],[-3,1],[-5,3],[-2,0],[-1,0],[-9,-2],[-3,-1],[-9,0],[-7,1],[-3,0],[-1,0],[-3,-6],[-2,-1],[-7,1],[-9,4],[-6,5],[-6,4],[-7,8],[-4,3],[-1,-2],[-1,-1],[-2,0],[-4,0],[-1,-3],[-5,-3],[-3,-2],[-1,-3],[-3,-18],[-1,-6],[2,-11],[-2,1],[-3,2],[-1,3],[-3,1],[-9,2],[-2,2],[-1,2],[-2,2],[-4,1],[-7,5],[-3,0],[-10,3],[-1,0],[-1,0],[-4,-2],[-2,-1],[-3,1],[-4,-3],[-3,-4],[-2,-5],[-2,-3],[0,-4],[-2,-2],[-1,-5],[0,-3],[1,-3]],[[6970,7549],[-2,-2],[-3,-1],[-1,-1],[-2,-4],[-1,-3],[-1,-1],[-1,0],[-2,2],[-2,0],[-2,-3],[-3,-5],[-4,-7],[-3,-4],[-5,-3],[-4,-2],[-2,-2],[-5,-5],[-1,-3],[-3,-2],[-3,-2],[-2,-4],[-1,-6],[-1,-3],[-4,-5],[-3,-5],[-2,-5],[-3,-5],[0,-3],[0,-3],[1,-4],[0,-3],[-1,-2],[-2,-1],[-2,1],[-4,2],[-3,4],[-2,2],[-1,3],[0,3],[1,6],[0,4],[-1,2],[-1,2],[-1,2],[-2,4],[-2,-1],[-1,-1],[-2,2],[-6,-1],[-4,-1],[-4,0],[-6,0],[-6,-1],[-2,1],[-1,1],[-1,5],[0,5],[-2,9],[0,6],[-1,8],[-1,9],[-1,6],[-4,1],[-4,0],[-5,0],[0,5],[0,6],[0,7],[1,10],[0,8],[1,9],[0,6],[0,7],[-2,-2],[-3,-2],[-3,-2],[-2,5],[-2,6],[-2,8],[-2,6],[-4,4],[-3,3],[-2,4],[-3,5],[-2,4],[-3,4],[-2,-1],[-3,-2],[-3,-3],[-3,-2],[-2,-1],[-3,0],[-3,0],[-6,1],[-4,1],[-5,0],[-6,1],[-7,1],[-4,-1],[-6,-1],[-6,-2],[-5,-1],[-6,-2],[-4,-1],[-3,0],[-3,5],[-4,8],[-3,5],[-3,5],[-4,7],[-3,5],[-3,5],[-2,5],[0,6],[-2,3],[-4,3],[-3,4],[-4,4],[-4,4],[-4,4],[-4,4],[-4,4],[-3,3],[-4,4],[-4,4],[-4,4],[-4,4],[-4,4],[-3,4],[-4,4],[-4,4],[-4,3],[-3,3],[-3,0],[-4,-2],[-5,-2],[-5,-3],[-8,-3],[-5,-3],[-4,-2],[-5,-2],[-5,-3],[-5,-2],[-6,-3],[-5,-2],[-4,-2],[-4,-2],[-4,-2],[0,-13],[0,-14],[0,-14],[0,-13],[0,-14],[0,-13],[0,-14],[0,-14],[0,-13],[0,-14],[0,-13],[0,-14],[0,-14],[0,-13],[0,-14],[0,-13]],[[6554,7495],[-1,0],[-3,-1],[-4,-2],[-4,-1],[-1,1],[-2,1],[-1,3],[-2,4],[-2,3],[-2,6],[-2,4],[-4,10],[-1,4],[-1,3],[-1,3],[-5,6],[-6,6],[-5,6],[-2,2],[-2,2],[-4,0],[-2,-1],[-6,-2],[-6,-2],[-6,-3],[-6,-4],[-1,-1],[-4,-4],[-5,-7],[-5,-9]],[[6458,7522],[-1,6],[0,10],[0,3],[1,8],[2,5],[1,6],[1,8],[-2,12],[-1,2],[-1,1],[-2,1],[-3,-1],[-2,-1],[-2,4],[-3,1],[-2,-1],[-1,-1],[-2,1],[-2,3],[0,2],[-1,3],[-3,6],[-2,3],[-3,1],[-4,0],[-2,0],[0,4],[1,7],[0,4],[-1,4],[0,3],[-1,2],[-3,4],[-2,6],[-4,13],[-3,14],[-1,2],[-3,2],[-6,2],[-4,1],[-1,2],[-1,3],[0,4],[1,3],[1,4],[3,2],[6,1],[6,-1],[5,-5],[2,-2],[2,0],[4,2],[1,0],[5,0],[-1,2],[-2,2],[-2,0],[-1,1],[-3,5],[-4,6],[-1,3],[-1,4],[1,3],[3,4],[3,5],[1,6],[1,3],[3,5],[3,-1],[5,3],[9,-1],[11,1],[3,0],[6,-3],[4,-2],[5,0],[3,1],[-3,5],[-7,5],[-2,4],[3,13],[5,11],[2,13],[0,13],[-2,4],[1,4],[1,4],[1,3],[-1,5],[-1,6],[-1,3],[-4,3],[-6,0],[-6,2],[-2,-1],[-1,-3],[-1,-1],[-4,-4],[-1,0],[-2,0],[-2,4],[-2,0],[-5,2],[-3,5],[-1,1],[-9,4],[-3,0],[-7,-4],[-5,-5],[-2,-1],[-3,-3],[-1,-1],[-2,1],[-1,0],[-3,-5],[-6,-6],[-3,-4],[-3,-2],[-3,-1],[-4,-1],[-1,-1],[-4,-1],[-3,-1],[0,-2],[1,-4],[-3,2],[-2,-4],[1,-2]],[[6367,7792],[-1,0],[-7,6],[-5,4],[-4,3],[-1,1],[-1,2],[-1,2],[0,3],[0,2],[1,2],[2,0],[1,0],[1,-2],[2,-1],[3,-1],[2,2],[0,3],[-3,10],[-3,9],[-4,9],[-1,4],[-4,8],[-4,8],[-3,7],[-1,2],[-5,1],[-9,2],[-4,1],[-2,-3],[-3,-1],[-2,3],[-2,5],[-1,4],[0,4],[0,7],[-1,6],[-2,3],[-4,2],[-5,6],[-2,9],[3,14],[4,10],[3,4],[1,3],[1,3],[-1,3],[-1,3],[-3,3],[-2,4],[1,8],[2,12],[3,9],[4,5],[3,4],[1,3],[0,5],[0,4],[1,4],[1,2],[2,3],[2,2],[3,1],[3,-2],[4,-6],[5,-11],[4,-7],[1,-2],[3,-5],[3,-2],[4,3],[5,3],[1,2],[1,3],[-1,6],[-1,3],[0,4],[-2,8],[-1,11],[-1,4],[1,0],[2,0],[2,-1],[3,3],[4,5],[7,7],[2,5],[1,5],[2,4],[5,1],[4,2],[3,4],[5,3],[4,2],[2,2],[1,3],[5,8],[3,5],[3,5],[1,3],[3,-1],[4,-2],[4,-2],[3,-3],[0,-3],[0,-3],[2,-1],[1,0],[2,0],[4,1],[5,4],[6,7],[6,2],[3,-2],[3,-5],[2,-5],[2,-2],[1,0],[3,1],[3,0],[2,-1],[4,-1],[5,2],[3,-1],[3,-2],[2,-2],[5,-9],[2,-2],[5,-4],[3,-2],[2,-5],[2,-2],[3,-5],[3,-8],[1,-6],[0,-6],[2,-2],[1,-1],[1,1],[1,3],[0,4],[0,7],[-1,6],[-1,2],[0,2],[0,2],[2,2],[3,-1],[3,-4],[5,-4],[5,-7],[4,-5],[5,-4],[4,-1],[3,1],[4,3],[3,4],[2,4],[1,4],[5,5],[5,5],[2,-1],[1,-1],[5,3],[1,1],[5,1],[5,-2],[3,-5],[4,-4],[3,1],[3,1],[2,4],[1,4],[2,2],[6,-1],[3,0],[1,1],[4,-1],[6,-6],[3,-6],[4,-8],[2,-2],[3,-1],[2,-1],[3,-1],[8,-2],[1,-1],[1,-1],[-1,-4],[1,-1],[6,3],[2,2],[2,6],[2,7],[1,2],[2,1],[1,-1],[2,-4],[3,-4],[4,-1],[2,-1],[4,0],[8,2],[8,5],[5,5],[2,7],[1,9],[2,5],[-1,6],[-4,5],[-1,2],[-10,3],[0,2],[-1,1],[-9,4],[-5,2],[-1,4],[-1,4],[-3,3],[-6,4],[-1,2],[1,3],[4,3],[6,6],[2,1],[5,0],[4,5],[3,3],[2,3],[-1,3],[-4,11],[-1,6],[0,4],[3,5],[1,2],[2,4],[1,3],[5,1],[5,0],[4,-1],[5,0],[4,-1],[3,-1],[2,1],[1,3],[0,3],[-2,3],[-7,4],[-3,3],[-2,-1],[-4,2],[-4,2],[-3,0],[-1,3],[1,4],[1,3],[2,1],[3,-1],[3,2],[0,1],[1,1],[-1,2],[-1,2],[-2,0],[-2,-1],[-2,-1],[-4,2],[-4,2],[0,2],[3,3],[1,3],[0,3],[0,5],[1,4],[2,4],[3,1],[7,-3],[10,-3],[1,1],[1,1],[1,2],[12,0],[3,2],[1,2],[12,2],[2,2],[2,2],[2,0],[4,0],[4,3],[4,1],[4,0],[4,1],[1,1],[1,2],[4,2],[7,2],[2,-1],[3,-1],[5,1],[3,2],[2,-2],[2,-1],[2,1],[1,5],[1,4],[3,2],[1,1],[2,2],[1,1],[7,0],[5,5],[1,-2],[8,0],[9,3],[6,1],[9,3],[5,3],[6,1],[6,1],[3,4],[4,1],[3,0],[3,1],[1,2],[1,3],[-1,4],[0,2],[3,2],[3,0],[3,1],[5,6],[4,3],[3,2],[8,-1],[7,-1],[7,-3],[3,-4],[3,-2],[3,-2],[3,-1],[3,2],[2,1],[1,3],[2,2],[7,1],[2,-3],[3,-8],[2,-10],[4,-14],[2,-7],[-1,-4],[0,-4],[0,-6],[-3,-6],[1,-3],[7,-3],[9,1],[6,3],[3,-1],[2,1],[1,5],[2,1],[3,-3],[1,-6],[2,-3],[0,-4],[1,-6],[1,-1],[2,2],[2,1],[0,2],[-1,2],[0,2],[0,2],[2,1],[3,-1],[5,-1],[5,-8],[3,-1],[2,0],[3,0],[3,3],[2,2],[1,2],[2,-1],[1,-1],[0,-3],[-1,-4],[-4,-3],[-4,-4],[-2,-6],[-1,-6],[1,-4],[1,-2],[0,-3],[1,0],[2,1],[5,6],[2,2],[4,1],[6,0],[4,-3],[2,-2],[2,-3],[1,1],[1,3],[0,3],[0,3],[7,6],[4,4],[1,1],[3,-1],[2,0],[5,4],[4,5],[1,3],[0,3],[1,1],[6,1],[1,0],[5,4],[7,5],[4,3],[6,1],[1,1],[2,2],[4,3],[3,1],[-2,-7],[-2,-9],[-1,-2],[-7,1],[0,-3],[1,-3],[1,-2],[1,-2],[1,-3],[7,-7],[9,-9],[9,-10],[7,-7],[2,-4],[2,-3],[5,-10],[4,-10],[8,-17],[7,-17],[8,-18],[4,-11],[9,-22],[2,-7],[5,-13],[4,-12],[3,-11],[2,0],[1,2],[0,2],[1,1],[3,4],[1,0],[2,0],[2,2],[1,3],[0,5],[-1,3],[1,3],[1,1],[2,1],[1,0],[2,3],[2,1],[2,0],[2,0],[1,-3],[1,-3],[2,0],[3,0],[0,-2],[-1,-5],[-1,-3],[0,-3],[2,-1],[5,1],[2,-1],[1,-3],[0,-2],[1,-3],[-1,-3],[1,-2],[5,0],[3,2],[5,0],[5,-3],[3,0],[3,2],[5,-1],[3,2],[2,4],[1,2],[1,2],[5,0],[2,0],[2,4],[2,1],[3,1],[3,0],[6,-4],[4,-3],[4,-4],[2,-3],[2,-5],[2,-5],[2,-5],[1,-4],[2,-9],[2,-3],[2,0],[2,-1],[3,-1],[7,-7],[2,0],[2,-2],[0,-3],[0,-3],[0,-4],[2,-4],[2,-4],[2,-5],[1,-3],[1,-1],[3,1],[3,-1],[11,-3],[1,0],[1,-3],[2,0],[2,0],[2,0],[2,3],[1,2],[4,3],[3,4],[2,4],[2,0],[1,-1],[0,-3],[-1,-3],[-2,-3],[1,-2],[2,-1],[3,-4],[4,-10],[1,-2],[2,-2],[2,0],[2,-2],[2,-4],[1,-4]],[[6138,4919],[-1,-1],[1,4],[3,4],[1,-1],[0,-1],[0,-1],[0,-1],[-4,-3]],[[6163,5282],[-4,-10],[-4,-13],[-7,-23],[-6,-12],[-4,-9],[-1,-2],[0,-10],[0,-25],[0,-50],[1,-50],[0,-50],[0,-24],[0,-9],[3,-10],[4,-11],[5,-13],[3,-7],[0,-3],[0,-5]],[[6153,4946],[-4,-10],[-3,-5],[-5,-2],[-1,1],[-2,1],[-1,-2],[0,-4],[-1,1],[-1,1],[1,-7],[0,-3],[-1,-5],[-2,-4],[0,-3],[-5,-9],[-6,-1],[-4,-4],[-1,-4],[-2,-7],[1,-12],[-2,-9],[0,-5],[-4,-6],[-1,-5],[-1,-6],[-1,-2],[-2,-13],[-1,-7],[-1,-3],[0,-2],[-1,-4],[-1,-3],[-1,-2],[-4,-20],[-3,-8],[-2,1],[-2,-4],[0,-1]],[[6089,4769],[-1,1],[-2,3],[-4,6],[-5,7],[-4,6],[-4,7],[-4,7],[-5,6],[-4,7],[-4,6],[-3,4],[-1,2],[-1,5],[0,1],[-1,1],[-2,1],[0,1],[0,2],[1,3],[1,6],[0,3],[0,4],[-1,7],[0,1],[-3,4],[-6,7],[-6,7],[-6,7],[-5,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-6,7],[-5,7],[-3,3],[-2,2],[-2,0]],[[5941,4987],[0,10],[1,26],[0,23],[0,11],[3,7],[1,5],[1,8],[1,6],[3,4],[1,3],[3,8],[2,10],[2,4],[2,3],[1,2],[2,2],[2,1],[0,2],[0,6],[0,3],[1,4],[2,4],[1,2],[1,3],[0,5],[0,3],[0,5],[0,12],[-2,10],[-1,11],[1,4],[-1,6],[-1,0],[-1,2],[-1,6],[-1,6],[0,1],[-4,5],[-2,11],[-2,3],[-1,12],[0,3],[1,11],[0,3],[-1,2],[-4,3],[-3,5],[1,1],[0,2],[-1,1],[-5,20]],[[5943,5297],[6,11],[5,12],[8,15],[6,14],[6,12],[5,11]],[[7045,7384],[-2,0],[-3,0],[-2,-1],[-2,-2],[-2,-2],[-4,-1],[-4,0],[-2,0],[-7,2],[-2,-1],[-2,-1],[-4,-1],[-2,-4],[-1,-3],[0,-1],[-3,3],[-1,3],[-2,3],[-1,0],[-5,-5],[-1,0],[-1,2],[0,4],[0,3],[-2,1],[-3,1],[-1,1],[0,3],[0,2],[-1,1],[0,2],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-5],[-6,-1],[-2,1],[-1,4],[-2,5],[-1,1],[-2,1],[-3,-1],[-4,-2],[-1,2],[-1,1],[-1,-2],[-1,0],[-4,0],[-6,0],[-2,1],[-2,0],[-4,-3],[-2,1],[-3,-1],[0,8],[-2,6],[1,4],[1,5],[1,3],[1,-1],[2,-2],[1,0],[1,2],[-1,3],[0,1],[1,3],[1,2],[6,4],[6,2],[3,-2],[5,-4],[3,-2],[2,-1],[2,-6],[1,1],[1,1],[1,1],[1,5],[2,3],[6,3],[0,2],[0,1]],[[6970,7430],[1,1],[3,1],[6,1],[2,0],[2,-2],[2,-2],[2,0],[1,0],[1,0],[0,-2],[1,-2],[2,2],[2,3],[2,0],[1,2],[0,1],[2,3],[3,6],[2,1],[1,0],[0,-1],[0,-1],[3,-1],[1,2],[1,2],[-1,3],[0,1],[0,2],[5,-3],[1,0],[2,2],[2,3],[1,3],[9,8],[1,1],[0,1],[-4,2],[-2,-1],[-2,0],[-1,1],[-4,1],[-1,1],[-4,5],[-2,3],[-2,1],[-2,0],[-2,-2],[0,1],[-1,2],[0,3],[0,4],[-1,1],[-2,-2],[-3,2],[-2,0],[-1,7],[-1,3],[0,3],[-1,1],[-2,1],[0,4],[0,1],[-1,1],[-1,-1],[-1,-2],[1,-4],[-1,-4],[0,-2],[-1,-1],[-2,0],[-2,2],[0,-12],[-1,-1],[-2,1],[-2,0],[-3,0],[-3,3],[-2,0],[-2,2],[-3,2],[-1,8],[-1,3],[-1,1],[-5,-3],[-2,2],[-3,3],[-3,1],[0,1],[0,2],[7,9],[3,7],[2,2],[3,2],[2,1],[1,6],[1,1],[1,0],[3,2],[6,5],[0,2],[-1,1],[-2,3],[-2,2],[-2,-2],[-1,-1]],[[6957,7408],[1,-2],[1,-2],[2,0],[2,2],[0,1],[-1,1],[-2,0],[-2,1],[-1,0],[0,-1]],[[6990,7413],[1,-2],[1,0],[1,2],[0,3],[-1,-1],[-2,-1],[0,-1]],[[6970,7421],[1,-2],[1,-2],[1,-1],[0,-1],[-1,-5],[1,-1],[3,0],[1,1],[1,1],[-1,4],[1,4],[-3,1],[-1,1],[-2,4],[-1,-1],[-1,-3]],[[7869,5682],[-1,-3],[-1,5],[0,1],[2,-3]],[[7862,5715],[-1,0],[-1,1],[0,3],[1,2],[1,-6]],[[7900,5663],[-5,8],[-9,3],[-1,3],[0,1],[-1,-5],[-5,-4],[-2,3],[-2,3],[0,4],[2,3],[2,2],[1,8],[-2,10],[-1,3],[-2,2],[-2,-4],[-1,-6],[-2,-3],[-2,-1],[-3,0],[-2,10],[0,8],[0,9],[1,6],[-3,7],[-1,7],[-1,4],[-1,-2]],[[7858,5742],[0,-2],[0,2],[-5,21],[-1,10],[1,7],[1,3],[-2,4],[-2,4],[-4,6],[0,10],[-1,11],[-1,3],[-1,7],[-1,6],[-1,15],[1,1],[2,0],[4,1],[0,3],[0,2],[2,3],[3,8],[2,7],[2,5],[1,5],[3,7],[5,5],[3,1],[3,1],[4,3],[1,0],[4,-3],[2,-1],[2,1],[3,-1],[2,1],[4,1],[6,-1],[4,1],[6,2],[3,-1],[2,-2],[0,-5],[1,-2],[1,-2],[1,0],[1,4],[2,3],[0,1]],[[7921,5897],[0,-2],[1,-4],[1,-3],[1,-2],[2,-3],[1,-1],[4,3],[5,-4],[1,-2],[2,-4],[2,-3],[5,-1],[1,8],[-1,5],[-2,8],[-1,4],[1,1],[4,1],[1,1],[1,5],[1,0],[3,-1],[2,4],[2,3],[0,-1],[1,-3],[1,-2],[2,-2],[2,-3],[1,-3],[1,-1],[3,1],[1,-1],[1,4],[1,2],[1,0],[1,0],[3,5],[2,4],[1,1],[2,-2],[1,0],[1,6],[2,3]],[[7986,5918],[0,-3],[-1,-7],[-1,-5],[-2,-5],[-1,-4],[0,-10],[0,-4],[0,-3],[1,-1],[2,-11],[2,-9],[2,-8],[0,-5],[-1,-13],[-2,-11],[0,-6],[1,-6],[1,-8],[0,-9],[-1,-7],[-1,-4],[-1,-4],[-2,-2],[-1,3],[-2,1],[-2,-1],[-1,-2],[-3,-6],[-4,-6],[-4,-1],[-2,-5],[-2,0],[-3,-1],[-3,-1],[0,-2],[0,-10],[0,-2],[0,-1],[-2,0],[-3,1],[-3,3],[-3,0],[-2,-4],[0,-2],[-1,0],[-1,-1],[-1,-2],[0,-3],[1,-4],[0,-7],[0,-4],[1,-3],[5,-10],[2,-3],[0,-1],[-1,-5],[1,-8],[-2,0],[-3,4],[-1,1],[-2,-1],[-2,4],[-1,4],[-2,0],[-3,-2],[-4,-1],[-1,0],[-2,-6],[-1,1],[-4,2],[-3,1],[-1,-1],[1,-5],[1,-4],[-1,-2],[-2,-3],[-2,-4],[-1,-3],[-1,-1],[-4,0],[-3,0],[-2,-3],[-1,-3],[-1,-1]],[[784,4369],[0,-1],[-1,0],[0,2],[0,1],[0,1],[1,-2],[0,-1]],[[670,4713],[-1,0],[0,1],[1,0],[0,-1]],[[152,4770],[1,-1],[-1,0],[0,1],[0,1],[0,-1]],[[216,4779],[1,0],[-1,0],[0,1],[1,1],[0,-1],[-1,0],[0,-1]],[[243,4782],[0,1],[0,1],[0,-1],[1,0],[-1,-1]],[[696,4805],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[1,1],[0,-1],[0,-1],[0,-1]],[[248,4861],[-1,-1],[0,1],[0,1],[1,0],[0,-1]],[[231,4883],[1,-1],[0,-2],[1,-2],[0,-1],[-1,1],[-1,0],[0,1],[1,-1],[0,1],[0,2],[-1,1],[-1,0],[0,1],[1,0]],[[9854,4975],[0,-3],[-1,0],[0,1],[0,3],[-1,4],[1,-1],[1,-3],[0,-1]],[[9709,4995],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[9846,4999],[0,-1],[-1,1],[1,2],[-1,7],[-1,1],[-1,3],[2,-2],[1,-1],[0,-5],[0,-5]],[[9805,5107],[2,-3],[0,-1],[-1,-2],[-2,-5],[0,1],[2,4],[0,3],[-1,2],[0,-1],[-1,2],[1,0]],[[9806,5126],[-1,0],[0,1],[4,2],[0,-1],[0,-1],[-1,0],[-2,-1]],[[9805,5148],[-1,0],[1,1],[0,1],[0,4],[1,0],[0,-2],[0,-2],[-1,-2]],[[9805,5156],[0,-1],[-1,3],[-1,3],[0,1],[0,-1],[1,-1],[0,-1],[1,-3]],[[629,5157],[5,-7],[-2,-1],[-5,4],[-4,6],[1,2],[1,-3],[2,-2],[1,5],[1,1],[-4,5],[2,0],[3,-4],[-1,-6]],[[9800,5227],[-2,-2],[0,1],[2,3],[1,0],[0,-1],[-1,-1]],[[9804,5232],[-2,-2],[-1,0],[3,3],[0,-1]],[[574,5279],[2,-5],[0,-2],[-2,0],[-1,1],[2,0],[0,1],[-1,2],[-1,1],[0,-2],[-1,1],[0,2],[1,1],[1,0]],[[3263,6061],[-2,-1],[-1,1],[0,5],[1,0],[2,-2],[0,-3]],[[3260,6068],[-1,-1],[-1,4],[-2,1],[-2,2],[0,1],[0,2],[1,1],[3,-3],[1,-4],[1,-2],[0,-1]],[[8508,7015],[-1,-2],[-1,1],[0,1],[-2,3],[0,2],[1,3],[4,6],[9,5],[2,0],[4,-2],[1,-4],[-1,-4],[-1,-2],[-4,-4],[-4,-2],[-7,-1]],[[8520,7081],[1,-3],[-3,1],[-1,3],[0,2],[2,0],[1,-3]],[[8506,7083],[-2,-1],[-1,2],[-1,0],[1,3],[2,5],[1,2],[3,-1],[1,-3],[-2,-4],[-2,-3]],[[8549,7097],[0,-2],[-2,3],[2,3],[0,-4]],[[8504,7104],[0,-1],[-2,0],[-1,4],[0,3],[-2,2],[2,3],[3,-5],[0,-6]],[[8557,7109],[-1,-6],[-2,-1],[-1,4],[-1,-2],[-1,0],[-1,5],[0,4],[2,2],[2,-1],[2,-1],[1,-4]],[[8575,7108],[-2,-4],[-4,5],[-1,3],[3,4],[2,5],[2,0],[0,-13]],[[8511,7208],[-1,-3],[-1,2],[-1,9],[2,-3],[1,-5]],[[8636,7267],[-2,-2],[-1,2],[0,2],[1,1],[1,1],[1,-1],[0,-3]],[[8514,7282],[-1,-8],[-1,1],[-1,0],[-1,2],[-1,7],[2,3],[2,-2],[1,-3]],[[8565,7335],[7,-27],[6,-17],[6,-12],[8,-24],[2,-13],[0,-8],[2,-11],[-1,-6],[0,-10],[-1,-5],[-1,-4],[0,-7],[1,-4],[0,-5],[0,-2],[1,0],[2,1],[1,1],[0,-6],[-2,-15],[-2,-11],[-2,-10],[-4,-9],[-3,-4],[-3,-1],[-5,0],[-4,1],[-4,-1],[-2,-2],[-1,-3],[1,-5],[0,-4],[-2,1],[-3,2],[-3,0],[-2,1],[-1,5],[-2,0],[-3,-3],[-4,-1],[-2,-1],[0,-3],[0,-2],[3,-4],[-1,-4],[-3,-1],[-1,4],[-2,5],[-1,0],[-2,-1],[0,-5],[1,-3],[1,-4],[-2,-4],[-1,-4],[-1,-2],[-4,5],[0,4],[2,3],[0,3],[0,3],[-6,-9],[-4,-10],[-2,1],[-1,2],[-1,1],[-4,-6],[-1,-5],[-1,-1],[-1,3],[0,4],[0,4],[-5,6],[-2,5],[2,2],[3,-1],[3,0],[-1,2],[-1,2],[2,1],[2,3],[-2,0],[-2,-1],[-1,1],[-1,6],[-2,7],[-1,6],[2,4],[1,6],[2,8],[1,3],[2,2],[1,2],[-1,1],[-2,1],[0,2],[1,2],[2,2],[3,4],[1,6],[-1,1],[-2,2],[1,3],[0,2],[0,2],[-2,3],[-2,4],[1,4],[-1,6],[0,6],[0,3],[-1,6],[0,6],[-2,-1],[-1,-1],[-4,2],[-2,0],[0,5],[1,6],[4,5],[2,1],[2,2],[2,1],[3,-4],[3,-1],[1,-6],[1,-1],[1,2],[2,3],[0,2],[0,1],[-3,1],[-2,8],[0,3],[-1,2],[1,6],[-3,7],[-1,2],[0,6],[-1,4],[-1,2],[0,4],[0,2],[1,0],[1,2]],[[8517,7285],[1,1],[0,2],[0,5],[2,3],[4,8],[1,4],[2,4],[2,3],[3,1],[3,0],[7,0],[1,0],[5,1],[1,-1],[3,0],[4,0],[2,1],[1,2],[2,3],[1,7],[2,5],[1,1]],[[5598,7549],[-4,-1],[-2,-2],[-1,-4],[0,-1],[-1,0],[-2,1],[-1,3],[-3,0],[-7,-6],[-1,-3],[0,-7],[-1,-2],[-1,-1],[-3,1]],[[5557,7567],[0,1],[0,4],[0,3],[-1,3],[1,2],[2,0],[1,-1],[1,3],[4,2]],[[5565,7584],[3,2],[1,1],[-1,2],[0,2],[4,5],[1,2],[0,2],[0,2],[-1,3],[0,1],[2,1],[2,2],[1,0],[1,-1],[0,-1],[0,-3],[2,-1],[2,-2],[2,-2],[2,-3],[3,-5],[0,-2],[3,-2],[2,-3],[0,-5],[7,-4],[2,0],[1,-1],[0,-1],[-1,-3],[-3,-10],[0,-2],[-3,-3],[0,-1],[1,-3],[0,-2]],[[6340,6802],[-1,-2],[-1,1],[-1,3],[-2,8],[1,3],[0,1],[0,1],[1,1],[0,3],[1,2],[1,-3],[3,-9],[0,-4],[0,-1],[-2,-4]],[[6345,6738],[-5,-1],[-6,0],[-5,0],[-5,0],[-3,6],[-1,6],[-1,6],[-2,9],[-8,2],[-5,1],[-7,2],[-5,1]],[[6332,6823],[0,-2],[1,-7],[2,-7],[1,-6],[1,-2],[-2,0],[-1,1],[-2,1],[-4,-8],[-3,-4],[0,-1],[3,-2],[3,0],[2,1],[1,-1],[1,-5],[0,-4],[3,-14],[2,-4],[2,-8],[1,-5],[1,-3],[1,-5]],[[7836,6372],[2,-5],[3,-7],[4,-8],[1,-5],[3,-3],[0,-3],[1,-5],[0,-3],[1,-2],[1,-1],[1,1],[1,2],[1,5],[0,1],[1,-5],[1,-1],[1,0],[1,-2],[0,-3],[0,-4],[-1,-3],[-1,-4],[0,-6],[-1,-5],[1,-3],[6,-19],[3,-3],[7,-3],[3,-3],[2,-2],[2,1],[2,5],[3,3],[5,5],[1,0],[3,-1],[4,-6],[3,-5],[2,-3],[1,-2],[0,-3],[-1,-3],[-2,-1],[-2,-3],[-1,-2],[1,-1],[3,-1],[3,-2],[1,-3],[0,-2],[1,-4],[1,-1],[3,0],[1,-1],[1,-2],[1,-5],[0,-3],[-2,-5],[-1,-2],[-1,-4],[-1,-5],[-5,-8],[-1,-1],[-8,5],[-3,0],[-2,-1],[-1,0],[-1,-1],[2,-5],[0,-5],[-1,-4],[-3,-3],[-1,-2],[0,-2],[1,-2],[2,-2],[3,-2],[9,-13],[2,-3],[3,-4],[3,-3],[8,-5],[3,-3],[1,-1],[0,-2],[-1,-3],[-1,-5],[0,-2],[1,-3],[1,-4],[3,-6],[2,-3],[2,0],[2,-2],[1,-4],[2,-6],[0,-4],[1,-5],[2,-6],[3,-5],[3,-7],[2,-5],[1,-2],[7,-11],[2,-5],[2,-8],[2,-1],[1,-2],[0,-5],[0,-3],[1,-10],[1,-3],[1,-4],[1,-2],[1,-2],[1,-1],[2,3],[1,2],[0,-1],[1,-7],[1,-3],[2,-2],[2,-2],[4,-8],[3,-4],[1,-1],[1,-1],[1,-3],[-1,-2],[-1,-2],[-4,-5],[-1,-2],[1,-3],[1,-5],[1,-3],[2,-4],[3,-5],[3,-5],[2,-4],[1,-4],[-1,-4],[-1,-4],[-1,-3],[-2,-2],[0,-3],[0,-4],[1,-2],[0,-4],[0,-6]],[[7921,5897],[2,1],[2,3],[3,3],[1,3],[1,4],[0,4],[0,11],[1,5],[0,7],[-2,5],[0,7],[1,4],[0,3],[2,3],[1,4],[1,6],[0,4],[-1,3],[-2,2],[-2,2],[-2,3],[-1,4],[0,3],[1,3],[-2,3],[-5,3],[-3,4],[0,5],[-3,6],[-3,7],[-2,11],[0,14],[0,11],[2,14],[-2,9],[-3,5],[-3,4],[-3,5],[-3,7],[-3,10],[-5,14],[-2,6],[-2,-2],[-3,2],[-4,4],[-4,2],[-3,0],[-3,-1],[-1,-2],[0,-2],[1,-2],[0,-2],[-2,-1],[-2,-2],[-1,-5],[-1,-6],[-2,-3],[-2,0],[-3,-2],[-3,-3],[-1,-3],[0,-1],[0,-1],[-1,1],[-1,2],[0,4],[-1,2],[-3,1],[-3,4],[-3,6],[-2,3],[-2,0],[-1,-2],[-3,-5],[-2,-2],[-1,1],[-2,-2],[-1,-5],[-1,-4],[-4,-4],[-4,-6],[-3,-5],[-4,-8],[-1,-1],[-2,2],[-2,2],[-2,2],[3,13],[3,14],[1,6],[0,5],[0,4],[-2,4],[-1,3],[0,2],[0,2],[2,4],[1,5],[2,10],[2,11],[0,6],[-2,8],[-1,7],[1,9],[0,4],[-2,2],[-5,1],[-2,0],[-1,-1],[-2,-3],[-1,-1],[-4,-1],[-3,3],[-2,5],[-1,7],[2,8],[1,6],[1,6],[0,2],[-1,3],[-2,4],[-2,6],[-1,2],[-2,0],[-1,-2],[-1,-4],[-1,-2],[-1,1],[0,3]],[[7780,6250],[1,3],[1,13],[2,9],[2,4],[2,1],[3,0],[2,0],[1,2],[0,2],[-2,0],[0,2],[0,4],[1,3],[1,1],[1,4],[2,8],[1,3],[2,0],[3,3],[4,6],[2,6]],[[5975,7007],[1,4],[1,6],[2,8],[2,6],[5,23],[3,9],[1,12],[4,12],[3,3],[2,3],[0,5]],[[5999,7098],[5,0],[3,0],[1,3],[2,-1],[1,-3],[-1,-3],[-2,-3],[1,-1],[1,0],[2,-2],[1,-2],[3,-12],[-2,-5],[-2,-5],[-1,0],[-2,-3],[-1,-3],[-1,-2],[0,-1],[2,-3],[1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-3],[-1,-2],[0,-1],[-1,-4],[1,-3],[1,-1],[0,-1],[0,-1],[-2,-2],[-1,-2],[0,-2],[-1,-2]],[[4790,5304],[-3,1],[-10,9],[-7,5],[-24,27],[-7,11],[-8,17],[-17,33],[-4,5],[-5,3],[-3,2],[-2,3],[-2,10],[-4,5],[-8,8],[-6,13]],[[4680,5456],[1,2],[3,9],[3,8],[2,5],[3,5],[2,4],[3,4],[6,12],[1,1],[1,8],[1,11],[1,3],[4,2],[1,2],[1,7],[1,8],[0,2]],[[5693,6350],[0,-30],[0,-29],[0,-30],[0,-29],[0,-1],[-7,0],[-7,0],[-7,0],[-6,0],[0,-7],[0,-8],[0,-7],[0,-7]],[[5666,6202],[-14,14],[-13,14],[-13,14],[-14,14],[-13,14],[-13,14],[-14,14],[-13,14],[-13,14],[-14,14],[-13,14],[-13,14],[-13,14],[-14,14],[-13,14],[-13,14],[-10,10],[-9,-10],[-8,-7],[-10,-10]],[[5416,6409],[-12,-13],[-9,-9],[-1,0],[-9,16],[-8,13],[-3,4],[-14,6],[-14,7],[-14,7]],[[5264,6837],[3,4],[5,3],[2,3],[1,2],[4,9],[2,5],[2,7],[1,5],[0,5],[0,5],[-2,13],[-2,13],[2,4],[1,3],[2,6],[1,1],[4,2],[2,4],[2,5],[0,2],[2,3],[3,3],[1,3],[5,6],[5,5],[5,5],[4,4],[1,3],[0,3],[-2,7],[0,9],[0,6],[0,5],[1,11],[0,1]],[[5319,7012],[4,-3],[5,-2],[13,-14],[4,-2],[9,-1],[10,5],[4,1],[7,-5],[4,-1],[5,-1],[9,-5],[2,-1],[5,-8],[3,-2],[18,-8],[3,-4],[2,-9],[0,-11],[2,-9],[2,-10],[3,-7],[3,-7],[3,-4],[8,-5],[9,-2],[10,-1],[15,-8],[14,-9],[3,-5],[7,-4],[13,-22],[7,-7],[6,-1],[4,1],[9,7],[3,5],[8,18],[3,10],[1,7],[0,7],[-1,6],[-2,6],[-2,9],[-1,15],[1,11],[2,7],[2,6],[7,13],[7,9],[13,11],[7,0],[3,2],[5,8],[3,0],[3,-2],[10,1],[4,-3],[5,-5],[6,-3],[5,-3],[5,-4],[1,-10],[-1,-3],[0,-4],[5,-7],[14,-3],[3,-2],[4,-5],[3,-2],[9,-1],[6,1],[6,-2],[2,-1],[2,-5],[2,-10],[1,-3]],[[3308,5865],[-1,-6],[-3,4],[-1,5],[0,3],[2,6],[2,3],[1,2],[0,-5],[0,-12]],[[7218,5583],[1,-5],[-2,3],[-2,3],[-1,2],[4,-2],[0,-1]],[[7221,5617],[-2,0],[-1,3],[-1,2],[1,1],[0,1],[1,-4],[2,-3]],[[7221,5628],[3,0],[3,0],[2,-1],[3,-9],[9,-16],[5,-17],[1,-4],[0,-3],[2,-1],[1,-1],[5,-16],[0,-3],[0,-4],[1,-2],[1,-2],[2,0],[1,-3],[1,-13],[0,-4],[0,-1],[7,-20],[0,-3],[0,-2],[0,-1],[1,-4],[2,-9],[1,-2],[2,-9],[0,-15],[-1,-8],[-1,-8],[-1,-9],[-2,-6],[-2,-5],[-7,-11],[-2,-2],[-10,-7],[-6,-6],[-7,-2],[-6,4],[-5,8],[-2,13],[-2,13],[-2,14],[-2,45],[-1,13],[-2,15],[1,7],[1,7],[0,-15],[0,-1],[1,2],[1,15],[0,6],[3,17],[0,2],[-1,7],[1,3],[3,11],[1,7],[1,7],[0,8],[-1,7],[3,-2],[2,-3],[1,-2],[2,1],[1,0],[-1,4],[-3,4],[-6,2],[-2,3],[-1,3],[1,3],[0,1]],[[5751,3289],[0,3],[1,1],[3,3],[3,2],[1,4],[2,5],[1,4],[1,1],[1,3],[2,5],[2,6],[2,6],[2,2],[4,2],[4,6],[4,4],[6,6],[3,1],[2,1],[0,-1],[1,-3],[1,-3],[3,-4],[1,-1],[3,-6],[3,-5],[3,-4],[2,-3],[1,-1],[1,-4],[1,-3],[1,-3],[0,-3],[-1,-7],[-2,-8],[-1,-3],[-2,-2],[-1,-3],[-1,-6],[0,-7],[-2,-3],[-2,-1],[-2,-3],[-4,-4],[-3,-1],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,-4],[-4,-12],[-1,-2],[0,-5],[-1,-3],[-1,-3],[-1,-1],[-4,2],[-4,1],[-2,3],[-2,5],[-1,3],[-2,2],[0,1],[-2,1],[0,1],[-1,1],[0,2],[-1,2],[0,5],[-1,3],[-2,6],[-1,4],[-2,6],[-1,5],[-1,5]],[[5582,8321],[-2,1]],[[5580,8322],[3,7],[1,4],[1,6],[1,2],[0,-3],[0,-4],[-2,-8],[-2,-5]],[[5652,8242],[0,1],[0,3],[0,4],[-1,4],[-2,3],[-3,3],[-3,2],[-2,1],[-2,1],[0,1],[0,1],[-1,1],[-3,2],[-2,0],[-1,-2]],[[5632,8267],[-1,3],[-2,5],[1,4],[0,4],[4,12],[-1,2],[-2,4],[-3,2],[-2,5],[-6,1],[-6,-1],[-1,1],[-6,2],[-5,3],[-4,2],[-3,3],[-1,2],[-3,-1],[-2,0]],[[5589,8320],[0,1],[-1,4],[1,7],[-1,9],[-4,12],[0,12],[0,3]],[[5584,8368],[8,7],[9,8],[2,0],[9,5],[1,0],[8,-1],[6,-1],[5,0],[3,2],[2,-1],[3,-4],[2,1],[2,2],[11,-2],[3,0],[3,0],[5,-2],[3,-2],[7,1],[3,0],[2,1],[5,5],[2,0],[1,1],[2,0],[1,-5],[4,-7],[4,-1],[10,-3],[2,-2],[6,-6],[4,-4],[2,-2],[3,-5],[2,-4],[4,-3],[4,-1],[1,-1]],[[5759,8455],[3,-1],[2,-1],[0,-4],[4,-4],[4,-3],[0,-1],[1,-3],[-1,-3],[0,-2],[-1,-2],[-2,-4],[0,-5],[-2,-8],[1,0],[4,1],[1,0],[1,-2],[0,-5],[2,-2],[1,-4],[0,-2],[3,-4],[0,-2],[2,-7],[1,-4],[0,-4],[-1,-4],[-1,-2]],[[5584,8368],[-1,11],[1,23],[1,11],[5,6],[3,5],[1,7],[0,6],[2,5],[7,15],[6,2],[8,4],[9,3],[2,-4],[1,-3],[10,-12],[3,-5],[4,-13],[10,-7],[8,2],[4,3],[6,6],[3,5],[0,5],[-1,19],[-2,8],[1,5]],[[8153,6363],[-1,-1],[-1,0]],[[3246,6117],[0,1],[2,2],[1,0],[0,-1],[0,-2]],[[3249,6117],[-3,0]],[[4758,6685],[-3,0],[0,-3],[1,-4],[0,-5],[-1,-2],[0,-4],[0,-3],[1,-3],[0,-4],[0,-2],[-1,-2],[-2,-1],[-4,-1],[-2,0],[-3,1],[-2,0],[-2,0],[-2,-1],[-2,-2],[-2,-3],[-3,-5],[-2,-3],[-2,-1],[-2,0],[-3,3],[-1,1],[-1,0],[-2,-2],[-2,-1],[-1,0],[-3,2],[-4,4],[-2,2],[-2,0],[-3,1],[-2,0],[-3,0],[-3,-3],[-3,-1],[-3,-2],[-4,-2],[1,-5],[1,-3],[0,-4],[0,-3],[-2,-3],[-2,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-4],[-1,-4],[0,-3],[-1,-4],[-1,-1],[-3,-1],[-3,-1],[-2,-1],[0,-2],[0,-1],[-1,-4],[0,-3],[-1,-2],[0,-6],[-2,-5],[0,-8],[-1,-5],[-1,-10],[-1,-9],[-2,-8],[-1,-5],[-1,-3],[-2,-4],[-1,-2],[-2,-3],[-3,-3],[-3,-4],[-2,-3],[-1,-1],[-1,-2],[-2,-4],[-2,-6],[-1,-5],[-2,-7],[-1,-4],[-1,-3],[-2,-2],[-3,-2],[-3,-2],[-2,-3],[-3,-2],[-2,-2],[-1,-4],[-1,-4],[-2,-6],[-1,-7],[0,-4],[-2,-14],[-1,-8],[0,-5],[-1,-7],[-1,-10],[0,-8],[0,-5],[0,-4],[-2,-4],[-1,-3],[-2,-4],[-2,-2],[0,-3],[-2,-3],[-1,-4],[-2,-3],[0,-3],[1,-4],[-1,-4],[-1,-5],[-2,-6],[-3,-3],[-3,0],[-5,0],[-4,0],[-5,0],[-4,2],[-4,1],[-5,0],[-3,0],[-4,-1],[-11,0],[-4,0],[-6,-3],[-2,0]],[[4527,6316],[2,28],[4,15],[3,7],[5,4],[4,15],[2,14],[2,7],[1,5],[-1,4],[3,8],[3,11],[2,8],[3,12],[1,2],[0,3],[-2,-2],[-1,-5],[-2,-3],[0,4],[2,6],[3,7],[6,7],[11,24],[4,4],[4,10],[1,9],[0,21],[2,11],[2,8],[3,16],[2,6],[2,15],[1,5],[3,2],[4,7],[6,5],[7,9],[3,5],[3,9],[2,16],[4,17],[2,13],[1,0],[3,7],[3,8],[4,4],[9,2],[14,7],[12,11],[3,4],[4,9],[6,11],[11,13],[5,7],[8,19],[5,16],[5,10],[3,8],[2,9],[1,15],[-1,5],[-3,10],[-2,2],[-1,4],[1,8],[0,13],[1,21],[4,17],[9,22],[2,10],[1,14],[0,5],[11,21],[7,16],[2,4],[6,7],[20,15],[12,12],[7,8],[4,10],[11,38],[11,53],[1,7],[5,1],[3,1],[3,2],[4,4],[3,-1],[-2,-3],[0,-7],[3,-8],[4,-8],[7,-11],[6,-5],[8,-2],[10,4],[5,1],[3,2],[3,-3],[5,-1],[5,1],[4,5],[3,5],[0,-2],[0,-3],[1,-2],[2,-7],[1,-2],[3,0],[2,-1],[6,0],[6,-1]],[[5204,7637],[0,2],[1,0],[0,1],[1,-1],[0,-1],[-2,-1]],[[5783,7739],[-1,4],[-2,3],[-1,2],[1,1],[1,1],[1,1],[0,4],[-1,4],[-1,2],[0,4],[0,5],[1,10],[2,12],[1,6],[-1,4],[1,8],[-1,3],[-2,6],[-2,11],[-3,3],[-3,5],[-1,3],[-1,3],[-2,4],[-3,3],[-2,8],[-2,4],[0,1],[-3,5],[-2,4],[-1,4],[0,4],[-2,7],[-2,5],[-2,4],[-1,2],[-2,4],[-3,2],[-3,1],[-2,0]],[[5739,7906],[0,2],[6,5],[2,-1],[3,0],[6,0],[3,4],[2,-1],[1,1],[3,2],[4,-1],[3,-2],[2,-3],[2,-2],[2,-1],[1,-1],[1,-3],[2,-1],[3,0],[2,-1],[-1,-3],[1,-1],[1,1],[1,-1],[0,-2],[1,-2],[2,4],[2,0],[5,-2],[2,-7],[2,-3],[1,-1],[2,1],[2,2],[0,-1],[2,-5],[1,-6],[0,-3],[-1,-4],[-1,-5],[-1,-3],[1,-2],[0,-2],[2,-1],[3,-4],[2,-3],[2,-2],[1,0],[1,-1],[0,-1],[0,-4],[-1,-4],[0,-2],[2,-2],[0,-3],[0,-2],[1,-2],[3,-3],[4,-3],[1,-3],[1,-3],[0,-6],[0,-5],[5,-7],[0,-2],[-1,-1],[-6,-1],[-1,-1],[-2,6],[-1,0],[-2,-2],[-1,-1],[-2,1],[-1,1],[-1,2],[-1,0],[-1,-1],[-2,0],[-1,1],[-1,-4],[-1,-1],[0,8],[-1,1],[-1,0],[-3,-2],[-2,-2],[-1,-2],[0,-4],[0,-4],[2,-7],[-1,-3],[0,-4],[-3,-5],[-3,-2],[-1,-5],[-1,-4],[-3,-3],[-2,-4],[0,-3],[0,-3],[0,-2],[0,-1],[-1,-1],[-4,0],[-1,-1],[-2,-2]],[[6386,4045],[-3,-11],[1,10],[4,13],[1,1],[-3,-13]],[[6342,4255],[0,-2],[-3,1],[-1,7],[2,0],[0,3],[1,1],[1,-7],[0,-3]],[[6375,4310],[2,-6],[1,-6],[5,-14],[2,-6],[2,-6],[0,-11],[3,-19],[3,-27],[1,-28],[1,-13],[2,-12],[4,-13],[1,-14],[-3,-14],[-3,-14],[0,-2],[-2,-4],[-1,0],[-2,4],[-2,6],[-3,13],[-1,7],[-1,1],[-3,-1],[-2,-4],[0,-2],[0,-8],[1,-7],[0,-7],[0,-9],[1,-2],[1,-3],[2,-5],[0,-14],[-1,-7],[-2,-6],[0,-3],[1,-3],[-1,-2],[-3,-3],[-1,-2],[-2,-6],[-2,-13],[0,-6],[1,-19],[0,-14],[-3,-26],[-2,-12],[-3,-15],[-4,-19],[-4,-24],[-3,-25],[-3,-15],[-2,-15],[-4,-26],[-4,-27],[-4,-29],[-7,-33],[-1,-4],[-1,-17],[-2,-14],[-2,-15],[-3,-23],[-1,-8],[-1,-7],[-3,-14],[-2,-6],[-1,-6],[0,-7],[-1,-7],[-3,-14],[-4,-11],[-3,-4],[-6,-6],[-3,-1],[-6,-1],[-6,-3],[-7,-7],[-6,-7],[-3,-4],[-3,-2],[-8,0],[-2,2],[-9,12],[-3,2],[-6,2],[-2,1],[-2,1],[-2,7],[-5,5],[-1,2],[-1,4],[-1,4],[-1,4],[-1,9],[-2,6],[-4,11],[-1,3],[0,11],[0,8],[0,14],[0,7],[2,6],[-1,6],[-1,7],[-1,7],[-1,6],[-5,12],[-1,6],[-1,5],[-2,19],[0,6],[0,13],[1,7],[1,5],[0,4],[1,3],[1,2],[1,3],[2,18],[2,3],[3,3],[3,4],[2,6],[1,13],[4,12],[2,7],[3,9],[3,14],[1,7],[1,7],[1,14],[0,8],[0,7],[-2,7],[-4,14],[0,2],[0,10],[0,8],[-1,7],[-2,7],[-2,12],[-1,21],[0,8],[-1,7],[-1,6],[1,11],[12,41],[1,5],[-1,12],[0,8],[1,2],[1,2],[2,1],[10,2],[1,1],[3,3],[3,7],[2,2],[1,-1],[1,-3],[1,-1],[4,3],[1,0],[2,-1],[1,3],[0,4],[1,2],[1,2],[5,1],[3,1],[5,2],[4,-9],[1,-1],[1,-1],[1,2],[-2,5],[-1,3],[0,3],[2,7],[2,5],[6,7],[6,9],[1,1],[2,-1],[1,-11],[0,-2],[1,0],[1,1],[1,5],[0,3],[-1,4],[0,3],[-1,2],[3,6],[3,6],[1,8],[1,3],[2,4],[1,-1],[0,-3],[1,-3],[-1,-3],[-1,-3],[0,-5],[1,0],[1,1],[2,7],[3,7],[1,4],[1,3],[3,-1],[3,-2],[-5,8],[-1,10],[5,18],[1,4],[0,1],[1,2],[-3,6],[-1,3],[1,4],[1,4],[1,3],[2,1],[1,-1],[3,-5],[2,-1],[2,5],[2,6],[3,4],[3,2],[5,10],[3,19],[0,6],[0,7],[-2,7],[-1,8],[0,2],[3,-1],[1,1],[2,7],[5,14],[2,0],[1,-3],[1,-3],[1,-3],[3,-7],[1,-5]],[[7039,5238],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-2],[0,-1]],[[7041,5293],[-1,0],[0,1],[0,1],[1,1],[0,2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2]],[[2453,6153],[-3,-1],[-1,1],[7,6],[1,0],[0,-1],[-3,-3],[-1,-2]],[[1919,6157],[-2,-1],[-2,3],[0,3],[2,2],[1,-4],[1,-3]],[[2585,6249],[-2,-1],[0,6],[1,6],[1,4],[3,1],[2,1],[0,-2],[-2,-5],[-3,-10]],[[2591,6305],[1,-3],[-1,0],[-1,3],[0,2],[1,-1],[0,-1]],[[2041,6327],[0,-5],[-3,2],[0,3],[0,5],[1,1],[1,-2],[1,-2],[0,-2]],[[1950,6477],[-1,0],[-1,3],[-1,8],[0,1],[3,-10],[0,-1],[0,-1]],[[1897,6492],[0,-3],[-9,11],[2,1],[3,-1],[4,-8]],[[1928,6528],[1,-7],[-1,1],[-2,4],[-1,4],[0,2],[0,1],[3,-3],[0,-2]],[[1887,6501],[0,-1],[-3,7],[0,5],[-1,2],[-3,1],[3,10],[1,20],[1,-4],[-2,-20],[0,-3],[1,-2],[1,-4],[0,-5],[2,-4],[0,-2]],[[1914,6588],[0,-2],[0,-1],[-1,2],[-2,-9],[-1,-1],[1,12],[2,2],[1,0],[0,-3]],[[1801,6709],[-1,-1],[-4,4],[2,6],[0,8],[1,1],[1,-2],[1,-9],[0,-7]],[[1715,6761],[-1,-2],[-3,12],[0,3],[1,2],[1,-1],[0,-3],[2,-2],[0,-3],[0,-6]],[[1883,6765],[-2,-14],[-2,0],[-5,5],[0,2],[2,17],[1,2],[4,2],[0,-2],[1,-5],[1,-7]],[[1857,6768],[-1,-1],[-2,3],[-7,13],[-2,6],[-1,3],[1,7],[2,-1],[2,-5],[1,-4],[1,-4],[4,-3],[1,-10],[1,-4]],[[1814,6925],[-1,0],[-2,2],[0,3],[1,0],[1,-2],[1,-2],[0,-1]],[[2301,6585],[0,-13],[-2,-10],[-5,-21],[-3,-13],[-4,-36],[-2,-25],[0,-11],[0,-2],[0,-1],[-1,-26],[1,-21],[-1,-4],[-1,-6],[-2,-9],[1,-4],[0,-3],[2,-14],[0,-10],[5,-17],[3,-7],[3,-5],[2,-3],[-1,-7],[-1,-4],[-1,-6],[-1,5],[1,6],[1,4],[0,2],[-2,3],[-4,9],[-5,16],[4,-26],[1,-4],[1,-1],[1,-2],[0,-3],[0,-2],[4,-17],[5,-18],[0,-5],[2,-6],[11,-25],[7,-19],[3,-18],[1,-6],[1,-7],[5,-9],[1,-6],[3,-3],[2,-9],[3,-5],[-1,0],[-3,2],[0,-1],[3,-4],[5,-4],[2,0],[-2,2],[-2,2],[1,1],[3,-3],[11,-2],[4,-7],[6,-4],[4,-9],[3,-11],[3,0],[2,0],[5,2],[9,6],[3,3],[6,4],[9,1],[3,-1],[7,3],[3,3],[1,3],[0,2],[7,3],[1,1],[6,1],[3,1],[4,0],[3,-4],[0,-3],[-2,-2],[1,-2],[3,-3],[5,-2],[2,1],[3,5],[4,5],[0,6],[-1,3],[-1,0],[0,2],[1,4],[-1,1],[-2,-4],[-1,0],[0,2],[1,2],[8,8],[2,4],[3,3],[6,12],[1,22],[2,4],[4,7],[0,2],[0,5],[0,12],[0,9],[0,10],[1,10],[1,2],[2,15],[5,7],[8,8],[2,1],[26,8],[4,2],[4,6],[3,1],[6,0],[2,1],[1,1],[1,1],[3,-1],[7,-3],[2,-1],[6,-3],[6,-2],[1,1],[1,1],[1,2],[-1,2],[-1,0],[-1,-1],[-1,0],[-3,1],[1,2],[2,0],[2,0],[3,2],[2,-1],[4,-8],[2,-2],[0,-11],[1,-2],[0,-3],[-1,-9],[-1,-7],[-2,-6],[-4,-9],[-4,-8],[-6,-16],[-1,-8],[0,-6],[1,-6],[0,-2],[-1,-2],[-1,0],[-2,-3],[-3,-8],[0,-3],[1,-2],[2,1],[2,0],[1,1],[1,0],[0,-5],[-1,-4],[-1,-1],[-2,0],[-1,-2],[-1,-2],[0,-6],[1,0],[2,4],[1,0],[0,-2],[-2,-14],[-2,-15],[-2,-8],[-1,-13],[-1,-5],[-2,-5],[-3,10],[-2,3],[0,2],[1,12],[-1,7],[-1,-1],[-1,-3],[-2,-3],[0,-5],[-2,-8],[-1,-2]],[[2438,5908],[-1,2],[-8,16],[-7,17],[-3,6],[-3,5],[-4,8],[-11,18],[-5,8],[-5,10],[-5,5],[-4,4],[-2,2],[-2,2],[-1,1],[0,-4],[1,-2],[2,-1],[2,-1],[1,-1],[5,-5],[1,-2],[-13,10],[-6,0],[0,2],[2,5],[0,2],[-1,0],[-3,-3],[-1,0],[0,2],[0,2],[-2,3],[-1,0],[-1,-2],[-3,-4],[0,-2],[5,-2],[2,-1],[-1,-1],[-4,0],[-5,-2],[-9,-12],[-9,-5],[-12,-12],[-5,0],[-3,-2],[-8,4],[-11,11],[-16,4],[-10,14],[-11,6],[-7,13],[-4,1],[-2,2],[-10,5],[-9,3],[-10,12],[-6,4],[-5,5],[-12,8],[-4,4],[-4,7],[-6,7],[-3,6],[-3,2],[-5,12],[-2,4],[-2,3],[-2,0],[-7,-1],[-9,5],[-4,2],[-9,7],[-12,8],[-3,10],[-4,8],[-6,12],[-3,5],[-7,6],[-3,5],[-6,3],[-9,10],[-3,7],[-2,8],[-5,8],[-5,16],[-2,6],[-1,9],[-1,5],[-1,4],[0,3],[3,4],[5,1],[3,4],[0,3],[0,2],[-2,5],[-3,1],[-2,0],[0,2],[1,2],[2,5],[3,6],[2,6],[0,7],[0,8],[0,7],[-6,7],[-1,4],[-2,8],[-3,10],[0,20],[-4,18],[-4,9],[-2,3],[-6,14],[-5,8],[-4,15],[-5,9],[-6,16],[-4,8],[-19,27],[1,0],[6,-6],[1,0],[0,4],[-1,3],[-1,1],[-1,-1],[-2,1],[-1,2],[-3,0],[-4,5],[-1,4],[-1,6],[-5,11],[-2,6],[1,0],[1,-3],[2,0],[2,0],[1,1],[-1,2],[-1,1],[-8,6],[-2,4],[-7,7],[-1,3],[-1,7],[-2,0],[-1,-2],[-4,-2],[-1,2],[0,2],[3,2],[2,7],[0,2],[-1,-2],[-2,-3],[-2,-2],[-3,-1],[-2,1],[-1,1],[-3,6],[-1,18],[2,6],[3,6],[1,4],[2,-3],[1,0],[-1,3],[-2,3],[-1,3],[0,3],[-1,5],[-5,10],[-6,-1],[-2,1],[-2,3],[-2,7],[-1,6],[0,3],[0,3],[-9,5],[-3,4],[-3,5],[-1,5],[-1,3],[-1,5],[-1,7],[1,8],[2,4],[-7,3],[-2,0],[-2,-1],[-2,2],[-4,2],[-4,9],[-6,16],[-5,5],[-2,6],[-3,5],[-2,6],[0,3],[-1,1],[-3,4],[-3,8],[-1,6],[-1,9],[-2,3],[-2,1],[0,4],[0,3],[-1,4],[-4,11],[-2,9],[-2,3],[-1,4],[0,8],[-2,11],[-4,12],[-3,8],[-1,9],[1,8],[-1,6],[0,1],[0,2],[1,-1],[1,1],[0,6],[-1,1],[-3,2],[-2,1],[-6,2],[-4,4],[-1,7],[-2,3],[-1,2],[-5,4],[-1,-2],[-1,-4],[-2,-1],[-2,0],[-3,3],[-8,11],[-2,1],[-2,1],[-1,2],[-6,5],[1,-3],[2,-3],[1,-9],[-1,-6],[-1,-23],[1,-4],[2,-7],[2,-12],[0,-8],[2,-7],[-1,-16],[1,-5],[2,-8],[4,-7],[1,-4],[5,-6],[3,-7],[7,-10],[2,-5],[6,-15],[0,-5],[1,-6],[3,1],[2,-4],[0,-2],[0,-1],[2,0],[1,-1],[3,-17],[2,-3],[2,-1],[3,-2],[0,-4],[0,-3],[2,-5],[-1,-7],[2,-6],[0,-6],[0,-4],[5,-10],[7,-8],[1,-10],[2,-10],[3,-2],[3,-4],[-1,-4],[0,-3],[4,-7],[1,-10],[3,-6],[0,-1],[1,1],[-2,7],[-1,4],[0,6],[0,1],[7,-10],[0,-8],[2,-4],[1,-6],[1,-3],[0,-5],[2,-9],[0,-11],[1,-9],[4,-12],[4,-3],[0,-6],[3,-17],[4,-9],[2,-7],[0,-5],[-1,-7],[0,-5],[2,-14],[3,-8],[4,-2],[0,-1],[0,-2],[1,-2],[1,3],[1,3],[-1,4],[0,3],[1,2],[1,0],[7,-10],[1,-4],[2,-5],[2,-5],[1,-5],[2,-3],[1,-9],[5,-3],[2,-7],[0,-5],[-1,-11],[-1,-3],[-3,-5],[-3,-6],[-3,-3],[-3,-3],[-2,1],[-2,6],[-3,20],[-2,5],[-1,6],[-2,5],[-7,8],[-4,8],[-4,6],[-4,8],[-10,13],[-5,7],[-2,6],[-2,0],[-2,0],[0,1],[0,4],[-1,2],[-6,10],[-2,6],[0,6],[2,17],[0,10],[0,5],[-1,0],[0,3],[-1,8],[-1,9],[-6,18],[-4,3],[-4,3],[-10,15],[-2,8],[-1,5],[0,9],[-2,-5],[-2,-4],[-4,0],[-5,-4],[-3,4],[-1,4],[-2,6],[-3,1],[-2,0],[-3,7],[-2,3],[-4,0],[-3,4],[-1,4],[-1,5],[-1,4],[-5,6],[-4,7],[-3,5],[-2,3],[0,3],[6,-1],[7,-2],[4,0],[2,3],[2,2],[0,-2],[0,-4],[2,-3],[2,-3],[2,0],[-2,3],[-1,6],[1,3],[0,3],[-3,-1],[0,1],[2,5],[3,12],[1,13],[-3,10],[-4,8],[-10,21],[-6,11],[-2,4],[-1,2],[-5,3],[-4,6],[-7,9],[-3,4],[-2,11],[-2,1],[0,8],[0,13],[-1,3],[-4,3],[-1,9],[0,9],[-1,5],[-7,10],[0,5],[0,5],[-1,4],[-3,9],[-4,9],[-2,4],[0,7],[-1,3],[1,0],[1,1],[0,5],[-6,9],[-2,12],[-3,6],[-1,3],[-2,11]],[[1746,6974],[8,1],[8,1],[8,2],[8,1],[8,1],[8,2],[8,1],[8,1],[3,1],[-2,-9],[-1,-4],[13,-8],[13,-9],[13,-9],[14,-9],[13,-8],[13,-9],[13,-9],[13,-9],[10,0],[10,0],[10,0],[10,0],[9,0],[10,1],[10,0],[10,0],[0,6],[0,7],[0,7],[0,6],[6,0],[6,0],[6,0],[6,0],[6,0],[7,0],[6,0],[6,0],[0,-1],[3,-5],[2,-8],[3,-5],[4,-3],[6,-10],[8,-15],[6,-10],[5,-5],[4,-5],[1,-4],[3,-8],[4,-18],[0,-9],[2,-8],[3,-10],[3,-6],[2,-2],[3,-4],[3,-6],[3,-3],[4,-2],[5,-5],[7,-8],[5,-4],[2,-1],[2,3],[2,5],[2,4],[2,1],[0,3],[0,3],[1,8],[3,12],[3,6],[4,1],[3,2],[1,4],[2,0],[3,-3],[5,-1],[6,-1],[4,0],[1,2],[1,-1],[0,-1],[1,-1],[2,1],[2,-2],[2,-7],[7,-10],[1,-4],[2,-5],[5,-8],[3,-6],[0,-6],[3,-9],[4,-12],[2,-7],[-1,-1],[1,-3],[1,-6],[2,-5],[3,-4],[3,-8],[3,-11],[4,-8],[4,-5],[3,-5],[0,-5],[0,-4],[0,-4],[0,-3],[1,-3],[1,-4],[-1,-5],[0,-2],[0,-1],[4,-9],[2,-7],[2,-12],[2,-7],[2,-2],[4,-2],[3,-2],[2,-4],[3,-2],[3,-1],[3,-2],[3,-5],[5,-2],[8,-2],[6,-3],[4,-6],[2,-1],[1,1],[0,2],[1,1],[4,2]],[[9711,5392],[0,-2],[-1,0],[0,2],[1,2],[1,5],[1,2],[1,2],[0,-2],[-2,-3],[-1,-6]],[[9765,5464],[1,-1],[2,0],[2,-3],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,2]],[[9752,5470],[3,-4],[5,2],[-1,-1],[-2,-1],[-1,-1],[-1,1],[-3,2],[-2,3],[0,1],[2,-2]],[[9689,5480],[-1,-1],[-2,0],[-2,1],[1,1],[2,-1],[2,0]],[[9635,5707],[-1,0],[0,1],[1,0],[0,-1]],[[5598,7549],[2,0],[3,2],[2,2],[1,0],[2,1],[2,0],[2,-1],[3,1],[2,2],[1,-1],[1,-1],[1,-1]],[[5117,6181],[0,-11],[0,-15],[0,-18],[0,-16],[0,-18],[0,-15],[0,-17],[0,-17],[-1,-2],[0,-10],[0,-13],[-2,-13],[-3,-10],[-1,-9],[-1,-6],[-1,-3],[0,-3],[-1,-5],[-1,-3],[0,-2],[-3,-2],[-6,-9],[0,-8],[-6,2],[-7,3],[0,-1],[-1,-1],[0,-4],[-9,0],[-7,-1],[-10,0],[-6,-1],[-8,-1],[-7,-1],[-5,-8],[-5,-9],[-7,-1],[-7,1],[-5,0],[-1,-1],[0,-3]],[[4683,5781],[0,5],[-1,3],[-1,2],[1,4],[0,8],[0,4],[1,6],[-1,3],[0,2],[-2,4],[-1,5],[-1,4],[0,3],[-2,5],[-1,0],[-2,1],[0,-1],[-1,-3],[-1,-1],[-1,3],[-1,3],[0,2],[-2,4],[-2,7],[0,6],[2,3],[0,3],[0,3],[0,3],[-1,3],[0,5],[0,8],[-2,4],[-1,3],[-2,3],[-1,5],[0,7],[1,4],[-3,10]],[[4658,5924],[5,-4],[1,1],[2,3],[2,5],[2,6],[1,8],[0,7],[1,6],[1,4],[2,6],[2,3],[3,4],[1,-1],[3,-5],[5,-11],[5,-8],[1,-4],[2,0],[2,8],[2,7],[1,1],[3,1],[3,0],[2,0],[4,-1],[2,-1],[2,-1],[5,-1],[6,2],[4,2],[4,1],[0,4],[0,3],[1,3],[1,3],[1,0],[0,-9],[1,-1],[4,0],[5,0],[6,0],[5,0],[6,0],[6,0],[5,0],[6,0],[6,0],[5,0],[6,0],[6,0],[5,0],[6,0],[6,0],[5,0],[6,0],[6,0],[5,0],[2,17],[1,16],[2,13],[-5,10],[-3,7],[-1,14],[0,15],[-1,15],[-1,15],[-1,14],[-1,15],[0,15],[-1,15],[-1,14],[-1,15],[-1,15],[0,14],[-1,15],[-1,15],[-1,15],[0,14],[-1,15],[-1,15],[-1,15],[-1,14],[0,15],[-1,15],[-1,15],[-1,14],[-1,15],[0,15],[-1,14],[-1,15],[-1,15],[-1,15],[0,14],[-1,15],[-1,15],[-1,13],[9,0],[9,0],[9,0],[13,0],[10,0]],[[5404,7171],[-1,-2],[-3,0],[-2,3],[0,6],[3,-1],[2,-4],[1,-2]],[[5397,7181],[-2,-1],[-1,2],[-1,1],[3,1],[1,-1],[0,-2]],[[7727,5635],[-2,-3],[0,6],[3,4],[2,0],[-1,-2],[-1,-4],[-1,-1]],[[7727,5695],[3,-10],[-1,-1],[0,-1],[-1,0],[0,6],[-2,3],[-2,0],[1,4],[1,1],[1,-2]],[[7736,5696],[-1,0],[0,1],[1,6],[0,-7]],[[7728,5727],[-1,-2],[0,1],[0,6],[1,4],[1,7],[1,2],[0,-4],[-1,-8],[0,-4],[-1,-2]],[[7737,5742],[-1,-12],[-2,2],[-2,7],[1,2],[-1,4],[4,1],[1,-4]],[[7724,5739],[0,-3],[-2,4],[0,9],[1,-6],[1,-1],[0,-3]],[[7736,5752],[-1,0],[-1,9],[0,2],[2,-5],[2,-3],[-1,-2],[-1,-1]],[[7725,5766],[-1,0],[0,1],[-2,4],[1,3],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-3]],[[7723,5781],[0,-3],[-1,-4],[-2,3],[0,1],[1,3],[2,-1],[0,1]],[[7733,5793],[1,-2],[0,-5],[-2,-8],[-1,-1],[-1,0],[1,11],[-1,6],[0,4],[2,-2],[1,-3]],[[7730,5823],[0,-10],[-1,5],[-1,5],[1,5],[0,1],[0,-1],[1,-2],[0,-3]],[[7633,5984],[-1,-2],[-1,1],[0,1],[2,7],[1,-3],[-1,-4]],[[7624,5991],[-2,-5],[-1,8],[3,5],[2,5],[1,3],[1,-4],[-2,-7],[-2,-5]],[[7710,6009],[-1,0],[-2,4],[0,9],[1,2],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-9]],[[7602,6154],[-1,-1],[-3,5],[-2,6],[4,2],[3,-2],[0,-3],[0,-6],[-1,-1]],[[7602,6205],[4,-5],[1,1],[2,-3],[0,-2],[0,-2],[-1,-2],[-3,-2],[-1,1],[-1,6],[-2,2],[-1,3],[2,2],[0,1]],[[7596,6225],[1,-8],[-2,3],[-1,4],[0,5],[2,-4]],[[7583,6227],[0,-6],[-1,3],[-2,7],[0,6],[1,-3],[2,-7]],[[7780,6250],[-3,4],[-1,2],[-2,1],[-2,-3],[-1,-2],[-2,-1],[-2,-1],[-3,2],[-2,1],[0,-1],[1,-5],[0,-4],[0,-3],[-1,-2],[-2,-1],[-1,-1],[-2,0],[-2,2],[-2,0],[-2,-1],[-1,-1],[0,-2],[-1,-11],[-1,-3],[-1,-2],[-1,0],[-2,0],[-1,0],[-8,-4],[-1,-1],[-2,0],[-2,0],[-2,0],[-3,4],[-2,1],[-1,-1],[-1,-6],[-2,-4],[-3,-8],[0,-11],[0,-8],[-2,-8],[-1,-4],[2,-18],[-1,-2],[0,-1],[-2,-1],[-2,-2],[-2,-2],[-1,0],[-2,2],[-1,0],[0,-2],[2,-8],[2,-4],[2,1],[1,-1],[0,-2],[1,-5],[2,-8],[0,-6],[-1,-6],[0,-2],[1,-1],[2,-6],[3,-9],[4,-9],[3,-8],[3,-6],[5,-10],[1,-4],[0,-10],[1,-6],[1,-4],[1,-3],[2,-11],[1,-1],[4,6],[1,-1],[0,-3],[0,-3],[-1,-3],[-1,-4],[-6,-8],[-1,-6],[0,-10],[0,-13],[0,-9],[0,-2],[-1,-1],[-2,0],[-3,-4],[-2,-1],[-1,-1],[-1,-3],[-1,-3],[1,-10],[1,-10],[3,-7],[2,-5],[2,-8],[2,-7],[4,-7],[6,-11],[3,-6],[2,-7],[1,-7],[1,-8],[0,-5],[0,-15],[-1,-4],[-1,-4],[1,-4],[1,-5],[0,-4],[1,-9],[2,-5],[3,-3],[0,-3],[0,-4],[1,-5],[0,-5],[1,-7],[2,-6],[2,-18],[0,-2],[-1,-4],[-1,-3],[-2,-1],[0,-4],[-3,-10],[-4,-16],[-5,-11],[-4,-8],[-3,-5],[-1,-3],[0,-2],[1,-4],[0,-7],[-1,-5],[-1,-5],[0,-5]],[[7741,5650],[-1,0],[-3,-9],[-1,4],[-1,5],[1,10],[-2,19],[1,3],[1,1],[2,7],[2,8],[0,8],[2,7],[0,5],[0,6],[0,5],[0,4],[1,5],[3,3],[-1,1],[-1,2],[-3,-3],[-2,1],[0,4],[0,4],[0,2],[2,3],[0,5],[-1,5],[1,6],[-2,0],[-1,1],[1,3],[1,3],[-1,6],[1,6],[0,7],[-1,6],[0,5],[-1,8],[-1,10],[-2,8],[-2,11],[-5,15],[0,7],[0,5],[-1,3],[-1,-20],[-1,4],[-1,11],[-1,5],[1,11],[-3,10],[0,7],[-2,12],[0,2],[3,-2],[-2,6],[-2,-1],[-2,7],[0,19],[-2,7],[1,8],[-2,26],[-3,9],[1,7],[0,7],[0,12],[1,3],[2,3],[-2,-1],[-1,-1],[-3,0],[-4,-1],[-1,9],[-2,5],[-1,8],[-1,10],[0,2],[-3,4],[0,3],[-3,7],[-3,4],[0,-3],[1,-2],[-1,-6],[1,-10],[-1,-7],[-2,-8],[-1,-4],[-4,-9],[-3,-3],[-2,-1],[-2,1],[-2,5],[-1,4],[0,6],[-1,1],[-1,-1],[2,-8],[-1,-4],[3,-7],[-1,-2],[-4,-4],[-2,0],[-1,0],[0,-4],[-1,-1],[-7,-5],[-1,-6],[-1,-6],[-3,-8],[-5,-7],[-1,0],[-2,2],[1,7],[1,7],[0,6],[-1,-4],[-3,-9],[-1,-3],[-3,1],[-3,-1],[-2,9],[0,4],[0,3],[0,3],[0,2],[-1,-4],[0,-5],[-1,-3],[-4,-4],[0,5],[-1,4],[1,4],[0,7],[1,9],[0,3],[0,4],[-1,-5],[0,-6],[-1,-1],[-1,-1],[-3,-6],[-1,-6],[-4,-5],[-2,0],[-1,7],[2,23],[1,3],[1,4],[1,14],[2,5],[0,11],[1,2],[2,8],[1,15],[-1,8],[-2,8],[-2,22],[-4,18],[-1,6],[-2,7],[2,1],[-4,6],[-1,3],[-1,15],[1,8],[-1,-1],[-1,-5],[-1,-2],[0,-9],[0,-2],[-1,-4],[-3,4],[-3,4],[-3,9],[-3,11],[1,2],[2,0],[4,-8],[2,-2],[2,2],[2,4],[1,6],[-1,3],[-2,1],[-1,2],[-2,4],[0,3],[-1,3],[-2,2],[-1,2],[1,5],[1,3],[-3,0],[-4,6],[-1,2],[-1,1],[-3,1],[-3,-2],[1,-9],[0,-2],[-2,0],[-3,13],[1,3],[1,3],[-1,1],[-1,-1],[1,12],[0,2],[-1,-4],[-1,-3],[-3,-9],[-1,2],[-1,2],[1,4],[1,1],[1,3],[-2,4],[-1,3],[-2,6],[-1,0],[1,-7],[0,-9],[-3,10],[-7,15],[-1,4]],[[5533,7626],[0,-1],[0,-2],[0,-2],[3,-3],[3,-4],[4,-7],[1,-3],[2,0],[3,-4],[2,0],[2,-1],[7,-7],[2,-2],[2,-2],[1,-3],[0,-1]],[[5537,7527],[-5,5],[-1,6],[-7,11],[-7,8],[0,1],[0,2],[0,1],[-1,0],[-1,-1],[-1,0]],[[7439,7959],[3,0],[1,1],[1,2],[3,3],[0,2],[0,5],[2,4],[4,1],[2,1],[1,-1],[3,1],[2,0],[2,-1],[1,-1],[3,0],[1,2],[0,3],[1,0],[1,-2],[1,-1],[1,-1],[3,2],[1,2],[1,4],[1,2],[2,-1],[2,0],[3,2],[3,3],[2,1],[0,2],[-1,4],[0,5],[3,3],[4,0],[3,2],[0,5],[2,1],[1,1],[3,1],[3,2],[1,0],[5,3],[3,1],[2,2],[1,3],[3,1],[2,2],[3,3],[1,1],[5,1],[1,1],[1,0],[3,0],[0,4],[3,2],[2,1],[1,2],[2,3],[2,2],[5,0],[4,0],[2,0],[2,5],[1,2],[0,2],[2,1],[2,-4],[1,-2],[3,-2],[1,-3],[2,0],[1,2],[1,4],[3,0],[2,0],[1,-2],[0,-2],[1,-4],[2,-3],[4,1],[1,0],[3,0],[3,-1],[4,-1],[1,0],[4,0],[5,-1],[2,1],[5,-1],[1,-3],[1,-6],[1,-6],[0,-5],[1,-3],[2,-1],[1,-2],[2,-2],[1,-4],[2,0],[1,1],[3,0],[3,0],[2,-2],[1,-3],[2,-1],[2,0],[4,0],[2,0],[1,-1],[3,-1],[1,2],[4,2],[2,2],[2,0],[1,-1],[1,-2],[2,1],[0,2],[2,0],[1,-1],[3,-2],[3,-3],[1,-1],[3,1],[1,1],[1,-2],[2,-1],[1,2],[2,0],[7,-1],[2,-3],[1,-2],[1,-3],[2,-1],[5,0],[1,2],[4,4],[1,4],[2,2],[2,0],[1,0],[2,0],[3,3],[2,1],[2,4],[1,2],[1,4],[1,3],[1,5],[1,7],[1,3],[-1,3],[-1,2],[-3,0],[-1,2],[-2,3],[-1,3],[-1,4],[0,3],[0,2],[-1,2],[-2,3],[0,3],[0,4],[2,7],[0,3],[0,2],[0,1],[1,4],[1,2],[1,4],[2,2],[3,1],[1,1],[0,4],[1,3],[1,3],[1,2],[8,5],[4,6],[1,4],[1,6],[1,3],[2,-1],[2,-4],[2,0],[2,-2],[7,-4],[3,-2],[2,0],[3,-2],[2,-2],[4,-4],[3,-1],[5,-1],[7,0],[2,-1],[5,-3],[5,-3],[5,-3],[4,-3],[2,-2],[2,-1],[3,1],[3,0],[7,-3],[4,-3],[4,-1],[1,-3],[0,-3],[0,-2],[0,-7],[1,-3],[0,-5],[1,-4],[0,-4],[0,-3],[1,-1],[1,-3],[0,-3],[-1,-2],[1,-3],[1,-2],[2,-1],[2,0],[2,-4],[4,-4],[2,-2],[2,-2],[5,-2],[4,0],[2,-2],[2,-4],[3,0],[2,-2],[4,-1],[2,1],[3,1],[1,0],[3,-1],[3,0],[3,1],[2,2],[3,4],[3,2],[4,0],[2,2],[8,2],[4,1],[2,2],[2,2],[4,1],[4,-2],[4,-2],[5,0],[4,-3],[2,-2],[4,-1],[4,0],[6,1],[3,-1],[4,-4],[3,-3],[3,-6],[2,-3],[3,-3],[3,0],[8,0],[4,-2],[4,0],[1,-2],[-1,-4],[0,-7],[0,-3],[1,-2],[1,0],[1,-3],[2,-2],[3,-3],[6,-7],[3,-3],[2,-2],[4,1],[5,0],[9,0],[6,-2],[2,-2],[6,-1],[7,-2],[5,-3],[4,3],[3,0],[2,-2],[3,-2],[2,0],[4,1],[10,8],[4,3],[2,0],[3,1],[1,1],[5,1],[3,0],[2,1],[5,0],[8,6],[3,1],[6,-2],[3,1],[3,3],[4,3],[1,4],[2,7],[4,4],[3,4],[4,4],[4,3],[5,3],[5,6],[4,3],[2,1],[3,-1],[4,-1],[4,0],[1,-1],[4,-3],[4,-2],[2,-5],[5,-6],[3,-3],[2,-1],[4,0],[4,0],[2,1],[3,3],[6,3],[2,0],[4,-2],[6,-3],[2,-3],[1,-3]],[[9034,5885],[-1,-2],[-1,0],[-1,1],[0,2],[2,1],[1,0],[0,-2]],[[9045,5934],[-1,-4],[-1,5],[0,2],[1,2],[1,0],[0,-5]],[[9048,5943],[0,-1],[-2,0],[0,1],[1,5],[2,2],[1,1],[-1,-3],[0,-2],[-1,-3]],[[9047,6015],[-1,-1],[-1,0],[0,1],[-1,2],[2,0],[1,-1],[0,-1]],[[9048,6118],[-1,-2],[2,6],[0,1],[1,-2],[-2,-3]],[[9047,6158],[-1,-2],[-1,2],[0,3],[1,-1],[1,0],[0,-2]],[[5891,3457],[0,19],[-1,4],[0,6],[-1,4],[1,4],[0,6],[0,5],[-3,3],[0,1]],[[5887,3509],[-1,4],[0,7],[2,8],[0,16],[0,6],[0,11],[0,14],[0,12],[0,11],[-1,5],[0,2],[-1,6],[-2,12],[-1,8],[-2,6],[-1,3],[-1,4],[-2,7],[-1,5],[-1,3],[0,9],[-2,15],[-1,12],[-2,12],[-1,8],[0,1],[0,4]],[[5869,3720],[3,6],[4,8],[5,10],[4,9],[4,8],[5,11],[5,11],[1,1],[0,1],[-2,10],[4,11],[0,7],[0,7],[0,3],[1,3],[4,5],[3,9],[2,9],[4,14],[0,3],[0,3],[-1,5],[-2,8],[-2,6],[-1,10],[1,9],[1,5],[0,3],[-1,3],[-1,2],[-2,1],[0,4],[0,4],[0,2],[4,4],[1,2],[0,3],[0,3],[1,8],[2,8],[0,3],[-1,2],[0,5],[0,6],[0,19],[1,20],[-1,11],[-2,12],[0,10],[1,6],[1,4],[-2,0],[-2,1],[-2,1],[-3,5],[-5,4],[-6,4],[-8,1],[-7,13],[-6,2],[-2,2],[-5,7],[-8,1],[-9,1],[-5,0],[-1,1],[0,11],[0,9]],[[5844,4120],[-1,8],[-1,9],[-1,4],[-1,6],[-1,7],[0,3],[0,2],[6,5],[3,2],[3,3],[7,4],[6,3],[6,4],[5,3],[3,3],[3,2],[7,5],[2,1],[4,3],[2,1],[8,6],[9,6],[3,2],[6,5]],[[5922,4217],[1,-2],[4,-15],[3,-8],[4,-8],[1,2],[2,1],[6,1],[2,1],[2,2],[3,1],[3,1],[1,-1],[4,-10],[0,-8],[1,-11],[0,-6],[0,-7],[0,-10],[-3,-10],[-1,-5],[-1,-9],[-2,-4],[-1,-3],[0,-3],[1,-3],[2,-6],[1,-3],[0,-3],[0,-4],[0,-3],[1,-1],[3,-3],[2,-7],[4,-8],[5,-11],[2,-4],[2,-1],[1,-3],[-1,-5],[-1,-2],[0,-4],[1,-2],[1,-1],[2,0],[2,1],[1,1],[-1,17],[-1,10],[-1,4],[-1,1],[1,3],[1,8],[2,7],[1,3],[1,2],[6,2],[3,2],[2,2],[1,6],[0,17],[1,15],[-1,9],[1,14],[1,9],[0,1],[-1,12],[-4,12],[-6,15],[-3,9],[-4,9],[-6,15],[-3,6],[-2,2],[-5,2],[-1,3],[-1,4],[-1,9],[0,6],[-1,11],[-1,15],[0,5],[-2,11],[-1,11],[0,3],[0,3],[3,8],[1,6],[1,3],[2,8],[0,4],[1,2],[5,1],[3,0]],[[5970,4361],[7,0],[6,-1],[1,0],[2,-1],[1,0],[2,2],[2,3],[2,4],[4,0],[5,-5],[2,-4],[1,-4],[3,-2],[6,0],[4,2],[3,4],[3,2],[3,0],[2,-1],[1,-3],[3,-3],[5,-1],[4,2],[5,6],[3,5],[1,7],[1,3],[1,2],[2,0],[5,1],[4,-2],[5,-6],[3,4],[5,6],[5,4],[5,0],[5,3],[3,5],[3,3],[4,2],[3,2],[5,6],[5,8],[5,8],[3,5]],[[6123,4427],[2,-6],[2,-6],[-1,-3],[-2,-3],[3,-4],[-2,-6],[0,-4],[0,-1],[1,-3],[-2,-7],[-2,-5],[0,-4],[1,-7],[0,-12],[1,-11],[1,-6],[0,-3],[-1,-7],[1,-12],[0,-4],[-1,-6],[2,-2],[1,-7],[-1,-7],[0,-4],[-3,-5],[0,-2],[0,-2],[3,-1],[0,-4],[0,-3],[0,-7],[0,-4],[1,-5],[-1,-5],[0,-4],[0,-5],[1,-13],[0,-17],[0,-3],[2,-1],[1,-1],[0,-5],[-2,-6],[0,-3],[0,-6],[3,7],[1,0],[1,-2],[0,-4],[0,-2],[0,-4],[1,-5],[0,-5],[-2,-3],[-2,-5],[0,-5],[0,-3],[-2,-1],[0,-2],[1,-4],[0,-4],[-3,-13],[-7,-17],[-3,-6],[-2,-7],[0,-3],[-1,-2],[-3,-10],[-3,-1],[-2,-3],[1,-8],[-2,-2],[-4,-6],[-11,-13],[-1,-3],[-3,-8],[-3,-2],[-2,-2],[-4,-1],[-1,1],[-1,0],[-1,-2],[-7,-5],[-7,-5],[-2,-2],[-1,-2],[-6,-5],[-9,-10],[-7,-10],[-5,-10],[-2,-2],[-2,-3],[0,-5],[-1,-3],[-4,-11],[-6,-12],[-1,-4],[-2,-7],[0,-4],[-3,-2],[-1,5],[-1,-9],[-2,0],[-1,1],[-4,-4],[-4,-4],[-5,-11],[-8,-19],[-12,-19],[-1,-1],[-1,1],[-4,6],[-2,1],[2,-4],[1,-4],[0,-6],[0,-9],[-2,-19],[0,-4],[2,-5],[3,-7],[3,-8],[4,-23],[0,-12],[4,-15],[0,-6],[2,-17],[0,-13],[-1,-8],[2,-4],[1,4],[0,5],[0,8],[1,4],[1,-1],[1,-4],[0,-3],[1,-4],[0,-4],[-2,-17],[1,-6],[2,-12],[-3,-13],[-3,-31],[0,-5],[1,-2],[1,-1],[1,4],[1,0],[1,-3],[-2,-14],[-1,-6],[-5,-16],[-3,-6],[-5,-7],[-10,-10],[-22,-14],[-8,-7],[-5,-5],[-11,-13],[-5,-9],[-2,-11],[-1,-5],[-2,-6],[1,-5],[2,-4],[2,-3],[1,-2],[1,-1],[1,8],[1,2],[1,1],[-1,-10],[-1,-35],[0,-1]],[[5913,3456],[-3,0],[-5,0],[-3,0],[-4,-1],[-4,2],[-3,0]],[[5959,4335],[1,-3],[1,0],[1,3],[-1,2],[-1,1],[-1,-1],[0,-2]],[[5962,4330],[1,-1],[1,0],[1,2],[0,1],[0,2],[-1,1],[0,1],[-1,-1],[-1,-2],[0,-3]],[[4545,6214],[-2,-6],[-1,2],[0,4],[1,6],[1,3],[2,1],[-1,-10]],[[4658,5924],[-3,5],[-2,5],[-2,4],[-3,2],[-2,3],[-1,3],[-1,2],[-2,2],[0,1],[1,1],[-1,3],[-2,7],[-1,3],[-2,0],[-1,0],[0,2],[0,2],[-2,2],[-1,1],[-2,5],[-1,9],[-1,7],[-2,5],[-1,2],[-1,0],[0,1],[-1,1],[-1,1],[-2,-2],[-2,1],[0,2],[-2,1],[-1,-2],[-2,0],[-1,4],[-1,3],[-1,3],[-3,6],[-6,10],[-6,4],[-7,0],[-4,0],[-1,2],[-1,0],[-1,-2],[-1,-1],[-1,1],[0,-3],[-3,-1],[-5,0],[-3,-2],[-3,-3],[-4,-1],[-6,1],[-3,1],[-1,1],[-2,1],[-2,-1],[-1,-5],[-2,-8],[-1,-5],[-1,-1],[-1,-7],[-1,-10],[-1,-5]],[[4540,5985],[0,26],[2,10],[0,9],[3,19],[4,16],[4,21],[1,20],[0,20],[-1,18],[-2,12],[-2,16],[-2,9],[-5,8],[-1,5],[1,1],[3,2],[2,6],[-4,-3],[4,19],[2,13],[-1,8],[1,5],[-3,11],[-3,14],[-1,2],[-2,1],[0,-3],[-1,-3],[-1,2],[-3,10],[-4,17],[-2,1],[-1,-2],[-1,-2],[-1,-14]],[[4526,6279],[0,6],[0,6],[1,8],[1,11],[4,0],[6,0],[7,0],[6,0],[6,0],[7,0],[6,0],[6,0],[7,0],[6,0],[7,0],[6,0],[6,0],[7,0],[6,0],[6,0],[7,0],[4,0],[0,8],[0,7],[-1,8],[0,8],[0,9],[-1,8],[0,7],[0,8],[0,6],[-1,4],[-1,8],[0,4],[0,4],[1,3],[3,7],[3,5],[5,7],[3,4],[2,1],[5,2],[4,4],[4,3],[2,2],[0,6],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,8],[0,9],[0,7],[4,0],[5,0],[5,0],[5,0],[6,0],[5,0],[5,0],[5,0],[5,0],[5,0],[6,0],[5,0],[5,0],[5,0],[5,0],[6,0],[5,0],[5,0],[0,6],[0,10],[0,13],[0,14],[0,11],[0,12],[0,10]],[[3273,6038],[0,-3],[-2,1],[0,3],[1,3],[1,0],[0,-4]],[[6601,3833],[-4,-2],[-4,1],[-1,3],[-1,2],[2,1],[0,4],[0,6],[1,3],[2,2],[1,6],[2,3],[2,0],[2,-6],[2,-7],[-1,-6],[-1,-3],[-1,-4],[-1,-3]],[[5922,4217],[-2,4],[-1,-1],[-2,-3],[-1,-1],[0,1],[-1,2],[-1,5],[-2,4],[-1,2],[-1,1],[0,2],[1,1],[-1,2],[0,2],[-3,2],[0,2],[2,2],[2,3],[1,2],[1,6],[1,6],[1,2],[0,4],[0,5],[1,5],[0,6],[-1,2],[0,3],[0,6],[2,4],[6,5],[4,4],[1,2],[1,3],[1,3],[0,1],[-4,0],[0,2],[-3,11],[1,13],[1,6],[0,6],[-1,5],[-1,2],[-1,2],[1,7],[1,1],[2,9],[1,6],[-2,4],[-1,6],[0,4],[-1,1],[1,3],[2,2],[1,1],[2,1],[5,11],[0,3],[-1,3],[-2,6],[0,2],[0,7],[-1,2],[-3,5],[-2,5],[0,5],[1,5],[-1,3],[-2,4],[-1,4],[0,3],[-2,2],[-1,0],[-1,-2],[-1,0],[-1,1],[0,3],[0,3],[-1,2],[-1,3],[0,1]],[[5914,4489],[0,1],[1,0],[5,-6],[2,0],[3,-1],[3,-5],[1,-1],[2,1],[4,0],[2,-1],[3,-3],[1,0],[1,0],[1,1],[0,1],[-1,4],[1,2],[1,2],[2,-2],[7,-12],[0,-1],[4,-12],[1,-5],[0,-2],[2,-10],[0,-5],[0,-3],[0,-3],[0,-4],[0,-2],[2,-6],[0,-5],[0,-5],[0,-4],[-1,-7],[-1,-3],[1,-3],[1,-2],[1,-3],[1,-4],[1,-4],[0,-2],[1,0],[1,-1],[2,-2],[1,-4],[0,-5],[0,-2]],[[8093,5190],[-1,-1],[-1,2],[0,18],[1,2],[0,-1],[1,-3],[0,-8],[0,-7],[0,-2]],[[7894,5208],[-1,0],[-1,0],[0,3],[1,5],[0,1],[1,-6],[0,-3]],[[7814,5224],[-2,-1],[0,1],[0,2],[1,2],[1,-1],[0,-3]],[[8267,5294],[1,2],[0,2],[1,1],[1,0],[4,-4]],[[7785,5360],[-1,-1],[-2,1],[1,9],[1,2],[2,-2],[0,-2],[-1,-7]],[[7773,5430],[2,-7],[-1,-2],[-1,-1],[-1,1],[-1,-3],[-1,0],[-1,4],[-2,2],[0,3],[2,0],[1,-1],[2,2],[1,2]],[[7835,5416],[5,-2],[2,-2],[5,-18],[7,-13],[4,-5],[2,-2],[3,-7],[3,-9],[6,-24],[1,-11],[0,-16],[-1,-25],[-2,-12],[1,-6],[2,-9],[-1,-8],[1,-7],[0,-20],[1,-5],[1,-4],[8,-11],[0,-5],[4,-14],[7,-32],[2,-15],[0,-3],[-1,-2],[-2,-1],[-2,2],[0,2],[0,3],[-1,2],[-1,3],[-1,3],[0,-5],[0,-5],[-2,-1],[-3,2],[-3,-1],[-4,-7],[-2,-1],[-2,6],[-1,4],[-1,3],[-13,15],[-4,4],[-5,11],[-11,12],[-8,12],[-3,7],[-7,7],[-3,7],[-1,2],[-2,3],[2,7],[-1,8],[-1,6],[-5,13],[-3,9],[-4,9],[-2,6],[-2,6],[1,2],[1,1],[-1,4],[-3,8],[-1,9],[0,16],[-4,23],[-3,33],[0,11],[0,12],[-3,12],[-3,8],[-1,7]],[[7780,5428],[1,3],[0,9],[1,2],[1,1],[1,0],[3,-8],[6,-5],[1,-1],[3,2],[1,-2],[1,-2],[1,-5],[1,-5],[3,0],[2,0],[0,-1],[1,-4],[0,-8],[0,-4],[-2,-7],[-1,-4],[1,-3],[2,-3],[1,-2],[1,0],[1,1],[1,4],[1,4],[4,3],[4,4],[1,-1],[0,-1],[2,-5],[1,-1],[1,0],[2,0],[2,3],[1,5],[1,4],[3,7],[0,5],[1,3]],[[8044,5167],[2,-8],[1,-2],[4,-6],[3,-3],[4,-1],[4,0],[1,0],[1,2],[2,-2],[8,-9],[2,-1],[4,0],[1,0],[4,-7],[2,-1],[2,0],[-3,4],[-2,2],[-1,4],[1,4],[2,3],[1,4],[0,9],[1,5],[1,5],[1,4],[-2,4],[0,6],[0,5],[1,3],[2,-2],[1,-2],[2,0],[1,1],[0,2],[0,5],[0,8],[2,6],[3,5],[3,2],[11,3],[17,10],[5,3],[2,2],[1,3],[3,8],[5,13],[3,10],[8,16],[6,14],[1,3],[1,8],[0,3],[-1,4],[1,2],[1,1],[1,0]],[[8194,5337],[0,-5],[0,-7],[1,-7],[2,-11],[1,-2],[2,-1],[2,1],[1,1],[-2,5],[0,10],[-1,7],[-2,7],[0,2]],[[8198,5337],[6,2],[2,2],[2,5],[1,2],[1,6],[-3,4],[-2,4],[0,5],[4,9],[1,3],[1,-4],[2,0],[1,-1],[2,1],[2,4],[1,7],[4,9],[1,7],[1,8],[10,23],[1,4],[6,23],[1,1],[2,-2],[0,-8],[0,-3],[-1,-5],[-1,-5],[1,0],[3,3],[3,8],[1,7],[2,3],[3,-1],[0,-1],[0,-6],[0,-2],[1,-7],[3,-4],[3,-2],[3,-4],[1,-2],[1,-3],[0,-4],[0,-5],[-2,-4],[1,-8],[0,-4],[-1,-3],[-3,-4],[9,4],[2,1],[3,5],[2,-4],[1,-7],[-1,-2],[-4,-2],[0,-2],[1,-3],[2,0],[3,3],[3,3],[1,0],[2,0],[3,-3],[1,-2],[2,-3],[0,-5],[4,-2],[7,-8],[1,0],[1,-1],[4,1],[1,-1],[1,-2],[0,-4],[0,-4],[0,-2],[-1,-3],[-3,-3],[-6,-5],[-6,-3],[-4,0],[-4,3],[-2,0],[-2,-2],[-2,-9],[4,-10],[7,-10],[0,-2],[0,-3],[-1,-2],[-1,-1],[-4,-1],[-4,-2],[-3,-1],[-3,-3],[-3,1],[-4,5],[-1,0],[-2,-2],[-1,-7],[-1,-1]],[[8253,5471],[-2,-3],[0,4],[0,5],[2,4],[4,1],[0,-3],[0,-5],[-1,-2],[-3,-1]],[[5649,4002],[6,2],[6,2],[6,3],[5,2],[2,0],[12,-2],[6,-2],[2,-1],[2,-4],[5,-9]],[[5554,3579],[0,-25],[0,-26],[0,-27],[0,-26],[0,-26],[0,-27],[0,-26],[0,-26],[0,-9],[-2,0],[-6,-3],[-4,-4],[-1,-5],[-2,-3],[-3,-1],[-1,-3],[0,-4],[-1,-3],[-2,-3],[-4,1],[-5,4],[-7,0],[-8,-2],[-6,1],[-3,4],[-4,2],[-4,0],[-2,2],[-5,3],[-1,4],[0,4],[-2,3],[0,3],[1,2],[0,4],[0,5],[-2,2],[-1,0],[-2,2],[0,4],[-1,3],[-3,3],[-3,-2],[-2,-4],[-1,-5],[-1,-3],[0,-4],[0,-3],[-1,-4],[-1,-1],[-1,0],[-2,-1],[-4,-5],[-1,-3]],[[5456,3351],[-3,5],[-9,18],[-3,5],[-5,11],[-10,34],[-2,7],[-2,17],[-2,12],[0,7],[1,4],[-1,5],[-1,5],[-4,7],[-1,21],[-2,14],[0,11],[-1,10],[0,7],[1,13],[-2,14],[-4,14],[-4,21],[0,9],[0,24],[-1,10],[1,12],[-2,12],[0,6],[1,5],[0,-1],[1,-1],[1,7],[0,6],[-2,15],[-4,15],[-9,25],[-3,10],[-1,8],[-11,33],[-5,23],[-3,20],[-3,9],[-16,65],[-4,11],[-7,12],[-1,4],[-3,12],[-4,16],[-2,15],[0,17],[1,13]],[[9653,3707],[-1,-3],[-1,1],[-1,1],[0,1],[0,4],[3,-2],[0,-2]],[[9666,3777],[1,-1],[3,0],[-1,-10],[-3,-1],[-1,0],[-1,2],[-2,1],[0,4],[-1,7],[3,2],[1,2],[0,-2],[1,-2],[0,-2]],[[9649,3793],[-1,0],[-2,4],[-4,2],[-2,4],[-1,4],[2,1],[2,6],[-1,3],[-3,0],[0,2],[5,3],[1,-2],[1,-1],[0,-10],[2,-3],[2,-7],[0,-1],[-1,-5]],[[9625,3821],[-1,-1],[2,5],[0,4],[0,6],[0,2],[2,0],[1,-2],[-2,-1],[0,-3],[0,-4],[0,-4],[-2,-2]],[[9560,3847],[3,-3],[4,1],[4,-6],[11,-17],[3,-4],[3,-2],[1,-3],[2,-4],[2,-3],[1,-2],[0,-4],[1,-2],[4,-6],[2,-5],[3,-3],[1,-3],[2,-1],[2,-4],[3,-2],[7,-9],[5,-9],[2,-5],[3,-5],[4,-4],[3,-4],[2,-10],[-1,-4],[-2,-2],[-2,0],[-1,-1],[-6,7],[-1,1],[-2,-1],[-1,2],[0,2],[-4,2],[-3,4],[-1,3],[0,3],[-1,2],[-5,3],[-3,3],[-2,5],[-3,3],[-6,6],[-2,2],[-3,4],[-6,11],[-3,2],[-2,6],[-5,12],[-3,5],[-3,5],[-2,5],[-2,6],[-4,9],[0,4],[0,4],[-1,3],[-2,1],[0,3],[0,4],[0,2],[4,-7]],[[9442,3903],[0,-2],[0,10],[0,3],[1,-7],[-1,-4]],[[5416,6409],[3,-34],[2,-30],[0,-18],[0,-5],[1,-4],[2,-3],[9,-27],[-2,-5],[1,-8],[3,-4],[7,-16],[1,-3],[-1,-3],[-5,-19],[0,-4],[-1,-24],[-1,-18],[-1,-23],[-1,-28],[-1,-24],[-2,-31],[-1,-30],[-7,-16],[-13,-29],[-10,-23],[-6,-16],[-10,-31],[-5,-20],[-3,-10],[-2,-4],[2,-15],[2,-25]],[[5377,5859],[-5,-1],[-2,-1],[-4,-6],[-4,-3],[-5,-5],[-3,-4],[-3,-3],[-4,-8],[-1,-6],[-4,-1],[-6,1],[-3,6],[-9,6],[-5,3],[-3,1],[-12,1],[-14,-3],[-6,-3],[-2,0],[-3,-4],[-4,-4],[-8,-19],[-12,0],[-7,2],[-5,3],[-9,9],[-10,14],[-4,2],[-3,1],[-1,0],[-12,-14],[-2,0],[-3,-1],[-2,-4],[-1,-1],[-2,0],[-2,0],[-2,2],[-2,4],[-4,15],[-1,3],[-3,5],[-3,7],[-3,3],[-1,1],[-2,-1],[-9,6],[-10,6],[-2,0],[-2,-2],[-3,-4],[-4,-1],[-5,0],[-3,1],[-4,-2],[-3,-2],[-4,-3],[-5,-9],[-1,-1],[-1,-1],[-2,-24],[-1,-7],[-3,-10],[-5,-9],[-3,-5],[0,-7],[-1,-13],[0,-8],[1,-5],[-1,-3],[0,-2],[0,-4],[1,-1],[0,-3],[0,-1],[-2,-2]],[[9664,3328],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[1,0]],[[5202,5308],[-2,-1],[-2,0],[2,8],[1,-2],[2,-1],[-1,-4]],[[5377,5859],[5,-13],[4,-14],[4,-11]],[[5237,5328],[0,1],[-1,-2],[-2,1],[-1,4],[-2,0],[-2,6],[-1,-1],[3,-15],[-1,-5],[-8,0],[-6,-2],[-4,0],[-2,2],[-1,5],[-1,0],[0,-3],[-1,-2],[-5,-1],[-2,4],[-2,4],[-2,2],[0,-2],[2,-4],[0,-6],[-4,-7],[-2,0],[-2,3],[-1,5],[0,7],[-1,5],[-1,0],[1,-5],[0,-3],[0,-8],[2,-5],[-3,-2],[-1,0],[-2,0],[-1,2],[0,5],[-1,1],[0,-8],[-2,-1],[-1,0],[-5,-1],[-1,0],[0,1],[1,3],[0,3],[-2,-3],[0,-5],[-1,-1],[-3,1],[-3,3],[-1,3],[-3,4],[-6,11],[-1,5],[-2,6],[-1,7],[-2,11],[1,0],[1,-1],[1,2],[-3,1],[0,1],[-1,4],[1,5],[2,2],[1,0],[1,3],[1,3],[-5,-4],[-4,5],[-1,2],[0,3],[2,0],[3,0],[2,2],[-1,1],[-2,0],[-1,1],[0,4],[0,-1],[-1,-3],[-3,-2],[-2,2],[0,5],[0,2],[-1,2],[-5,14],[-7,11],[-5,8],[-9,3],[-18,0],[-1,1],[1,2],[2,1],[6,7],[-1,1],[-6,-4],[-2,-1],[-3,-7],[-15,-2],[-2,0]],[[2690,5935],[-1,-2],[-1,-2],[-2,-7],[0,5],[-1,0],[-2,-1],[0,-3],[1,-4],[1,0],[1,-1],[3,-24],[-1,-4],[-2,-7],[-1,-6],[-2,-3],[-3,-15],[-2,-25],[2,-23],[-1,-20],[1,-5],[0,-6],[-2,-1],[-1,4],[0,3],[1,4],[0,5],[0,3],[-1,-6],[-2,-3],[-1,-1],[-1,-3],[1,-5],[2,-4],[0,-3],[0,-4],[-1,-12],[-1,2],[-1,0],[0,-5],[0,-3],[-1,-2],[-1,-2],[1,-1],[1,-1],[2,0],[1,-6],[0,-5],[-3,-4],[0,-4],[-2,-4],[-1,-5],[0,-3],[1,-10],[2,-7],[1,-5],[2,-1]],[[2618,5702],[0,2],[-2,6],[-4,8],[-14,24],[-5,14],[-3,11],[-3,5],[-7,11],[-2,5],[-8,14],[-5,9],[-1,4],[3,4],[1,0],[1,-3],[2,-4],[1,0],[2,2],[0,2]],[[283,3916],[-3,-3],[-1,4],[1,5],[2,1],[1,-4],[0,-3]],[[3105,5766],[-1,-7],[-1,3],[0,6],[-1,2],[-1,1],[-1,2],[1,2],[4,-4],[0,-5]],[[3251,6083],[0,-1],[-1,0],[0,1],[0,2],[0,-1],[1,0],[0,-1]],[[5093,8090],[2,1],[4,1],[4,-2],[4,-1],[4,2],[3,-2],[3,2]],[[5109,8112],[3,-4],[0,-1],[1,-1],[-4,-1],[-3,4],[-3,-1],[-1,2],[0,1],[3,1],[4,0]],[[5135,8191],[-3,-5],[-1,1],[-1,1],[1,4],[4,5],[0,-6]],[[5141,8205],[-5,-5],[0,1],[3,4],[2,0]],[[5117,8091],[-3,1],[-3,2],[-5,-2],[-4,2],[-3,1],[-2,2],[-2,3],[2,2],[1,1],[5,0],[4,-1],[8,-7],[1,0],[2,1],[-1,2],[-2,1],[-2,1],[-2,3],[5,1],[-1,1],[-1,3],[-5,8],[1,2],[1,5],[2,4],[1,1],[2,3],[5,8],[3,6],[2,8],[3,22],[1,4],[2,4],[2,-1],[1,-1],[5,3],[8,8],[3,7],[2,3],[10,7],[5,1],[8,1],[6,1],[7,0],[2,-3],[2,-3],[3,-2],[3,-1]],[[5166,8053],[-5,0],[-2,1],[-1,0]],[[5147,8209],[-2,0],[-1,1],[6,2],[4,1],[1,-1],[-8,-3]],[[5164,8214],[-5,-1],[-2,0],[0,1],[1,0],[5,0],[1,0]],[[5175,8217],[-3,-2],[-1,0],[0,1],[3,1],[1,0]],[[5187,8221],[-3,0],[1,1],[2,1],[1,0],[-1,-2]],[[5141,8619],[0,-7],[-3,1],[-1,2],[0,2],[0,4],[-1,4],[1,2],[1,1],[2,-4],[1,-5]],[[5137,8665],[-2,-1],[-2,1],[0,6],[2,1],[1,0],[2,-3],[-1,-4]],[[5225,8799],[-3,0],[-3,1],[-2,2],[-1,1],[4,2],[4,2],[1,-3],[1,-4],[-1,-1]],[[5235,8818],[-3,0],[-2,1],[4,3],[7,3],[1,1],[1,0],[1,-2],[0,-2],[0,-2],[-9,-2]],[[5311,8889],[-1,-1],[-3,1],[-7,-1],[-2,2],[2,3],[6,3],[3,0],[3,-4],[-1,-3]],[[5332,8934],[-2,-2],[-3,1],[-1,2],[1,3],[2,1],[3,0],[1,-2],[-1,-3]],[[5347,8951],[-2,-1],[0,3],[1,2],[2,2],[3,0],[3,0],[0,-1],[-1,-2],[-6,-3]],[[5344,8959],[-2,0],[0,2],[2,3],[1,1],[1,2],[1,2],[3,-2],[0,-3],[-1,-3],[-5,-2]],[[5360,9067],[-4,-3],[1,6],[2,6],[3,3],[2,-1],[-1,-3],[0,-3],[0,-1],[-3,-4]],[[5385,9091],[1,-1],[5,0],[1,0],[-1,-2],[-2,-2],[-4,-1],[-2,-3],[-1,-1],[-3,0],[-2,-1],[-3,-2],[-2,2],[0,-2],[-1,-2],[-1,-1],[-3,0],[-1,5],[2,2],[1,2],[2,1],[1,0],[4,5],[4,1],[2,0],[3,0]],[[5422,9131],[3,-6],[2,-4],[-1,-6],[-4,-4],[-5,0],[-4,0],[-2,2],[-1,1],[-1,1],[-4,-2],[-2,-1],[-3,2],[-1,3],[3,4],[2,2],[4,0],[0,-1],[3,0],[1,3],[0,2],[1,2],[4,-1],[0,6],[2,1],[1,-1],[1,-1],[1,-2]],[[5437,9108],[1,0],[3,5],[5,2],[0,2],[1,2],[0,3],[1,3],[2,0],[2,1],[1,1],[3,-2],[1,-3],[2,-5],[-1,-5],[-5,-3],[-4,-2],[-4,-5],[-2,-3],[-2,-1],[-1,0],[-1,1],[-2,0],[-2,-3],[-7,-3],[-2,1],[-1,3],[-1,0],[-3,-4],[-2,-1],[-2,0],[-3,1],[-8,-6],[-8,-2],[-2,1],[-1,4],[6,5],[4,4],[14,2],[9,10],[2,12],[2,4],[-1,2],[-3,0],[0,4],[2,4],[4,5],[3,2],[4,7],[2,1],[2,0],[2,-2],[0,-3],[-3,-6],[-5,-5],[0,-4],[2,-3],[1,-6],[0,-5],[-4,-7],[-1,-3]],[[5486,9169],[3,-3],[1,1],[3,0],[3,-1],[1,-2],[3,0],[1,-3],[1,-3],[-2,-3],[-2,-1],[-1,-4],[1,-4],[-5,-2],[-6,0],[-2,2],[-4,-4],[-5,-6],[-2,-1],[0,2],[-3,1],[-5,0],[1,2],[0,1],[4,1],[1,3],[-1,6],[1,3],[0,2],[2,2],[8,-1],[1,2],[-1,1],[-4,2],[1,2],[3,1],[2,1],[1,2],[0,1],[1,0]],[[5832,9181],[-6,-1],[0,1],[1,2],[1,5],[2,0],[3,-2],[1,-2],[-2,-3]],[[5577,9199],[-2,-2],[-2,0],[-1,1],[-2,0],[-2,0],[-2,2],[0,3],[3,2],[4,2],[4,-1],[1,0],[-1,-7]],[[5534,9197],[3,-3],[2,0],[1,2],[1,0],[3,-1],[0,-3],[-4,-4],[-3,-5],[-4,-1],[-2,0],[-4,-3],[-2,-3],[-3,-4],[0,-2],[-1,-2],[-10,-1],[-4,-1],[-4,1],[-2,3],[1,1],[4,1],[0,2],[1,2],[1,1],[1,3],[2,0],[3,0],[2,2],[1,0],[1,-2],[1,3],[-1,2],[1,2],[3,4],[2,3],[2,2],[3,0],[0,2],[0,3],[0,2],[2,5],[2,0],[1,-4],[0,-7]],[[5549,9206],[1,0],[1,0],[2,-1],[2,-3],[2,-1],[0,-2],[-2,-1],[-3,-1],[-3,1],[-1,2],[-1,3],[-3,3],[0,3],[2,1],[3,-4]],[[5655,9226],[1,-3],[0,-2],[-2,-3],[-6,-5],[0,-1],[-2,-1],[-3,-1],[-2,1],[0,4],[0,1],[-3,-2],[-2,2],[0,2],[1,2],[2,2],[4,2],[2,-1],[9,7],[0,-1],[1,-3]],[[5667,9227],[-6,-2],[-3,2],[-1,2],[0,4],[0,3],[3,2],[2,-1],[0,-1],[3,-1],[3,-3],[-1,-5]],[[5651,9242],[-1,-2],[-1,-2],[-2,-2],[-7,-7],[-4,-2],[-1,-1],[-1,-1],[-5,1],[-2,-1],[-1,-1],[-3,0],[-2,0],[-6,3],[-3,3],[-2,2],[5,0],[2,1],[3,-1],[2,3],[4,0],[8,2],[3,-2],[7,7],[2,0],[3,1],[2,-1]],[[5857,9181],[1,-8],[0,-3],[0,-3],[-1,-1],[-2,-1],[-5,1],[-7,3],[-4,3],[-1,0],[-1,-1],[1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-2],[-2,-3],[-5,-2],[-12,-3],[-1,-2],[-4,-10],[-1,-2],[-2,-1],[-4,-2]],[[5572,9136],[-3,0],[-11,-1],[5,-5],[1,-2],[1,-3],[-1,-5],[-2,-5],[-3,-4],[-5,-4],[8,-4],[-5,-5],[-3,-2],[-3,0],[-5,2],[-12,4],[-5,2],[-5,1],[-3,0],[-11,3],[-2,0],[-4,-2],[0,-3],[0,-9],[0,-7],[-1,-4],[-2,-3],[-4,-7],[-10,5],[-6,3],[-5,-4],[-10,-8],[-6,-16],[0,-1],[-3,-4],[-5,-1],[-3,-1],[-2,-5],[5,-7],[2,-3],[2,-6],[0,-4],[-1,-2],[-4,-5],[-10,-12],[-9,-13],[-4,-4],[2,-10],[-3,-4],[-7,-3],[-3,-2],[-3,0],[-11,-2],[2,-12],[1,-5],[0,-3],[-1,-3],[-1,-6],[-2,-20],[-2,-2],[-2,-6],[-6,-13],[-6,-9],[-7,-13],[6,-4],[6,-3],[1,-4],[0,-8],[0,-5],[-2,-4],[-2,-4],[-1,-1],[-8,1],[-10,2],[-3,0],[-6,-1],[-5,-3],[-3,-3],[-1,-1],[-3,-5],[-7,-11],[-3,-4],[1,-6],[-6,-12],[4,-12],[2,-5],[-2,-3],[-1,-2],[0,-6],[1,-6],[-1,-3],[0,-4],[5,-19],[0,-4],[0,-3],[-2,-11],[-2,-15],[4,-4],[5,-5],[3,-2],[5,-5],[3,-6],[0,-4],[-1,-4],[-2,-2],[-1,-4],[-1,-3],[0,-1],[-6,0],[-3,-1],[-2,-2],[1,-6],[3,-12],[3,-9],[1,-5],[-1,-6],[-1,-3],[0,-4],[-1,-8],[-2,-4],[-3,-4],[-3,-3],[-3,-1],[-3,0],[-1,-2],[-1,-5],[-2,-5],[-4,-6],[0,-2],[2,-8],[1,-8],[-1,-8],[-1,-8],[-2,-6],[-3,-2],[-2,1],[-2,8]],[[5316,8544],[0,2],[-1,2],[-6,2],[-1,0],[-3,1],[-2,1],[-3,1],[-2,6],[-3,6],[0,2],[0,10],[-1,5],[0,5],[-2,-4],[1,-6],[-2,-3],[-3,-1],[1,-4],[1,-1],[0,-4],[-1,-6],[-5,-13],[-1,-1],[-1,-2],[-2,1],[-4,-3],[-3,-1],[-1,4],[-5,6],[-2,-1],[2,-2],[2,-4],[-1,-2],[-1,-1],[-2,-1],[-7,-5],[2,-3],[-2,-3],[-2,-1],[-1,-1],[-1,-3],[-7,-6],[-11,-16],[-6,-4],[-4,-5],[-3,0],[-5,-4],[-11,-3],[-8,1],[-5,-1],[-3,3],[0,2],[0,1],[0,1],[-3,1],[0,-2],[-1,-3],[-1,0],[-3,1],[-1,2],[1,3],[2,3],[-1,2],[-1,0],[-3,0],[-3,0],[-9,7],[-3,3],[-7,6],[-3,5],[-2,7],[0,5],[1,9],[1,3],[7,-4],[7,-5],[1,0],[2,4],[4,4],[-1,1],[-6,-4],[-2,2],[-4,4],[0,3],[2,2],[0,3],[-1,3],[1,3],[3,5],[4,4],[3,4],[3,2],[-1,1],[-3,-2],[-3,-2],[-4,-5],[-5,-3],[-4,-2],[-1,-1],[-3,-1],[-3,-5],[-3,-2],[-5,-1],[-1,4],[2,14],[1,6],[2,5],[3,1],[1,3],[2,0],[1,-2],[6,-1],[2,4],[4,1],[6,4],[0,1],[-4,-1],[-3,0],[-3,-1],[-2,1],[-1,3],[1,3],[6,7],[2,3],[1,3],[0,2],[1,4],[6,7],[5,3],[1,-3],[-1,-8],[0,-4],[4,13],[1,3],[2,2],[5,1],[1,2],[-5,0],[-13,-5],[-6,-4],[-1,-4],[-4,-5],[-2,-3],[0,-5],[-2,-2],[-3,-1],[-4,-6],[-2,-5],[-4,-4],[-2,-3],[-1,-1],[-1,-3],[-2,0],[-1,1],[0,4],[1,6],[2,4],[0,5],[-1,4],[1,2],[2,0],[3,-1],[3,0],[6,3],[-1,2],[-3,0],[-4,0],[-4,3],[-3,6],[-1,8],[1,3],[11,8],[2,4],[-1,0],[-4,-4],[-6,-3],[-3,4],[-2,4],[-1,9],[0,4],[0,6],[2,2],[3,-1],[2,0],[6,1],[14,3],[8,-2],[4,0],[5,3],[5,1],[3,-3],[2,-2],[0,-4],[2,-3],[1,1],[-1,3],[0,5],[14,5],[2,2],[-6,0],[-1,5],[2,7],[0,1],[-3,-4],[-1,-5],[0,-4],[0,-2],[-3,-1],[-7,0],[-4,2],[-4,0],[-1,2],[1,3],[-1,0],[-2,-2],[-1,-6],[-3,-1],[-9,2],[-12,-1],[-5,-3],[-4,1],[-6,4],[-2,4],[-1,8],[0,3],[5,1],[3,0],[2,2],[-2,1],[-3,2],[-2,5],[-3,1],[-2,4],[0,6],[0,4],[2,2],[4,-1],[9,0],[9,-4],[7,-2],[12,1],[7,4],[-1,1],[-8,-2],[-7,0],[-13,4],[-5,1],[-6,0],[-3,1],[-2,4],[1,8],[3,2],[2,-2],[1,-1],[2,4],[2,2],[1,4],[5,4],[2,0],[4,2],[2,0],[1,-2],[1,-2],[4,0],[10,4],[1,1],[2,2],[-6,-1],[-6,-2],[-3,0],[-1,2],[2,2],[2,2],[1,4],[2,2],[2,0],[5,0],[4,1],[6,0],[9,-2],[6,-3],[2,0],[2,1],[1,1],[-4,2],[-1,2],[1,1],[7,3],[8,1],[-1,2],[-18,-3],[-4,2],[-4,0],[-2,-1],[-7,-2],[-1,1],[1,4],[4,7],[0,2],[2,1],[11,4],[5,5],[2,0],[2,0],[4,0],[6,-1],[4,-6],[2,-1],[9,-7],[0,2],[-8,9],[-3,3],[-2,4],[1,5],[2,3],[9,1],[1,2],[1,3],[-2,2],[-3,0],[-3,1],[0,3],[1,2],[5,4],[2,2],[5,1],[8,-3],[1,-2],[-2,-4],[0,-2],[2,0],[4,6],[6,1],[2,2],[3,1],[4,-6],[1,-2],[1,-1],[2,-5],[1,0],[1,2],[3,2],[5,1],[7,-2],[3,1],[1,0],[-1,4],[-1,2],[1,4],[2,1],[5,3],[4,1],[3,3],[4,2],[0,2],[-1,3],[-3,0],[-1,1],[3,3],[5,3],[-1,1],[-3,2],[-3,-1],[-4,-3],[-4,-4],[1,-1],[2,-3],[-3,-5],[-16,-11],[-8,-4],[-4,1],[-1,3],[-1,2],[-2,5],[-3,0],[-2,-1],[-1,2],[2,5],[2,4],[4,3],[3,4],[2,6],[6,6],[9,14],[7,4],[3,5],[5,2],[3,4],[3,1],[6,3],[3,4],[-2,0],[-5,-2],[-3,-1],[0,4],[2,5],[4,4],[18,12],[2,-2],[2,-4],[6,1],[6,7],[5,7],[-2,-1],[-3,-3],[-6,-4],[-3,-1],[-1,1],[-1,2],[-2,1],[-2,0],[-1,2],[-1,5],[3,7],[1,5],[2,4],[8,10],[2,6],[3,3],[5,-1],[1,1],[-1,4],[-5,3],[0,1],[16,5],[8,0],[3,3],[4,1],[3,3],[-1,1],[-9,-2],[-5,-2],[-2,0],[-2,-1],[-6,0],[-2,12],[1,6],[3,0],[0,6],[3,4],[4,1],[2,1],[3,4],[4,-1],[5,0],[-1,2],[-6,2],[-1,3],[2,2],[2,1],[2,1],[4,6],[2,3],[3,-1],[4,3],[3,-1],[4,2],[5,1],[18,1],[0,2],[-4,1],[-13,1],[-6,0],[-3,-1],[-1,1],[0,1],[2,3],[1,3],[5,6],[6,5],[4,-1],[5,-5],[3,0],[2,-2],[2,-6],[2,0],[-1,6],[3,5],[-1,1],[-4,-2],[-4,2],[-3,3],[-1,3],[2,4],[2,1],[-1,2],[-8,-5],[-5,-1],[-2,1],[1,4],[0,4],[6,8],[3,1],[4,0],[3,-3],[3,1],[3,1],[0,2],[-7,1],[-2,2],[1,2],[5,2],[4,4],[6,1],[4,2],[1,0],[1,-1],[1,-10],[4,-9],[2,0],[-2,7],[1,2],[2,2],[1,1],[-2,1],[-2,2],[-2,9],[1,2],[5,4],[6,1],[7,-3],[2,0],[4,1],[7,2],[4,1],[2,0],[1,1],[-2,1],[-1,1],[-1,0],[-7,-1],[-17,1],[-2,1],[0,2],[2,4],[2,2],[6,4],[7,0],[8,6],[2,5],[2,7],[4,6],[11,3],[1,2],[-1,3],[0,5],[3,7],[2,2],[1,0],[2,-2],[3,-4],[4,-3],[6,0],[2,1],[-5,3],[-3,3],[0,3],[1,2],[3,0],[3,0],[3,2],[0,2],[1,2],[0,2],[5,5],[13,4],[1,-2],[0,-10],[-2,-6],[0,-5],[3,5],[3,13],[3,6],[3,3],[2,1],[2,2],[3,1],[1,-1],[1,-3],[-2,-12],[0,-3],[-1,-5],[-7,-11],[1,-1],[1,0],[2,2],[9,10],[7,-1],[0,1],[-3,3],[-2,3],[-1,3],[0,10],[2,3],[6,0],[4,0],[2,-1],[3,0],[3,7],[5,0],[4,-4],[5,-3],[5,-5],[1,2],[-2,10],[-3,3],[-5,2],[-6,5],[-2,2],[1,1],[5,2],[6,-2],[6,4],[2,-1],[5,2],[2,-3],[2,1],[1,3],[8,3],[4,-2],[3,-3],[1,-4],[2,-8],[3,-4],[2,-2],[3,-1],[1,3],[-2,2],[-1,3],[1,6],[2,2],[8,9],[6,5],[4,0],[7,11],[2,2],[2,0],[-1,3],[-3,1],[-1,3],[5,4],[6,7],[3,0],[2,-2],[6,-3],[4,-3],[2,-2],[2,1],[1,2],[2,1],[4,0],[2,-2],[2,0],[1,-1],[1,-2],[-4,-3],[-5,-6],[-6,-7],[-1,-4],[-2,-9],[-4,-7],[-1,-4],[2,-2],[5,1],[6,6],[1,7],[14,16],[7,10],[8,7],[4,2],[2,-5],[-2,-7],[-3,-4],[3,-2],[-1,-5],[-1,-3],[0,-3],[0,-2],[2,0],[9,6],[2,5],[3,5],[1,3],[3,4],[7,0],[0,1],[-8,5],[-1,2],[3,3],[7,6],[4,-1],[2,-1],[9,-1],[7,-4],[0,-6],[-2,-3],[-1,-1],[-9,-5],[-2,-2],[3,-1],[6,2],[2,-2],[-2,-5],[0,-9],[-1,-4],[0,-5],[1,-2],[2,9],[1,3],[3,3],[2,7],[3,8],[4,5],[2,2],[8,-1],[3,-1],[3,-5],[2,-1],[7,-2],[2,-2],[0,-1],[2,-1],[5,4],[3,0],[4,-5],[-1,-3],[1,-1],[5,0],[5,-2],[9,-7],[1,-3],[0,-4],[-13,-5],[-6,-4],[-9,-2],[-32,3],[1,-3],[22,-7],[1,-2],[-1,-4],[0,-3],[1,-3],[1,-2],[3,-1],[5,1],[3,-1],[2,1],[1,6],[1,1],[3,-1],[2,-6],[1,-1],[1,4],[3,0],[4,0],[4,0]],[[5710,9261],[8,-2],[2,0],[4,-4],[2,0],[-1,-3],[-3,-1],[-6,-1],[-1,0],[-5,0],[-3,4],[-4,1],[0,1],[3,2],[4,3]],[[4751,9243],[-3,0],[-1,1],[4,4],[12,6],[5,7],[9,2],[1,-3],[-1,-5],[-8,-4],[-9,-2],[-9,-6]],[[5533,9453],[-3,-2],[-5,4],[-3,4],[1,2],[9,0],[2,-2],[1,-2],[-2,-4]],[[5600,9703],[3,-2],[9,0],[4,-10],[3,-10],[4,-1],[8,2],[7,0],[4,-1],[6,-3],[3,-2],[-3,-2],[-5,-1],[-1,-6],[6,-2],[9,-5],[6,-1],[10,2],[9,-4],[9,-4],[-21,-6],[-2,-2],[-3,-4],[-3,-3],[-3,-3],[-7,-3],[-3,-1],[-8,0],[-3,-2],[-2,-3],[-3,-2],[-7,0],[-4,3],[2,1],[0,1],[-1,4],[6,5],[2,2],[-1,1],[-2,0],[-5,1],[-1,0],[-4,-3],[-6,-1],[-5,-1],[-23,-3],[-3,1],[-2,7],[9,3],[2,5],[2,4],[3,2],[5,6],[1,1],[-12,5],[-5,3],[-6,6],[-1,5],[-7,5],[1,5],[-6,0],[-4,4],[4,2],[19,2],[11,3],[5,0]],[[5746,9706],[-4,0],[-8,4],[-1,4],[1,1],[4,0],[6,-5],[6,-1],[-4,-3]],[[5312,9703],[0,-4],[5,1],[5,-5],[6,-2],[2,-1],[1,-3],[3,-4],[2,-4],[-4,0],[-6,6],[-5,3],[-6,3],[-4,0],[-3,2],[-7,10],[-2,3],[-4,4],[-2,5],[0,4],[6,-1],[5,-3],[4,-5],[1,-2],[-2,-2],[2,-3],[3,-2]],[[5806,9721],[9,0],[8,1],[1,-1],[-10,-3],[-12,1],[-11,1],[-13,-4],[-4,2],[7,3],[7,1],[1,2],[2,1],[10,0],[5,-4]],[[5466,9780],[1,0],[2,1],[1,1],[1,1],[7,-1],[10,-3],[3,-2],[4,-3],[3,-6],[-2,-4],[-4,-4],[-1,-2],[1,-3],[0,-3],[-2,-3],[6,3],[11,10],[2,1],[1,-1],[6,-2],[4,-5],[1,-1],[1,-2],[1,-3],[-1,-3],[0,-2],[-3,-1],[-1,-1],[3,0],[3,-2],[3,-3],[3,-1],[11,1],[7,-2],[4,-5],[6,1],[0,3],[2,1],[8,-1],[4,-1],[4,-3],[-7,-5],[6,-4],[10,-3],[6,-4],[2,-1],[1,-2],[-4,-2],[-5,-2],[-10,0],[-9,-2],[-17,-1],[-3,-1],[-1,0],[-1,-2],[-6,-5],[-7,-6],[-2,-4],[-2,-5],[-1,-3],[1,-3],[0,-3],[-5,-2],[-3,0],[-4,0],[-3,-1],[-1,-2],[1,-3],[-1,-9],[-1,-7],[-2,-6],[-2,-3],[-3,-1],[-8,-1],[-6,-5],[-5,-11],[-3,-4],[-5,-6],[1,-2],[2,-3],[-3,-4],[-5,-5],[0,-2],[2,-4],[0,-3],[-3,-3],[-7,-2],[-6,2],[-3,2],[-3,3],[-4,3],[-3,1],[-13,7],[-11,12],[-11,5],[-7,2],[-3,2],[-4,3],[-3,3],[-2,4],[-2,2],[0,4],[1,2],[1,1],[9,1],[3,0],[3,-2],[3,-1],[6,10],[36,5],[11,1],[12,0],[-2,3],[-2,3],[-1,1],[-9,-2],[-13,-2],[-7,0],[-7,2],[-6,-1],[-7,-3],[-7,-2],[-7,-1],[-14,1],[-4,1],[-4,4],[-2,1],[-1,3],[-1,6],[2,2],[1,1],[1,0],[4,0],[3,-1],[7,-3],[-2,4],[21,4],[10,4],[5,1],[5,0],[-2,2],[0,2],[4,2],[2,0],[8,1],[17,0],[7,1],[4,3],[-5,-1],[-5,0],[-2,0],[-5,3],[-3,3],[7,7],[3,3],[-7,-1],[-3,-1],[-8,-6],[-6,-3],[-7,-1],[-7,0],[-2,1],[-2,4],[-1,2],[0,1],[3,4],[1,3],[0,3],[-2,1],[-3,-3],[-2,-4],[-3,-2],[-4,0],[-1,2],[-2,2],[-1,1],[-2,0],[-3,-1],[-3,-2],[1,-2],[1,-3],[-2,-3],[-1,-3],[4,-1],[2,-3],[-4,-1],[-4,-2],[-3,-3],[-4,-3],[-5,0],[-7,-1],[-14,-1],[-7,4],[-1,2],[-1,1],[-5,2],[-6,6],[-5,7],[-3,0],[-5,2],[-3,2],[-2,3],[-1,3],[0,2],[3,2],[-7,3],[-7,4],[3,1],[2,1],[20,-5],[2,0],[2,3],[-1,1],[-3,0],[-5,0],[-1,1],[-2,2],[-1,3],[-1,2],[0,3],[3,3],[2,3],[-3,2],[-8,0],[-3,-1],[1,-4],[-2,-4],[-6,-2],[-3,1],[-3,6],[-4,5],[-1,2],[-1,4],[-2,3],[-2,3],[-1,2],[1,2],[2,3],[-2,3],[-2,3],[0,1],[2,2],[2,1],[1,0],[5,-2],[3,-3],[1,0],[2,4],[3,1],[10,1],[11,-5],[2,-1],[3,0],[-1,2],[-1,3],[2,1],[9,-3],[4,0],[10,4],[16,2],[6,-3],[0,-1],[0,-2],[0,-1],[-4,-2],[-20,-2],[-14,-7],[19,1],[3,0],[1,-6],[2,-1],[4,0],[3,-2],[4,-3],[3,-2],[2,0],[1,2],[-1,3],[0,3],[0,3],[0,3],[4,2],[6,7],[6,4],[6,-2],[7,-5],[5,-8],[5,-8],[6,-11],[3,-3],[3,-1],[12,-11],[1,0],[-2,8],[-6,14],[-5,10],[-1,4],[0,6],[0,2],[1,1],[3,6],[4,3],[-2,4],[2,3],[4,3],[4,0],[3,-2],[8,-7]],[[5903,9793],[-26,-2],[-3,1],[43,7],[2,0],[8,1],[7,-1],[-2,-1],[-29,-5]],[[5520,9804],[-6,-4],[-10,3],[1,2],[3,2],[6,-1],[6,-2]],[[5580,9801],[3,-1],[15,0],[3,-1],[1,-4],[2,-1],[4,0],[8,-5],[3,0],[2,2],[2,6],[0,7],[-1,3],[1,3],[3,0],[3,0],[4,1],[2,3],[4,0],[6,-2],[2,-1],[-2,-3],[0,-3],[-3,-8],[6,-1],[9,2],[3,2],[5,4],[5,-1],[3,1],[1,1],[0,2],[3,0],[4,-4],[2,0],[4,1],[1,0],[3,-2],[16,-2],[5,-2],[3,-1],[2,-1],[17,0],[12,-1],[4,-2],[4,-4],[1,-9],[-3,-2],[-24,-11],[-6,-4],[-3,-3],[-5,-7],[-2,-3],[-11,-3],[-3,0],[-8,1],[-3,0],[-10,-4],[-4,-2],[-3,-3],[-5,-1],[-6,1],[-23,1],[-4,2],[-2,4],[5,5],[-27,-2],[-29,1],[-2,1],[-1,2],[-10,1],[-7,2],[-7,2],[-6,4],[2,1],[2,1],[5,0],[5,0],[9,0],[2,3],[3,1],[3,3],[-9,1],[-10,1],[-6,-2],[-7,-1],[-7,0],[-12,0],[-6,2],[-9,3],[-3,2],[-1,2],[0,3],[9,2],[4,2],[3,2],[-14,1],[-6,2],[-6,3],[5,2],[19,1],[5,-1],[5,-2],[6,-1],[5,2],[-5,2],[-4,4],[-1,3],[0,1],[3,1],[1,-1],[7,-4],[5,-2],[2,4],[0,2],[-1,2],[-3,3],[-2,3],[4,1],[3,0],[7,-3],[7,-1],[3,-2],[6,-5],[6,-2]],[[9637,5016],[-1,-2],[-1,2],[1,1],[0,1],[1,-1],[0,-1]],[[9698,1937],[2,-3],[-3,-2],[-1,2],[-1,1],[-1,2],[2,0],[1,1],[1,-1]],[[9616,2040],[1,-5],[-2,0],[-3,1],[-1,2],[0,1],[-2,-3],[-2,0],[0,1],[1,3],[4,5],[1,6],[0,2],[3,0],[1,0],[1,-1],[-1,-1],[-1,-3],[0,-2],[0,-2],[-1,-2],[1,-2]],[[9670,2271],[0,-3],[-3,1],[0,-3],[2,-1],[1,-2],[2,1],[1,-3],[-1,-3],[-1,-2],[-5,-1],[-3,-3],[-3,0],[-3,-4],[-4,-1],[-1,0],[1,4],[2,3],[0,3],[1,3],[3,2],[0,3],[1,3],[-1,6],[1,6],[4,1],[6,-10]],[[9631,2342],[0,-3],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,4],[3,1],[1,-1],[1,-1]],[[9637,2370],[2,-7],[-3,2],[-1,2],[2,3]],[[106,2421],[-1,0],[0,3],[0,2],[2,1],[1,-3],[-2,-3]],[[106,2456],[-1,-2],[-2,0],[-3,-6],[1,5],[-1,1],[-3,0],[0,-1],[1,-1],[1,-1],[-2,-3],[2,-5],[1,0],[2,-4],[0,-2],[-3,-1],[-2,-3],[-2,0],[-1,1],[0,4],[0,2],[1,3],[2,3],[-1,3],[-3,2],[-4,-1],[-1,1],[2,4],[3,-1],[2,3],[11,-1]],[[9830,2626],[-4,-3],[0,2],[1,5],[2,3],[1,0],[1,2],[0,-4],[-1,-5]],[[9808,2601],[3,0],[3,4],[3,4],[3,3],[5,7],[1,1],[4,1],[1,1],[1,1],[-1,-4],[-2,-2],[0,-1],[1,-2],[-2,-3],[1,-4],[-2,-5],[2,2],[2,3],[-1,2],[1,3],[2,2],[-1,2],[0,2],[3,0],[1,0],[1,0],[1,1],[1,-3],[2,1],[-1,-3],[-2,-4],[0,-2],[-3,-3],[-2,-1],[3,-1],[4,5],[3,4],[0,-5],[-2,-5],[-2,-3],[-2,0],[-2,-3],[-1,-4],[0,-2],[1,-2],[2,-3],[-2,-7],[2,1],[1,-1],[2,-4],[-1,-4],[-1,-2],[-4,-10],[-2,-4],[-3,-3],[0,-5],[-1,-3],[-7,-12],[-1,-3],[-6,-19],[-3,-8],[-2,-3],[-2,-2],[-6,-4],[-2,-4],[-2,-4],[-3,-1],[0,-1],[2,-1],[1,-3],[-1,-2],[-2,-2],[-2,0],[-1,-2],[5,1],[1,-1],[1,-3],[0,-3],[1,-3],[4,-3],[4,-1],[0,-1],[1,-6],[-1,-3],[-1,-1],[-1,-1],[-3,0],[-2,1],[-2,3],[-6,-1],[-1,-1],[-1,1],[3,4],[-2,2],[-1,0],[-1,-1],[-1,-2],[0,-3],[-1,-1],[-2,-1],[-2,3],[-2,3],[-3,4],[0,-2],[3,-6],[1,-4],[-3,-3],[-3,-2],[-2,-1],[-3,-2],[-2,-4],[-2,-1],[-4,0],[-2,-1],[0,-4],[-2,-3],[-3,0],[1,-1],[1,-2],[-3,-13],[0,-5],[0,-9],[-2,-9],[-4,0],[1,-1],[3,-3],[-1,-3],[-3,-7],[-2,-4],[-1,-9],[-2,-9],[-3,-10],[0,-1],[1,-3],[1,-2],[0,-3],[0,-2],[-2,0],[-1,-1],[-7,-3],[-2,-3],[-2,-5],[-3,-5],[-7,-10],[-4,-9],[-1,-2],[-1,-2],[-10,-4],[-7,-1],[-3,1],[-4,2],[-2,1],[-4,-1],[-1,-2],[-3,2],[-3,-1],[0,1],[-1,2],[0,4],[0,2],[-2,2],[-1,2],[-1,1],[-3,1],[-5,-1],[-2,0],[-3,8],[-1,2],[-4,3],[-1,0],[-3,-5],[-1,-1],[-7,0],[-8,1],[-3,2],[0,4],[6,10],[-2,-1],[-4,-4],[-2,0],[2,5],[1,2],[-1,2],[-3,-4],[-3,0],[-1,3],[1,5],[0,1],[9,2],[4,1],[1,3],[-5,1],[-1,3],[1,2],[5,4],[-4,-1],[-3,1],[0,4],[1,4],[4,0],[-2,2],[0,3],[1,1],[4,-5],[3,-1],[-1,3],[0,2],[1,1],[2,1],[-3,1],[-2,3],[0,2],[0,4],[2,4],[2,-3],[2,1],[-1,2],[-1,3],[0,2],[6,8],[2,-8],[0,3],[0,2],[0,3],[0,2],[0,1],[3,2],[3,6],[3,3],[2,-2],[1,-2],[0,2],[-1,2],[0,6],[4,8],[5,8],[5,8],[2,3],[6,4],[3,-2],[1,1],[5,6],[2,1],[2,-2],[1,-1],[-1,6],[1,2],[4,5],[6,4],[4,2],[3,4],[2,0],[-1,2],[1,2],[1,0],[1,1],[-2,1],[5,5],[2,5],[1,1],[2,1],[1,4],[2,1],[1,-1],[1,-1],[0,2],[-2,2],[2,2],[2,2],[2,-1],[2,-2],[-2,3],[0,2],[2,2],[2,1],[2,-4],[-1,3],[1,3],[3,4],[3,8],[1,-3],[1,-3],[-1,-4],[1,2],[0,3],[0,6],[4,12],[1,1],[1,1],[2,0],[-1,2],[-1,2],[1,6],[1,6],[1,7],[2,6],[2,11],[1,2],[4,1],[1,1],[3,4],[3,7],[2,6],[2,14],[2,15],[3,11],[6,8],[5,6],[2,2],[3,0],[3,-2],[-6,-1],[0,-4],[-1,-3],[1,-4],[1,-3],[3,-2],[3,-2],[2,-6],[0,-8],[0,-6],[2,-6]],[[9875,2898],[0,-4],[-2,1],[-1,3],[-2,2],[0,1],[-1,5],[2,2],[0,1],[0,1],[1,-3],[2,-3],[1,-6]],[[9812,2977],[0,-3],[2,2],[1,3],[2,4],[0,-5],[1,-2],[6,-3],[1,-3],[1,-1],[1,2],[1,1],[2,-2],[5,-5],[1,-2],[-1,-3],[1,-2],[0,-2],[2,-1],[2,3],[1,1],[2,-5],[0,-3],[0,1],[1,-3],[1,-3],[2,-7],[0,-3],[-1,-2],[2,-7],[-1,-1],[-4,1],[0,-1],[3,-5],[2,-7],[1,-5],[6,-13],[-1,-5],[0,-3],[-1,-3],[2,-7],[-1,-2],[-1,-8],[-1,-1],[0,-3],[3,0],[1,-2],[1,-2],[1,3],[1,1],[2,-4],[6,-3],[1,-2],[1,-3],[1,-6],[1,-3],[2,-1],[2,1],[1,2],[-1,7],[-1,11],[0,3],[0,4],[0,3],[-1,4],[-1,2],[-1,2],[0,3],[2,2],[1,-3],[1,-3],[4,-10],[3,1],[0,-5],[2,-4],[0,-5],[2,-14],[2,-14],[3,-6],[0,-3],[-2,2],[0,-1],[0,-2],[2,-2],[2,-2],[2,1],[1,-1],[9,-9],[4,-4],[11,-6],[3,0],[2,0],[3,2],[3,4],[3,5],[2,6],[2,3],[3,2],[1,2],[2,2],[7,-1],[2,-3],[4,-2],[1,-2],[0,-4],[-2,-6],[-2,-6],[-1,-14],[-1,-15],[-1,-6],[-3,-5],[-2,-4],[-3,-1],[-1,-8],[-1,-10],[0,-2],[1,-2],[0,-3],[-1,-6],[-1,1],[-1,5],[-1,2],[-4,1],[-4,1],[-3,0],[-3,-2],[-5,-5],[-1,-2],[-1,-2],[-3,-6],[0,-8],[0,-4],[1,-2],[4,-5],[-4,-14],[-4,-14],[-2,-4],[-2,-4],[-2,-9],[-4,-8],[-2,-5],[-2,-6],[-2,-7],[-4,-9],[-1,-6],[-3,-5],[-4,-6],[-4,-6],[-6,-7],[-2,-2],[-2,-2],[-3,2],[0,2],[-1,5],[0,2],[-3,2],[-4,-3],[-1,1],[0,1],[0,7],[0,3],[-1,1],[-1,-1],[0,-2],[1,-1],[-3,-2],[-2,0],[-1,0],[0,2],[1,2],[0,2],[5,9],[5,13],[4,13],[1,7],[1,13],[-1,5],[-2,5],[-4,10],[-5,5],[-4,1],[-3,2],[-3,5],[-3,5],[-6,5],[-5,3],[-4,5],[-1,3],[0,3],[0,4],[0,3],[1,2],[1,2],[6,7],[7,3],[1,0],[1,1],[2,2],[3,5],[1,3],[1,11],[0,10],[2,12],[3,8],[1,4],[-1,8],[1,3],[1,1],[1,1],[-2,7],[-3,11],[0,3],[0,4],[1,3],[-2,1],[-1,3],[-2,10],[0,2],[2,-1],[2,-8],[0,4],[2,2],[1,2],[2,0],[-4,8],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,2],[-1,4],[-1,7],[-1,2],[-5,14],[1,0],[5,-7],[0,3],[1,3],[0,3],[-1,3],[-2,2],[0,3],[1,3],[0,2],[-2,4],[-1,0],[-1,-2],[1,-2],[-1,-1],[-6,8],[-2,6],[-1,6],[0,-2],[0,-4],[2,-8],[4,-8],[1,-2],[-1,-3],[-1,-1],[-1,2],[-2,7],[-1,4],[-15,37],[2,5],[3,4],[1,2],[0,2],[-1,1],[-1,-1],[-2,-2],[-1,-2],[-1,-5],[-1,-1],[-2,3],[0,2],[0,3],[-1,1],[-1,1],[-2,5],[-1,2],[2,5],[0,6],[-2,7],[-3,6],[-4,10],[-5,11],[5,1],[5,0],[-2,-6],[1,-4],[1,-3],[3,-9],[1,-3],[1,-3],[1,-2]],[[245,4492],[0,1],[-1,0],[0,1],[1,-1],[0,-1]],[[209,4538],[0,1],[-1,1],[1,0],[0,-1],[0,-1]],[[6631,6244],[-2,0],[-1,0],[0,7],[4,10],[3,11],[2,-10],[-3,-5],[-2,-10],[-1,-3]],[[6566,6526],[3,-15],[4,-15],[3,-8],[4,-11],[6,-10],[3,-3],[11,-7],[6,-3],[8,-2],[5,-6],[2,0],[3,1],[3,0],[5,-7],[2,-7],[2,-4],[2,-6],[1,-6],[5,-10],[3,-10],[3,-8],[3,-5],[5,-2],[3,-2],[0,-5],[0,-7],[-1,-5],[-3,-10],[-1,-6],[-3,-10],[-4,-17],[-2,-4],[-7,-8],[-5,-11],[-5,-18],[-5,-18],[-1,-5],[-4,-2],[-2,1],[-2,2],[1,4],[0,6],[-2,-1],[-2,-1],[-4,-13],[-2,-6],[-1,-8],[-1,-9],[-2,-9],[0,-8],[0,-4],[1,-10],[0,-11],[1,-6],[0,-8],[-2,-2],[-2,-1],[-6,-1],[-7,-3],[-7,-4],[-3,-4],[-5,-10],[-3,-25],[-4,-11],[-4,-2],[-7,-1],[-11,-3],[-4,-2],[-6,-16],[0,-4],[1,-4],[0,-4],[0,-3],[-3,-10],[-3,-7],[-8,-4],[-3,2],[-3,2],[-5,0],[-9,-2],[-3,-5],[-5,-4],[-4,-5],[-9,-3],[-6,-4]],[[6474,6033],[-2,8],[-1,8],[-2,7],[-2,8],[-1,6],[-2,2],[-1,5],[-1,6],[-2,6],[-1,6],[-1,6],[-1,6],[-2,6],[-1,6],[-1,6],[-1,6],[-1,5],[-2,6],[-1,6],[-1,6],[-1,6],[-2,6],[-1,6]],[[6443,6172],[4,3],[5,3],[5,4],[4,3],[5,3],[5,4],[5,3],[5,4],[4,3],[5,3],[5,4],[5,3],[4,4],[5,3],[5,3],[5,4],[5,3],[2,2],[2,8],[1,7],[1,6],[1,7],[1,6],[1,7],[1,6],[1,7],[1,7],[1,6],[1,7],[1,6],[1,7],[1,6],[1,7],[1,6],[1,7],[1,6],[-2,6],[-2,8],[-3,8],[-2,7],[-2,6],[-2,7]],[[6557,6591],[2,8],[1,1],[1,0],[2,1],[2,4],[0,3],[1,0],[1,-2],[0,-7],[-1,-6],[-1,-18],[-1,-3],[-1,-2],[0,-4]],[[6893,6460],[-1,-4],[-1,-2],[-1,4],[-1,1],[-1,-1],[-1,0],[-3,5],[-1,-5],[-4,-1],[-1,4],[0,3],[-2,-3],[-2,4],[0,4],[-1,2],[-1,1],[-1,2],[-2,5],[0,5],[-1,6],[-3,23],[-2,2],[-11,4],[0,4],[0,11],[0,7],[-4,9],[-1,6],[-2,6],[-3,1],[-3,0],[-2,-3],[-1,-3],[7,1],[1,-2],[2,-2],[-2,0],[-2,1],[-3,0],[-10,-3],[-5,-3],[-8,1],[-9,-4],[-8,0],[-4,-7],[-1,1],[-2,2],[-11,5],[0,3],[-2,2],[-2,-4],[-2,0],[-6,2],[-4,-1],[-2,-4],[0,-5],[-6,1],[-3,2],[-4,-2],[-10,2],[-3,0],[-3,-4],[-2,-2],[-2,-1],[-2,3],[-1,2],[-1,-1],[-2,-3],[-5,-2],[-5,1],[-4,3],[0,1]],[[2733,5481],[-2,0],[-3,2],[-2,5],[0,2],[0,1],[1,5],[2,2],[2,-6],[-1,-2],[0,-3],[3,-3],[0,-3]],[[2803,5536],[-1,-3],[0,2],[1,3],[0,-2]],[[2808,5537],[0,-3],[-2,6],[0,1],[0,5],[2,2],[1,0],[0,-1],[1,-6],[-1,-3],[-1,-1]],[[2715,5602],[0,-2],[-2,5],[1,0],[1,0],[0,-3]],[[2836,5475],[-1,2],[-7,17],[-5,21],[-2,9],[2,1],[1,0],[1,1],[1,3],[-1,6],[3,5],[1,3],[1,0],[2,-6],[2,-3],[4,-4],[2,-2],[-3,5],[-4,7],[-2,4],[-1,6],[-1,-3],[-1,-2],[-1,-1],[-1,2],[0,1],[-3,1],[0,2],[-1,1],[0,-4],[1,-2],[0,-3],[-1,0],[-1,2],[-1,3],[-1,11],[-3,5],[-2,2],[-1,0],[-1,4],[-3,1],[-2,6],[-4,4],[-5,1],[-5,-1],[-2,-2],[-1,-3],[-1,-1],[-3,-3],[-1,-4],[-1,-4],[-1,-5],[1,-2],[-10,-15],[-2,-2],[-5,-1],[-1,-2],[-1,-3],[0,-4],[0,-4],[1,-3],[1,-2],[3,-8],[5,-11],[1,-4],[1,-6],[-1,-3],[-2,-1],[-4,0],[-2,-3],[-1,-3],[-2,-3],[-6,-3],[-5,-1],[-2,4],[0,9],[-3,16],[-1,12],[-1,-2],[-2,-1],[0,-3],[-1,-8],[0,-3],[-2,0],[-3,3],[-3,3],[-5,18],[-1,3],[0,4],[-4,1],[-3,3],[-4,1],[-1,-2],[-2,2],[-1,5],[-3,-2],[-5,1],[-4,2],[-3,-1],[-2,-4],[0,-9],[0,-1]],[[2706,5614],[2,-3],[4,-6],[0,-3],[0,-2],[1,-8],[1,-1],[2,2],[1,-2],[-1,-1],[-1,-2],[0,-6],[3,-3],[2,-3],[5,1],[2,0],[1,0],[-1,6],[-2,3],[0,2],[1,-1],[1,-3],[3,-3],[5,-11],[5,-3],[4,0],[4,2],[6,4],[5,8],[3,4],[12,7],[4,8],[2,1],[2,1],[3,6],[2,5],[2,2],[6,-1],[4,-3],[3,1],[3,-2],[1,-3],[1,-2],[7,1],[5,-2],[12,-10],[7,-10],[3,-11],[9,-13]],[[1436,3601],[-1,0],[0,2],[0,2],[0,1],[1,-1],[0,-2],[0,-2]],[[3044,3960],[-2,4],[-9,13],[-4,7],[-3,4],[-8,11],[-1,4],[-1,12],[-1,3],[-2,4],[-7,6],[-3,3],[-2,5],[-4,3],[-5,8],[-2,6],[-3,4],[-9,5],[-5,6],[-8,8],[-4,5],[-9,6],[-3,3],[-9,14],[-6,5],[-5,8],[-16,17],[-2,5],[-2,9],[-4,5],[-3,11],[-6,7],[-6,9],[-2,8],[-3,10],[-1,6],[-3,5],[-1,11],[-2,5],[2,3],[1,1],[2,17],[-1,9],[-5,15],[-2,7],[-2,10],[-2,6],[-3,12],[-3,10],[-4,8],[-1,3],[-1,3],[-2,3],[-1,8],[-1,16],[-3,8],[-9,14],[0,6],[-1,10],[-2,11],[-10,34],[-2,10],[-3,17],[-2,9],[-2,17],[-4,12],[-2,11],[-3,14],[0,7],[-5,13],[-2,11],[-4,10],[-4,7],[-2,6],[-6,24],[-1,7],[-4,14],[-4,10],[-2,8],[-4,7],[-19,22],[-7,9],[-2,4],[-1,7],[0,4],[2,3],[3,-3],[2,2],[1,5],[0,7],[-2,9],[-6,19],[1,3],[1,5],[-3,9],[-2,7],[-2,5],[2,21],[1,5],[10,21],[2,9],[4,5],[5,9],[4,6]],[[8339,5358],[0,-4],[-1,-1],[-1,1],[-1,2],[-1,-3],[-2,-1],[-2,-4],[-2,-2],[-1,1],[0,4],[4,5],[3,2],[2,5],[1,0],[1,-3],[0,-2]],[[8365,5407],[1,-5],[2,1],[3,-1],[1,-2],[0,-1],[-4,-5],[-2,5],[-3,-3],[-2,2],[-3,-2],[-1,3],[0,4],[4,5],[4,-1]],[[8391,5427],[-3,0],[-1,0],[-2,6],[0,2],[-2,3],[0,3],[3,1],[4,4],[6,-6],[1,-2],[-2,-2],[-1,-5],[-3,-4]],[[8493,5459],[0,-3],[-2,8],[-1,2],[1,6],[2,-3],[0,-10]],[[8414,5486],[0,-2],[0,-1],[-3,-3],[-1,0],[0,5],[1,2],[1,-2],[1,2],[1,-1]],[[8251,5514],[-1,-5],[-2,5],[1,8],[0,2],[2,1],[0,-11]],[[8259,5533],[-2,-1],[0,4],[0,3],[1,0],[1,-1],[0,-5]],[[8466,5588],[-1,-3],[-3,3],[-1,2],[1,3],[1,1],[1,0],[2,-3],[0,-3]],[[8435,5594],[0,-6],[-2,-2],[-2,2],[-1,3],[0,2],[1,-1],[2,4],[1,0],[1,-2]],[[8498,5615],[0,-2],[-1,4],[1,7],[0,1],[1,-5],[-1,-5]],[[8499,5599],[3,-4],[3,1],[-1,-9],[1,-2],[3,-8],[0,-6],[-2,-6],[-1,-3],[-2,-4],[0,-2],[1,-2],[3,-1],[2,-4],[1,-9],[2,-7],[0,-4],[-1,-13],[0,-5],[2,-5],[1,-2],[1,-3],[1,-7],[0,-13],[-1,-5],[-1,-4],[-3,-10],[-4,-8],[-2,1],[-1,-2],[2,-7],[-1,-15],[-1,-11],[-1,6],[-1,5],[-1,15],[-1,6],[-1,6],[-1,5],[-2,5],[-2,13],[-1,-1],[-2,-3],[-1,-2],[0,-4],[-1,-3],[-3,-6],[-2,-6],[-1,-7],[-1,-6],[1,-5],[2,-2],[2,-4],[1,-2],[2,-15],[0,-14],[-2,-7],[-4,-12],[-3,-4],[-2,2],[-1,8],[0,3],[1,7],[0,6],[-1,2],[-1,0],[-1,-1],[-3,-8],[-1,-3],[-1,0],[-2,1],[-8,7],[-6,7],[-5,7],[-4,10],[-1,8],[0,8],[-2,11],[0,4],[0,4],[2,7],[2,4],[1,2],[1,3],[1,4],[-1,4],[0,2],[-4,9],[-2,5],[-6,4],[-1,3],[-2,2],[-1,1],[-2,0],[-1,-2],[-1,-3],[0,-3],[0,-2],[-2,-16],[-3,4],[-3,4],[-1,2],[0,4],[-1,2],[0,2],[-2,-5],[-1,-4],[-2,-1],[-3,0],[0,1],[-1,10],[-2,3],[-3,0],[-3,-6],[-1,-2],[0,-4],[-4,-14],[-2,-10],[-2,-9],[-1,-4],[-1,-2],[-2,1],[-2,2],[-2,7],[1,7],[2,5],[1,5],[2,17],[0,7],[1,2],[3,8],[2,5],[2,1],[5,3],[3,2],[3,1],[3,1],[3,4],[0,4],[0,4],[0,2],[1,2],[1,3],[2,2],[4,2],[1,1],[1,3],[2,5],[2,-1],[1,-2],[4,-2],[3,-4],[1,-7],[1,-3],[0,-11],[0,-3],[-3,-5],[1,-1],[4,5],[2,2],[4,3],[1,1],[1,3],[1,6],[2,8],[1,3],[1,2],[1,0],[5,-4],[3,2],[1,7],[0,11],[1,3],[2,3],[2,-1],[3,-4],[2,-1],[1,3],[1,6],[1,0],[4,-2],[3,2],[1,7],[0,8],[-3,23],[1,6],[2,0],[3,-6],[7,-9],[2,-5],[1,-6]],[[8501,5625],[-1,0],[-1,4],[0,6],[2,8],[2,-7],[0,-3],[0,-2],[1,-4],[-1,-2],[-2,0]],[[8479,5638],[0,-3],[-3,8],[-1,5],[1,0],[2,-2],[1,-8]],[[8460,5626],[0,-2],[-2,0],[-1,0],[-2,-5],[-1,-2],[-7,-2],[-5,2],[-2,3],[-1,5],[0,3],[1,4],[1,2],[4,5],[1,4],[2,4],[5,2],[0,-2],[1,0],[1,0],[2,-4],[3,-2],[-1,-9],[1,-3],[0,-3]],[[8491,5634],[-1,-2],[-1,4],[-1,3],[-2,5],[-1,2],[1,4],[0,7],[1,4],[1,1],[1,3],[1,0],[0,-3],[-1,-8],[2,-11],[-1,-6],[1,-2],[0,-1]],[[8330,5668],[-3,-2],[-1,6],[2,5],[3,-2],[2,-2],[-1,-2],[-2,-3]],[[8452,5675],[1,6],[1,-1],[0,-1],[0,-2],[-2,-2]],[[8406,5667],[-1,-1],[-2,-2],[-1,4],[1,7],[2,5],[1,2],[1,1],[1,0],[0,-2],[1,-3],[-2,-9],[-1,-2]],[[8419,5584],[-1,-1],[-2,0],[-2,3],[-2,13],[-2,3],[-3,2],[-2,2],[-1,2],[-5,13],[0,8],[1,4],[1,4],[2,1],[3,0],[2,0],[4,6],[0,2],[0,10],[0,6],[-1,7],[1,3],[1,3],[2,5],[0,4],[0,5],[0,3],[2,1],[5,5],[1,0],[7,-4],[1,-7],[1,-2],[-2,-7],[0,-4],[-3,-8],[-2,-8],[-1,-12],[-1,-3],[-2,-8],[-1,-4],[0,-9],[0,-3],[0,-3],[4,-15],[1,-2],[0,-3],[-1,-3],[-2,-6],[-1,-2],[-2,-1]],[[8426,5606],[-1,-1],[0,4],[0,5],[2,18],[0,5],[3,10],[2,10],[4,10],[0,5],[3,10],[3,14],[0,5],[0,2],[1,3],[0,3],[2,6],[0,-4],[0,-6],[0,-4],[0,-1],[0,-6],[-1,-9],[1,-11],[-1,-11],[-2,-5],[-2,-4],[-2,-2],[-3,-5],[-1,-7],[-1,-6],[-3,-19],[-4,-9]],[[8437,5715],[1,-8],[-2,0],[-1,6],[1,2],[1,0]],[[8258,5547],[-3,-5],[1,6],[0,5],[3,10],[2,3],[3,8],[2,4],[4,8],[4,8],[1,1],[1,0],[2,1],[2,4],[7,16],[5,11],[5,14],[3,4],[0,2],[5,13],[2,2],[2,1],[1,2],[1,2],[2,6],[0,7],[0,4],[-1,5],[1,8],[1,3],[4,16],[1,3],[1,-2],[0,-3],[0,-6],[0,-4],[0,-3],[-1,-5],[3,-15],[2,-9],[0,-3],[-3,-6],[-1,-1],[-4,-2],[-1,-2],[-2,-4],[-2,-6],[0,-3],[-1,-2],[-7,-4],[-3,-3],[-1,-2],[-1,-3],[0,-6],[-5,-20],[-2,-5],[-2,-5],[-2,-3],[-4,-2],[-2,-4],[-2,-7],[-2,-6],[-3,-5],[-3,-4],[-3,-3],[-3,-2],[-1,-3],[0,-4],[-2,-1],[-1,-1],[-3,-3]],[[8329,5729],[0,-3],[-1,-4],[0,-1],[-1,2],[-2,1],[0,2],[1,0],[2,3],[1,0]],[[8460,5719],[1,-2],[3,0],[2,5],[3,-2],[2,-7],[1,-2],[1,-5],[-1,-11],[0,-9],[0,-2],[2,-2],[1,-2],[1,-3],[1,-3],[0,-8],[2,-6],[0,-3],[-1,-2],[-3,0],[0,-2],[0,-3],[-1,2],[-1,6],[-2,3],[1,-10],[0,-5],[0,-5],[-3,4],[-3,2],[-1,2],[1,6],[0,3],[-2,7],[2,14],[0,3],[-1,3],[-1,6],[-2,5],[-1,0],[-3,-3],[-2,1],[-1,13],[-1,13],[-1,4],[-1,3],[1,3],[1,-1],[2,-4],[2,-2],[1,-1],[1,-3]],[[8460,5727],[-3,0],[-1,3],[-2,8],[2,1],[2,0],[1,-3],[2,-5],[-1,-4]],[[8467,5734],[0,-4],[-1,1],[-1,2],[-1,4],[0,4],[1,-2],[1,-4],[1,-1]],[[8402,5735],[3,-3],[3,2],[3,0],[3,-4],[-1,-3],[0,-3],[6,6],[1,0],[0,-5],[0,-5],[-1,-5],[-1,-5],[-2,-5],[-2,-3],[-2,-2],[-2,-2],[0,-3],[0,-4],[-1,-3],[-2,-1],[-4,-7],[-9,-4],[-3,-3],[-2,-3],[-1,-4],[-1,-1],[-1,2],[0,1],[1,9],[0,3],[0,4],[0,7],[2,6],[0,7],[1,14],[1,18],[0,3],[-1,2],[-4,2],[-1,2],[1,4],[1,2],[2,0],[1,-2],[6,-5],[3,-4],[3,-5]],[[8334,5740],[-3,-2],[0,1],[0,3],[0,2],[-2,11],[1,1],[1,-1],[1,-1],[1,-1],[1,-4],[0,-2],[1,-2],[-1,-5]],[[8335,5767],[2,0],[1,0],[1,4],[1,-5],[2,-4],[-1,-4],[-2,0],[-2,1],[-2,-2],[-2,1],[-2,4],[-1,6],[-1,1],[0,3],[0,2],[0,1],[1,1],[1,-2],[4,-5],[0,-2]],[[8406,5776],[-1,-2],[-3,6],[-2,3],[0,1],[1,3],[4,0],[2,-4],[0,-3],[-1,-4]],[[8478,5789],[2,-5],[0,-4],[0,-3],[1,-2],[2,-1],[2,-2],[1,-3],[-1,-3],[1,-5],[-2,-6],[0,-11],[1,-3],[0,-4],[0,-3],[0,-3],[3,-10],[0,-4],[0,-2],[-1,-3],[2,0],[2,-4],[1,-5],[0,-2],[-2,4],[-1,1],[-6,-1],[-3,2],[-2,0],[-2,7],[-2,1],[-2,4],[-2,8],[-1,4],[2,5],[0,4],[0,4],[-1,-1],[-2,1],[-2,5],[0,2],[-2,3],[-2,5],[-3,2],[-1,1],[-2,5],[-2,5],[-1,9],[-1,10],[7,-2],[8,0],[9,2],[2,-2]],[[8436,5775],[5,-7],[4,-12],[0,-10],[0,-3],[-2,4],[-4,5],[-2,2],[-1,1],[0,3],[-1,2],[-1,2],[-1,1],[-2,6],[-2,1],[-2,-1],[-3,-9],[-4,-7],[0,3],[2,8],[1,13],[0,4],[-1,6],[0,5],[3,-2],[4,-3],[2,-3],[1,-2],[4,-7]],[[8397,5789],[-1,-2],[-1,0],[0,4],[1,2],[0,-1],[1,-3]],[[8391,5779],[-3,-15],[-1,5],[1,3],[-2,3],[0,2],[0,3],[2,3],[0,10],[3,3],[1,0],[0,-2],[0,-5],[-1,-10]],[[8437,5784],[0,-5],[-1,2],[-3,10],[-1,4],[1,3],[3,-4],[1,-10]],[[8424,5808],[2,-9],[-3,6],[-3,4],[-3,7],[-2,3],[-1,1],[1,3],[1,1],[1,-1],[5,-12],[2,-3]],[[8352,5845],[1,0],[5,1],[2,0],[1,-4],[1,-1],[2,-2],[2,3],[2,-3],[2,-6],[3,-5],[2,-3],[0,-3],[-1,-4],[-1,-5],[1,-6],[1,-12],[0,-3],[-2,-4],[-1,-5],[0,-2],[-1,-2],[0,-4],[-1,1],[-1,0],[-1,-2],[-1,-4],[-2,2],[-1,1],[-1,3],[0,2],[-1,1],[-3,5],[-1,4],[0,4],[-1,4],[-1,3],[-1,3],[-1,2],[0,3],[0,8],[-3,10],[0,2],[-3,2],[-1,3],[-1,3],[-1,5],[0,1],[-2,0],[-1,0],[0,4],[2,2],[2,1],[5,-2],[1,-1]],[[8386,5849],[1,0],[1,0],[3,-5],[0,-2],[0,-4],[-1,-5],[-1,-2],[-1,-2],[-3,4],[-2,3],[0,6],[1,8],[2,-1]],[[8340,5861],[0,-4],[-5,6],[0,2],[0,2],[1,1],[2,-3],[2,-4]],[[8453,5854],[0,-4],[-1,2],[-2,0],[-2,-4],[-3,5],[0,3],[2,8],[0,11],[1,3],[1,2],[1,1],[2,-8],[1,-1],[2,-4],[0,-7],[0,-4],[-2,-3]],[[8393,5879],[0,-3],[-6,9],[0,2],[0,1],[0,2],[6,-11]],[[8389,5936],[0,-3],[0,1],[0,-1],[-2,-4],[2,-8],[-1,-6],[-2,0],[0,3],[0,2],[0,3],[-1,3],[-1,4],[-1,3],[1,5],[3,0],[2,-2]],[[8363,6149],[4,-3],[10,-11],[3,-2],[4,-3],[3,0],[2,2],[1,3],[2,7],[2,1],[1,-3],[1,-3],[1,-5],[-1,-5],[-2,-5],[-1,-5],[-1,-18],[0,-6],[1,-5],[2,-9],[1,-2],[2,-3],[1,-2],[0,-4],[0,-4],[2,-1],[1,-2],[0,-4],[-1,-4],[-1,-10],[-6,-23],[0,-5],[-2,-10],[-5,-1],[-5,-5],[-3,-4],[-2,-4],[-1,-7],[1,-3],[0,-3],[0,-3],[-1,-3],[-2,-7],[-1,-5],[-1,-3],[-1,-3],[0,-3],[1,-3],[3,-13],[4,-12],[0,-2],[1,-1],[-2,-4],[0,-6],[0,-5],[3,-15],[1,-4],[1,-3],[1,-3],[2,-3],[4,-4],[2,-1],[2,0],[0,3],[2,1],[0,3],[-2,4],[0,2],[1,1],[1,1],[3,5],[3,3],[3,0],[4,-2],[3,-2],[2,-4],[2,-6],[2,-7],[0,-4],[-1,-3],[0,-4],[2,-2],[3,0],[2,5],[0,6],[-1,3],[1,2],[1,3],[1,-2],[2,-4],[5,-4],[2,0],[1,-1],[2,-3],[2,-2],[-2,-4],[-5,-1],[-2,-4],[2,-7],[2,-6],[2,-4],[2,-5],[0,-5],[-1,-5],[2,1],[2,-1],[4,-4],[1,-1],[1,1],[-1,-15],[-2,-13],[-2,2],[-3,5],[1,7],[1,7],[-1,1],[-1,0],[-2,-2],[-2,0],[-3,1],[-6,7],[-3,0],[0,4],[0,7],[-2,8],[-1,3],[-1,2],[-7,9],[-1,1],[-2,7],[-5,11],[-2,1],[-1,0],[-1,-3],[1,-4],[0,-3],[0,-4],[0,-2],[3,-6],[0,-3],[2,-7],[0,-8],[-2,-4],[-3,4],[0,3],[0,3],[-3,8],[0,2],[-5,7],[-4,8],[-8,9],[-1,1],[-2,-1],[-1,-1],[-4,-4],[-1,-3],[0,-5],[-3,-4],[-4,0],[-3,2],[-3,5],[-2,0],[-2,7],[-3,1],[-3,-6],[0,12],[0,11],[0,3],[2,3],[6,12],[1,4],[0,5],[-2,4],[-2,3],[-3,1],[-2,2],[-1,4],[-1,-7],[1,-10],[0,-6],[-1,-3],[-2,0],[-1,1],[-1,2],[-1,7],[-3,5],[-1,6],[-1,1],[-2,-1],[-1,3],[-1,8],[0,8],[-1,7],[-2,6],[0,6],[-2,24],[0,2],[0,2],[-2,3],[-1,3],[0,3],[0,12],[1,2],[1,2],[1,-2],[2,-3],[1,-2],[1,-2],[3,-7],[1,-1],[3,1],[2,0],[1,3],[0,3],[0,4],[-1,10],[-1,8],[0,7],[0,7],[3,11],[0,8],[0,11],[0,6],[0,4],[-1,5],[-1,7],[5,31],[1,6],[1,6],[0,8],[3,2],[3,4],[2,-1],[1,0],[4,1],[1,0]],[[8386,6166],[-2,-4],[-1,1],[1,4],[0,1],[1,4],[1,1],[2,-3],[-2,-4]],[[8367,6177],[0,-4],[-1,2],[-1,3],[1,2],[0,3],[1,-2],[0,-4]],[[8375,6194],[0,-6],[-2,0],[-2,4],[0,1],[0,2],[0,1],[4,-2]],[[8387,6253],[-1,-1],[0,1],[0,5],[2,2],[1,-1],[-2,-6]],[[8385,6278],[-2,-5],[-1,0],[0,3],[2,5],[1,-3]],[[8643,5226],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[8738,5484],[-2,-1],[-1,4],[1,5],[1,5],[1,1],[1,6],[1,-3],[-1,-10],[-1,-4],[0,-3]],[[9264,4367],[5,-3],[1,-4],[-1,-1],[-5,-1],[-1,2],[-3,2],[-1,4],[-2,-2],[1,3],[-2,3],[-1,4],[0,2],[3,-2],[6,-7]],[[9285,4374],[-1,-4],[-1,2],[-3,-2],[-1,0],[-1,3],[0,1],[2,-1],[0,4],[3,-2],[2,-1]],[[9191,4421],[-1,-5],[-2,2],[0,1],[0,2],[2,1],[1,-1]],[[9196,4453],[1,0],[2,5],[2,1],[1,-2],[-2,-14],[-2,2],[-6,4],[0,5],[-1,2],[-1,6],[-2,6],[-1,4],[1,-2],[2,-4],[5,-8],[0,-3],[1,-2]],[[9180,4493],[4,-5],[2,2],[2,-1],[2,-6],[0,-4],[1,-3],[0,-2],[-2,-2],[0,2],[-1,1],[-3,0],[-3,1],[-4,1],[2,3],[0,2],[-2,6],[0,3],[0,1],[2,1]],[[9175,4484],[0,-1],[-2,1],[-4,8],[0,6],[3,3],[3,-3],[1,-5],[0,-3],[-1,-6]],[[9239,4516],[1,-1],[4,0],[1,-3],[1,-1],[2,-2],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,0],[-2,-1],[-3,3],[-1,1],[0,2],[-2,4],[-3,3],[1,2],[2,1]],[[8988,4535],[0,-2],[-4,3],[-4,6],[-2,2],[-1,4],[2,-3],[5,-3],[4,-7]],[[9196,4529],[1,-4],[-2,5],[1,5],[0,3],[0,1],[-2,3],[1,4],[1,2],[1,0],[0,-6],[0,-3],[-1,-10]],[[8988,4544],[-2,0],[-4,4],[-2,3],[6,-1],[1,0],[1,-4],[0,-2]],[[9111,4702],[-1,-1],[-1,3],[-2,2],[-3,7],[0,7],[0,1],[2,0],[6,-7],[0,-2],[0,-7],[-1,-3]],[[9331,4651],[0,-6],[-1,-1],[-1,2],[-2,-2],[-1,-2],[-1,-2],[-3,1],[-3,1],[-3,3],[-2,3],[-2,6],[-2,6],[1,7],[-1,6],[-4,4],[-1,2],[-2,6],[-2,3],[-2,5],[-1,2],[-1,7],[0,4],[0,12],[0,6],[1,0],[2,-3],[1,-1],[4,-2],[2,-4],[3,-10],[0,-3],[1,-2],[3,-4],[1,-2],[3,-10],[1,-3],[2,0],[1,-2],[3,-4],[2,-5],[2,-6],[1,-5],[1,-7]],[[9087,4725],[-1,0],[-3,5],[0,2],[0,3],[3,4],[2,-3],[1,-8],[-2,-3]],[[9295,4725],[-1,-1],[-1,8],[0,5],[-1,4],[0,3],[2,4],[0,2],[2,-3],[0,-5],[1,-4],[-1,-10],[-1,-3]],[[9055,4767],[-2,-2],[-1,1],[-1,4],[1,4],[2,3],[1,1],[1,-2],[0,-4],[-1,-5]],[[9219,4792],[1,-1],[5,6],[2,-4],[3,-2],[3,-1],[-2,-9],[1,-4],[1,-5],[-1,-6],[-1,-5],[-3,-8],[-1,-1],[-1,-1],[-4,-1],[-1,-4],[0,-4],[2,-6],[2,-7],[-2,-6],[-3,-4],[-2,-2],[-5,1],[-5,0],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-2,-5],[-3,-5],[-4,-5],[-1,-1],[-4,0],[-3,-3],[-1,-3],[-2,-2],[-3,-2],[-3,-4],[-1,-1],[-7,-1],[-9,0],[-3,-1],[-3,1],[-1,2],[-4,8],[-2,3],[-3,0],[-5,-3],[-8,12],[-3,3],[-2,2],[-4,2],[-3,2],[-1,6],[0,7],[2,5],[4,-3],[1,0],[2,2],[1,-1],[2,-1],[6,2],[3,-2],[4,-3],[3,-1],[3,1],[5,3],[1,-1],[4,0],[4,5],[1,18],[1,6],[1,2],[1,-1],[1,-3],[-1,-4],[-1,-3],[0,-7],[1,-7],[2,-6],[3,0],[3,3],[3,1],[3,-3],[3,0],[2,3],[1,1],[2,0],[1,1],[2,6],[1,7],[2,6],[6,9],[1,1],[2,1],[3,-1],[3,3],[0,8],[0,7],[-3,17],[0,3],[0,3],[1,3],[3,0],[3,-1],[2,-3],[1,-2]],[[9267,4804],[0,-2],[-1,2],[1,3],[0,-3]],[[9240,4861],[-1,-5],[-1,3],[-2,4],[1,2],[2,1],[1,-5]],[[9224,4872],[0,-3],[-1,0],[-3,6],[0,2],[1,1],[2,-4],[1,-2]],[[9220,4879],[-1,0],[0,5],[1,2],[1,-2],[1,-4],[-2,-1]],[[8915,4506],[0,1],[0,12],[0,12],[0,12],[0,12],[0,12],[0,13],[0,12],[0,12],[0,12],[0,12],[0,10],[-1,3],[-2,6],[0,8],[2,9],[1,7],[0,5],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,12],[0,13],[0,12],[0,12]],[[8915,4881],[0,7],[0,4]],[[8915,4892],[1,0],[3,0],[2,-1],[14,-13],[4,-5],[1,-1],[2,0],[1,-1],[6,-7],[10,-7],[10,-7],[3,-1],[3,-1],[7,-2],[3,-3],[6,-8],[2,-3],[3,-4],[4,-5],[1,-2],[1,0],[4,-1],[3,1],[2,0],[1,-1],[2,-2],[0,-3],[3,-5],[3,-2],[3,-4],[2,-5],[2,-6],[2,-4],[4,-2],[3,0],[12,-26],[1,-4],[0,-17],[-1,-13],[3,-4],[4,-2],[5,-3],[6,-4],[17,-18],[3,-2],[3,0],[4,0],[1,-1],[3,-3],[1,-2],[3,-6],[2,-6],[1,-2],[1,-1],[0,-4],[1,-10],[0,-7],[-1,-2],[-3,-2],[-10,-1],[-6,1],[-5,-6],[0,-3],[0,-3],[4,-14],[3,-12],[2,-5],[3,-5],[2,-5],[3,-5],[5,-10],[2,-4],[3,-2],[6,-7],[0,-4],[2,-10],[1,-7],[0,-3],[0,-3],[5,-7],[1,-1],[2,-15],[1,-7],[3,-2],[3,0],[9,5],[1,0],[1,-1],[2,-3],[0,-6],[-1,-7],[0,-7],[1,-5],[5,-4],[1,-1],[8,-2],[3,-1],[3,-2],[1,-1],[-1,-3],[-1,-2],[-2,0],[-3,-2],[0,-4],[2,-4],[1,-4],[2,-2],[1,-1],[3,-2],[3,-2],[3,-2],[2,-2],[5,-1],[3,-3],[5,1],[-4,-5],[-2,-1],[-5,2],[-1,-2],[2,-5],[4,-3],[1,-2],[-1,-3],[-4,-4],[-1,-1],[-3,-1],[-5,3],[-4,2],[-1,4],[-1,2],[-3,5],[-2,2],[-3,1],[-3,0],[-5,3],[-12,2],[-3,1],[-3,4],[-2,1],[-1,-1],[-5,-1],[-1,0],[-3,4],[-4,1],[-1,-1],[-1,0],[-5,2],[-3,1],[-3,4],[-2,3],[-1,2],[-2,8],[-2,7],[-3,5],[-7,9],[-1,3],[-3,8],[0,5],[1,6],[-1,-2],[-2,0],[-4,4],[-2,4],[-3,12],[-2,7],[-4,11],[-1,6],[-2,6],[-1,2],[-1,3],[-1,3],[-1,2],[-7,5],[-1,2],[-1,1],[-4,0],[-3,1],[-5,4],[-3,1],[-3,1],[-3,1],[-1,2],[-1,3],[-1,6],[-2,-1],[-3,1],[-2,2],[-3,1],[-1,-1],[-1,-5],[-1,0],[-1,0],[-1,0],[-1,-2],[-2,-3],[-2,0],[-5,3],[-2,2],[-2,4],[-1,3],[-2,3],[-1,3],[2,-6],[5,-23],[-1,0],[-1,0],[1,-4],[-2,-1],[-1,0],[-3,2],[-3,1],[-1,-1],[0,-2],[1,-5],[1,-5],[-4,-2],[-5,-2],[-5,-3],[-5,0],[-3,2],[-3,1],[-2,-1],[-3,-2],[-2,0],[-1,4],[-1,2],[-1,3],[-2,-1],[-2,-1],[4,0],[1,-3],[0,-4],[3,-3],[3,2],[6,-1],[6,-6],[1,0],[1,-1],[4,-6],[2,-5],[2,-6],[0,-3],[0,-6],[-1,-3],[-3,-5],[-5,-3],[-6,-6],[-5,-8],[-4,2],[-2,3],[-1,2],[-3,2],[-2,0],[-7,-1],[-7,-1],[-3,0],[-3,1],[-3,3],[-3,-1],[-2,-3],[-3,-1],[-4,6]],[[9248,4765],[-2,-5],[-1,5],[-2,3],[-1,4],[-2,8],[0,4],[1,5],[0,4],[-1,9],[-2,8],[-7,19],[-2,5],[-2,5],[-2,1],[-3,1],[-1,1],[-3,3],[-2,4],[-6,11],[-4,3],[-1,4],[-10,12],[-2,3],[-4,0],[-3,2],[3,2],[0,4],[0,4],[4,-7],[5,-6],[2,-4],[2,-1],[5,-4],[3,-3],[3,-4],[3,-6],[6,-5],[1,-2],[3,-7],[4,-7],[2,-4],[18,-31],[3,-8],[0,-6],[-1,-2],[-2,-6],[0,-5],[0,-6],[-2,-5]],[[9178,4889],[-6,-1],[-2,1],[-1,4],[-2,5],[-2,1],[0,1],[4,4],[3,1],[6,-5],[0,-2],[0,-2],[0,-5],[0,-2]],[[9107,4911],[-1,-3],[-2,1],[-1,1],[1,0],[1,3],[1,1],[1,-3]],[[9084,4931],[10,-4],[0,1],[0,1],[1,-1],[0,-3],[-2,-1],[-1,0],[-1,-1],[-3,-6],[-2,1],[-2,-1],[-4,0],[-5,2],[-1,-2],[-2,1],[-1,-2],[-1,0],[-1,3],[0,2],[3,1],[-1,5],[2,3],[3,0],[2,1],[6,0]],[[9159,4955],[0,-2],[-2,1],[0,-1],[-4,6],[0,4],[1,4],[2,-1],[2,-4],[1,-7]],[[5655,8099],[2,-5],[0,-3],[0,-2],[0,-3],[1,-2],[4,-9],[2,-8],[2,-3],[3,-4],[0,-1],[-1,-2],[-1,0],[-1,0],[0,-2],[0,-1],[1,-3],[2,-6],[0,-5],[-1,-1],[-2,-3],[-1,-3],[-7,-2],[-2,-3],[-4,-6],[-2,-3],[-4,-6],[-7,-10],[-2,-5],[-2,-3],[-5,-10],[-1,-4],[0,-3],[2,-8],[0,-3],[0,-3],[-1,-3],[0,-1],[2,-3],[2,-3],[0,-1],[0,-1],[-1,-1],[-3,1],[-3,2],[-1,0]],[[5626,7954],[-2,0],[-8,4],[-5,4],[0,2],[-1,3],[-3,3],[-4,2],[-2,2],[-8,1],[-4,0],[-2,-1],[-2,0],[-2,-5],[-2,-1],[-2,0],[-2,1],[-2,2],[-3,2],[-2,-1],[-2,0],[-1,1],[-1,-1],[-1,0],[-2,-1],[-1,-2],[-2,-1],[-2,-3],[-1,-5],[-4,2],[-2,-1],[-1,0],[-2,0],[1,2],[0,2],[0,3],[0,3],[-1,1],[-2,1],[-1,0],[0,2],[-1,1],[-2,3],[-1,5],[-2,1],[-1,-2],[-2,-3],[-2,0],[-3,-7],[-5,0],[0,3],[0,3],[-3,1]],[[5396,8230],[6,-4],[3,-2],[-1,2],[0,2],[0,3],[0,4],[-6,2],[-4,1]],[[5394,8243],[1,-1],[4,-1],[9,6],[16,7],[17,7],[4,0],[4,2],[2,2],[1,2],[2,4],[5,7],[9,3],[4,3],[7,5],[16,5],[7,1],[6,0],[6,-4],[7,-5],[1,-3],[-4,2],[-5,4],[-1,1],[4,-14],[2,-5],[5,-4],[4,-1],[12,2],[4,3],[1,2]],[[5544,8273],[1,-1],[8,-1],[8,-1],[12,0],[14,-1],[13,-1],[15,-1],[16,-1],[1,1]],[[3114,6117],[0,-1],[0,1],[-1,1],[0,1],[0,1],[2,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[3182,6119],[-2,0],[-1,0],[-1,2],[3,2],[3,0],[2,-1],[0,-1],[-4,-2]],[[3163,6139],[1,-1],[0,3],[6,-2],[3,-2],[4,-1],[0,-9],[-3,-3],[-2,-3],[-1,-5],[-4,-5],[-4,-1],[-3,0],[-2,0],[-1,1],[-2,-1],[-3,2],[-2,0],[-5,0],[-2,-2],[-2,0],[-1,0],[-2,1],[-3,0],[-2,2],[1,9],[0,4],[-1,4],[-1,2],[-1,3],[2,1],[1,3],[0,4],[1,0],[2,1],[7,-2],[17,-1],[1,0],[1,-2]],[[8469,7389],[-2,-2],[0,3],[1,3],[2,0],[-1,-4]],[[8625,7566],[1,-3],[1,-4],[1,-2],[1,-3],[0,-1]],[[8629,7553],[-1,-2],[-2,1],[-3,1],[-4,-6],[-2,-1],[-2,-6],[-3,-3],[-2,-3],[-2,-5],[-1,-6],[-4,-5],[-1,-7],[-1,-6],[3,-6],[0,-6],[-2,-10],[1,-12],[-1,-4],[-10,-8],[-3,-4],[-3,-10],[-5,-3],[-3,-5],[-4,-2],[-2,-7],[-3,-4],[-3,-3],[-3,-3],[-5,0],[-4,-2],[-3,-6],[-8,-7],[-1,-5],[0,-8],[0,-6],[-1,-5],[-1,2],[-1,-2],[-1,-4],[0,-6],[3,-1],[2,-3],[3,-1],[3,-2],[5,-11],[4,-5],[1,-2],[3,-2],[2,-4],[1,-3]],[[8517,7285],[-1,0],[-1,1],[-6,5],[-4,-3],[-1,-4],[-2,-1],[-1,7],[-3,0],[-5,7],[-2,-1],[-1,-3],[-2,-6],[-4,-5],[-1,-1],[-2,0],[1,2],[-2,5],[-6,3],[-2,2],[-1,1],[6,6],[1,1],[-1,2],[-1,0],[-5,-1],[-2,2],[-4,0],[-2,1],[5,7],[0,3],[0,3],[3,8],[2,5],[7,6],[3,1],[2,0],[2,0],[-2,3],[-2,1],[-3,0],[-4,3],[0,4],[7,25],[0,2],[-1,6],[-1,6],[-5,4],[-2,0],[-6,7],[-3,3],[-1,-1],[0,-5],[-1,-2],[-2,-1],[-1,6],[-1,5],[-4,4],[-2,3],[1,5]],[[4522,6994],[4,-3],[3,1],[5,-4],[2,-1],[-2,-3],[-2,-3],[-5,1],[-4,3],[-2,3],[0,2],[1,4]],[[4304,7236],[0,-1],[-1,0],[-2,0],[-1,3],[1,2],[2,0],[1,-1],[0,-3]],[[4287,7288],[2,0],[9,1],[2,-1],[0,-4],[-2,-2],[-5,-1],[-8,3],[-3,3],[0,3],[0,1],[1,1],[4,-4]],[[4218,7325],[2,-3],[-3,0],[-2,-1],[-2,1],[-4,0],[-2,3],[0,3],[1,3],[3,0],[7,-6]],[[4204,7329],[-3,0],[-3,4],[4,3],[2,-2],[0,-2],[1,-2],[-1,-1]],[[4228,7331],[-1,-1],[-8,5],[-2,2],[-4,5],[10,-7],[5,-4]],[[4247,7336],[0,-1],[-6,2],[-1,2],[-1,4],[1,1],[2,1],[4,0],[2,-3],[0,-4],[-1,-2]],[[4135,7381],[-2,-3],[-2,1],[0,1],[0,6],[2,2],[2,-3],[0,-4]],[[4794,7249],[-3,-1],[-9,-9],[-3,0],[-5,4],[-10,1],[-3,2],[-4,-3],[-3,0],[-3,-4],[-1,1],[2,8],[3,16],[0,10],[0,8],[-1,8],[-1,5],[2,14],[0,6],[-2,9],[6,-1],[-2,3],[-2,2],[-2,0],[-1,0],[-5,-3],[-3,-1],[0,6],[-1,7],[2,1],[2,1],[2,3],[1,3],[0,6],[1,6],[4,5],[-2,-1],[-2,-3],[-4,-11],[-1,-5],[-3,-2],[-3,-1],[-2,1],[-2,1],[0,4],[0,3],[2,7],[0,9],[2,8],[0,2],[-1,3],[2,3],[2,2],[2,7],[4,17],[5,17],[0,2],[-1,2],[0,5],[3,20],[1,3],[1,6],[1,10],[0,6],[0,4],[0,4],[-2,7],[-2,17],[0,5],[1,3],[-2,0],[-1,4],[0,4],[3,6]],[[5949,6902],[6,10],[2,6]],[[1152,3811],[0,-1],[0,2],[-1,3],[0,1],[1,-2],[0,-3]],[[1214,3948],[-1,-1],[0,1],[0,1],[-2,1],[-1,1],[-1,1],[0,1],[1,-1],[2,-1],[1,-1],[1,-2]],[[1092,3958],[0,-2],[0,1],[-2,2],[-1,2],[3,-3]],[[1195,3960],[0,-1],[-3,6],[2,-1],[1,-4]],[[1088,3969],[0,-1],[-1,1],[-1,3],[-2,3],[0,2],[1,-2],[1,-2],[2,-4]],[[1089,3989],[0,-1],[-1,0],[-1,0],[0,2],[1,3],[1,2],[1,2],[2,2],[1,1],[0,-1],[-4,-4],[-1,-3],[0,-2],[0,-1],[1,0]],[[852,3999],[4,-3],[1,-4],[-1,-3],[-2,0],[-1,2],[-1,5],[-4,-1],[-3,1],[-2,7],[0,3],[1,2],[3,2],[3,-1],[2,-4],[0,-6]],[[838,4007],[0,-1],[-2,1],[0,1],[0,2],[0,2],[3,0],[0,-1],[-1,-4]],[[794,4047],[-1,0],[-1,1],[0,6],[1,1],[1,-2],[1,-5],[-1,-1]],[[1015,4062],[2,-3],[-2,2],[-3,1],[1,1],[2,0],[0,-1]],[[1012,4061],[-1,0],[-3,3],[1,0],[2,-2],[1,-1]],[[793,4060],[-1,-1],[-1,2],[0,1],[0,3],[2,-2],[0,-1],[0,-2]],[[959,4079],[0,-1],[-1,0],[-1,3],[0,3],[-1,3],[-1,2],[0,2],[0,3],[1,-5],[1,-3],[1,-4],[1,-3]],[[1041,4093],[0,4],[1,1],[-1,-5]],[[971,4107],[0,-2],[-1,2],[-2,4],[0,2],[3,-6]],[[1148,4424],[-1,-1],[0,6],[2,-1],[0,-1],[0,-2],[-1,-1]],[[1137,4458],[-2,-4],[0,5],[1,0],[1,-1]],[[1138,4472],[4,-3],[2,1],[-2,-3],[-4,-2],[-1,-2],[-2,1],[-1,4],[4,4]],[[1109,4488],[-1,-1],[-1,4],[0,1],[2,2],[1,-1],[-1,-5]],[[1123,4517],[-1,0],[-1,3],[1,1],[1,1],[1,-1],[1,-1],[0,-1],[-2,-2]],[[1109,4519],[-3,-2],[-1,1],[-1,5],[0,3],[1,0],[4,-1],[1,-2],[0,-2],[-1,-2]],[[6411,6515],[0,4],[1,2],[-2,17],[-1,13],[0,3],[2,3],[1,7],[1,7],[3,15],[3,6],[4,4],[4,-8],[4,-7],[1,-7],[-1,-6],[-1,-9],[0,-5],[0,-3],[2,-7],[1,-8],[0,-5],[-1,-5],[-1,-5],[-3,-13],[-1,-1],[-4,-3]],[[6423,6504],[-2,-1],[-2,-1],[-2,0],[-2,0],[-1,2],[-2,5],[-1,6]],[[5783,7739],[3,-6],[4,-3],[8,-4],[1,1],[0,1],[-1,1],[1,2],[1,0],[2,-1],[4,1],[5,5],[5,1],[5,-3],[2,-3],[2,-3]],[[5825,7728],[-1,-4],[0,-3],[-1,-10],[-1,-4],[-2,-4],[-14,-5],[1,2],[0,5],[-1,3],[2,3],[-4,1],[-1,-2],[-1,-2],[1,-7],[-2,-3],[0,-2],[0,-5],[-1,-2],[0,-2],[2,0],[-1,-4],[-4,-8],[-2,-4],[0,-19],[-1,-11],[-1,-3]],[[5630,7667],[0,1],[0,2],[-1,2],[-2,1],[-2,3],[-1,3],[1,3],[1,3],[2,1],[2,0],[1,1],[0,2],[-3,3],[-4,3],[-4,-2],[-4,-7],[-3,-1],[-2,5],[-3,3],[-5,0],[-3,2],[-1,3],[-2,2],[-4,2],[0,2],[0,1],[2,0],[2,0],[1,2],[0,1],[-2,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,3],[1,2],[0,1],[0,1],[0,2],[-1,1],[-2,1],[-4,2],[-2,3],[-1,0],[-3,1],[-2,3],[-2,4],[-2,2],[0,1],[-1,1],[1,1],[0,1],[-1,4],[1,4],[0,3],[0,2],[-1,0],[-1,-1],[-2,3],[-2,5],[-1,2],[-3,2],[-2,2],[-2,5],[-1,3]],[[5635,7887],[1,1],[4,3],[1,2],[1,2],[2,0],[6,-5],[6,0],[1,0],[1,-1],[8,-3],[1,1],[1,0],[3,-2],[3,0],[3,1],[3,1],[2,-1],[2,-3],[5,-7],[2,-3],[2,1],[3,1],[3,5],[8,5],[6,1],[6,2],[7,2],[2,4],[1,3],[1,5],[4,2],[4,1],[1,1]],[[9056,7618],[-1,1],[1,1],[1,1],[0,-1],[0,-1],[-1,-1]],[[9051,7621],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,1]],[[9065,7631],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[1,-1],[1,-1]],[[9074,7638],[0,-2],[-2,2],[0,3],[0,1],[6,3],[1,-2],[1,-1],[-6,-4]],[[9060,7683],[5,-5],[5,1],[-1,-4],[-2,0],[-4,-5],[-4,-1],[-1,-1],[-6,-9],[0,-3],[-4,-6],[-5,-6],[-1,-11],[-3,5],[0,4],[1,4],[5,7],[3,4],[0,4],[3,4],[1,3],[1,1],[5,14],[2,0]],[[9127,7731],[-5,-4],[-5,-2],[-7,-8],[-2,-5],[-4,-2],[-3,1],[-1,-2],[-1,-3],[-1,-3],[-7,-10],[-3,-7],[-3,-1],[-5,-8],[1,7],[1,3],[4,5],[1,7],[2,5],[5,5],[4,7],[3,2],[3,6],[3,2],[0,4],[1,5],[1,0],[3,-7],[2,0],[5,1],[8,12],[3,2],[2,1],[1,-1],[0,-2],[0,-2],[0,-2],[0,-3],[-1,-2],[-5,-1]],[[6332,7741],[0,-1],[-2,6],[0,3],[1,2],[1,-6],[0,-4]],[[9157,7750],[-4,-3],[-3,1],[6,14],[4,2],[5,9],[9,11],[1,0],[6,0],[-9,-12],[-1,-4],[-4,-5],[-3,-2],[-1,-2],[-6,-9]],[[9221,7825],[-5,-7],[-2,0],[0,3],[-1,1],[5,1],[4,9],[4,5],[2,2],[1,0],[-8,-14]],[[9252,7876],[-1,-3],[-2,0],[0,1],[1,4],[1,1],[1,-3]],[[9279,7937],[-1,-3],[-1,1],[0,1],[2,3],[1,5],[2,0],[1,-1],[0,-2],[-4,-4]],[[9299,7968],[-2,-3],[-3,2],[0,5],[6,16],[2,-1],[-1,-4],[-2,-6],[1,-7],[-1,-2]],[[9330,8027],[-3,-6],[-6,-2],[-2,-2],[-2,-4],[-1,-2],[-3,1],[-2,2],[0,7],[-1,3],[1,2],[3,0],[3,4],[7,2],[2,5],[3,12],[3,4],[3,1],[1,-6],[-1,-6],[-1,-7],[-4,-8]],[[9344,8048],[-1,-2],[-2,0],[-3,4],[-1,2],[1,3],[5,5],[2,0],[1,-1],[0,-6],[-2,-5]],[[9323,8057],[-3,0],[-1,1],[-1,2],[0,3],[2,1],[2,-1],[1,-4],[0,-2]],[[8965,8269],[6,-15],[0,-3],[-1,-4],[-1,-4],[0,-5],[1,-4],[-1,-1],[5,-18],[4,-11],[1,-5],[0,-5],[1,-10],[1,-15],[-1,-6],[0,-5],[-1,-3],[-2,-2],[-1,-5],[0,-16],[1,-8],[1,-6],[2,-6],[0,-7],[0,-3],[3,-3],[1,-3],[0,-4],[0,-6],[1,-2],[1,-2],[6,-43],[2,-14],[6,-23],[3,-13],[2,-7],[1,-7],[1,-7],[2,-8],[2,-8],[5,-6],[2,-4],[1,-3],[0,-11],[-1,2],[-2,8],[-2,5],[-3,6],[-4,4],[-4,9],[-3,2],[-2,2],[-4,2],[-2,0],[-10,-1],[-4,-2],[-4,-4],[-2,-5],[-1,-12],[-9,-39],[-3,-11],[0,-11],[0,-8],[1,-4],[2,-8],[2,-5],[2,-2],[2,-2],[1,-2],[1,-2],[1,-6],[3,-13],[2,-9],[1,-3],[3,0],[2,0],[2,0],[1,-3],[1,-10],[1,-10],[0,-3],[-2,-8],[0,-3],[0,-3],[-1,-3],[-1,-3],[0,12],[-1,8],[-1,7],[-2,5],[-6,2],[-6,1],[-1,0],[-2,3],[-1,3],[-2,0],[-1,-1],[-3,-3],[-2,-5],[-2,-6],[-1,-6],[-3,-16],[-1,-5],[-2,-5],[-2,2],[-2,3],[0,5],[-1,5],[-2,16],[1,15],[4,20],[1,6],[-1,6],[-1,6],[0,12],[0,3],[1,6],[2,7],[2,5],[1,7],[-2,16],[-3,11],[-3,11],[-1,3],[0,3],[3,13],[1,6],[1,14],[2,7],[1,8],[0,38],[0,6],[-2,12],[-1,7],[1,9],[2,6],[1,7],[0,13],[-3,12],[-2,6],[-4,6],[-3,4],[-1,2],[1,1],[1,3],[-2,3],[-2,5],[0,20],[1,5],[2,6],[1,6],[2,14],[0,15],[-1,6],[0,11],[0,3],[4,4],[4,3],[2,-1],[3,-5],[2,0],[1,1],[3,2],[2,5],[-2,3],[1,4],[3,1],[1,4],[-2,0],[2,5],[0,4],[-1,5],[-5,10],[-4,8],[6,0],[2,2],[1,3],[1,3],[2,-1]],[[9667,8279],[1,-3],[-11,11],[-6,6],[-1,3],[2,0],[2,-3],[4,-2],[4,-5],[5,-7]],[[8810,8311],[-4,-11],[-2,0],[-2,2],[-4,0],[-1,0],[2,3],[6,5],[2,0],[2,1],[1,0]],[[8831,8310],[2,-2],[4,0],[1,-1],[-3,-3],[-2,-5],[-1,-5],[-1,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-1],[-4,10],[-1,3],[-6,-5],[-1,0],[1,6],[3,7],[2,1],[3,8],[1,2],[9,-5],[1,-1]],[[5544,8273],[4,5],[3,5],[2,7],[1,5],[0,5],[4,2],[8,0],[3,2],[5,7],[4,8],[2,3]],[[5582,8321],[-3,-5],[-7,-12],[2,-2],[2,0],[4,-3],[3,0],[5,2],[1,10],[0,9]],[[9628,8295],[0,-8],[-3,4],[-2,4],[-2,0],[-2,2],[-2,4],[-4,6],[-1,2],[0,4],[-2,3],[-7,6],[2,1],[3,3],[8,-2],[2,-1],[-1,-4],[0,-4],[4,-10],[2,-3],[3,-3],[2,-4]],[[9182,8543],[-2,-1],[-1,2],[0,1],[3,3],[2,3],[2,-2],[0,-2],[-4,-4]],[[9544,8518],[-4,-5],[-1,1],[0,1],[0,2],[4,3],[4,10],[2,8],[-1,2],[0,3],[12,4],[9,8],[2,0],[1,-7],[1,-8],[-1,-5],[-10,-3],[-9,-5],[-9,-9]],[[5994,8908],[1,-2],[0,-4],[0,-3],[0,-2],[-2,-1],[-2,5],[-2,0],[-2,2],[-1,3],[2,1],[1,-1],[3,3],[2,-1]],[[6944,8986],[-5,-1],[-5,5],[-5,9],[1,2],[3,-1],[5,0],[3,-1],[5,-1],[-1,-4],[0,-2],[2,-2],[-2,-3],[-1,-1]],[[6186,8998],[-1,-1],[-6,3],[0,2],[0,1],[2,1],[3,-1],[1,-3],[1,-2]],[[6,9131],[5,-2],[2,0],[2,0],[3,-4],[2,-1],[11,-4],[5,-5],[5,-5],[-2,1],[-4,3],[0,-4],[1,-3],[6,-2],[7,-2],[4,-3],[1,-2],[1,-4],[-1,-3],[4,1],[3,3],[-2,2],[-11,9],[-3,2],[4,-1],[15,-11],[5,-4],[-2,0],[-1,-3],[1,-1],[2,1],[3,0],[3,-1],[4,-3],[7,-3],[43,-26],[1,-5],[1,-2],[1,-2],[0,-5],[-4,-5],[7,0],[0,1],[2,2],[2,2],[2,-2],[2,-4],[-1,-4],[-1,-4],[0,-7],[1,-5],[2,-3],[1,-2],[0,-8],[-3,-4],[-1,-6],[2,0],[5,-1],[2,-1],[3,-3],[0,-2],[1,-4],[1,-4],[1,-1],[4,5],[1,1],[3,1],[2,-5],[-1,-9],[1,0],[1,1],[1,2],[1,2],[2,3],[2,4],[-2,3],[-2,2],[-5,1],[-3,3],[-1,3],[3,1],[2,2],[1,6],[0,2],[0,3],[-2,4],[-2,3],[-3,1],[-2,2],[-2,0],[-3,1],[-1,0],[0,2],[3,1],[16,0],[6,2],[2,0],[3,-2],[9,-2],[0,-1],[-2,-1],[-3,-5],[0,-3],[0,-3],[2,-1],[3,2],[-2,2],[0,4],[1,1],[1,1],[3,-3],[2,-1],[9,-1],[3,1],[1,1],[-2,1],[-12,4],[0,2],[11,-3],[5,-2],[5,-1],[6,0],[7,-2],[6,-7],[6,-8],[6,-5],[6,-4],[10,-10],[2,-1],[1,-2],[-2,-1],[-2,-3],[3,2],[4,1],[1,0],[2,-1],[1,-3],[0,-2],[-1,-2],[10,0],[3,-1],[1,-5],[-3,-4],[-1,1],[-2,1],[-1,0],[-5,-1],[-6,-5],[-4,-4],[-1,-2],[1,-7],[-1,-3],[-3,-2],[-6,1],[-3,2],[-3,1],[-3,3],[-4,4],[-2,0],[-1,-1],[2,-2],[3,-3],[4,-5],[2,-4],[-1,-3],[-2,0],[-1,0],[-4,1],[-3,1],[-9,-2],[-3,0],[-1,0],[-1,2],[-4,2],[-3,0],[-2,1],[-1,2],[-3,3],[-5,1],[-3,0],[-2,0],[7,-5],[5,-6],[-1,-2],[0,-1],[3,0],[2,0],[0,-2],[-1,-7],[-1,-1],[-10,-2],[2,-1],[3,-1],[3,1],[2,-2],[2,-4],[0,-5],[-2,-3],[-3,-2],[-5,-3],[-6,-2],[-3,1],[-3,-1],[-1,-2],[-1,-2],[2,2],[3,-1],[3,-2],[0,-2],[-3,-2],[0,-1],[1,-3],[-1,-2],[1,-1],[3,0],[4,-2],[4,-2],[1,-2],[1,-2],[1,-2],[-1,-2],[-8,0],[-1,0],[-1,3],[-1,3],[-3,1],[-1,-1],[1,-8],[-1,-3],[-2,-1],[-4,-1],[-3,0],[-3,4],[0,3],[2,2],[0,3],[-1,3],[-2,-4],[-2,-3],[-3,-3],[-2,-1],[-2,1],[-5,2],[-2,3],[-6,7],[-3,4],[-7,4],[-7,4],[-6,2],[-3,0],[-3,-1],[-4,0],[-1,1],[-2,2],[-1,1],[-5,5],[-4,4],[0,2],[1,3],[-1,8],[-2,7],[-4,7],[-13,5],[-11,3],[-3,1],[-4,-1],[-8,-6],[-6,-1],[-17,0],[-3,1],[-2,2],[-1,3],[1,6],[0,3],[-1,1],[-1,0],[-3,2],[-3,4],[-3,5],[-2,5],[3,1],[3,-2],[0,2],[1,5],[2,2],[1,2],[2,7],[0,5],[-3,-3],[-3,-7],[-2,-2],[-2,0],[-1,-1],[-3,1],[-2,2],[0,7],[-1,2],[-1,-2],[-1,-2],[-2,-1],[-2,-1],[1,-4],[0,-3],[-3,-1],[-5,-1],[-2,3],[-2,-4],[-1,-6],[0,-6],[2,-6],[2,-3],[5,-4],[3,-3],[0,-4],[0,-3],[-3,-4],[-2,-4],[-3,-8],[-2,-4],[-8,-7],[0,15],[0,14],[0,15],[0,14],[0,15],[0,14],[0,15],[0,14],[0,15],[0,14],[0,15],[0,14],[0,15],[0,14],[0,15],[0,14],[6,-2]],[[6396,9145],[0,-6],[-2,-2],[-1,-1],[-1,4],[-1,2],[-5,-5],[-2,-4],[-6,-7],[-13,-5],[-7,-2],[-7,-1],[-6,5],[-4,8],[0,2],[-1,4],[0,3],[1,5],[1,5],[2,5],[6,5],[6,3],[3,1],[8,0],[21,-12],[5,-3],[3,-4]],[[6870,9166],[-2,-6],[-5,1],[-1,1],[-1,1],[5,5],[4,0],[0,-2]],[[9484,9128],[-1,0],[1,4],[0,2],[-3,3],[-5,2],[-1,2],[0,5],[1,8],[-2,4],[0,4],[6,4],[3,3],[2,3],[1,0],[2,-3],[0,-5],[-2,-4],[-4,-1],[-1,-3],[1,-5],[0,-5],[0,-6],[3,-5],[1,-3],[-1,-2],[-1,-2]],[[9699,9169],[-8,-1],[-16,5],[-5,3],[-5,4],[-4,3],[-1,1],[1,2],[1,2],[5,4],[4,2],[5,0],[28,-8],[1,-1],[1,-2],[-1,-3],[-2,0],[-1,-2],[-1,-7],[-1,-1],[-1,-1]],[[6679,9190],[0,-3],[0,-6],[-1,-4],[-3,0],[-3,-2],[-5,2],[-3,-2],[-3,0],[-3,1],[-2,1],[-2,1],[0,3],[-2,4],[-3,2],[-3,0],[-4,2],[-1,-1],[-3,-2],[-1,1],[-8,9],[-1,3],[-1,2],[-1,2],[-2,6],[1,3],[3,2],[1,1],[4,4],[5,2],[2,0],[1,-2],[6,-4],[3,-3],[3,-4],[3,-3],[9,-5],[6,-5],[6,-4],[2,-1]],[[6848,9225],[0,-2],[-1,1],[-2,3],[-1,3],[0,6],[0,2],[1,1],[1,0],[-1,-4],[3,-10]],[[9463,9242],[-1,-1],[-4,1],[-2,2],[0,4],[0,1],[3,-1],[2,-2],[2,-4]],[[6469,9274],[2,-4],[3,-3],[2,0],[1,-2],[0,-3],[-3,-6],[-1,-2],[2,-1],[0,-1],[-3,-1],[0,2],[-2,3],[-3,2],[-1,1],[-2,4],[-5,4],[-3,0],[-4,2],[-1,0],[-1,3],[2,2],[6,1],[3,0],[3,-1],[0,2],[0,1],[1,-1],[4,-2]],[[9967,9242],[-2,0],[-4,11],[0,2],[1,4],[4,4],[2,3],[10,6],[8,7],[5,1],[5,4],[3,0],[0,-32],[-3,-1],[-7,-4],[-14,-1],[-8,-4]],[[8831,9283],[-7,-5],[-2,0],[-3,3],[-2,0],[-1,0],[-2,-1],[-2,0],[-5,2],[-1,2],[1,1],[1,1],[1,0],[4,1],[14,0],[1,0],[3,-2],[0,-2]],[[31,9287],[12,-2],[3,-1],[4,-3],[2,-1],[2,-1],[2,-3],[5,-3],[6,-4],[2,-1],[0,-2],[0,-3],[-8,-6],[-7,-2],[-13,-2],[-18,-4],[-7,-1],[-2,0],[-7,3],[-7,1],[0,12],[0,12],[0,8],[4,1],[5,2],[4,0],[4,-1],[4,0],[4,2],[3,0],[3,-1]],[[7156,9329],[-14,0],[-6,0],[-1,2],[0,3],[7,4],[3,3],[4,4],[5,4],[5,0],[15,-4],[2,-3],[0,-2],[-6,-3],[-4,-2],[-6,-5],[-4,-1]],[[7208,9355],[-2,-1],[-16,2],[-5,3],[-1,3],[0,3],[14,12],[6,-4],[1,-3],[4,-4],[0,-9],[-1,-2]],[[7073,9364],[0,-1],[-2,1],[-4,2],[-7,4],[-2,2],[1,3],[1,3],[6,1],[6,-1],[3,0],[7,-3],[-7,-2],[-2,-4],[0,-2],[1,-1],[-1,-2]],[[8340,9376],[-7,-2],[-6,0],[-4,4],[3,2],[6,1],[3,-1],[4,-3],[1,-1]],[[6536,9389],[13,-2],[10,-1],[6,-2],[2,-1],[-1,-4],[-2,-1],[-4,-5],[0,-3],[0,-5],[0,-3],[-2,-2],[-1,-1],[-7,0],[-3,-2],[0,-2],[0,-3],[-3,-5],[-5,-1],[-1,-2],[1,-2],[-2,-3],[0,-3],[1,-2],[0,-4],[4,-5],[-1,-2],[-3,-5],[0,-5],[-3,-5],[5,-4],[2,-5],[2,-6],[6,-10],[6,-10],[12,-14],[12,-11],[4,-3],[12,-5],[2,-1],[2,-2],[-5,-4],[-5,-2],[0,-2],[-3,-1],[-14,4],[-1,0],[-1,3],[-2,2],[-3,0],[-4,-1],[2,-3],[2,0],[4,-4],[-1,-2],[-2,0],[-8,5],[-1,0],[-1,-2],[-4,2],[-1,-2],[-3,0],[-2,1],[0,2],[-1,1],[-12,-1],[-5,0],[-6,1],[-6,3],[-1,-1],[0,-2],[-2,0],[-5,3],[-4,2],[-13,3],[-10,3],[3,2],[4,1],[0,2],[-1,3],[0,3],[2,2],[5,-1],[0,3],[2,1],[5,-2],[2,1],[-8,4],[-8,6],[1,2],[-3,1],[-3,0],[-3,3],[1,5],[2,3],[-1,1],[-13,-3],[-6,1],[-8,1],[-6,-2],[-7,-1],[-3,1],[-4,2],[-3,2],[-2,5],[-2,8],[0,3],[0,6],[1,3],[3,5],[2,2],[4,2],[3,1],[5,-1],[5,0],[2,1],[2,3],[2,3],[3,2],[1,1],[1,2],[1,3],[1,3],[1,2],[3,4],[-1,3],[0,2],[2,2],[-6,1],[-2,2],[-3,2],[1,1],[1,2],[6,5],[3,1],[3,1],[3,0],[4,-1],[3,1],[-4,4],[0,2],[-1,5],[0,3],[2,2],[3,2],[4,1],[3,2],[3,1],[4,1],[6,-2],[3,1],[3,1],[10,4],[4,1],[3,0],[5,-2],[6,-3]],[[6962,9377],[-8,-3],[-2,0],[-5,0],[-2,-1],[-3,3],[0,3],[1,2],[1,3],[0,8],[4,5],[5,2],[17,3],[2,-1],[3,-2],[3,-1],[3,-5],[3,-2],[4,-3],[1,-4],[0,-3],[-8,0],[-13,-3],[-6,-1]],[[7131,9398],[-2,-1],[-12,2],[-4,3],[1,2],[3,0],[14,-6]],[[7097,9398],[-5,-1],[1,2],[5,4],[10,2],[3,-1],[1,0],[-4,-4],[-2,-2],[-9,0]],[[8949,9424],[7,-2],[5,-3],[20,-14],[2,-3],[1,-4],[1,-12],[-1,-1],[-7,-1],[-10,2],[-7,0],[-7,0],[-6,2],[-15,2],[-11,4],[-12,4],[-3,0],[-7,-1],[-10,-4],[-3,-1],[-4,0],[-3,4],[7,2],[6,0],[7,2],[5,5],[3,3],[6,9],[2,3],[3,2],[3,1],[3,0],[11,2],[7,0],[7,-1]],[[8459,9421],[-2,0],[-3,2],[-1,2],[0,1],[3,1],[3,-1],[2,-2],[1,0],[-3,-3]],[[7320,9435],[-1,-2],[-2,0],[-1,0],[-7,2],[-9,1],[2,2],[7,1],[10,-1],[3,-2],[-2,-1]],[[7297,9436],[-3,-2],[-4,1],[-2,1],[-2,2],[2,1],[4,1],[2,-1],[2,-2],[1,-1]],[[8782,9425],[-2,-1],[-2,2],[-9,8],[-2,4],[-5,3],[-2,1],[0,3],[7,-2],[11,-7],[6,-7],[-2,-4]],[[8916,9430],[-14,-4],[-3,0],[-6,5],[-2,10],[2,3],[3,2],[3,0],[13,1],[2,-1],[3,-1],[1,-2],[0,-3],[-1,-7],[-1,-3]],[[7354,9458],[-2,-4],[-7,2],[-2,1],[5,2],[3,2],[6,0],[-3,-3]],[[8149,9454],[-1,-3],[-2,-2],[-1,-3],[-2,-1],[-6,-3],[-4,-6],[-1,0],[-16,3],[-3,1],[-5,3],[-8,4],[-3,4],[1,1],[2,1],[7,-1],[2,1],[1,4],[0,3],[1,2],[2,1],[24,-4],[9,-3],[3,-2]],[[7406,9488],[3,-1],[7,2],[1,0],[2,-3],[-3,-5],[-2,-1],[-7,1],[-8,0],[-4,2],[2,3],[5,2],[3,1],[1,-1]],[[7282,9514],[1,-2],[0,-2],[-1,0],[-4,0],[-2,-6],[-2,1],[-1,3],[-4,-2],[-2,1],[-2,2],[-1,1],[-1,1],[6,5],[4,-2],[2,0],[0,3],[0,2],[3,1],[4,0],[0,-6]],[[9077,9512],[7,-1],[11,5],[1,0],[26,-2],[2,-1],[1,-3],[-1,-2],[-1,-2],[4,-2],[8,-1],[5,2],[16,-1],[13,-1],[5,-4],[3,-1],[3,-3],[3,2],[2,2],[2,0],[2,0],[-5,-13],[-2,-1],[-7,-3],[-14,-5],[-6,-1],[-16,0],[-21,2],[-5,1],[-4,2],[-6,5],[-3,1],[-10,2],[-4,0],[-6,4],[-6,3],[-15,5],[1,6],[2,6],[2,5],[3,5],[3,1],[6,-4],[-1,-5],[2,-3]],[[8775,9514],[-5,-2],[-8,1],[0,4],[2,2],[2,5],[-1,3],[0,5],[1,3],[3,5],[2,-3],[2,-4],[1,-2],[6,-4],[2,-2],[-6,-5],[0,-2],[1,-2],[-2,-2]],[[9246,9556],[-3,-2],[-6,3],[2,2],[5,1],[1,-2],[1,-2]],[[8889,9539],[3,-1],[4,0],[3,-1],[3,-7],[1,-1],[2,-1],[1,-1],[5,0],[2,1],[1,3],[0,3],[0,3],[0,4],[0,4],[1,2],[2,1],[7,5],[5,4],[7,-2],[8,-4],[12,-8],[6,-2],[7,-2],[7,-1],[4,0],[7,3],[3,0],[44,-17],[1,-1],[2,-2],[-9,-2],[-7,-5],[-2,-3],[3,-2],[2,-3],[-14,-10],[-5,-3],[-5,-1],[-11,3],[-7,-1],[-6,2],[-7,6],[-3,3],[-2,5],[-1,6],[1,6],[4,1],[3,4],[0,2],[-1,3],[-11,0],[-7,-1],[-6,-2],[2,-12],[1,-4],[2,-3],[10,-13],[2,-1],[6,-3],[6,-5],[-10,-6],[-4,-2],[-4,-1],[-3,0],[-2,2],[-3,3],[-3,3],[-3,2],[-6,0],[-7,-3],[-6,-1],[-18,-2],[-5,-2],[-6,0],[-7,2],[-7,4],[-2,0],[-2,-1],[-2,-2],[-1,-4],[-2,-5],[-3,-4],[-3,-2],[-3,0],[-3,1],[-4,2],[-21,6],[-3,1],[-2,3],[-6,8],[-4,2],[-3,1],[-6,4],[-6,6],[-1,3],[-1,3],[1,2],[5,-1],[4,0],[-2,12],[1,12],[3,2],[9,-1],[-3,3],[-2,5],[1,3],[2,2],[4,2],[6,0],[2,2],[1,2],[3,2],[6,1],[11,4],[3,-1],[3,-2],[2,-3],[3,-1],[9,-4],[6,-4],[8,-7]],[[7681,9565],[2,-1],[-1,-2],[-3,1],[-3,-2],[0,-2],[-2,-3],[-5,2],[-7,0],[-5,2],[-10,2],[0,2],[2,2],[6,-2],[5,2],[10,-1],[3,2],[8,-2]],[[7690,9561],[-2,-1],[-1,0],[-1,1],[0,3],[3,4],[0,1],[1,1],[3,-1],[2,-2],[-2,-4],[-3,-2]],[[8124,9586],[4,-4],[1,-3],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-4,2],[-2,4],[-4,0],[-5,4],[-1,1],[2,0],[7,-1],[3,2],[3,-1]],[[7710,9584],[-1,-1],[-3,1],[-3,2],[-1,4],[2,1],[6,-7]],[[9142,9588],[-21,-1],[2,2],[7,4],[19,2],[-4,-2],[-1,-4],[-2,-1]],[[6882,9563],[-11,-5],[-7,-3],[-7,-2],[-6,-1],[-11,-4],[-18,-5],[-12,-4],[-12,-3],[-14,-4],[-13,-3],[-3,0],[-10,-4],[-7,-1],[-28,-9],[-12,-6],[-4,-1],[-3,0],[-3,-2],[-3,-3],[-6,-4],[-3,-3],[-3,-2],[-2,-1],[-3,0],[-2,0],[-5,-3],[-1,-2],[6,-2],[1,-2],[-2,-2],[-4,-2],[-2,-2],[-4,-3],[-2,-1],[-7,1],[0,-3],[1,-2],[-1,-2],[-2,-2],[-2,1],[-10,4],[-2,-1],[0,-3],[-1,-4],[-1,-3],[-2,-1],[-3,-1],[-11,2],[-1,-2],[2,-3],[2,-5],[1,-3],[-1,-3],[-5,-6],[-19,-7],[0,-2],[2,-5],[1,-3],[-1,-2],[-2,-2],[-3,0],[-2,0],[-4,3],[-4,1],[0,-2],[5,-4],[2,-5],[-3,-3],[-9,-6],[-4,-8],[-9,-4],[-6,0],[-6,1],[-5,2],[-14,0],[-7,2],[-8,4],[-6,0],[-6,-2],[-7,-4],[-5,8],[2,3],[-10,9],[-2,4],[2,3],[3,1],[6,4],[6,3],[6,0],[1,1],[3,4],[2,4],[3,2],[3,3],[9,14],[2,1],[18,3],[2,1],[-6,2],[-5,0],[-3,1],[-1,2],[-1,3],[2,1],[8,8],[8,6],[8,4],[-2,1],[-3,2],[-9,0],[-4,3],[-1,2],[0,2],[3,3],[3,1],[3,0],[4,-2],[3,-1],[2,-3],[3,0],[8,9],[-1,2],[-1,3],[1,1],[4,2],[3,0],[6,0],[9,-2],[0,1],[2,5],[2,4],[9,5],[-1,1],[0,3],[10,3],[7,4],[6,4],[3,1],[3,0],[7,2],[12,3],[7,2],[2,5],[5,2],[9,0],[3,0],[2,-2],[4,0],[2,1],[1,2],[0,3],[0,4],[3,2],[1,1],[11,0],[6,0],[12,-3],[7,-1],[8,1],[6,0],[15,4],[26,4],[7,3],[6,4],[4,0],[3,0],[3,1],[7,3],[3,1],[3,0],[3,2],[3,5],[2,3],[8,4],[14,7],[12,2],[7,3],[4,0],[10,-2],[13,-3],[6,-4],[4,-4],[2,-2],[0,-3],[-1,-3],[-1,-3],[1,-2],[-9,-8],[-10,-8],[-1,-1],[-11,-3]],[[7674,9610],[-1,-2],[-1,0],[-4,0],[-6,-1],[-3,0],[-2,2],[-9,0],[-2,0],[4,2],[12,3],[19,6],[1,-3],[-1,-1],[-3,-4],[-4,-2]],[[7486,9619],[-6,0],[-4,1],[-1,1],[2,3],[2,2],[10,0],[1,-1],[0,-2],[-4,-4]],[[7983,9622],[-3,0],[-1,3],[3,4],[3,0],[3,-1],[1,-1],[1,-1],[0,-2],[-7,-2]],[[6367,7792],[0,-3],[-3,-1],[0,-3],[-1,-2],[-8,-5],[-2,0],[-1,-1],[0,-4],[0,-3],[2,-3],[-1,-1],[-1,-1],[-2,1],[-1,2],[-1,0],[-2,0],[-6,-10],[-3,-2],[-3,-1],[-6,-3],[-2,0],[-2,1],[-1,-2],[0,-4],[-2,3],[-2,2],[-1,1],[1,-5],[1,-4],[-1,-3],[-1,-2],[0,-1],[-2,-1],[0,-7],[-1,-5],[-2,-4],[-2,-7],[-2,-3],[-1,-4],[-1,-5],[-1,1],[-1,2],[-1,-3],[0,-2],[-3,-4],[-3,-4],[-1,-6],[0,-3],[0,-3],[1,-2],[5,-2],[3,-2],[2,-5],[3,-4],[2,-6],[2,-6],[2,-13],[1,-13],[3,16],[2,3],[-1,-4],[-1,-7],[-2,-11],[0,-7],[0,-7],[0,-3],[-1,-11],[1,-2],[1,-2],[3,-4],[2,-5],[0,-8],[1,-2],[2,-2],[7,-15],[4,-11],[2,-6],[2,-7],[2,-2],[1,-1],[3,-4]],[[6110,7619],[-3,3],[-10,15],[-5,10],[-17,23],[-2,2],[-9,3],[-4,3],[-9,17],[-4,-3],[-4,1],[-2,1],[-2,3],[-2,3],[-2,7],[-2,4],[-7,6],[-9,3],[0,1],[0,2],[7,4],[2,3],[-4,3],[-1,0],[-2,1],[2,3],[2,1],[4,-3],[3,-5],[3,-1],[2,2],[10,4],[1,3],[0,3],[-1,0],[-1,1],[0,4],[2,5],[5,9],[2,12],[2,2],[2,-1],[0,-3],[0,-2],[2,4],[1,5],[4,0],[2,-1],[3,1],[-5,9],[-7,9],[-3,-1],[-1,2],[-3,7],[-2,6],[3,0],[3,-1],[5,5],[2,0],[3,-1],[5,-1],[0,4],[-2,5],[5,3],[5,2],[9,7],[4,2],[1,1],[0,2],[-1,6],[-2,4],[-5,0],[-2,-6],[-7,-2],[-4,1],[3,3],[2,2],[1,1],[-5,-1],[-3,-4],[-7,-5]],[[6061,7836],[0,3],[0,2],[0,2],[1,2],[1,1],[0,1],[-1,1],[-1,0],[0,2],[0,1],[1,2],[0,2],[0,4],[1,5],[2,3],[4,1],[4,2],[2,3],[3,7],[2,2],[4,-1],[3,-1],[7,0],[7,1],[2,0],[1,2],[0,5],[1,4],[2,8],[2,4],[0,2],[-1,1],[-1,0],[-1,1],[0,2],[1,1],[0,4],[0,4],[-1,3],[-2,2],[-3,1],[0,4],[1,5],[2,2],[1,2],[3,-1],[2,1],[1,1],[-1,2],[-3,1],[-3,2],[-2,3],[0,3],[2,2],[3,1],[3,4],[2,4],[2,3],[0,4],[0,3],[-2,4],[0,4],[1,3],[0,2],[-2,1],[-2,-1],[-2,-1],[-3,0],[-4,5],[-4,4],[-3,1],[-2,0],[-1,3],[-1,3],[-1,1],[-2,-1],[-3,-1],[-3,0],[-3,4],[-4,4],[-3,0],[-3,0],[-5,6],[-1,0],[-1,-2],[-1,-4],[0,-1],[-1,-1],[-2,0],[-2,2],[-7,9],[-3,6],[-1,5],[-2,3],[-2,4],[-2,0],[-3,-1],[-2,-2],[-1,-1],[-4,0],[-7,-3],[-1,-3],[-2,-2],[-2,2],[-2,2],[-3,1],[-2,-1],[-2,2],[-1,3],[-2,3],[-3,0],[-4,1],[-2,-1],[-4,-4],[-2,1],[-1,5],[-2,1],[-2,5],[0,4],[0,2],[1,2],[0,3],[-1,2],[-1,2],[-1,6],[-1,3],[0,2],[1,2],[-1,1],[-1,1],[-2,-1],[-1,1],[-1,4],[-1,4],[-1,1],[-2,0],[-3,-1],[-3,-1],[-1,0],[-3,2],[-4,2],[-7,0],[0,1],[0,1],[2,2],[-1,2],[-1,1],[0,4],[0,4],[-1,4],[-1,3],[-1,2],[0,2],[3,1],[4,1],[1,2],[0,2],[-8,12],[-3,10],[-2,6],[-3,4],[-3,2],[-3,-1],[-4,0],[-5,1],[-4,-1],[-7,-5],[-2,0],[-5,2],[-4,1],[-2,0],[-1,0],[-1,-2],[-2,-9],[-2,-2],[-2,-2],[-3,0],[-1,0],[-3,1],[-3,2]],[[5778,8570],[1,5],[-1,5],[0,5],[1,3],[2,0],[2,-3],[3,-2],[3,2],[1,5],[2,2],[2,-2],[4,0],[3,0],[3,1],[0,1],[1,3],[2,4],[2,2],[15,-3],[12,-4],[1,1],[1,3],[-4,3],[-2,2],[-3,5],[-4,5],[-4,0],[-6,-2],[-8,1],[-7,9],[-5,2],[-3,7],[-1,3],[3,-3],[1,3],[0,4],[-2,3],[-2,1],[-9,-6],[-10,-2]],[[5857,9181],[5,-1],[11,-5],[3,0],[3,2],[3,5],[3,1],[3,-1],[1,2],[-2,4],[1,3],[11,-5],[5,-4],[10,-3],[2,-2],[0,-3],[0,-3],[-2,-1],[-5,0],[-16,4],[-2,-2],[2,-3],[4,-2],[2,-4],[7,0],[7,-2],[3,1],[1,-1],[-3,-4],[1,-1],[8,3],[4,1],[2,0],[0,-3],[-1,-4],[0,-3],[-3,-7],[-3,-2],[-2,-3],[5,2],[3,2],[5,9],[2,2],[15,0],[4,-1],[14,-4],[4,-1],[5,1],[1,2],[2,0],[15,-5],[22,-11],[30,-18],[18,-17],[2,-3],[6,-2],[2,1],[3,-1],[21,-15],[7,-1],[-1,4],[-2,3],[2,-1],[3,-2],[3,-6],[5,-5],[5,-6],[4,-3],[4,0],[3,-2],[5,-2],[3,-16],[2,-3],[0,-8],[4,-2],[2,-1],[0,-5],[-2,-12],[-2,-6],[-19,-22],[-12,-9],[-22,-10],[-18,-3],[-7,-1],[-14,2],[-7,2],[-10,6],[-8,3],[-6,1],[-11,0],[-24,6],[-4,2],[-15,11],[-6,-3],[-4,-1],[-2,4],[1,1],[0,1],[-8,3],[-7,0],[-4,3],[-4,2],[-2,-1],[-2,0],[-9,4],[-4,4],[-4,7],[1,2],[1,2],[-15,4],[-14,0],[3,-2],[6,-1],[4,-2],[4,-4],[-1,-5],[6,-5],[5,-5],[0,-2],[2,-1],[7,-1],[1,-5],[-1,-2],[1,-2],[5,-3],[3,-1],[4,-1],[-1,-4],[-4,-2],[-3,-1],[2,-1],[4,0],[15,-5],[8,-6],[8,-10],[3,-6],[0,-2],[-1,-3],[-1,-3],[0,-3],[-3,-10],[-2,-3],[-4,-3],[4,-7],[3,-7],[4,-11],[1,-4],[0,-7],[3,-2],[-1,-1],[-1,-2],[0,-9],[5,-7],[7,-5],[4,-1],[6,2],[4,-2],[9,-9],[5,-9],[2,-2],[9,-3],[7,-2],[12,-6],[1,0],[6,5],[9,3],[3,4],[0,4],[-3,7],[0,7],[-3,3],[-3,1],[-9,-1],[-4,0],[-3,2],[-4,5],[-7,12],[-4,3],[-2,3],[-1,3],[0,6],[4,-1],[3,3],[3,11],[5,2],[2,0],[11,-5],[13,-14],[3,-1],[3,-1],[5,1],[1,-2],[3,-2],[2,0],[12,-5],[14,-8],[6,0],[2,5],[0,2],[6,5],[4,0],[6,-1],[1,1],[-2,7],[-3,6],[-4,4],[-6,11],[-3,6],[-1,6],[0,5],[1,4],[15,9],[5,5],[5,7],[2,2],[8,2],[11,6],[9,8],[8,12],[4,3],[3,0],[4,-2],[4,-4],[5,0],[6,0],[6,0],[9,-6],[2,-1],[1,-3],[-3,-4],[0,-3],[2,1],[3,1],[3,-1],[3,-3],[2,-3],[2,-2],[1,3],[1,3],[-2,7],[4,11],[2,4],[5,11],[-1,7],[0,9],[-1,4],[-3,6],[-6,4],[-6,1],[-2,4],[0,4],[2,7],[5,13],[5,20],[0,4],[0,3],[0,2],[-1,6],[-1,4],[-21,17],[-1,2],[-1,2],[2,0],[2,0],[16,-8],[3,0],[26,2],[12,-2],[10,-4],[8,-11],[7,-10],[7,-9],[0,-7],[-7,-2],[-7,0],[-18,-3],[-4,-5],[-12,-12],[-1,-4],[1,-4],[5,-3],[12,-6],[5,-12],[4,-6],[3,-2],[2,-1],[6,0],[5,-1],[1,-1],[1,1],[4,0],[23,7],[4,2],[2,4],[1,14],[2,5],[2,6],[-1,3],[0,4],[11,4],[11,3],[5,-1],[1,3],[-3,6],[-2,2],[2,2],[2,-2],[3,-1],[6,1],[21,12],[9,6],[5,3],[8,6],[4,2],[6,0],[7,3],[8,4],[11,4],[1,0],[2,-1],[5,-4],[-2,-2],[-1,-3],[2,-1],[2,-1],[2,1],[2,2],[5,2],[2,4],[-2,1],[-3,5],[-3,1],[-3,0],[10,7],[20,11],[11,5],[11,0],[8,0],[-3,-2],[-14,-2],[-2,-1],[0,-2],[3,0],[2,-2],[-2,-2],[-1,-1],[-1,-5],[-2,-5],[4,-5],[0,-6],[-2,-3],[-4,1],[-4,-2],[-6,-2],[-1,-2],[-1,-2],[4,-1],[3,0],[11,-1],[1,-1],[4,2],[4,1],[4,0],[3,1],[2,-1],[4,-5],[4,1],[2,10],[6,6],[8,6],[7,0],[7,4],[3,0],[7,-1],[9,0],[8,-4],[6,0],[9,5],[20,15],[2,-4],[3,5],[16,5],[4,0],[0,-1],[1,-5],[3,-3],[5,-6],[-2,-2],[-3,-1],[-3,-5],[0,-10],[6,-2],[8,-3],[3,0],[3,1],[1,1],[1,2],[1,3],[0,2],[-2,6],[1,6],[7,-1],[10,2],[4,4],[5,6],[3,5],[-2,10],[-6,-2],[-9,20],[-4,8],[3,4],[8,2],[7,8],[2,1],[3,1],[21,-6],[24,-1],[20,-4],[23,-8],[12,-6],[9,-7],[-1,-4],[4,1],[8,-4],[6,-2],[5,-2],[2,-3],[8,-3],[8,-4],[1,-1],[10,-3],[6,-1],[5,-7],[13,-11],[3,-4],[12,-6],[6,-5],[3,2],[9,13],[6,14],[3,8],[-6,1],[-5,-3],[-2,1],[-4,2],[-5,6],[-7,10],[-1,11],[-2,4],[-6,3],[-4,3],[-16,6],[-3,-2],[0,-4],[-1,-2],[-2,3],[-1,3],[0,5],[1,6],[2,10],[4,0],[2,1],[3,5],[-1,4],[-2,2],[1,5],[2,12],[1,14],[-2,4],[-2,2],[-9,-2],[-3,1],[-1,3],[0,2],[3,3],[2,6],[-4,-1],[-2,2],[4,4],[4,8],[10,4],[7,4],[12,8],[9,8],[5,10],[4,10],[6,22],[6,17],[10,16],[6,2],[2,0],[1,-1],[-2,-2],[0,-2],[2,-1],[5,0],[8,1],[13,0],[23,1],[4,-1],[8,-5],[5,1],[10,-2],[5,-3],[5,-3],[-1,-13],[-1,-8],[-3,-15],[-2,-4],[-5,-12],[-3,-7],[-4,-5],[-6,-4],[-1,-2],[0,-3],[6,-9],[13,-9],[4,-12],[1,-8],[-1,-22],[-2,-3],[-2,-3],[-3,-4],[2,-6],[2,-23],[0,-18],[-1,-6],[-1,-14],[0,-4],[1,-7],[3,-5],[4,-4],[10,-6],[10,-8],[1,-3],[1,-3],[-4,-3],[-6,-8],[-3,-6],[0,-6],[1,-7],[-1,-6],[-2,-6],[-3,-4],[-10,-7],[-21,-34],[-5,-4],[-8,1],[2,-5],[3,-7],[0,-4],[-6,0],[-8,-5],[-3,-3],[-6,-2],[-5,2],[-5,3],[1,3],[1,1],[4,2],[3,3],[-2,0],[-1,0],[-4,-3],[-4,-1],[-6,4],[-4,5],[-2,1],[-3,-2],[-15,1],[-4,-1],[-2,-2],[1,-1],[2,-3],[1,-5],[1,-3],[6,-4],[8,-2],[8,-5],[10,-3],[23,1],[5,0],[6,-2],[10,-5],[4,0],[7,5],[2,10],[1,4],[26,14],[4,3],[8,8],[3,6],[2,14],[3,5],[17,17],[2,4],[1,8],[-1,5],[-1,5],[-3,9],[-3,5],[-3,7],[2,14],[3,5],[15,7],[13,2],[14,5],[6,1],[4,-1],[4,-5],[4,-7],[10,-11],[4,-7],[0,-9],[0,-23],[-2,-9],[4,-3],[2,-2],[5,-3],[3,-3],[3,-2],[6,0],[16,1],[10,1],[-1,1],[-2,1],[-8,1],[-11,2],[-15,4],[-2,10],[0,5],[4,11],[2,2],[3,1],[4,1],[-1,7],[-2,6],[-3,9],[-4,16],[-5,1],[-4,3],[-19,9],[-18,7],[-12,1],[-4,-1],[-10,-7],[-7,-1],[-12,3],[-11,-2],[-4,2],[-1,3],[3,13],[-2,5],[-5,7],[-2,5],[0,6],[7,22],[3,6],[8,10],[3,8],[-1,4],[-16,25],[-4,8],[-2,3],[-4,4],[-6,3],[-2,4],[17,24],[7,4],[10,2],[5,3],[9,4],[5,4],[2,4],[1,3],[0,10],[-1,7],[-1,5],[-3,5],[-3,6],[2,2],[2,0],[6,0],[6,-3],[3,-7],[3,-6],[0,-4],[0,-3],[2,-4],[1,-2],[1,-4],[-1,-2],[-1,-1],[-3,-4],[-4,-11],[-4,-2],[-1,-8],[8,-10],[-1,-7],[-2,-2],[-4,-4],[1,-3],[1,-2],[11,-5],[10,-2],[18,-1],[5,-5],[2,3],[17,0],[13,-11],[7,-4],[6,-1],[11,2],[2,1],[2,3],[-5,-1],[-3,-1],[-2,0],[-4,1],[-2,2],[-3,4],[-5,10],[-9,4],[-5,-2],[-6,1],[-11,6],[-6,2],[-13,6],[-3,3],[-3,5],[-3,9],[-2,5],[3,1],[8,4],[13,2],[5,-2],[13,-9],[7,-1],[11,4],[1,3],[-2,6],[-4,2],[-6,2],[-8,-3],[-2,2],[0,3],[1,2],[5,1],[3,1],[6,6],[7,3],[7,1],[26,-1],[15,-9],[15,-4],[6,-3],[2,-1],[1,-2],[1,-5],[18,-13],[5,-2],[11,-1],[13,4],[6,0],[6,-1],[4,-2],[3,-3],[-2,-4],[-1,-2],[-4,-7],[-1,-2],[-12,-7],[-5,-2],[-1,-10],[-1,-2],[0,-4],[2,-7],[0,-4],[-1,-6],[-3,-6],[0,-5],[1,-7],[1,2],[-1,3],[1,4],[6,8],[4,12],[4,3],[3,1],[4,-4],[1,-4],[0,-7],[0,-7],[-3,-10],[-5,-8],[-2,-4],[2,-3],[3,-3],[3,-1],[3,0],[1,1],[0,3],[-1,3],[0,4],[6,2],[6,2],[4,4],[1,3],[1,5],[-2,7],[-2,6],[-7,13],[-5,7],[3,10],[6,11],[2,3],[0,2],[1,3],[-1,3],[0,2],[-6,9],[-4,2],[-12,2],[-3,1],[-9,9],[-1,2],[-2,6],[-1,2],[-2,2],[-9,3],[-5,2],[-9,0],[-5,2],[-8,6],[0,2],[-3,7],[-1,4],[0,3],[3,6],[2,5],[-2,5],[-4,1],[-3,2],[-2,4],[-1,5],[0,3],[0,4],[1,4],[4,3],[-1,3],[1,3],[24,4],[10,1],[48,1],[3,1],[21,2],[9,2],[10,-2],[3,0],[7,1],[4,5],[11,2],[17,2],[8,0],[2,-2],[2,-2],[-9,-6],[-10,-6],[-7,-3],[-8,-5],[0,-2],[-1,-1],[1,-4],[0,-3],[8,-3],[6,-4],[5,-4],[5,-2],[1,2],[-16,10],[-5,3],[-1,2],[0,4],[2,2],[3,2],[1,1],[7,2],[20,3],[5,5],[2,3],[6,3],[-2,1],[-5,1],[-3,2],[-14,19],[-4,3],[-11,2],[-5,2],[5,6],[6,2],[4,0],[4,-2],[6,-5],[9,2],[-3,2],[-6,3],[-5,4],[-8,4],[-9,3],[-9,1],[3,5],[5,-1],[1,2],[3,4],[12,-8],[6,2],[5,3],[11,10],[1,4],[-5,3],[-4,1],[-6,0],[0,2],[2,4],[5,1],[14,-4],[23,10],[6,4],[16,6],[8,0],[16,8],[23,3],[13,0],[11,4],[15,2],[6,2],[26,4],[14,4],[3,2],[-13,-2],[-3,2],[-3,-1],[-2,-2],[-6,3],[-2,0],[-2,-2],[-2,-1],[-2,0],[-1,5],[3,5],[3,-3],[5,5],[3,0],[8,-3],[5,3],[7,1],[8,-1],[3,0],[2,3],[13,-2],[9,1],[6,0],[10,-1],[4,-2],[-2,-5],[-10,-7],[3,-1],[5,3],[16,5],[3,-1],[-2,-4],[-1,-2],[10,3],[9,5],[4,1],[5,-3],[3,3],[1,2],[7,1],[3,3],[5,2],[4,1],[9,3],[3,-1],[6,-1],[5,-2],[11,-4],[1,-1],[2,-1],[3,-2],[-3,-5],[-2,-6],[-4,-3],[2,0],[2,1],[4,4],[3,3],[-1,12],[-6,6],[-4,2],[-10,7],[-4,2],[-4,3],[2,2],[19,-2],[10,1],[11,-1],[14,3],[6,-3],[7,0],[8,-2],[3,3],[-13,3],[-6,-1],[-2,2],[2,3],[3,6],[-3,4],[-2,3],[-1,4],[2,5],[6,3],[3,4],[6,6],[30,18],[15,7],[6,1],[6,-1],[13,6],[4,0],[18,-4],[4,-4],[9,-2],[12,-2],[5,-2],[2,-2],[2,-4],[-9,-2],[-9,-7],[-14,-4],[-16,-2],[-3,-2],[31,0],[9,0],[2,-6],[3,0],[9,3],[5,0],[10,-2],[2,1],[5,0],[9,-2],[4,-4],[-6,-6],[-7,-6],[-9,-9],[-2,1],[-5,0],[1,-5],[8,0],[4,-2],[9,3],[13,-1],[2,1],[5,3],[2,5],[2,3],[4,2],[5,-2],[8,0],[20,2],[17,-2],[14,3],[18,-2],[7,-3],[6,-3],[5,-1],[5,-3],[4,-5],[-2,-3],[-2,-3],[5,3],[5,1],[3,-2],[6,-1],[1,-10],[2,-2],[1,-4],[-2,-3],[-1,-1],[4,0],[6,4],[2,1],[1,2],[-2,3],[-2,1],[2,1],[6,0],[2,-5],[2,-4],[4,-13],[8,2],[0,-4],[-3,-9],[-4,-6],[-1,-2],[-2,0],[0,3],[-1,2],[-2,2],[-7,1],[-14,8],[-4,1],[-1,0],[0,-1],[8,-6],[6,-10],[6,3],[2,0],[3,-5],[6,-2],[4,-3],[-3,-9],[-19,-17],[-20,-9],[-9,-7],[-16,-5],[-11,-6],[-15,-5],[-4,-5],[-11,-4],[1,-1],[1,-2],[-1,-3],[-2,-3],[-8,-4],[-12,-4],[-24,-20],[-12,-4],[-14,0],[-3,-2],[-10,-13],[-3,-2],[-14,-2],[-14,-20],[-8,-7],[-7,-4],[7,1],[9,2],[10,7],[2,3],[1,4],[3,2],[5,2],[17,3],[8,-1],[10,0],[7,4],[4,1],[4,1],[2,2],[6,1],[14,4],[3,1],[4,5],[9,-2],[6,1],[16,9],[9,4],[3,2],[-2,2],[-2,1],[-9,-3],[-9,-1],[-9,1],[-1,1],[-2,3],[3,5],[3,3],[6,4],[5,1],[18,-4],[4,0],[2,6],[6,0],[6,-1],[-3,-1],[-6,-3],[2,-4],[3,-4],[11,-5],[9,-2],[7,0],[11,2],[2,2],[2,4],[-2,7],[2,-1],[3,-2],[4,-4],[4,-8],[3,-4],[-2,-3],[-6,-8],[4,-4],[6,-2],[0,-12],[-1,-6],[-3,-6],[-3,-3],[-3,-4],[0,-4],[1,-2],[4,-4],[10,-2],[1,2],[-2,1],[-7,2],[-3,2],[-2,4],[3,4],[3,3],[3,7],[1,6],[0,5],[2,2],[3,3],[2,0],[2,2],[-3,1],[-2,1],[-5,3],[-1,4],[10,2],[6,3],[21,1],[14,6],[32,-2],[23,-4],[31,-1],[12,-3],[1,-1],[1,-2],[-5,-1],[-8,0],[-3,-6],[2,-7],[15,-8],[13,-3],[9,-5],[4,-1],[19,1],[11,-3],[10,2],[11,0],[4,0],[4,-4],[6,-1],[8,0],[4,1],[2,1],[-1,1],[-6,2],[1,3],[2,1],[11,-4],[4,-1],[4,3],[3,5],[2,4],[1,1],[2,1],[1,1],[-3,4],[-4,5],[0,3],[-1,2],[-1,6],[3,6],[2,2],[9,-3],[4,4],[2,1],[10,3],[5,0],[7,-3],[23,-11],[-1,-4],[5,1],[3,2],[6,1],[4,2],[1,-1],[2,-2],[-1,-2],[-2,-3],[1,-2],[1,0],[6,-3],[8,6],[4,5],[2,2],[19,-4],[6,-3],[2,-1],[0,-2],[4,-2],[4,-1],[-1,-2],[0,-2],[9,0],[4,-2],[4,-3],[0,-3],[1,-1],[4,-1],[1,1],[-1,-4],[-6,-5],[-3,-1],[-4,-3],[2,-1],[10,0],[6,-6],[0,-4],[-3,-2],[-9,-5],[-5,-3],[-3,0],[-3,0],[4,-3],[16,0],[4,-3],[4,-7],[0,-9],[-4,-5],[-9,0],[-13,9],[-8,4],[-11,8],[-2,-2],[3,-6],[5,-3],[10,-10],[15,-20],[4,2],[2,2],[1,4],[-1,4],[2,-2],[3,-4],[4,-7],[-6,1],[-8,-2],[-3,-3],[2,-4],[6,0],[3,-5],[4,-6],[11,-17],[7,-4],[7,-7],[7,-3],[4,0],[2,4],[2,-1],[2,-8],[4,-3],[3,-1],[3,2],[5,3],[4,5],[5,12],[4,6],[4,2],[-1,3],[0,3],[3,8],[3,10],[3,5],[6,10],[3,1],[2,-3],[1,-4],[1,-2],[1,-1],[8,-8],[8,-7],[8,-4],[11,-3],[17,1],[3,4],[6,3],[9,2],[6,4],[9,1],[5,-1],[9,-3],[20,-9],[5,-3],[3,-4],[7,-5],[4,-3],[4,-1],[1,0],[0,2],[-2,1],[-2,2],[5,2],[0,2],[2,1],[6,1],[-6,2],[-2,0],[-3,1],[0,3],[2,2],[2,4],[2,2],[3,2],[2,0],[6,-2],[4,4],[3,0],[6,-4],[6,-7],[3,0],[9,3],[10,0],[-2,4],[-6,8],[0,11],[-4,3],[-6,1],[8,3],[6,9],[4,0],[5,2],[-1,1],[-15,1],[-3,-1],[-2,-2],[-7,0],[-1,6],[0,3],[9,8],[4,2],[24,0],[7,2],[10,4],[-3,2],[0,5],[-9,8],[1,1],[1,2],[2,0],[14,-2],[6,-4],[15,-4],[41,-2],[4,-1],[18,-2],[7,-2],[17,-2],[8,-2],[7,-3],[10,-1],[5,-2],[-1,-5],[-21,0],[-7,2],[-9,0],[-3,0],[-6,-5],[-6,-2],[-5,-1],[3,-4],[5,-1],[16,5],[43,3],[7,-1],[-1,-3],[-6,-7],[-5,-5],[-8,-5],[-3,0],[6,11],[-3,1],[-2,-1],[-7,5],[-1,0],[-1,-1],[0,-2],[-2,-6],[3,-3],[0,-5],[-10,-3],[-4,1],[-4,2],[-1,-1],[-1,-1],[1,-3],[0,-1],[-2,-2],[0,-3],[2,-2],[3,-1],[17,3],[8,4],[8,6],[15,17],[6,5],[4,2],[4,1],[27,-2],[16,-3],[15,-5],[7,-5],[6,-6],[1,-2],[0,-3],[-4,-3],[-16,-1],[-7,-2],[-2,-2],[0,-1],[-1,-2],[1,-1],[8,-1],[7,-1],[10,-4],[1,-1],[3,-4],[1,0],[15,0],[1,-1],[1,-2],[-4,-5],[-4,-2],[-8,-7],[4,2],[17,6],[4,1],[5,0],[12,-5],[5,-4],[9,-12],[-3,-1],[-6,-1],[20,-9],[8,0],[19,2],[9,1],[17,5],[17,4],[16,0],[8,3],[22,0],[22,-1],[16,-2],[18,-6],[18,-9],[11,-8],[2,-3],[3,-6],[1,-5],[2,-6],[-1,-6],[-3,-3],[-1,-5],[0,-5],[-3,-7],[3,-5],[8,-4],[17,-4],[5,-3],[0,-9],[2,-7],[1,-14],[3,-4],[5,-3],[1,-4],[-6,-15],[-4,-3],[-4,-4],[7,1],[4,6],[3,10],[4,1],[2,4],[0,9],[-2,8],[0,6],[1,5],[12,9],[6,4],[5,3],[16,2],[7,1],[9,-1],[5,1],[7,2],[6,-1],[10,-7],[35,-1],[6,-3],[23,-2],[2,0],[5,3],[15,11],[7,-1],[2,-1],[3,-5],[3,-3],[2,-7],[2,-11],[3,-2],[5,0],[10,-4],[10,-5],[3,-10],[5,-8],[13,1],[13,2],[13,13],[0,5],[-3,8],[-5,7],[-4,12],[-11,2],[1,4],[4,4],[4,6],[1,5],[-1,10],[10,-1],[11,-1],[20,-5],[16,-1],[9,-3],[5,-4],[6,-2],[2,6],[3,1],[8,-3],[6,-1],[10,0],[13,-1],[14,0],[13,3],[5,-1],[5,-2],[8,-5],[15,-8],[13,-2],[15,-7],[14,-2],[11,-4],[2,-1],[0,-3],[1,-1],[9,-2],[16,-15],[4,-2],[0,-232],[-5,-2],[-5,-6],[-5,-6],[-9,-3],[-12,-9],[-5,-1],[-7,4],[-15,2],[-4,4],[-7,9],[-2,1],[-2,4],[-9,4],[-7,-3],[-6,2],[-2,-1],[3,-1],[6,-1],[8,0],[3,-1],[2,-3],[3,-5],[-2,-3],[-2,-1],[-7,3],[-8,0],[-3,1],[-10,6],[-8,-7],[-11,-4],[-8,0],[-15,-6],[4,0],[11,4],[6,0],[10,2],[5,3],[2,2],[3,3],[4,-2],[2,-2],[1,-4],[2,-4],[-2,-3],[-2,-1],[-2,-3],[10,5],[6,-3],[3,0],[6,6],[9,3],[2,-1],[1,-1],[-2,-10],[1,-8],[7,-8],[7,-5],[3,0],[2,1],[1,4],[2,4],[2,-3],[2,-4],[3,-7],[0,-3],[-1,-4],[2,-2],[4,-1],[1,-7],[1,-11],[-2,-1],[-1,0],[-5,-2],[0,-2],[6,-1],[1,-2],[-1,-5],[0,-2],[2,-1],[1,3],[0,4],[0,2],[4,-9],[0,-3],[3,-4],[8,-5],[2,-3],[0,-4],[-2,-1],[-2,-3],[2,-4],[2,-3],[3,-1],[2,-6],[0,-5],[-3,-4],[-5,-6],[-3,-3],[-1,-4],[0,-5],[-3,1],[-2,2],[-26,11],[-10,2],[-9,0],[-1,1],[0,3],[0,2],[2,3],[-1,3],[-1,0],[-1,-2],[-3,0],[-2,2],[-2,0],[-1,-4],[0,-1],[0,-3],[1,-1],[5,-2],[-1,-2],[-7,-2],[-6,-2],[-7,-5],[-3,-4],[-20,-10],[-5,-3],[-2,0],[-2,-1],[-3,-4],[-10,-6],[-3,0],[-3,-4],[-2,-3],[-7,0],[-4,-2],[-9,-7],[-5,3],[-7,-10],[-7,-9],[-2,0],[-5,4],[-2,-2],[1,-4],[2,-3],[-1,-1],[-2,1],[-2,0],[-1,-1],[0,-3],[-3,-3],[-2,-1],[-3,-1],[-1,-3],[1,-3],[-5,-4],[-4,-5],[-2,-1],[-2,-2],[-3,-1],[-3,0],[-6,-7],[-15,-12],[-5,-2],[-5,-3],[0,-3],[0,-3],[-3,-5],[-2,-12],[-1,-2],[-1,-3],[-5,1],[-5,5],[-2,2],[-1,3],[0,4],[-1,2],[-1,1],[-5,10],[-10,7],[-1,2],[-12,-2],[-4,0],[-5,2],[-9,-1],[-11,-4],[-4,-2],[-11,-4],[-7,-6],[-14,-21],[-4,-5],[-1,-1],[-3,0],[-1,4],[0,4],[1,6],[2,6],[1,9],[1,5],[1,4],[-5,-1],[-6,-7],[-10,-7],[-5,-2],[-4,-4],[-2,-1],[-3,-1],[-1,-9],[-1,-5],[-2,-1],[-3,0],[-2,2],[-3,7],[-4,4],[-2,0],[-2,-1],[-3,-5],[-4,-4],[0,5],[-3,2],[-3,1],[-4,0],[-1,0],[-1,-3],[-3,-4],[-2,-2],[-3,-3],[-1,-3],[-1,-4],[-2,-11],[0,-13],[-5,-10],[-2,1],[-1,-1],[-1,-1],[2,-6],[-1,-2],[-1,-1],[-2,-2],[-6,-8],[-5,-6],[-9,-15],[-3,-10],[-2,-12],[1,-6],[1,-3],[2,-3],[3,-3],[5,-3],[0,-2],[0,-1],[2,3],[2,8],[3,2],[2,0],[12,-6],[2,-3],[0,-6],[-1,-3],[-2,-4],[-4,-5],[-5,-8],[-1,-4],[0,-2],[1,-9],[1,-4],[-1,-9],[0,-4],[2,-3],[2,-2],[3,1],[3,-1],[3,-2],[0,-8],[1,-6],[1,-13],[-2,-4],[-2,-2],[-4,-5],[-2,-1],[-4,2],[-6,10],[3,6],[5,4],[2,3],[2,4],[-3,-1],[-2,-2],[-5,1],[-3,-2],[-2,-3],[1,-9],[-2,-1],[-4,-3],[-5,-3],[-2,-3],[-4,-14],[-4,-11],[-2,-10],[1,-8],[1,-9],[1,-4],[5,-8],[2,-7],[1,-8],[-4,-4],[-7,-9],[-2,-1],[-10,0],[-4,5],[-6,-1],[-4,-2],[-7,-7],[-6,-8],[-6,-6],[-2,-4],[-3,-7],[-2,-13],[1,-7],[1,-3],[1,-4],[-1,-6],[0,-4],[3,-6],[0,-9],[-2,0],[-5,6],[-5,0],[-12,-7],[-6,-4],[-5,-8],[-2,1],[-1,5],[-2,2],[-3,-1],[-1,-4],[4,-2],[1,-3],[-2,-11],[-2,-4],[1,-10],[0,-4],[-1,-5],[-4,-13],[-6,-16],[-8,-12],[-5,-4],[-3,-4],[-1,-4],[-8,-12],[-10,-12],[-3,-2],[0,5],[-1,4],[-1,6],[-4,5],[0,4],[-1,6],[0,26],[-3,27],[0,8],[-4,7],[-2,7],[-2,7],[0,9],[-4,43],[-1,11],[-6,35],[-2,21],[-2,20],[0,8],[2,27],[3,16],[7,37],[1,4],[1,1],[13,15],[6,7],[3,8],[4,11],[-1,6],[0,3],[-2,3],[-3,5],[1,1],[2,2],[3,1],[6,-3],[7,2],[6,13],[8,-2],[7,2],[2,-1],[1,4],[3,5],[7,7],[10,9],[5,5],[2,6],[4,5],[4,6],[7,19],[14,16],[6,9],[4,3],[4,2],[10,13],[7,11],[8,7],[3,5],[4,11],[2,3],[5,4],[13,7],[7,7],[11,1],[3,3],[3,2],[4,2],[-5,7],[1,3],[1,2],[8,7],[3,7],[-1,2],[0,2],[-5,3],[1,5],[1,5],[4,4],[1,10],[1,10],[3,15],[3,3],[8,7],[2,1],[6,-3],[7,-1],[2,-2],[1,2],[-1,2],[2,1],[4,-1],[-1,3],[-9,1],[-7,3],[-7,6],[-4,2],[-4,0],[-26,-9],[-1,-2],[-1,-4],[1,-4],[-1,-3],[-1,-1],[-2,-3],[-1,-6],[0,-7],[-3,-9],[0,-6],[6,-3],[1,-2],[-2,-4],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-2,4],[-2,6],[-3,0],[-1,-1],[-1,-2],[-2,0],[-3,1],[-3,-1],[-6,-7],[-32,-34],[-3,-4],[-4,-8],[-8,-1],[-3,-2],[-3,-2],[-3,-2],[0,3],[1,2],[1,6],[4,12],[-3,1],[-2,0],[-5,-2],[-4,-4],[-2,1],[1,3],[3,7],[-1,6],[-1,4],[2,1],[6,13],[2,7],[2,8],[0,3],[0,3],[-2,1],[-1,0],[-13,-9],[-5,-2],[-1,4],[-3,1],[-3,6],[-3,1],[-3,0],[-7,-4],[-8,-3],[-6,1],[-5,-3],[-2,-1],[-8,2],[-9,1],[-3,-4],[-7,-4],[-6,-6],[-3,-2],[-3,-3],[-1,-13],[-4,-4],[-4,-3],[-8,-9],[-6,-13],[-3,-6],[-8,-7],[-13,-11],[-11,-16],[-4,-13],[-1,0],[-3,-3],[-1,-6],[0,-4],[-1,-4],[-2,-4],[2,-3],[1,0],[3,0],[6,4],[11,-6],[5,-5],[0,-5],[0,-5],[-4,0],[-5,0],[-4,-3],[-6,5],[-3,-2],[-3,-5],[-7,-2],[-3,3],[-6,6],[-9,-1],[-2,-7],[-2,0],[-4,0],[-5,-9],[-2,-1],[-7,2],[-5,4],[-2,1],[-4,-2],[-2,-6],[-11,-2],[-10,0],[-6,13],[11,4],[6,-1],[7,1],[8,4],[-3,3],[-2,1],[-4,0],[-4,2],[-9,12],[-4,2],[-5,1],[-4,0],[-1,0],[-2,-3],[-1,-3],[-1,-1],[-3,1],[-3,2],[-4,-1],[2,2],[3,2],[-6,2],[-3,3],[-4,0],[-15,7],[-6,0],[-4,-2],[-6,-6],[2,-4],[1,-2],[1,-2],[-2,-1],[-6,0],[-4,3],[-2,-5],[1,-4],[4,1],[2,-1],[-1,-6],[-6,-1],[-6,0],[-7,9],[-10,-1],[-5,-6],[-5,-1],[-13,5],[-7,1],[-7,5],[-3,-2],[-5,-12],[-6,-3],[-3,2],[-3,7],[-2,3],[-6,2],[-29,-2],[-10,2],[-8,0],[-9,-4],[-9,2],[-17,-8],[-7,-5],[-9,-9],[-7,-15],[-4,-6],[-8,-7],[-10,-7],[-5,-7],[-3,-5],[-5,-20],[-2,-4],[-12,-7],[-4,-8],[-1,-2],[-6,-4],[-3,-5],[-1,-2],[-8,-4],[-6,-11],[-8,-7],[-13,-20],[-1,-2],[-1,-5],[-1,-4],[-11,-18],[-3,-1],[-6,-8],[-5,-5],[-5,-6],[-6,-6],[-9,-7],[-3,-4],[-5,-9],[-12,-12],[-6,-2],[-8,-11],[0,-2],[-1,-4],[1,-6],[2,-2],[3,0],[12,-7],[11,2],[9,0],[4,1],[2,-1],[1,-3],[0,-7],[-2,-6],[-1,-17],[-1,-8],[1,-7],[2,-1],[3,3],[3,1],[4,-2],[3,12],[-3,2],[-2,4],[2,3],[6,6],[4,1],[4,-1],[-4,-7],[-2,-2],[-1,0],[-2,-1],[4,-5],[4,-3],[6,-2],[-1,-2],[-4,-2],[-4,-10],[-6,-4],[-2,-3],[1,-2],[2,-1],[11,2],[6,2],[8,7],[4,11],[3,3],[1,0],[1,-1],[0,-7],[-4,-9],[-3,-5],[-2,-4],[2,0],[4,1],[2,2],[4,10],[1,8],[0,10],[0,6],[0,5],[-1,4],[1,2],[11,-7],[6,-1],[11,5],[2,-1],[2,-3],[9,-9],[2,-3],[3,-12],[9,-12],[9,-6],[0,-3],[6,-7],[4,-2],[1,-7],[-2,-5],[-4,-5],[-8,5],[-2,0],[1,-3],[6,-9],[5,-3],[0,-11],[0,-6],[-4,-7],[1,-4],[5,-6],[2,-2],[2,-3],[-3,-8],[0,-8],[-3,-3],[-4,-8],[-5,-6],[-3,-13],[-4,-10],[0,-11],[-1,-4],[-4,-11],[-1,-15],[2,-25],[1,-1],[1,-2],[0,-1],[-1,-1],[-3,-8],[0,-5],[1,-4],[0,-9],[-2,-16],[-1,-2],[-1,-5],[0,-3],[-1,-3],[0,-3],[0,-4],[2,-2],[-5,-11],[-1,-15],[-2,-6],[-3,-6],[-7,-8],[-2,-6],[-4,-6],[-4,-6],[-6,-15],[-5,-14],[-11,-20],[-2,-5],[-1,-5],[-3,-8],[-1,-12],[-4,-5],[-3,-12],[-9,-20],[-2,-6],[-8,-11],[-7,-14],[-10,-13],[-2,-6],[-3,-6],[-4,-9],[-6,-9],[-1,-7],[-2,-4],[-4,-3],[-4,-4],[-9,-24],[-1,-4],[0,-4],[-7,-9],[-3,-9],[-6,-6],[-6,-8],[-15,-15],[-4,-5],[-9,-7],[-3,0],[-7,-4],[-5,-4],[-3,2],[-2,5],[-2,-1],[-1,0],[-5,5],[-3,-1],[-3,3],[-5,-2],[1,21],[-1,5],[-2,-5],[-5,-7],[-3,-1],[-2,0],[1,4],[3,7],[-1,0],[-1,1],[-4,-3],[-2,-3],[-6,-12],[-3,-11],[-3,-3],[-1,-4],[-3,-4],[-3,1],[-2,-1],[-6,3],[-1,-1],[3,-8],[-2,-12],[-2,-1]],[[7991,9675],[-3,-3],[-3,-1],[-4,2],[-10,0],[-16,3],[5,1],[26,2],[1,-1],[4,-3]],[[7951,9680],[-3,-1],[-4,1],[1,3],[8,0],[3,4],[5,0],[2,-1],[1,-1],[0,-2],[-1,0],[-5,0],[-1,-1],[-6,-2]],[[7857,9742],[-3,-5],[-1,-4],[-8,-14],[-1,-2],[5,2],[4,5],[3,3],[3,3],[3,0],[4,1],[6,3],[7,1],[4,0],[3,-1],[2,-4],[3,-3],[8,-2],[2,-1],[0,-2],[0,-3],[5,-2],[7,1],[3,-1],[4,-1],[2,-3],[1,-2],[1,-4],[1,-5],[0,-5],[-14,-9],[-2,-1],[-6,1],[-7,-1],[-16,-4],[-20,-1],[-5,-4],[-2,1],[-2,0],[-1,2],[-12,-2],[-14,0],[-14,0],[-4,-3],[-14,-6],[-13,-4],[-6,-1],[-10,1],[-3,1],[-3,3],[4,2],[3,6],[4,3],[10,6],[1,3],[1,5],[2,2],[1,2],[1,2],[0,4],[1,3],[4,4],[2,2],[3,1],[7,-1],[3,0],[-2,1],[-1,5],[0,2],[1,3],[2,2],[2,1],[1,4],[-1,2],[3,2],[1,3],[3,1],[7,2],[0,3],[1,2],[2,1],[3,1],[2,-1],[2,-3],[3,-3],[3,-1],[4,1],[-3,3],[1,4],[1,2],[1,1],[4,0],[10,-2],[7,-4],[2,-2],[-1,-1],[-3,0],[-2,-1]],[[7117,9765],[4,-2],[2,2],[25,-5],[5,-2],[2,-2],[-22,0],[-5,0],[0,3],[-5,0],[-8,2],[-3,3],[0,1],[3,1],[2,-1]],[[7781,9763],[-6,-1],[0,4],[1,1],[3,1],[2,-1],[4,-1],[-4,-3]],[[7574,9767],[-7,0],[-8,0],[-13,6],[-9,3],[-6,4],[-2,5],[4,3],[6,1],[9,0],[12,-1],[11,-2],[25,-4],[9,-2],[-6,-5],[-6,-2],[-6,-3],[-6,-2],[-7,-1]],[[6427,9782],[1,0],[0,-1],[-10,1],[-17,-1],[-10,4],[10,3],[6,1],[7,2],[9,-2],[0,-3],[0,-1],[2,-1],[2,-2]],[[6657,9783],[-10,-2],[-3,1],[-1,1],[-2,1],[-5,1],[1,3],[1,1],[15,4],[7,-2],[4,-6],[-7,-2]],[[7712,9795],[7,-4],[3,-4],[-3,-1],[-3,-3],[-1,-3],[-4,-3],[-1,-5],[2,0],[2,1],[4,4],[5,3],[6,-2],[2,1],[4,4],[0,3],[1,2],[2,1],[8,-1],[11,-1],[3,-2],[2,-1],[2,-2],[5,-1],[3,-1],[4,-3],[3,-4],[-4,-3],[-2,-4],[-1,-1],[-1,-1],[0,-4],[-1,-3],[-1,-1],[0,-2],[0,-5],[-1,-3],[-4,-3],[-4,0],[-6,2],[-2,0],[-2,-1],[8,-4],[6,-6],[6,-1],[2,-1],[2,-5],[1,-3],[-11,-6],[-3,-1],[-17,-1],[-11,-2],[-4,0],[-6,2],[-4,-1],[-6,1],[-4,0],[-8,3],[-9,4],[-2,1],[-2,2],[-10,1],[-2,0],[-16,0],[-2,0],[-5,5],[-3,0],[-8,-3],[-3,1],[-7,2],[-4,2],[0,1],[0,3],[-4,1],[-5,6],[-3,5],[-12,3],[-8,1],[-6,0],[-5,2],[9,8],[12,4],[5,3],[6,5],[3,6],[10,4],[3,2],[4,3],[1,0],[8,-3],[2,0],[1,2],[3,2],[10,0],[8,-1],[4,1],[3,0],[20,3],[13,1],[2,-1]],[[6390,9790],[-3,-1],[-10,5],[-1,1],[9,4],[10,0],[2,-2],[0,-1],[-7,-4],[0,-2]],[[6540,9802],[-7,-3],[-5,0],[-1,2],[3,2],[4,2],[3,0],[2,-1],[1,-2]],[[6585,9807],[1,-2],[0,-8],[-1,-3],[0,-3],[-3,-1],[-22,0],[-10,1],[-3,1],[6,3],[2,3],[0,7],[1,1],[17,-1],[2,2],[6,0],[4,0]],[[6486,9797],[-18,-1],[-7,0],[0,1],[-2,1],[-6,0],[-3,3],[1,1],[9,1],[3,2],[1,1],[4,4],[9,0],[4,0],[0,-3],[4,-2],[10,-3],[-2,-3],[-3,0],[-4,-2]],[[6609,9793],[-4,-1],[-11,2],[-2,1],[-2,2],[-1,8],[0,3],[-1,1],[-3,3],[-2,2],[2,1],[12,-1],[27,-1],[13,-3],[4,-1],[4,-3],[-23,-1],[-4,-2],[0,-3],[0,-2],[-3,-1],[-6,-4]],[[6511,9814],[-4,-3],[-13,3],[1,2],[2,0],[0,2],[-2,1],[1,3],[8,-2],[1,-1],[6,-1],[0,-3],[0,-1]],[[6317,9836],[13,-2],[9,1],[3,-1],[3,0],[3,-2],[4,-4],[0,-5],[-2,0],[-16,2],[-7,6],[-2,0],[-3,-1],[-3,-3],[-3,-1],[-3,-4],[-3,0],[-1,0],[-4,-3],[-9,0],[-2,-1],[-3,-4],[-3,-1],[-7,-1],[-2,2],[-1,4],[-2,1],[-9,-1],[-7,1],[-6,2],[-7,1],[6,2],[33,5],[13,2],[6,3],[10,2],[2,0]],[[6726,9835],[2,-2],[-1,-4],[-2,-3],[-1,-4],[-9,-1],[-2,-1],[-3,-3],[-8,-1],[-7,-5],[-9,1],[-12,3],[-11,-3],[-7,-1],[-8,5],[-1,1],[-1,3],[1,2],[2,6],[3,3],[1,1],[2,2],[3,1],[11,1],[4,-1],[1,-2],[5,0],[10,2],[13,2],[8,2],[7,-1],[7,-1],[2,-2]],[[6396,9841],[4,-1],[10,0],[4,-1],[15,-9],[3,0],[4,-4],[-16,-4],[-5,-4],[-19,-1],[-12,-2],[-3,-1],[2,-3],[-6,-3],[-19,0],[-3,-1],[-3,-3],[0,-1],[6,-1],[1,0],[1,-2],[1,-2],[-1,-3],[-3,0],[-2,0],[-6,2],[-1,0],[-1,-2],[-1,-3],[-3,-1],[-6,3],[-2,-1],[-2,-1],[-2,-1],[-6,0],[-3,1],[3,3],[7,3],[-2,2],[-7,0],[-6,-1],[-3,-2],[-2,-1],[-7,1],[-4,3],[-3,1],[-3,3],[21,8],[7,3],[7,2],[8,1],[3,1],[3,0],[2,0],[4,-3],[13,0],[3,3],[0,6],[-1,3],[2,6],[8,3],[17,3],[4,1]],[[7222,9836],[-26,-2],[-2,1],[-1,1],[4,4],[3,3],[16,1],[13,-2],[4,-1],[-1,-3],[-1,-1],[-9,-1]],[[6698,9842],[-9,-1],[-14,1],[-7,2],[0,1],[2,1],[12,4],[24,1],[4,-3],[-3,-2],[-9,-4]],[[6519,9852],[21,-6],[20,1],[8,-2],[12,-5],[18,-6],[4,-1],[-3,-2],[-21,-6],[-14,-2],[-12,0],[-5,1],[-5,3],[-12,3],[-12,0],[-1,1],[-3,1],[-4,0],[-9,2],[0,3],[5,2],[4,0],[1,5],[6,8],[2,0]],[[6628,9847],[4,-3],[1,-3],[3,-2],[0,-4],[-2,-3],[-6,-1],[-10,0],[-9,2],[-5,5],[-10,2],[-5,6],[5,2],[7,-1],[11,5],[1,0],[3,-1],[9,-2],[3,-2]],[[6409,9848],[-4,-1],[-2,1],[-3,2],[-1,1],[-1,1],[3,0],[1,2],[1,0],[2,1],[3,0],[5,-1],[2,-3],[-5,-2],[-1,-1]],[[6760,9827],[-5,0],[-6,1],[-6,3],[-7,3],[2,2],[6,3],[9,4],[13,1],[7,0],[7,1],[2,2],[1,4],[1,3],[2,1],[7,2],[6,0],[7,-2],[4,-1],[3,-3],[2,-3],[0,-3],[0,-2],[2,-2],[-12,-7],[-13,-3],[-32,-4]],[[7543,9853],[-10,-4],[-34,3],[-2,2],[0,1],[4,3],[29,-1],[10,-1],[3,-3]],[[7681,9849],[1,-2],[3,-2],[2,-2],[18,-7],[8,-1],[4,-2],[1,-2],[-1,-4],[-3,0],[-2,-1],[-12,-2],[-3,-2],[-3,-5],[2,0],[1,-2],[4,-8],[1,-1],[3,-1],[-3,-3],[-3,-2],[-37,-4],[-25,-1],[-8,-2],[-3,0],[-7,-3],[-12,-4],[-6,0],[-18,6],[-23,4],[-3,3],[-5,2],[-7,1],[-3,5],[4,4],[6,3],[10,1],[9,2],[7,5],[4,5],[8,6],[-14,-2],[-5,1],[1,2],[3,3],[1,2],[5,2],[3,3],[9,3],[3,0],[4,0],[7,1],[7,2],[7,1],[6,1],[7,1],[6,3],[3,5],[17,1],[3,-2],[2,-2],[3,-2],[3,0],[8,-5],[2,-2]],[[6647,9863],[-6,-1],[-11,2],[-3,1],[1,1],[7,2],[5,1],[6,-2],[3,-3],[-2,-1]],[[6605,9877],[2,-2],[4,-1],[12,-2],[3,-2],[-5,-2],[-14,-1],[1,-4],[3,-3],[-3,-3],[-4,-2],[-9,-2],[-8,3],[-9,3],[-5,-2],[-4,-2],[-4,1],[-5,2],[-13,-2],[-4,3],[-3,4],[9,2],[10,-2],[7,5],[9,2],[7,5],[3,2],[8,0],[2,0],[8,1],[2,-1]],[[6767,9881],[-3,-1],[-18,1],[-9,2],[-1,0],[0,1],[-11,1],[4,2],[15,1],[25,-2],[2,-2],[0,-1],[-4,-2]],[[6619,9887],[-10,-1],[-1,1],[0,1],[1,1],[1,3],[4,2],[31,2],[5,-2],[-2,-3],[0,-1],[-29,-3]],[[5847,4983],[-1,0],[0,-3],[1,-5],[3,-9],[2,-2],[2,-4],[1,-6],[1,-8],[-1,-9],[1,-7],[1,-4],[0,-6],[-1,-8],[0,-4],[-1,-1],[-1,-1],[-1,1],[-2,-1],[-2,-1],[-1,-1]],[[5821,4964],[1,1],[6,3],[0,-1],[1,-6],[1,-1],[1,0],[1,1],[4,5],[1,2],[2,4],[2,5],[1,4],[1,2],[1,1],[2,0],[1,-1]],[[4526,6279],[-1,3],[2,31],[0,3]],[[6166,6037],[2,0],[-1,1],[0,1],[1,3],[3,-6],[0,-6],[-1,-2],[0,2],[-1,1],[0,2],[-1,1],[-3,-1],[-2,2],[-2,6],[-1,4],[1,0],[1,2],[1,4],[-1,3],[2,-1],[1,-3],[0,-8],[0,-1],[0,-2],[1,-2]],[[6024,6550],[-2,4],[-1,3],[-2,2],[-5,4],[-1,3],[1,2],[1,-2],[1,-2],[4,-3],[5,-8],[1,-1],[-2,-2]],[[6016,6570],[0,-1],[-1,2],[0,5],[1,2],[0,-3],[0,-4],[0,-1]],[[6345,6738],[2,-6],[0,-6],[3,-13],[4,-10],[1,-4],[1,-5],[-1,-3],[0,-2],[3,-6],[5,-4],[2,-2],[2,-2],[-2,-3],[3,-7],[4,-8],[3,-2],[5,-11],[8,-8],[4,-10],[-1,1],[-2,1],[-1,-1],[1,-4],[0,-5],[2,-4],[2,-3],[1,-6],[-1,-12],[-1,0],[-1,1],[-1,0],[-1,-1],[2,-8],[1,-7],[2,-6],[1,-7],[1,-4],[5,-8],[1,-7],[2,-13],[3,-8],[1,-5],[3,-5]],[[6423,6504],[2,-2],[2,0],[1,-2],[-2,-3],[-1,-8],[2,-2],[2,0],[2,-2],[1,0]],[[6443,6172],[-6,-2],[-7,-2],[-7,-2],[-8,-2],[-7,-2],[-10,-3],[-9,-2],[-8,-3],[-8,-2],[-7,-2],[-4,-3],[-5,-5],[-8,-8],[-8,-8],[-4,-4],[-4,-10],[-2,-6],[-4,-10],[-3,-7],[-3,-9],[-1,-8],[-3,-12],[-2,-3],[-3,-4],[-3,-2],[-5,0],[-2,7],[-3,8],[-2,3],[-1,1],[-5,-1],[-5,-2],[-7,2],[-8,1],[-7,2],[-3,1],[-5,5],[-1,1],[-2,0],[-5,0],[-6,0],[-5,-1],[-6,0],[-5,-1],[-2,-2],[-2,0],[-2,-1],[-1,-1],[-1,1],[-2,0],[-2,1],[-2,4],[-2,3],[-1,1],[-2,1],[-2,0],[-2,-1],[-1,-2],[-3,-6],[0,-2],[1,-3],[0,-2],[-2,-2],[0,-6],[-1,-3],[0,-7],[1,-5],[1,-2],[0,-3],[-1,-5],[-1,-1],[-1,-5],[-1,-2],[-2,-2],[-5,-8]],[[6188,6017],[0,4],[-2,7],[0,5],[-1,5],[-1,4],[-3,4],[0,5],[-2,6],[-2,4],[-2,8],[-1,10],[-6,14],[-9,13],[-2,7],[-5,15],[-2,12],[-5,13],[-1,5],[0,7],[-2,7],[-1,5],[-5,24],[-2,4],[-2,5],[0,5],[0,2],[-4,4],[-4,10],[-11,16],[-6,2],[-4,6],[-3,7],[-4,13],[-6,14],[-5,20],[2,7],[0,5],[-2,9],[-1,7],[-2,6],[1,9],[1,10],[1,5],[0,6],[-1,12],[-1,6],[0,5],[-2,2],[-2,4],[2,0],[-3,7],[-1,3],[-1,9],[-1,6],[-5,15],[-2,9],[-5,12],[-5,9],[-4,4],[-1,3],[-3,1],[-3,5],[-2,0],[-3,1],[-3,10],[-2,9],[-5,12],[1,3],[2,5],[-1,7],[-1,5],[-2,8],[-6,21],[-2,3],[-2,3],[-2,9],[-1,8],[-4,4],[-8,29],[-4,10],[-2,7],[-5,11],[-2,11],[-5,11],[-5,18],[-6,17],[-3,4],[-7,1],[-3,1],[-3,-4],[0,5],[2,7],[3,14],[0,13],[4,38]],[[6024,6350],[0,-14],[1,-11],[4,-15],[4,-8],[1,-5],[0,-2],[0,-2],[-1,2],[-2,2],[0,-7],[1,-6],[0,-9],[1,-11],[-1,-9],[1,-16],[1,-20],[0,-12],[3,-29],[3,-16],[2,-4],[2,-3],[3,-1],[6,-8],[4,-9],[2,-4],[2,-5],[1,1],[1,1],[1,-4],[7,-9],[1,-4]],[[5946,5607],[-5,0],[0,1],[-1,0],[0,2],[0,2],[0,5],[1,5],[2,8],[0,1],[0,2],[-1,1],[0,2],[1,3],[0,2],[0,1],[0,1],[-2,7],[0,1],[-12,21],[-2,5],[-1,1],[-6,5],[0,1],[0,1],[1,3],[0,1],[-3,44],[0,1],[0,1],[1,1],[0,1],[0,2],[1,8],[0,7],[1,12],[1,4],[-14,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[1,-2],[0,-1],[0,-2],[-19,0],[8,-17],[0,-1],[0,-1],[0,-6],[0,-10],[0,-6],[0,-4],[2,-8],[0,-1],[0,-2],[-14,-24],[0,-1],[-2,-10],[-1,-5],[-1,-2],[-3,-8],[-12,-25],[-2,-2],[-6,0],[-3,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-7,14],[-13,17],[-1,-1],[-8,-8],[-1,-2],[-1,-1],[0,-9],[-2,-4],[-2,-5],[-6,-3],[-4,-2],[-3,-4],[-1,-1],[-1,-3],[-2,-5],[-1,-4],[1,-4],[-22,0],[-2,3],[-3,13],[-2,0],[-21,1],[-2,-1],[-6,-6],[-3,-1],[-3,3],[-11,26],[-2,3],[-1,2],[-1,4],[-3,3],[0,2],[-1,3],[0,6],[0,3],[-2,1],[-14,-6],[-2,1],[-3,-1],[-1,-2],[-1,-3],[-1,-4],[0,-3],[0,-4],[-1,-4],[-4,-8],[-1,-4],[0,-10],[0,-5],[-1,-2],[-2,-4],[0,-2],[0,-3],[-1,-7],[0,-3],[-2,-7],[-1,-3],[0,-5],[0,-2],[-7,-4],[-2,-3],[-1,-4],[-1,-2]],[[5634,5694],[1,6],[2,10],[0,4],[-1,5],[-2,3],[-2,1],[-1,1],[-1,3],[-2,2],[-1,4],[-1,5],[1,19],[-1,2],[-2,1],[0,2],[0,3],[-1,11],[-2,9],[1,5],[-2,7],[-3,3],[-3,-1],[-3,-2],[-2,1],[-2,1],[-1,2],[0,3],[0,5],[2,8],[2,6],[5,7],[1,3],[1,3],[0,4],[0,5],[-1,4],[-1,5],[-1,6],[0,4],[0,3],[1,4],[3,4],[0,1],[2,2],[1,1],[4,5],[1,2],[-1,2],[-1,2],[-1,3],[0,3],[-1,6],[0,4],[-1,3],[1,2],[2,3],[1,1],[3,2],[1,2],[1,4],[-1,3],[1,3],[2,6],[1,3],[2,3],[1,4],[1,4],[0,5],[-1,13],[3,5],[2,5],[4,0],[6,1],[4,1],[3,0],[7,-2],[0,1],[1,3],[0,9],[0,27],[0,26],[0,27],[0,26],[0,26],[0,27],[0,26],[0,27]],[[5943,5297],[-6,-14],[-5,-11],[-1,-1],[-1,-2],[-5,0],[-5,1],[-4,7],[-4,-5],[-3,-2],[-2,0],[-4,-1],[-5,-3],[-3,-3],[-1,-3],[-1,-4],[-1,-1],[-1,1],[-1,2],[-3,2],[-2,6],[-1,4],[-1,2],[-5,-6],[-2,-1],[-2,0],[-4,3],[-3,3],[-2,0],[-3,-4],[-3,-5],[-2,-5],[-1,-4]],[[4535,5779],[-1,2],[-1,5],[1,3],[2,2],[4,2],[2,-1],[1,0],[0,2],[-1,1],[-2,2],[-1,3],[-2,-2],[-1,-4],[0,-1],[-2,-1],[0,3],[-1,2],[1,2],[0,11],[0,6],[0,5]],[[4539,5852],[0,6],[-2,4],[-3,5],[0,3],[1,4],[2,2],[1,2],[-1,0],[-3,-2],[-1,0],[0,6],[-2,6],[-3,12],[-3,5],[-2,9],[-3,4],[-2,1],[-2,0],[-1,-4],[-3,6],[4,2],[7,8],[9,22],[7,26],[1,6]],[[7887,5126],[-4,-4],[-5,3],[2,6],[3,1],[3,-1],[1,-2],[1,-1],[-1,-2]],[[4270,1585],[0,-3],[-4,3],[-1,1],[1,2],[3,0],[1,-1],[0,-2]],[[3969,1844],[3,-3],[2,2],[2,0],[1,-1],[1,-1],[2,0],[3,-4],[-1,-5],[3,1],[2,-3],[1,0],[1,1],[2,2],[1,-2],[1,-5],[2,-1],[1,-4],[2,-6],[1,-1],[2,0],[2,1],[-1,-5],[0,-4],[3,-3],[-2,-2],[-2,-3],[-4,-2],[-1,1],[-3,5],[-2,5],[-4,7],[-1,2],[0,1],[-4,1],[-3,2],[-2,4],[-1,2],[-1,2],[-3,0],[-2,1],[-3,3],[-9,7],[-4,-1],[-1,2],[0,3],[2,2],[-9,1],[-2,1],[2,1],[11,0],[4,1],[1,-2],[3,-3],[4,0]],[[4841,4099],[-2,0],[0,2],[2,3],[1,0],[0,-3],[-1,-2]],[[4601,4574],[-1,0],[-1,1],[0,1],[1,2],[0,2],[1,0],[1,-2],[0,-1],[0,-2],[-1,-1]],[[9636,4356],[-2,-1],[-1,0],[-2,5],[1,1],[2,0],[0,-3],[2,-2]],[[9460,4348],[-2,-2],[-2,1],[-2,1],[-1,5],[-2,3],[-3,1],[-2,2],[0,1],[-2,1],[-1,2],[0,3],[1,1],[2,-1],[10,-12],[2,-4],[2,-2]],[[9614,4409],[-2,-1],[-1,1],[-2,-1],[-2,-4],[-1,0],[-1,0],[-1,4],[0,1],[2,0],[0,4],[2,1],[3,1],[3,-1],[1,-1],[-1,-3],[0,-1]],[[9491,4431],[4,-3],[2,0],[3,-2],[2,1],[1,-3],[4,-12],[0,-4],[2,-2],[-2,-1],[-2,1],[-3,-1],[-2,3],[-4,1],[-3,3],[-7,9],[0,4],[-1,2],[0,6],[-3,2],[-3,0],[0,3],[1,4],[2,0],[2,-2],[5,-7],[2,-1],[0,-1]],[[9486,4476],[1,-6],[0,-2],[-2,5],[-1,-2],[-1,2],[0,5],[0,5],[-1,4],[-1,6],[2,-1],[3,-16]],[[9437,4497],[6,-9],[2,1],[8,0],[5,-7],[3,-3],[1,-6],[2,-2],[2,-3],[0,-6],[0,-1],[-3,-2],[-1,0],[-5,2],[-5,4],[-8,0],[-5,2],[-1,1],[-1,3],[-2,5],[-2,6],[0,4],[0,7],[0,2],[2,3],[2,-1]],[[9448,4514],[2,-1],[1,0],[1,-3],[3,-5],[-1,-2],[-2,1],[-1,0],[0,2],[-3,3],[-2,0],[0,3],[2,2]],[[9421,4506],[-2,1],[-1,0],[-1,2],[1,3],[1,2],[1,-1],[1,-1],[1,0],[0,-4],[-1,-2]],[[9378,4528],[0,-2],[-2,0],[-3,4],[0,1],[2,0],[1,0],[1,-2],[1,-1]],[[9394,4524],[-1,0],[-1,2],[2,7],[1,-6],[0,-1],[-1,-2]],[[9385,4539],[1,1],[1,1],[1,2],[3,-2],[1,-1],[-2,-3],[0,-1],[1,-2],[0,-2],[-3,-4],[-2,1],[-1,4],[0,5],[0,1]],[[9371,4530],[-2,1],[-3,8],[1,3],[3,5],[1,1],[1,-3],[-1,-5],[-1,-1],[-1,-5],[2,-4]],[[9435,4543],[-1,-1],[-2,2],[-1,2],[0,3],[1,1],[2,-2],[0,-2],[1,-3]],[[9464,4554],[7,-17],[0,-4],[-1,-2],[0,-6],[1,-2],[1,-1],[4,-6],[1,-8],[0,-2],[1,-4],[0,-7],[3,-11],[1,-4],[-1,-3],[-1,2],[-3,11],[-5,5],[0,2],[-4,7],[-3,12],[-3,20],[1,5],[-3,10],[0,2],[2,0],[1,0],[0,1],[1,0]],[[9385,4539],[-2,0],[0,-2],[-2,5],[-3,1],[-1,3],[-1,7],[0,4],[-2,0],[-4,-1],[-1,-3],[-2,1],[-1,3],[1,3],[2,3],[1,4],[2,7],[2,1],[3,-3],[0,-9],[1,-3],[3,-2],[2,-4],[2,-11],[0,-4]],[[9349,4563],[0,-2],[-2,7],[0,4],[1,2],[0,1],[1,-8],[0,-4]],[[9365,4566],[-1,-1],[-3,1],[-2,6],[0,4],[2,5],[2,0],[1,-1],[1,-4],[1,-4],[-1,-4],[0,-2]],[[9352,4577],[-1,0],[-1,3],[-1,1],[0,3],[-2,6],[-1,4],[2,4],[2,-2],[2,-5],[3,-2],[-1,-3],[-2,-6],[0,-3]],[[9440,4541],[0,-1],[-4,5],[-2,6],[-8,6],[-2,4],[-2,0],[-4,6],[-4,3],[-2,5],[-1,2],[-1,1],[-3,6],[-2,3],[-1,6],[-3,5],[0,2],[7,-4],[4,-7],[3,-4],[1,-3],[3,-4],[2,0],[3,-4],[2,-1],[2,-2],[11,-18],[-1,-4],[1,-4],[1,-4]],[[9328,4626],[-3,-1],[-2,2],[1,4],[1,3],[4,-5],[-1,-3]],[[9374,4612],[1,-2],[-3,-3],[-2,2],[-1,2],[0,1],[-2,-1],[-4,2],[-5,8],[-6,16],[-6,9],[-1,3],[0,4],[1,2],[3,-2],[5,-7],[7,-8],[2,-3],[1,-10],[2,-2],[4,-8],[2,-1],[1,-1],[1,-1]],[[4652,5487],[-1,-1],[-2,3],[-9,6],[2,3],[7,1],[2,-2],[1,-1],[0,-3],[0,-6]],[[4680,5456],[-1,2],[-5,9],[-6,5],[-11,10],[-4,2],[0,4],[1,6],[-2,7],[1,5],[-1,0],[-2,-3],[-3,1],[-3,4],[-1,2],[-1,2],[-1,12],[-1,5],[-2,3],[-4,1],[-1,7],[-2,6],[0,3],[2,0],[1,-2],[2,-1],[3,6],[2,3],[0,3],[0,1],[-1,-2],[-4,1],[-1,-3],[-2,0],[-1,7],[0,4],[1,5],[3,0],[1,2],[-3,1],[-3,5],[-1,4]],[[2560,5840],[0,-6],[-1,-4],[-2,-3],[-2,0],[-5,-1],[-6,3],[-5,4],[-3,0],[1,-1],[2,-1],[3,-3],[-1,0],[-10,6],[-11,11],[-7,2],[-8,3],[-4,7],[-4,3]],[[6201,5728],[5,-9],[5,-19],[7,-14],[8,-14],[3,-5],[3,-2],[16,0],[11,13],[10,9],[3,2],[6,-3],[6,-1],[6,-2],[3,0],[11,11],[7,10],[5,5],[2,0],[7,-4],[8,2],[12,8],[4,2],[2,0],[7,-4],[1,1]],[[6359,5714],[0,-17],[0,-16],[0,-16],[0,-28],[0,-9],[0,-15],[0,-6],[-4,-13],[-5,-16],[-5,-17],[-5,-14],[-4,-13],[-4,-14]],[[6359,5714],[3,0],[9,5],[7,6],[13,5],[10,11],[2,6],[3,7],[4,3],[11,-9],[2,0],[-1,-6],[0,-5],[-2,-9],[-2,-10],[1,-15],[1,-25],[0,-4],[-1,-3],[0,-3],[-2,-1],[0,-2],[1,0],[3,2],[0,3],[0,2],[3,-3],[2,-2],[1,-3],[0,-2],[-4,1],[-1,2],[-5,-3],[-3,-3],[-1,-5],[0,-19],[-2,-13],[0,-17],[-4,-11],[-1,-8],[-6,-15],[-3,-14],[-1,-6],[-5,-19],[-7,-14],[-2,-18],[-3,-11],[-3,-10],[-6,-18],[-3,-13],[-4,-22],[-1,-14],[-11,-40],[-12,-32],[-7,-27],[-13,-31],[-17,-41],[-23,-48],[-7,-9],[-25,-30],[-16,-25],[-8,-17],[-9,-15],[-7,-14],[-21,-47],[-2,-4],[-2,-4],[-3,-8],[-2,-4],[-5,-13],[-3,-7],[-4,-7],[-1,-5],[-1,-5],[-1,-4],[-3,-13],[-3,-9],[-3,-7]],[[3440,7817],[-1,-1],[-2,1],[1,2],[1,0],[1,1],[0,-1],[0,-1],[0,-1]],[[3437,7821],[-3,-2],[-1,1],[1,2],[1,4],[0,1],[-2,8],[1,1],[0,1],[2,-2],[0,-2],[-1,-5],[1,-3],[1,-2],[0,-2]],[[5184,5054],[-2,-5],[-1,2],[-1,3],[-1,6],[0,3],[2,4],[3,3],[1,1],[2,-5],[0,-5],[-3,-7]],[[5206,5140],[-1,-2],[-2,1],[0,3],[2,4],[0,1],[1,-1],[0,-1],[0,-2],[0,-3]],[[3411,5375],[0,-1],[1,7],[1,6],[0,5],[2,6],[2,4],[14,-4],[7,-3],[8,-5],[1,-6],[0,6],[0,6],[2,4],[5,1],[7,-2],[7,3],[8,-1],[14,-4],[6,-3],[2,-3],[1,-5],[-1,-7],[-1,-6],[-2,-9]],[[5626,7954],[-1,-3],[-1,-3],[-1,-3],[-2,-3],[-1,-8],[-1,-3],[-4,-7],[-1,-10]],[[5377,7743],[1,1],[3,3]],[[5459,8381],[-2,-3],[-1,0],[-1,4],[0,11],[0,5],[6,18],[3,1],[4,12],[1,5],[2,4],[1,4],[0,2],[2,-1],[1,-1],[-2,-2],[0,-3],[0,-1],[-5,-14],[-1,-8],[-1,-2],[-7,-31]],[[5529,8473],[-2,-2],[-1,-4],[-2,0],[-2,-2],[-1,-13],[4,-5],[-2,-1],[-2,-1],[-1,-3],[-1,-4],[-5,-3],[-1,-2],[-3,-5],[-1,-6],[-3,-3],[-2,0],[1,5],[2,4],[-2,3],[-1,5],[-2,3],[2,4],[-1,7],[0,6],[2,3],[2,3],[4,6],[3,4],[6,2],[2,-1],[1,4],[1,1],[2,-1],[3,-4]],[[5532,8478],[-1,-4],[-1,1],[-2,2],[3,4],[4,0],[1,-1],[-4,-2]],[[5511,8543],[-1,0],[-1,0],[1,3],[0,1],[2,1],[1,0],[-2,-5]],[[5516,8570],[-1,-2],[0,2],[0,1],[0,2],[2,1],[2,-1],[-2,-2],[-1,-1]],[[5670,8945],[-7,-1],[-5,2],[-3,-1],[-5,0],[-6,-1],[-1,-2],[-2,-1],[-5,3],[-5,5],[-3,-4],[-2,-1],[-3,4],[-1,0],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[0,-6],[0,-1],[-5,0],[0,-1],[1,-1],[1,-1],[-2,-1],[-5,0],[0,-2],[1,-2],[-1,-2],[-1,-1],[-5,-1],[-4,0],[0,-1],[-1,-2],[1,-1],[1,-1],[1,-1],[0,-2],[-1,-1],[-4,4],[-1,0],[1,-2],[2,-2],[1,-3],[1,-2],[0,-2],[-4,-7],[-4,-4],[-3,-4],[-1,-4],[1,-2],[3,-3],[1,-6],[2,-5],[3,-5],[0,-2],[-1,-3],[-6,-4],[-7,-8],[-7,-18],[-2,-2],[-6,-3],[-3,-3],[-4,-4],[-8,-3],[-4,-4],[-2,-5],[-2,0],[-1,2],[-3,1],[0,-3],[0,-2],[-4,3],[-2,-3],[-1,-5],[-6,-6],[-6,1],[-1,-1],[2,-1],[0,-1],[-1,-1],[-1,0],[-3,-1],[-2,0],[-1,-3],[-1,-4],[-3,-1],[-2,0],[-1,-3],[5,0],[0,-2],[0,-2],[-1,-1],[-6,-3],[-1,-2],[-1,-2],[-2,0],[0,2],[0,1],[-4,0],[-1,3],[-1,-1],[1,-2],[1,-3],[1,-4],[-1,-2],[-1,-1],[1,-2],[2,0],[0,-2],[-2,-1],[-3,-5],[-3,0],[-2,-3],[-2,0],[-2,2],[-3,2],[-1,-3],[0,-2],[2,-6],[3,-4],[2,-2],[-2,-1],[-1,-3],[-2,-8],[-1,-4],[-1,-5],[1,-5],[0,-3],[2,-3],[-4,0],[-4,2],[1,-4],[-3,-5],[1,-4],[0,-3],[0,-4],[1,-2],[0,-2],[-1,-2],[1,-2],[0,-6],[1,-10],[-1,-2],[2,-8],[0,-3],[0,-3],[3,-4],[2,0],[3,0],[1,-1],[1,-2],[1,-3],[2,0],[4,2],[2,1],[2,-5],[4,-6],[2,-3],[5,-1],[4,-5],[-1,-6],[2,-2],[5,-2],[2,-3],[1,-3],[1,-2],[2,-7],[-1,-4],[-2,-2],[-5,-4],[-2,-4],[-1,-2],[-5,-4],[-2,-1],[-2,-2],[-2,-1],[-1,0],[-6,-4],[1,-2],[4,-1],[2,1],[2,3],[2,0],[1,0],[2,1],[2,1],[1,-1],[2,-4],[-4,-2],[-2,0],[-1,-7],[-2,-2],[-1,-2],[-5,-3],[-3,-3],[-4,-3],[-2,1],[-3,-3],[-6,-4],[-3,-4],[-6,-4],[-4,-4],[-9,0],[-9,1],[-3,-2],[3,0],[2,-2],[2,1],[6,-1],[3,-1],[4,-5],[-3,-2],[-5,-2],[2,-8],[1,-5],[-2,-3],[0,-14],[-3,-1],[-1,-6],[1,-3],[0,-7],[1,-4],[1,-4],[-1,-4],[-4,-10],[0,-5],[1,-2],[1,-5],[-2,-8],[-2,-7],[-1,-6],[-4,-7],[-2,-5],[-4,-17],[-2,-3],[-3,-3],[-3,3],[-2,1],[-4,0],[-5,-2],[-7,1],[-8,0],[-2,-2],[1,-6],[-2,-1],[-3,2],[-3,-2],[-1,-2],[-4,-6],[-2,-3],[0,-6],[2,-6],[2,-6],[-5,-8],[-2,0],[-8,2],[-13,-5],[-13,4],[2,4],[0,3],[1,5],[0,5],[0,3],[-1,4],[-3,4],[-7,15],[-2,7],[-1,2],[1,0],[5,-3],[2,0],[1,2],[-2,5],[-1,2],[-1,3],[3,1],[3,0],[1,4],[-1,6],[-2,1],[-2,1],[-4,10],[-4,5],[-8,19],[-3,13],[-2,-1],[-2,5],[0,6],[-1,4],[-4,2],[0,3],[0,12],[-5,2],[-2,7],[-1,13],[-3,2],[-2,-1],[0,4],[1,3],[-2,12],[0,11],[-1,3],[-1,4],[1,3],[0,2],[3,1],[3,-3]],[[5891,3457],[0,1],[-2,0],[-1,0],[-1,-8],[0,-13],[0,-8],[-6,0],[-7,1],[-6,3],[-6,8],[-3,11],[-2,8],[-2,0],[0,1],[0,9],[0,9],[0,3],[4,12],[2,7],[2,7],[3,8],[4,5],[1,1],[1,-1],[6,-7],[7,-6],[1,0],[1,1]],[[3249,6117],[0,-1],[0,-2],[-2,1],[-1,2]],[[6542,4769],[0,-6],[-1,2],[-1,4],[-1,2],[-1,3],[2,3],[2,-8]],[[5999,7098],[-2,13],[-1,6],[0,7],[2,9],[-1,5],[0,3],[0,4],[-4,9],[2,16],[1,4]],[[5996,7174],[2,0],[5,-5],[1,0],[1,7],[1,2],[3,1],[1,10],[1,2],[2,1],[2,1],[2,0],[0,2],[-3,11],[1,3],[1,12],[1,4],[1,2],[3,-1],[5,-2],[1,-3],[2,-3],[3,0],[4,0],[3,-1],[3,2],[5,4],[3,2],[2,1],[8,7],[3,-1],[3,-1],[1,-1],[4,-4],[3,-4],[2,-2],[4,0],[6,0],[7,0],[4,1],[5,2],[9,5],[12,11],[7,5],[3,1],[4,0],[4,-1],[5,-1],[2,0],[5,1],[6,2],[4,2],[5,3],[3,5],[1,0],[1,-1],[1,0],[1,-3],[1,-7]],[[2990,6341],[4,-3],[2,0],[-1,-1],[-1,-1],[-3,-1],[-1,1],[0,2],[0,3]],[[3009,6336],[0,-1],[-2,2],[-3,1],[0,3],[1,0],[4,-1],[1,-3],[-1,-1]],[[3003,6340],[-2,2],[0,2],[-1,0],[-1,1],[0,2],[3,0],[0,-5],[1,-2]],[[5045,5415],[-9,-4],[-4,-4]],[[7768,5433],[-1,0],[-1,4],[1,7],[2,-8],[-1,-3]],[[7751,5496],[1,-7],[-1,2],[-1,3],[0,4],[0,1],[1,-3]],[[7738,5517],[0,-1],[-2,11],[2,-3],[0,-7]],[[7733,5515],[0,-5],[-2,0],[-1,-2],[0,-1],[-1,9],[1,13],[0,1],[1,-3],[3,-1],[-1,-8],[0,-3]],[[7730,5583],[-2,-1],[1,3],[0,3],[1,0],[0,-3],[0,-2]],[[7779,5615],[0,-4],[-1,-4],[-2,-2],[-1,3],[0,5],[1,1],[2,0],[1,1]],[[7779,5621],[0,-1],[-1,2],[-1,2],[0,3],[1,0],[1,-3],[0,-3]],[[7849,5738],[0,-6],[-2,3],[1,3],[0,1],[1,-1]],[[7844,5757],[0,-2],[-1,2],[0,-1],[-2,0],[-1,9],[0,2],[1,-1],[2,-4],[1,-3],[0,-2]],[[7921,5897],[0,-1],[-2,-3],[-1,-4],[-1,0],[-1,2],[-1,2],[0,5],[-2,2],[-3,1],[-6,-2],[-4,-1],[-6,1],[-4,-1],[-2,-1],[-3,1],[-2,-1],[-2,1],[-4,3],[-1,0],[-4,-3],[-3,-1],[-3,-1],[-5,-5],[-3,-7],[-1,-5],[-2,-5],[-2,-7],[-3,-8],[-2,-3],[0,-2],[0,-3],[-4,-1],[-2,0],[-1,-1],[1,-15],[1,-6],[1,-7],[1,-3],[1,-11],[0,-10],[4,-6],[2,-4],[2,-4],[-1,-3],[-1,-7],[1,-10],[5,-21],[0,-2]],[[7858,5740],[-1,4],[-2,7],[-1,7],[-3,8],[-2,4],[0,-3],[-1,-3],[-3,4],[-3,4],[-2,9],[-1,-2],[0,-2],[-3,7],[-2,5],[-3,2],[-2,2],[-1,2],[-3,3],[-8,-4],[-10,3],[-4,-3],[-1,2],[-1,4],[1,6],[0,13],[1,9],[0,7],[0,3],[1,4],[-2,2],[-7,4],[-1,2],[-2,-3],[-8,-2],[-4,-2],[-3,-5],[0,-7],[1,-4],[1,-8],[-2,-16],[-1,-5],[1,-19],[0,-11],[-2,-8],[-3,-6],[-1,-11],[-2,-6],[-2,-11],[-2,-15],[-1,-7],[-1,-12],[-6,-19],[-1,-11],[-2,-4],[1,-3],[0,-6],[-1,-14],[0,-12],[1,-6],[2,-13],[0,-3],[-1,-5],[3,-3],[1,-1],[9,6],[3,-1],[2,-6],[0,-4],[2,-27],[1,-5],[2,-4],[2,-5],[0,1],[0,2],[1,2],[1,-5],[2,-10],[5,-48],[1,-7],[1,-6],[-3,3],[-1,11],[0,4],[-1,1],[-2,0],[0,2],[1,4],[0,4],[-2,3],[-3,-3],[0,-7],[2,-6],[4,-13],[2,-6],[2,-1],[2,1],[3,-6],[3,-5],[6,-8],[4,1],[4,2],[3,-1],[3,-2],[3,-6],[5,-17],[8,-14]],[[7780,5428],[-7,19],[-4,7],[0,14],[-1,2],[-2,1],[-1,3],[1,8],[-2,-1],[-3,0],[-2,2],[-1,12],[-1,3],[-3,6],[-3,0],[-1,3],[1,7],[-2,4],[-3,4],[-3,2],[-2,12],[-2,3],[-1,2],[-3,-2],[0,-4],[-2,-4],[-2,1],[-1,2],[-2,12],[0,7],[0,13],[3,12],[1,19],[2,12],[1,4],[2,16],[4,21]],[[6959,7476],[1,1],[1,-1],[1,-3],[0,-1],[-1,0],[-1,2],[-1,2]],[[6882,7249],[1,4],[0,14],[1,5],[5,9],[2,7],[2,5],[2,2],[1,5],[2,5],[0,3],[0,2],[-1,2],[-2,3],[-3,5],[-1,6],[-1,7],[0,4],[2,13],[0,3],[-1,2],[-2,1],[-2,1],[-2,-1],[-3,0],[-2,1],[-1,0],[0,6],[-1,2],[0,1],[-6,3],[-2,1],[0,1],[2,14],[1,1],[1,2],[1,2],[5,4],[6,-2],[4,-2],[5,-1],[2,0],[2,-1],[2,1],[1,1],[2,5],[1,6],[1,6],[1,0],[2,0],[0,1],[1,1],[0,2],[1,-2],[1,1],[0,1],[0,1],[-1,2],[-1,3],[0,1],[1,1],[2,1],[2,0],[0,2],[0,1],[-1,1],[-4,0],[-4,0],[-1,1],[1,1],[0,1],[9,2],[4,0],[3,-2],[2,1],[-2,5],[2,1],[0,2],[-2,14],[1,1],[2,3],[0,5],[1,3],[1,1],[3,-1],[3,-6],[2,-1],[1,0],[1,2],[7,5],[4,3],[4,4],[1,2],[1,6],[1,1],[1,-1],[4,-7],[2,-4],[0,-1],[-1,-2],[1,-1],[3,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-4,-5],[-5,-7],[0,-1],[0,-1],[0,-2],[1,-1],[2,-1],[2,-2],[0,-3],[1,-3],[2,-1],[7,2],[1,0]],[[6475,7345],[-1,-2],[-1,8],[-1,9],[1,3],[1,0],[-1,-4],[2,-14]],[[6497,7259],[0,4],[-2,15],[-1,15],[0,8],[1,14],[0,7],[0,6],[0,7],[1,7],[0,7],[0,5],[-2,4],[-2,5],[-1,3],[0,3],[-2,1],[-2,3],[-2,2],[-4,2],[-2,0],[-2,-1],[-1,-3],[-1,5],[0,5],[3,10],[2,-3],[2,-1],[3,0],[3,0],[0,4],[-2,2],[-1,2],[-1,4],[0,5],[1,5],[-1,2],[-1,1],[-3,0],[-5,1],[-4,0],[-1,-5],[3,-7],[-2,3],[-2,5],[-3,8],[-2,10],[0,11],[2,9],[1,8],[1,10],[2,11],[2,-5],[1,-4],[3,-4],[1,-1],[4,-1],[2,0],[3,2],[3,0],[2,-5],[2,-4],[3,-1],[6,3],[3,1],[2,-2],[2,0],[1,0],[-1,5],[-1,4],[2,2],[5,-2],[3,1],[0,1],[1,1],[0,4],[0,3],[0,4],[-1,3],[-2,4],[-9,10],[-3,4],[-2,5],[-2,8],[-1,7],[-1,6],[-3,13],[-1,2],[-2,0],[-3,1],[-4,-1],[-6,-2],[-3,0],[-1,-1],[-4,-6],[-2,-4],[-3,-11],[2,-4],[0,-2],[-1,-16],[1,-8],[-1,-1],[0,2],[-2,8],[-4,10],[-3,15]],[[6554,7495],[8,-1],[6,-1],[8,0],[3,-1],[3,-1],[1,0],[1,3],[1,1],[1,1],[0,1],[-1,2],[-2,3],[-1,13],[0,11],[2,4],[2,2],[3,8],[2,2],[2,2],[9,0],[3,2],[1,2],[2,7],[1,5],[1,2],[1,2],[2,0],[2,-2],[2,-1],[1,-1],[2,-2],[1,-3],[0,-2],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,2],[-2,4],[-4,7],[-2,3],[-1,1],[0,2],[1,2],[2,1],[2,-1],[4,0],[1,1],[2,6],[4,-6],[4,-7],[1,-1],[3,-1],[3,0],[1,-1],[1,-2],[2,-7],[2,-2],[3,-2],[8,1],[3,-1],[2,-3],[2,-2],[0,-1],[0,-2],[-1,-2],[0,-3],[0,-3],[0,-2],[-1,-1],[1,-1],[4,-3],[1,-3],[1,-1],[1,-2],[-1,-1],[-2,0],[-1,-2],[0,-3],[1,-3],[1,-3],[-1,-3],[-1,-4],[0,-3],[0,-2],[4,-3],[7,-7],[1,-1],[7,2],[3,0],[2,-1],[5,-1],[2,-1],[2,0],[2,0],[2,3],[0,1],[1,1],[2,0],[4,-2],[4,-5],[3,-4],[1,-4],[2,-8],[2,-12],[3,-9],[3,-4],[2,-8],[2,-18],[1,-3],[1,-2],[4,-5],[7,-9],[4,-5],[6,-7],[6,-8],[6,-11],[2,-2],[5,-6],[6,-6],[4,2],[6,-10],[2,-3],[1,-2],[5,-3],[7,-8],[9,-12],[6,-6],[2,-1],[1,0],[2,2],[2,1],[3,-2],[3,-2],[2,-2],[3,-3],[2,-3],[1,-1],[6,-3],[0,-1],[1,-2],[0,-1],[-3,-9],[0,-11],[0,-8],[0,-7]],[[8445,4493],[4,5],[7,4]],[[8469,4517],[3,5],[3,9],[1,3],[4,4],[2,1],[12,5],[3,0],[7,0],[10,1],[2,1],[4,2],[3,2],[1,3],[2,1],[3,-2],[4,-1],[1,-2],[1,-1],[-5,-10],[-5,-8],[-4,-2],[-3,-2],[-3,-3],[-2,-4],[-3,-3],[-3,-1],[-3,-1],[-3,-3],[-3,-5],[-2,0],[-1,0],[-3,-2],[-9,-7],[-6,-7],[-4,-7]],[[8489,4564],[-2,-10],[-2,2],[3,6],[1,2]],[[141,3785],[0,-9],[-1,4],[0,2],[1,3]],[[134,3793],[1,0],[0,1],[2,1],[0,-2],[-2,-6],[-2,2],[-3,4],[-1,3],[1,3],[0,-2],[1,-1],[2,0],[1,-2],[-1,-1],[1,0]],[[168,3943],[-1,-4],[-1,0],[-1,2],[0,1],[2,5],[1,0],[1,-1],[0,-2],[-1,-1]],[[3305,5647],[-5,-3],[-11,-1],[-5,1],[-4,-1],[7,7],[1,3],[3,1],[0,1],[1,16],[0,4],[-1,2],[-1,1],[-2,2],[-1,2],[2,1],[3,1],[3,2],[5,1],[3,1],[5,1],[-3,-8],[-1,-2],[1,-7],[-1,-4],[1,-6],[1,-4],[-1,-3],[0,-6],[0,-2]],[[3312,5709],[-2,-1],[1,3],[2,4],[4,2],[1,1],[0,-4],[-6,-5]],[[5304,7044],[-1,0],[-1,-2],[-1,0],[-2,2],[-1,0],[-1,1],[1,7],[0,2],[5,0],[3,-4],[0,-1],[0,-1],[-1,-2],[-1,-2]],[[5313,7105],[-5,-4],[1,4],[3,4],[1,-1],[0,-3]],[[5238,7235],[7,3],[6,10],[2,2],[16,9],[2,-1],[2,-1],[-1,-3],[-1,-3],[2,-4],[1,2],[0,2],[0,3],[3,0],[3,-1],[3,-2],[-1,-10],[5,-10],[-2,-5],[4,-3],[3,3],[1,5],[6,3],[5,8],[3,1],[0,-6],[2,-6],[-2,-2],[-3,-6],[-5,-15],[-4,-4],[-3,-6],[-1,-4],[-1,-4],[1,-9],[3,-8],[2,-6],[3,-1],[6,-8],[0,-5],[1,-6],[0,-7],[2,-6],[-4,-12],[-3,-9],[-5,-12],[-4,-8],[-9,-12],[-2,-4],[-2,-4],[-1,-4],[1,-5],[3,-12],[4,-7],[4,-4],[7,1],[0,-4],[0,-6],[3,0],[2,1],[2,6],[3,-4],[2,-12],[3,-3],[1,-1],[-2,-1],[0,-2],[1,-1],[2,-1],[2,1],[3,-3]],[[5721,7424],[-7,-2],[-2,2],[2,4],[4,2],[1,0],[2,-3],[0,-3]],[[5996,7174],[2,5],[-2,10],[-2,9],[2,5],[4,7],[5,8],[0,5],[-1,4],[-1,3],[-2,3],[-4,-4],[-3,-4],[-2,0],[-2,-3],[-1,-4],[-2,-3],[-4,-2],[-6,4],[-7,5],[-4,5],[-3,1],[-2,-2],[-9,-11],[-7,-16],[-2,-2],[-8,-7],[-4,-2],[-3,0],[-9,-3],[-5,0],[-4,-4],[-7,4],[-4,5],[-3,5],[-4,11],[-3,5],[-7,5],[-12,11],[-3,1],[-8,2],[-8,1],[-2,-5],[-1,-16],[-1,-4],[-1,-8],[-1,-3],[-1,-1],[-3,2],[-2,1],[-4,-3],[-8,-5],[-3,0],[-9,6],[-4,3],[-2,5],[-1,7],[-1,4],[0,3],[-1,3],[-2,2],[-2,-3],[-2,0],[-3,2],[-6,6],[-5,0],[-3,-7],[-3,-2],[-2,-1],[0,2],[2,5],[-8,-1],[-4,-4],[-4,1],[-2,1],[0,2],[3,1],[2,2],[8,1],[2,2],[3,5],[3,4],[1,2],[-3,0],[-13,-1],[-9,1],[-1,-3],[-1,0],[-1,6],[2,3],[2,0],[4,2],[0,5],[-3,4],[-1,2],[-3,0],[-1,3],[-1,6],[-1,6],[-3,3],[1,2],[4,2],[1,10],[-1,5],[-2,1],[-6,4],[-2,0],[-2,5],[-3,3],[-2,-1],[-1,-1],[-2,0],[-2,3],[-3,2],[-1,2],[1,6],[2,0],[1,4],[-2,7],[0,4],[2,1],[2,-1],[2,-4],[1,-4],[-1,-4],[1,-4],[1,-1],[1,4],[1,1],[1,-2],[3,-1],[6,2],[1,3],[-4,-1],[-2,2],[-2,5],[-1,4],[0,2],[-1,3],[1,1],[3,3],[3,6],[-1,2],[-2,1],[-1,-1],[-2,3],[0,3],[1,2],[0,4],[-3,8],[-1,2],[0,3],[3,5],[3,6],[0,2],[-2,0],[-10,-2],[-4,-2],[-6,-1],[-1,3],[0,3],[2,5],[0,13],[1,7],[3,2],[5,10],[7,12],[8,0],[3,3],[4,0],[1,-2],[1,-3],[4,-3],[7,1],[1,1],[2,2],[-3,6],[1,1],[3,1],[3,-2],[0,-1],[-1,-2],[-1,-3],[1,-1],[9,2],[10,-1],[3,0],[7,0],[2,2],[-3,3],[-2,1],[-1,1],[-2,2],[5,6],[2,1],[13,3],[9,2],[1,1],[-2,0],[-12,3],[-3,2],[-4,6],[-1,1],[-1,3],[1,5],[1,5],[1,3],[5,0],[17,-5],[11,3],[13,-7],[13,2],[2,3],[3,9],[18,16],[6,9],[6,4],[12,5],[9,7],[3,1],[22,-3],[16,-1],[7,6],[4,-2],[0,-2],[-1,-2],[0,-4],[2,-5],[3,-4],[7,-6],[10,5],[2,-1],[2,-1],[3,-15],[3,-6],[4,-3],[3,-1],[2,4],[1,1],[4,1],[6,-5],[2,-6],[10,-4],[9,-2],[4,-4],[14,-5],[4,1],[9,5],[16,5],[10,-8],[3,-1],[3,1],[3,-2],[4,1],[12,9],[3,5],[4,1],[4,3],[9,10],[2,5]],[[5778,7533],[-1,-7],[2,-7],[4,-11],[4,-5],[16,-13],[4,-1],[-1,-5],[-1,-5],[-1,-3],[-5,-2],[-14,6],[-3,0],[-2,-1],[-5,-4],[-5,1],[-7,-2],[-2,-8],[-4,-9],[-8,-7],[-6,-4],[-8,-14],[-4,-8],[-2,-2],[-2,-1],[1,4],[1,3],[0,3],[0,4],[3,4],[2,4],[8,5],[2,5],[-6,0],[-6,-1],[-4,1],[-3,-1],[-1,5],[-1,2]],[[8288,6499],[1,-4],[0,-2],[-4,1],[0,3],[1,-1],[2,3]],[[8361,6387],[-2,-7],[-2,-8],[0,-7],[0,-7],[0,-6],[-1,-7],[-3,2],[-1,5],[-1,7],[-2,9],[0,3],[-3,5],[-3,3],[-2,3],[1,0],[-2,5],[-1,5],[-2,16],[-1,3],[-1,4],[0,3],[0,4],[1,5],[0,6],[0,7],[0,8],[1,3],[13,46],[4,9],[2,5],[2,6],[1,6],[2,7],[2,1],[7,6],[3,5],[2,2],[2,0],[1,-3],[1,-3],[2,-1],[3,-3],[1,-3],[1,-5],[-2,-5],[-1,-4],[0,-4],[0,-7],[0,-6],[-2,-15],[-3,-9],[-1,-4],[-1,-12],[-1,-11],[-1,-15],[-3,-15],[-1,-6],[-2,-6],[-3,-11],[-4,-9]],[[6102,4574],[-1,-1],[-1,1],[-1,3],[2,2],[2,4],[3,6],[1,4],[1,1],[0,-5],[-2,-10],[-2,-1],[-2,-4]],[[6097,4681],[2,-13],[-1,-2],[-1,-2],[-1,0],[-1,2],[-1,5],[-1,-1],[-2,5],[-2,0],[-1,6],[0,5],[0,9],[2,5],[1,8],[2,-6],[0,-8],[2,-10],[1,-3],[1,0]],[[6107,4756],[0,-3],[-1,-3],[1,-9],[-1,-6],[-1,-8],[-1,-3],[-2,1],[-1,1],[0,3],[1,15],[-1,11],[3,-1],[3,2]],[[6089,4769],[-1,-5],[-2,-12],[0,-5],[-1,-6],[-1,-4],[-2,-17],[-2,-7],[-2,-15],[-1,-11],[2,-8],[0,-7],[3,-8],[3,-2],[1,-4],[3,-7],[2,-8],[5,-4],[2,-8],[-1,-6],[-2,-5],[-2,-8],[-2,-11],[0,-16],[1,3],[3,-4],[0,-12],[-3,-14],[-1,-6],[0,-6],[2,-16],[3,-8],[0,-3],[-1,-2],[6,-15],[-1,-13],[2,-10],[1,-8],[1,-7],[0,-5],[-1,-5],[4,-1],[2,-4],[1,-4],[3,0],[1,-3],[2,-2],[5,-7],[2,-3],[0,-2],[0,-1]],[[5914,4489],[-2,2],[-3,3],[-4,3],[-3,4],[-2,3],[-3,2],[-3,0],[-2,3],[-3,1],[-2,0],[-1,2],[0,5],[-1,1],[-2,1],[-2,0],[-1,0],[-1,0],[-1,3],[-2,3],[-1,6],[-2,3],[-3,3],[-7,0],[-2,0],[-1,3],[-2,5],[-2,5],[-2,7],[0,4]],[[5847,4983],[0,1],[2,-1],[2,1],[2,3],[2,1],[1,-1],[3,0],[5,0],[5,0],[5,0],[5,0],[5,0],[5,0],[5,0],[5,0],[5,0],[5,0],[4,0],[5,0],[5,0],[5,0],[5,0],[5,0],[3,0]],[[5889,7784],[3,-3],[-3,1],[-9,2],[-4,3],[-1,3],[0,4],[2,-4],[1,-2],[11,-4]],[[6061,7836],[-1,0],[-10,1],[-8,-2],[-5,-9],[-4,0],[-5,-2],[-3,-3],[-4,-7],[-2,3],[-4,0],[-4,-2],[-4,-4],[-2,-1],[-5,1],[-5,-2],[-12,-15],[-4,-10],[-2,-2],[-2,-3],[-2,-1],[-1,0],[6,7],[1,3],[1,2],[0,4],[-2,4],[-5,-11],[-2,-1],[-4,-3],[0,-7],[1,-5],[1,-7],[3,-10],[7,-15],[3,-6],[2,-2],[3,0],[5,4],[3,1],[5,-2],[2,4],[2,1],[3,0],[4,-1],[4,-2],[-1,-6],[-2,-4],[-1,-5],[-1,-5],[-4,-2],[-5,0],[-5,-1],[-2,2],[-1,2],[-3,1],[-3,1],[-2,-1],[-3,-7],[-6,-5],[-2,-5],[-5,1],[-5,-1],[-7,-5],[-5,-11],[-6,-7],[-5,-2],[-4,1],[-3,2],[-5,7],[0,3],[1,1],[1,3],[2,14],[0,4],[-2,7],[-4,6],[-4,-1],[-2,1],[-7,9],[-4,1],[-5,-2],[-1,1],[-2,3],[9,12],[9,9],[4,1],[5,4],[6,7],[-1,5],[-1,3],[-3,-1],[-2,-1],[-5,4],[-1,3],[-8,-3],[-4,0],[-8,-2],[-5,2],[-8,8],[-3,2],[-2,-1],[-2,3],[2,1],[2,0],[2,1],[1,2],[0,2],[-5,2],[-4,1],[-2,2],[-2,2],[4,1],[5,-2],[7,-1],[6,-2],[2,2],[4,5],[0,1],[-6,-3],[-6,2],[-2,3],[-2,4],[-1,4],[0,4],[0,8],[-2,7],[-1,3],[-2,3],[2,-7],[1,-5],[1,-4],[0,-13],[-1,-4],[-3,-1],[-3,1],[-4,1],[1,7],[-2,-3],[-2,-6],[-3,-1],[-5,1],[-9,-5],[-1,-4],[-1,-7],[-2,-3],[0,-3],[-4,-9],[-1,-1],[-7,-13],[-1,-1],[-5,-3],[-3,-3],[-2,-1],[-4,1],[-2,-2],[0,-2],[0,-5],[2,-4],[1,-11],[0,-5]],[[3517,3048],[-1,-2],[-2,-5],[-1,-9],[-6,-14],[-1,-8],[-7,-8],[-4,-9],[-3,0],[-2,-4],[-15,-12],[-6,3],[-4,-1],[-3,6],[-9,2],[-5,-2],[-7,-6],[-2,0],[-2,0],[-4,3],[-2,5],[-11,5],[-8,14],[-11,0],[-8,-2],[-1,2],[-1,3],[-1,5],[-7,12],[-6,12],[-1,11],[1,13],[2,14],[-1,5],[2,3],[2,0],[2,4],[2,6],[0,4],[-1,8],[-1,11],[-1,6]],[[678,6173],[-1,-3],[-2,0],[-5,6],[-1,4],[1,15],[-2,12],[-3,10],[2,4],[2,4],[3,7],[-2,9],[0,6],[1,1],[6,-7],[12,-10],[3,-7],[1,-7],[2,-1],[1,-6],[3,-4],[1,-3],[-1,-4],[-6,-8],[-7,-3],[-6,-9],[-2,-6]],[[643,6277],[-2,-1],[-1,0],[-1,4],[-2,5],[3,2],[2,-2],[1,-2],[1,-2],[-1,-4]],[[653,6287],[1,-1],[3,1],[2,1],[3,-4],[2,-3],[2,-3],[1,-2],[-1,-2],[-2,-4],[-4,-1],[-2,-2],[-3,0],[-1,1],[0,5],[-1,6],[-2,-1],[-1,2],[-3,5],[0,3],[1,4],[2,1],[2,-3],[1,-3]],[[633,6303],[6,-1],[1,1],[1,-2],[5,-1],[1,0],[-1,-3],[-3,-3],[-5,2],[-7,1],[0,3],[1,1],[0,3],[1,-1]],[[617,6318],[1,-1],[1,1],[0,-5],[2,-3],[0,-1],[-1,-2],[-3,0],[-2,1],[-1,3],[-2,-1],[0,2],[0,1],[-1,-1],[1,-3],[-3,0],[-1,1],[-1,3],[-3,7],[0,2],[-1,3],[5,1],[2,6],[2,0],[3,-9],[0,-2],[1,-2],[1,-1]],[[550,6341],[0,-3],[-1,0],[0,3],[0,3],[2,3],[2,4],[1,-1],[-1,-3],[0,-3],[-2,-1],[-1,-2]],[[573,6346],[-3,-3],[-1,1],[-3,1],[-1,2],[-3,2],[-1,3],[2,6],[4,5],[6,0],[2,-4],[0,-3],[-1,-3],[0,-5],[-1,-2]],[[2728,6501],[-1,0],[1,2],[1,-1],[0,-1],[-1,0]],[[2734,6504],[-2,-1],[2,3],[0,3],[1,-3],[0,-1],[-1,-1]],[[2740,6507],[0,-1],[-1,0],[0,2],[-1,4],[0,1],[3,-4],[0,-1],[-1,-1]],[[2748,6511],[-1,-2],[-1,1],[1,2],[5,1],[-2,-1],[-2,-1]],[[2754,6516],[0,1],[1,2],[1,-1],[0,-1],[-2,-1]],[[2760,6522],[-1,0],[1,2],[0,-2]],[[2767,6536],[-6,-11],[1,3],[2,6],[1,2],[1,2],[2,3],[0,4],[2,3],[-3,-12]],[[2721,6614],[-1,-2],[-2,1],[-1,2],[-1,4],[2,-4],[1,-1],[2,0]],[[2720,6620],[0,-4],[-2,6],[-1,6],[2,-2],[1,-6]],[[2301,6596],[-1,-2],[-2,12],[-4,29],[0,17],[1,6],[1,-24],[4,-29],[1,-9]],[[2296,6664],[-1,-4],[0,6],[2,11],[5,15],[2,3],[-6,-17],[-2,-14]],[[2772,6663],[1,-5],[-3,10],[-3,16],[-2,12],[2,-3],[1,-7],[4,-23]],[[2305,6700],[-1,-1],[2,5],[0,2],[2,6],[1,1],[1,-2],[-2,-5],[-3,-6]],[[2312,6714],[-1,0],[1,3],[2,2],[5,6],[2,1],[0,2],[1,0],[0,-3],[-4,-3],[-6,-8]],[[2360,6773],[-2,0],[6,9],[2,3],[1,0],[-2,-5],[-5,-7]],[[2450,6794],[-1,-1],[-5,6],[0,2],[2,2],[2,0],[2,-3],[1,-1],[0,-1],[0,-1],[-1,-3]],[[2641,6803],[-3,-2],[-3,1],[2,0],[2,0],[3,3],[2,2],[2,1],[-5,-5]],[[2531,6807],[-2,-3],[0,1],[1,3],[1,1],[0,-2]],[[2532,6812],[0,-1],[0,9],[-1,7],[1,-3],[1,-4],[-1,-8]],[[2521,6829],[0,-3],[-1,1],[-2,1],[1,0],[1,1],[0,1],[2,4],[0,-3],[-1,-2]],[[2540,6837],[-1,-1],[-2,1],[-2,1],[0,1],[4,-2],[1,0]],[[2553,6839],[-2,-1],[-4,0],[1,1],[4,1],[1,-1]],[[2738,6881],[-1,-14],[-1,5],[0,5],[1,3],[1,1]],[[1712,6991],[-1,0],[-2,1],[-2,6],[-1,4],[1,1],[1,-4],[3,-6],[1,-2]],[[1682,7014],[-1,0],[-2,1],[-1,3],[2,0],[1,0],[1,-3],[0,-1]],[[1712,7024],[2,-4],[-2,1],[-2,-1],[-1,3],[-1,3],[0,1],[-1,0],[-1,0],[0,2],[1,1],[4,-4],[1,-2]],[[1665,7056],[-2,-1],[-1,1],[-2,6],[5,0],[2,-2],[0,-1],[-2,-3]],[[1658,7062],[-1,0],[-3,1],[1,1],[1,1],[1,-1],[1,-2]],[[1670,7066],[5,-4],[3,2],[1,-2],[0,-1],[-7,-2],[-2,1],[-1,3],[0,2],[1,1]],[[2873,7100],[0,-1],[-1,1],[-2,1],[0,1],[1,0],[2,-2]],[[2875,7099],[-1,-1],[2,8],[5,9],[2,1],[-4,-8],[-4,-9]],[[2895,7131],[-5,-4],[-1,0],[3,3],[3,1]],[[2901,7134],[-3,-1],[-1,0],[4,4],[2,11],[0,6],[-1,10],[0,2],[1,-4],[1,-9],[-1,-6],[-1,-10],[-1,-3]],[[2899,7171],[-1,-1],[-2,6],[2,-2],[1,-2],[0,-1]],[[2907,7291],[-1,-1],[4,12],[3,10],[1,3],[-1,-7],[-2,-6],[-4,-11]],[[2940,7397],[-3,-9],[0,2],[4,11],[-1,-4]],[[2939,7447],[-1,0],[1,6],[2,2],[1,0],[0,-2],[0,-2],[-2,-3],[-1,-1]],[[2986,7475],[-2,-4],[1,-1],[2,2],[1,2],[4,3],[3,1],[0,1],[2,-3],[3,2],[2,1],[-12,-10],[-2,-1],[-4,-3],[-3,-2],[-2,-1],[-12,-7],[-1,0],[-1,1],[-10,-4],[-4,-1],[-4,-1],[3,3],[0,1],[-1,1],[-1,0],[-2,-3],[-2,-1],[-1,3],[1,3],[1,2],[3,4],[3,3],[2,2],[1,-2],[0,2],[1,2],[1,1],[2,0],[2,0],[1,1],[1,0],[2,-1],[3,0],[2,2],[2,0],[6,1],[5,1],[3,2],[4,6],[3,2],[-4,-7],[-2,-3]],[[3056,7491],[-2,-1],[-5,2],[4,2],[1,1],[0,3],[0,1],[2,-6],[0,-2]],[[3041,7498],[-8,-3],[-1,2],[2,1],[3,4],[1,1],[3,-3],[0,-2]],[[3017,7504],[0,-1],[-1,3],[1,3],[1,-1],[-1,-4]],[[3021,7505],[-2,-2],[-1,0],[1,2],[0,4],[1,3],[0,1],[1,1],[0,-9]],[[3093,7665],[-1,-1],[-1,0],[0,3],[1,1],[1,0],[0,-3]],[[3106,7673],[-2,-1],[-2,0],[0,-3],[0,-1],[-2,2],[-1,1],[0,4],[2,4],[1,1],[2,-1],[1,-4],[1,-2]],[[1587,7843],[0,-1],[-1,2],[0,2],[0,1],[1,-3],[0,-1]],[[1600,7854],[0,-1],[-1,-1],[-1,0],[0,2],[-1,-2],[0,4],[0,4],[1,0],[1,-3],[1,-3]],[[1597,7866],[0,-1],[-2,1],[0,2],[0,2],[0,2],[1,1],[1,-1],[0,-1],[0,-5]],[[1595,7899],[1,-7],[1,3],[4,-6],[0,-2],[-1,-1],[0,-1],[-1,1],[-1,2],[-1,1],[-2,1],[0,2],[-1,1],[0,5],[0,1],[-1,0],[-1,1],[-2,3],[0,1],[1,3],[1,4],[1,2],[1,0],[1,-2],[1,-2],[0,-1],[-4,-4],[2,-1],[0,-1],[1,-3]],[[1588,7916],[0,-1],[-2,1],[-1,1],[0,2],[1,3],[0,1],[1,0],[0,-3],[1,-3],[0,-1]],[[1583,7920],[1,-2],[-3,1],[-2,1],[0,1],[-1,4],[1,1],[1,0],[3,-4],[0,-2]],[[1589,7930],[1,-1],[-2,-2],[-2,2],[0,1],[0,-4],[0,-1],[-2,2],[-1,2],[1,1],[1,2],[1,0],[3,-2]],[[3135,7722],[0,-1],[1,-3],[0,-6],[-1,-3],[1,-3],[2,-1],[1,-1],[0,-2],[-6,-9],[-5,1],[-2,-2],[-3,-1],[-1,-4],[-2,-1],[-2,1],[-1,1],[-2,-1],[-2,-7],[-1,1],[-1,-3],[-1,-1],[-1,-1],[-1,3],[0,3],[-1,1],[-2,1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-1,1],[-1,2],[-1,-3],[-1,-4],[1,-5],[-1,-3],[-1,1],[-1,3],[-3,1],[-3,0],[1,3],[2,3],[-1,1],[-1,0],[1,3],[0,4],[-1,-1],[-2,-4],[-3,-3],[0,-5],[-3,-11],[0,-4],[-2,-4],[-2,-3],[-4,1],[-2,-2],[-1,-3],[-1,-1],[-1,4],[0,1],[-1,-6],[-1,0],[-1,4],[0,3],[-1,-2],[-1,-7],[-1,1],[0,2],[-1,1],[0,-3],[0,-3],[0,-2],[-1,1],[-1,1],[-2,-1],[-1,0],[0,1],[0,3],[-2,-2],[-4,-4],[-2,-5],[1,-1],[1,-2],[-5,-9],[-4,-7],[-4,-13],[-1,-2],[-1,-2],[-1,-8],[-2,-6],[1,-3],[1,-4],[1,-3],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[-1,-1],[-3,-3],[-2,-1],[-1,-3],[-2,-4],[-3,-6],[2,-2],[5,-2],[2,-2],[3,-11],[-1,-1],[0,-2],[3,-3],[1,-8],[2,-3],[4,-1],[5,2],[3,3],[0,3],[-2,6],[-1,3],[-2,2],[0,-1],[-1,2],[0,1],[1,1],[1,-1],[1,-1],[4,-7],[1,-9],[0,-5],[0,-2],[-1,0],[-2,0],[-10,-3],[-2,-3],[-5,-3],[0,2],[0,2],[0,7],[-1,0],[-8,-10],[-3,-1],[-2,-3],[-1,2],[0,7],[1,7],[-3,-4],[-1,2],[-1,3],[-1,1],[0,1],[0,-6],[-1,-4],[-1,-11],[-2,-4],[-7,-3],[-4,1],[-4,-1],[-6,-2],[-3,1],[-3,-2],[-10,-1],[-2,1],[-3,-4],[-4,-2],[-11,-9],[-3,-4],[-3,-5],[-2,-3],[-1,0],[-1,-3],[-1,-1],[1,5],[1,4],[1,9],[-1,7],[-1,2],[-1,2],[1,-6],[1,-9],[-1,-5],[-3,-9],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-3],[-1,-4],[0,-5],[6,-1],[1,1],[1,-3],[0,-4],[0,-5],[-1,-5],[-1,-5],[0,-9],[-1,-8],[0,2],[0,10],[-1,-1],[0,-2],[-2,-13],[-2,-7],[-2,-4],[-2,0],[0,-3],[0,-2],[-1,-4],[-1,-3],[-1,1],[-2,-2],[-1,-2],[0,-2],[-1,-3],[-4,-12],[-3,-4],[-1,1],[1,6],[0,6],[-2,2],[-2,1],[-2,0],[-3,5],[-3,3],[-5,9],[0,2],[0,5],[1,6],[2,5],[2,2],[5,3],[1,3],[1,3],[-2,-5],[-5,-2],[-2,-2],[-2,-3],[-1,-4],[-2,-4],[0,-3],[1,-2],[-1,-5],[2,-4],[3,-7],[0,-12],[3,-7],[3,-9],[3,-2],[0,-3],[-1,-6],[-2,-2],[2,0],[1,-1],[1,-4],[0,-5],[0,-3],[-1,-1],[0,3],[0,1],[-1,-1],[0,-1],[-1,-6],[0,-2],[-2,-1],[-2,-7],[-1,-3],[-7,-26],[0,-4],[-1,-2],[-2,-1],[-2,-2],[-1,-3],[-1,-8],[-3,-8],[-1,3],[0,3],[0,8],[3,13],[2,8],[2,4],[2,8],[-2,1],[-3,0],[0,4],[1,3],[-1,3],[-1,0],[-1,2],[1,2],[0,3],[0,4],[1,2],[-1,0],[-2,-3],[0,-1],[-1,2],[-1,0],[0,-2],[-1,-1],[-2,3],[-2,2],[-2,5],[-1,3],[1,6],[2,1],[2,-1],[4,0],[-1,2],[-1,0],[-3,5],[-1,3],[-2,0],[-1,-2],[-1,-1],[1,6],[2,0],[2,2],[-1,4],[-1,2],[-3,-2],[0,2],[1,4],[2,0],[1,-2],[2,6],[0,2],[-2,-3],[-1,7],[2,8],[3,3],[2,0],[3,0],[-2,2],[-1,0],[1,3],[1,1],[1,2],[-3,0],[1,5],[-2,-1],[-1,-1],[-1,-2],[0,-3],[0,-2],[-1,-2],[-2,-2],[-1,3],[0,1],[-1,-5],[0,-2],[-2,5],[0,-1],[0,-1],[0,-3],[-2,-1],[0,-3],[0,-2],[-4,3],[0,-1],[2,-6],[2,-2],[0,-3],[-2,-2],[-2,2],[1,-4],[1,-3],[-1,-3],[0,-3],[0,-4],[0,-2],[1,-13],[1,-3],[1,-3],[1,-3],[-2,-1],[-2,3],[-1,2],[-2,6],[-1,2],[0,2],[0,-4],[1,-5],[6,-11],[1,-5],[1,-3],[0,-3],[-2,2],[-1,3],[-4,3],[-5,2],[-3,8],[0,-3],[0,-3],[-2,3],[-1,3],[0,3],[-2,0],[-3,-3],[-2,1],[0,5],[1,3],[2,6],[2,4],[1,4],[0,6],[0,-6],[-2,-4],[-2,-2],[-2,-5],[-1,-4],[-1,-8],[1,-2],[1,-1],[4,2],[2,-1],[3,-10],[8,-3],[2,-3],[2,-5],[4,-2],[2,-5],[0,-2],[-1,-3],[0,-5],[-1,-2],[-3,-1],[-1,1],[-8,15],[-1,1],[-4,8],[-3,5],[-1,0],[5,-8],[2,-6],[4,-8],[2,-3],[2,-5],[2,-2],[5,-4],[-2,-2],[3,-2],[1,-4],[-1,-4],[-4,1],[0,-3],[1,-2],[-2,-1],[-2,2],[-6,11],[0,-1],[0,-2],[4,-7],[3,-5],[2,-2],[3,-4],[0,-2],[1,-3],[-2,-3],[-2,-1],[-1,2],[-1,3],[-3,4],[-1,5],[-2,-1],[-8,6],[-7,1],[1,-1],[0,-1],[6,-1],[2,-3],[4,-3],[3,0],[1,-8],[4,-5],[0,-4],[3,0],[4,4],[3,-2],[4,-1],[1,-3],[0,-5],[2,-7],[3,-25],[6,-21],[1,-3],[-2,3],[-4,13],[-2,10],[-2,18],[-1,4],[-1,1],[0,-1],[-1,-2],[1,-2],[-1,-6],[0,-2],[2,-3],[1,-7],[2,-9],[-2,4],[-2,2],[-3,1],[-3,3],[1,-4],[-1,-4],[-2,1],[-1,2],[1,-5],[-2,1],[-2,0],[-1,-4],[-2,-2],[-2,-1],[-3,4],[-1,4],[-1,5],[0,-6],[1,-6],[-1,-4],[4,-1],[3,1],[4,-1],[2,1],[2,2],[4,-1],[0,-6],[-1,-5],[0,-6],[1,0],[2,2],[0,10],[4,4],[1,0],[1,-4],[0,-3],[1,-5],[-1,-7],[-5,-8],[-4,-7],[-2,-2],[-3,1],[-3,2],[-2,0],[-1,0],[-1,2],[0,4],[-1,2],[-1,-1],[-1,-4],[-3,-1],[-4,1],[-4,4],[2,-4],[10,-7],[1,-2],[1,-2],[-1,-3],[-1,-4],[0,-3],[-1,-2],[-4,-5],[-2,1],[-6,9],[3,-7],[2,-4],[4,-1],[8,2],[3,-3],[-3,-5],[-2,-4],[-3,-1],[-2,-1],[-1,-2],[-2,-1],[-2,0],[-5,0],[-2,1],[-3,-6],[-1,0],[-2,1],[-1,4],[-1,2],[0,-8],[1,-2],[0,-2],[-4,-4],[-3,-6],[-2,-2],[-1,-2],[-3,-8],[-1,-6],[-1,-7],[0,3],[0,5],[-1,6],[0,-11],[-1,-4],[-11,0],[-5,-3],[-7,-9],[-3,-3],[-6,-15],[-1,-10],[-1,4],[0,3],[0,3],[-2,-6],[2,-7],[-1,-3],[-4,-6],[-3,-1],[-2,-1],[-1,-6],[-3,-5],[-2,-2],[-4,1],[1,-5],[-1,-3],[-2,-3],[-3,-2],[-2,0],[-1,-1],[-1,-2],[-3,-2],[-2,1],[-3,1],[-2,-1],[3,-3],[1,-3],[0,-4],[-1,-1],[-2,-3],[0,1],[-1,2],[0,4],[-1,-1],[0,-2],[-1,-1],[-3,7],[0,-5],[1,-4],[1,-2],[1,-1],[0,-2],[-2,-4],[0,-1],[-2,-1],[-1,-3],[0,-2],[-1,-5],[-4,-3],[-1,0],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-2],[-2,-1],[-1,-2],[1,-2],[0,-2],[0,-2],[-2,-2],[0,-2],[1,-1],[0,1],[1,0],[-1,-4],[-1,-2],[-1,-4],[-3,-1],[0,-1],[2,-1],[1,-3],[-2,-6],[-2,1],[-1,1],[0,-4],[0,-3],[0,-4],[-1,-6],[-1,-2],[0,-5],[1,-4],[1,-5],[2,-22],[1,-8],[3,-20],[4,-20],[6,-24],[9,-30],[1,-4],[-1,-3],[-1,-4],[0,-6],[1,-5],[1,-6],[2,-11],[-1,2],[-3,15],[-1,8],[1,12],[-1,0],[-1,-4],[0,-4],[-1,-2],[-1,7],[0,3],[1,4],[0,1],[-2,2],[0,3],[0,3],[-1,1],[-1,0],[1,-7],[1,-4],[1,-11],[1,-7],[1,-5],[12,-58],[3,-7],[1,-5],[1,-11],[0,-14],[-2,-26],[0,-18],[0,1],[0,1],[-1,1],[-2,-8],[-2,-8],[-1,-11],[-1,-6],[-3,-6],[-2,0],[-5,-4],[-3,1],[-5,-2],[-2,0],[-2,5],[0,3],[1,2],[1,1],[4,-6],[0,2],[-1,3],[-2,2],[-1,1],[-4,13],[-3,9],[0,6],[-6,3],[-4,6],[-3,10],[-1,17],[-2,2],[-1,1],[2,6],[2,6],[-2,-2],[-1,-2],[-1,-4],[-1,-1],[-1,1],[-1,9],[0,11],[2,4],[-3,0],[-2,-2],[0,-3],[0,-2],[-2,0],[-1,1],[-2,4],[-2,8],[-5,20],[-1,3],[-2,3],[1,1],[1,0],[3,9],[3,6],[1,4],[0,1],[-1,3],[-2,-2],[-1,0],[-1,5],[-2,1],[-1,-1],[1,-4],[1,-1],[0,-6],[0,-2],[-1,-1],[-2,1],[-1,-2],[-1,2],[0,2],[-1,4],[2,23],[3,15],[0,17],[0,2],[0,5],[-3,10],[-15,23],[-11,28],[-10,11],[-7,-2],[-1,-2],[-1,-3],[0,-3],[0,-2],[-2,1],[-3,-1],[-7,-8],[-2,1],[-3,-2],[-1,-2],[-5,0],[-3,-2],[-2,1],[-1,4],[0,4],[1,-3],[1,-3],[1,2],[0,2],[-1,4],[-4,6],[-5,9],[1,0],[1,2],[-2,2],[1,3],[1,3],[-2,-1],[-2,-2],[0,-2],[0,-2],[-1,0],[-2,3],[-9,7],[-8,3],[6,2],[3,-1],[0,2],[-1,1],[-2,2],[-4,-1],[-2,1],[-2,-1],[-2,-3],[-2,-1],[-8,-2],[-7,-2],[2,2],[1,1],[3,2],[1,5],[-1,4],[-1,-1],[-1,-4],[-1,3],[-2,0],[0,-5],[-2,-4],[-1,-3],[-5,-3],[-1,1],[2,3],[0,2],[-2,-1],[-3,-6],[-11,-2],[1,1],[2,0],[3,2],[-1,3],[-1,4],[-1,0],[-1,2],[0,7],[0,4],[-2,4],[-1,-1],[-1,-7],[-1,-9],[0,-2],[-4,-1],[-2,1],[-10,-1],[-3,3],[-2,0],[-1,0],[-4,-2],[-5,-2],[-1,0],[-1,0],[-4,-7],[-4,-3],[-10,6],[-3,5],[-2,1],[-3,0],[-2,-6],[-3,-8],[4,-4],[3,-2],[5,1],[3,4],[2,0],[1,1],[1,2],[2,-2],[0,-1],[-1,-3],[-2,-1],[-1,-3],[2,-4],[3,-2],[1,1],[1,5],[2,3],[2,0],[0,-3],[0,-1],[2,-4],[-1,-5],[1,-1],[-3,-2],[-2,-1],[-2,-2],[1,-2],[-2,-1],[-1,0],[-1,-2],[0,-2],[1,-4],[2,-4],[2,-4],[8,-5],[2,0],[1,-5],[2,-1],[1,-1],[0,-4],[-3,-3],[0,-3],[-1,-1],[-1,2],[-1,1],[-3,-4],[-1,-2],[1,6],[-1,2],[-2,5],[-2,3],[-2,1],[-1,3],[-1,0],[-1,0],[-2,1],[-1,3],[0,2],[-2,3],[-8,4],[0,-2],[1,-1],[1,-1],[1,-2],[0,-5],[0,-3],[-1,-3],[0,-4],[-1,-2],[-2,-2],[-1,1],[-2,8],[-2,2],[-3,0],[-3,-1],[-2,-7],[-2,-2],[-7,4],[-8,6],[0,2],[1,0],[3,-1],[0,2],[-3,7],[0,3],[0,3],[-1,0],[-1,-3],[-5,2],[-2,3],[-3,9],[-4,0],[-2,5],[-3,-2],[-2,-2],[-2,-4],[1,-2],[2,-3],[-1,-1],[-5,-2],[-11,2],[-4,2],[-4,5],[-6,4],[-3,0],[-3,0],[-9,-1],[-2,-1],[-2,-1],[-1,1],[0,4],[1,0],[1,2],[1,4],[0,2],[-1,1],[-1,1],[-3,-10],[2,-6],[0,-2],[-6,-1],[-13,-11],[-5,-6],[0,2],[6,8],[-2,1],[-4,-2],[-1,1],[2,6],[-1,6],[-2,0],[-2,-4],[-1,0],[-2,2],[-1,-1],[1,-10],[2,-4],[1,-5],[-4,-7],[-3,-5],[0,-6],[-4,-7],[-3,-3],[-7,-10],[-2,-1],[-4,-5],[-4,-3],[-5,-5],[-1,-1],[2,5],[4,4],[-3,-1],[-5,2],[-2,0],[0,-1],[-2,-2],[-3,3],[0,2],[-1,2],[-1,0],[-1,-1],[4,-13],[1,0],[1,-2],[-1,-3],[-3,-2],[-3,-1],[-2,4],[-1,-6],[0,-6],[-1,-1],[-2,-2],[0,1],[-1,3],[-1,-2],[-1,-2],[-2,0],[-2,-1],[0,-3],[0,-2],[3,2],[-1,-6],[-2,-7],[-3,-1],[-3,1],[-1,-1],[-1,-1],[4,-10],[-2,-15],[-2,-5],[-1,-1],[-1,0],[-5,5],[-2,3],[2,-10],[6,-3],[0,-4],[0,-3],[-1,-4],[-1,-5],[1,-3],[1,-9],[0,-4],[1,-12],[1,-6],[5,-19],[2,0],[0,-2],[0,-4]],[[1746,6974],[0,7],[-1,2],[-2,-1],[-1,8],[1,4],[0,4],[-2,9],[-4,12],[-9,14],[-5,5],[-3,6],[-2,2],[-3,0],[-1,-2],[-3,2],[0,6],[-3,10],[-3,1],[-6,-1],[-9,5],[-2,4],[-1,5],[-4,5],[-6,5],[-3,-2],[-3,1],[-6,4],[-3,0],[-7,-1],[-2,1],[-2,4],[-2,2],[0,5],[0,5],[0,4],[-1,8],[1,8],[-1,2],[-1,2],[-4,3],[-1,4],[1,6],[-1,3],[-4,4],[-3,7],[-4,4],[-2,7],[-2,4],[-1,4],[-6,13],[-6,11],[-1,6],[0,8],[3,5],[1,5],[0,4],[-1,3],[-2,5],[-8,3],[-6,13],[0,10],[-3,10],[0,6],[0,7],[2,2],[1,-1],[0,-3],[1,-5],[2,-3],[2,-2],[1,-4],[2,-1],[1,0],[-1,2],[0,2],[-1,5],[-2,6],[-2,3],[-1,7],[-1,1],[-1,2],[2,3],[3,2],[4,1],[10,-1],[2,1],[2,0],[1,0],[-3,2],[-1,-1],[-2,1],[-4,-1],[-1,1],[-2,2],[-1,0],[-3,-3],[-2,0],[-3,4],[-2,0],[-2,-2],[-1,-9],[1,-7],[-2,-1],[-1,3],[-3,2],[-2,3],[-3,4],[-2,2],[-2,-4],[0,2],[1,4],[0,8],[3,-6],[-1,4],[-2,5],[-2,2],[-2,8],[-5,5],[-4,9],[-7,13],[-1,13],[-3,15],[2,8],[-1,7],[-1,9],[-1,5],[-7,14],[-6,9],[-1,7],[0,7],[1,7],[2,6],[0,2],[1,-1],[-1,-1],[1,-1],[1,3],[0,2],[-1,0],[0,1],[1,2],[2,9],[0,11],[1,13],[0,5],[-1,9],[-1,6],[-2,4],[1,6],[0,6],[-4,8],[-2,11],[0,4],[0,12],[-1,5],[-3,9],[2,7],[1,5],[3,19],[0,2],[2,0],[2,3],[-1,1],[-2,-2],[2,8],[1,7],[1,2],[1,21],[1,17],[1,5],[0,6],[0,8],[0,7],[3,37],[-1,5],[1,6],[-1,15],[1,18],[-1,2],[0,3],[2,-3],[6,0],[5,3],[1,-1],[2,-3],[2,-1],[3,1],[-1,1],[-1,0],[-3,3],[-2,3],[-5,0],[-1,1],[-6,-1],[-1,1],[-4,-1],[1,6],[0,7],[0,6],[1,-4],[2,-6],[1,6],[0,8],[-1,3],[-4,2],[-1,7],[8,6],[-4,1],[-2,3],[-2,0],[0,-2],[0,-3],[-1,4],[0,4],[-1,7],[-3,12],[-2,15],[-2,7],[-5,7],[-1,5],[-1,10],[1,8],[-1,6],[2,-1],[5,-4],[8,-4],[2,-2],[3,-2],[19,-3],[1,0],[3,2],[1,0],[3,-4],[1,-1],[2,1],[1,0],[2,3],[1,-1],[0,-2],[0,-4],[2,-5],[1,-3],[-4,-8],[0,-1],[0,3],[-1,1],[-6,-14],[-2,-7],[-1,-3],[0,-2],[1,0],[2,0],[3,3],[0,1],[-2,-1],[-2,0],[1,3],[0,1],[2,5],[2,3],[2,3],[2,2],[1,4],[3,4],[1,2],[-1,3],[1,1],[1,-1],[1,-6],[-1,-3],[-2,-3],[-1,-1],[1,-5],[-1,0],[-1,0],[3,-5],[0,-4],[1,-3],[-1,-7],[-1,-1],[-1,1],[-2,2],[0,-1],[-1,-5],[-1,0],[-1,6],[0,1],[-3,-3],[-1,-3],[0,-4],[-2,-2],[4,0],[2,1],[3,-2],[0,-1],[3,2],[0,2],[2,6],[1,1],[1,0],[1,1],[2,4],[0,1],[0,8],[0,5],[-1,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[2,5],[0,2],[2,5],[0,2],[-2,2],[-1,2],[-1,3],[-1,1],[1,-6],[-3,3],[0,2],[-1,2],[0,2],[2,1],[2,1],[0,2],[-3,4],[-1,2],[-1,2],[-2,0],[0,1],[-1,1],[1,1],[1,1],[2,-1],[1,1],[0,2],[0,1],[0,7],[-1,5],[-1,1],[-1,0],[-1,-1],[-1,2],[-1,4],[-2,8]],[[9984,8090],[-5,0],[-10,10],[-5,3],[-3,3],[2,1],[6,-3],[5,-5],[2,-3],[3,-3],[4,-1],[1,-2]],[[103,8115],[-2,-4],[-1,2],[0,5],[1,1],[2,-4]],[[111,8116],[-2,-1],[-4,2],[1,3],[3,-2],[2,-2]],[[59,8106],[-1,-2],[-4,4],[-1,1],[3,1],[0,2],[0,1],[-2,2],[-3,3],[-1,2],[1,1],[1,1],[5,0],[2,-3],[2,-1],[4,-1],[-2,-2],[-1,-1],[-2,-6],[-1,-2]],[[79,8110],[-1,0],[-1,-1],[-4,1],[-3,-1],[-3,0],[-2,-1],[0,1],[0,2],[9,3],[2,2],[1,2],[2,4],[1,1],[2,-2],[-1,-2],[-1,-2],[0,-1],[-1,-6]],[[95,8119],[0,-2],[3,0],[1,-1],[0,-3],[0,-2],[-1,0],[-1,1],[-1,-2],[-6,-5],[-2,3],[-4,-4],[3,11],[3,1],[1,2],[-1,3],[2,5],[3,0],[1,-2],[0,-2],[-1,-3]],[[9959,8122],[-1,-1],[-1,3],[0,1],[1,2],[1,-1],[1,-2],[-1,-2]],[[9991,8121],[-2,-1],[-3,1],[-1,2],[0,3],[4,3],[4,-4],[-2,-4]],[[111,8127],[-1,-2],[-3,2],[-1,2],[0,1],[1,3],[2,0],[1,-1],[1,-2],[1,-1],[-1,-2]],[[9927,8120],[-2,-2],[-2,2],[0,1],[3,5],[3,1],[1,1],[1,6],[2,0],[1,-1],[0,-2],[-2,-4],[0,-3],[-5,-4]],[[179,8135],[6,-2],[6,0],[3,-1],[-5,-1],[-1,0],[-4,-1],[-2,0],[-6,1],[-5,-1],[-1,0],[-1,1],[-2,2],[0,1],[1,1],[4,-2],[1,1],[3,2],[3,-1]],[[209,8143],[-2,-1],[-2,1],[1,3],[1,2],[2,2],[3,-1],[1,-2],[-4,-4]],[[148,8129],[-15,-2],[-2,1],[2,1],[3,1],[5,3],[7,2],[5,3],[5,2],[1,3],[-4,2],[0,1],[2,1],[1,2],[4,3],[3,-3],[1,-2],[0,-3],[-1,-2],[-3,-2],[0,-1],[1,-4],[-6,-3],[-9,-3]],[[9825,8148],[-2,0],[-1,2],[-6,1],[0,2],[3,1],[4,3],[3,-1],[-1,-2],[0,-6]],[[257,8162],[-1,-2],[-1,0],[0,3],[1,1],[3,4],[2,0],[1,-1],[-1,-2],[0,-2],[-1,-1],[-1,0],[-2,0]],[[286,8177],[0,-2],[-1,-1],[-4,1],[-3,0],[0,1],[0,1],[5,2],[2,0],[1,-1],[0,-1]],[[9799,8187],[5,-2],[3,1],[5,-3],[5,-5],[-1,-1],[-2,-1],[-1,0],[-4,-1],[-2,0],[-4,-3],[-5,2],[-1,6],[-4,1],[-2,2],[5,4],[3,0]],[[334,8207],[-8,-7],[-3,-4],[-2,-5],[-2,-2],[-1,-1],[-1,-1],[-3,-3],[-1,0],[-9,-8],[-1,0],[0,2],[3,3],[2,2],[2,4],[1,2],[1,2],[0,4],[0,2],[2,3],[2,1],[1,1],[4,0],[2,1],[0,1],[-1,1],[0,2],[0,4],[1,2],[2,3],[3,2],[3,1],[3,0],[4,-3],[1,-1],[-1,-3],[-1,-3],[-3,-2]],[[383,8229],[-1,1],[0,2],[0,1],[2,2],[1,1],[1,0],[-1,-3],[-1,-2],[-1,-2]],[[372,8240],[1,-3],[2,2],[2,2],[1,3],[1,1],[1,-1],[2,-2],[-2,-4],[-5,-5],[-1,-4],[0,-1],[4,1],[1,0],[1,-1],[-1,-2],[-2,-1],[-3,-3],[-5,-4],[-2,-3],[-2,-2],[-3,0],[-5,-3],[-3,-2],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,0],[-2,0],[-3,2],[0,2],[2,2],[2,1],[3,1],[3,2],[6,4],[2,2],[2,6],[1,1],[1,3],[3,0],[2,-3],[0,-1],[0,1],[1,2],[1,2],[-1,1],[-3,1],[-2,1],[-2,0],[-1,1],[-1,2],[0,1],[0,2],[1,2],[1,2],[2,1],[3,1],[3,2],[2,0],[1,-1],[1,-5]],[[393,8250],[-1,-1],[-1,-1],[0,1],[-3,-1],[-1,1],[-1,3],[0,2],[0,2],[2,1],[2,1],[2,0],[3,-3],[2,-2],[0,-2],[-1,-1],[-3,0]],[[401,8254],[-1,-1],[0,1],[-1,2],[-1,5],[2,1],[1,0],[1,0],[1,-3],[1,-1],[1,-1],[-1,-1],[-3,-2]],[[485,8269],[-3,-1],[-2,1],[-3,3],[0,3],[5,-2],[1,-1],[2,-3]],[[492,8296],[-1,-1],[-2,2],[-1,2],[0,2],[4,3],[1,0],[0,-2],[0,-1],[-1,-4],[0,-1]],[[459,8304],[3,-10],[1,-2],[2,-1],[2,-1],[1,-2],[2,-2],[0,-1],[-8,4],[-5,-6],[-1,0],[-14,-1],[-2,-1],[-2,-2],[-3,-5],[-2,-2],[-1,-1],[-4,-1],[-4,0],[-2,0],[-2,3],[-1,5],[0,1],[1,3],[4,3],[1,2],[5,11],[1,1],[2,1],[4,-1],[3,3],[8,5],[2,1],[5,0],[2,-1],[1,-1],[1,-2]],[[573,8303],[-1,0],[0,1],[-1,3],[-1,1],[2,-1],[1,-2],[0,-2]],[[569,8314],[0,-5],[-1,-1],[0,2],[-2,-2],[-1,1],[1,2],[0,1],[1,0],[0,3],[0,1],[0,2],[1,0],[1,-4]],[[1352,8310],[2,-8],[1,-3],[-3,-1],[-2,1],[-1,0],[-1,2],[1,4],[-1,2],[-2,1],[-1,-2],[-1,4],[2,3],[-1,4],[0,3],[2,0],[3,-3],[2,-7]],[[559,8312],[-2,-1],[0,-2],[-1,0],[-2,-2],[-3,-6],[-2,-1],[2,5],[0,2],[0,1],[0,4],[1,0],[1,1],[1,3],[2,1],[2,4],[1,0],[0,-1],[-1,-2],[2,-2],[0,-3],[-1,-1]],[[1309,8299],[1,-1],[1,0],[1,2],[2,0],[1,-1],[1,-1],[0,-3],[-1,-5],[-1,-1],[0,-3],[-3,2],[-3,3],[-3,5],[-2,4],[0,2],[-1,1],[-2,7],[-2,5],[-2,1],[-2,1],[-1,3],[1,3],[3,1],[6,-7],[1,-2],[2,-4],[0,-4],[1,-2],[2,-6]],[[546,8325],[0,-5],[-4,3],[-1,2],[1,1],[3,0],[1,-1]],[[536,8323],[1,0],[1,1],[2,3],[0,-1],[-1,-3],[2,-4],[1,-3],[-3,-2],[-3,1],[-1,0],[-2,-2],[0,2],[-1,8],[0,2],[2,2],[1,2],[1,-1],[1,-1],[0,-1],[-1,-3]],[[1297,8337],[1,-2],[0,-1],[-4,-4],[-1,-3],[-1,-1],[-2,-2],[-3,-3],[1,8],[-3,5],[3,3],[2,-1],[3,0],[3,2],[1,-1]],[[679,8353],[-1,-1],[-3,0],[-1,0],[0,2],[3,5],[1,1],[0,-1],[1,-2],[0,-4]],[[1362,8334],[-1,-7],[-2,-6],[-3,-4],[-2,1],[-2,3],[-1,0],[-2,0],[-1,3],[1,3],[0,2],[-1,-2],[-2,-2],[-3,-2],[-2,-5],[-1,-3],[-2,3],[0,8],[-1,3],[3,6],[3,4],[1,15],[9,7],[1,0],[4,-5],[3,-8],[1,-4],[0,-6],[0,-4]],[[1290,8384],[5,-1],[5,0],[1,-2],[2,-3],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[9,-5],[5,-6],[1,-3],[1,-3],[2,-7],[4,-7],[2,-2],[1,-3],[-3,2],[-6,5],[-1,-3],[-1,-2],[-1,-2],[1,-1],[5,1],[4,-5],[1,0],[2,-4],[0,-1],[-1,-3],[-1,-1],[0,-1],[2,0],[4,0],[1,-1],[-1,-10],[1,-4],[0,-2],[-1,-2],[0,-2],[1,-2],[0,-2],[-1,-4],[-2,-1],[-2,0],[-1,1],[-2,4],[-2,6],[-1,1],[-3,1],[0,1],[-2,0],[-1,3],[0,3],[-1,3],[0,2],[-1,0],[-1,0],[0,-4],[0,-2],[-3,1],[-3,8],[-4,7],[-2,1],[1,2],[2,1],[1,0],[1,1],[-4,7],[0,1],[1,4],[-1,1],[-4,-1],[-2,1],[-1,2],[-1,3],[-4,0],[-1,0],[-2,3],[-1,2],[0,1],[2,2],[2,0],[2,-2],[1,0],[2,3],[1,2],[2,2],[-1,2],[-1,4],[-2,1],[-5,-2],[-4,-3],[-1,1],[-1,2],[5,6],[2,3],[-1,1],[-1,3],[0,6],[1,1]],[[1312,8379],[-2,-1],[-2,1],[-4,5],[0,2],[1,1],[2,3],[1,1],[6,0],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[-3,-2]],[[1330,8371],[0,-10],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,2],[0,1],[0,3],[-1,1],[-5,1],[-1,1],[-1,3],[0,4],[0,1],[3,1],[1,5],[1,1],[4,10],[1,-1],[3,-6],[4,-8],[-1,-8]],[[703,8390],[-2,-2],[0,1],[0,1],[0,2],[1,2],[3,3],[3,3],[1,-1],[1,-1],[-2,-3],[-5,-5]],[[716,8395],[-1,-1],[-2,2],[0,2],[3,2],[3,0],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,0]],[[285,8402],[3,-2],[2,1],[2,0],[0,-2],[-3,-3],[-1,0],[-4,4],[1,2]],[[1312,8395],[0,-1],[-3,0],[-2,1],[0,3],[0,2],[1,2],[1,3],[1,6],[5,-6],[2,-3],[0,-4],[-1,-1],[-3,-1],[-1,-1]],[[1278,8414],[2,-4],[2,0],[2,-3],[1,-4],[-1,-3],[-1,0],[-1,-1],[-1,-6],[0,-6],[0,-6],[-2,-5],[0,-4],[-1,-2],[-1,1],[-1,1],[-2,-3],[-2,0],[-1,7],[1,13],[3,2],[-2,3],[-3,4],[0,3],[-3,6],[0,1],[0,6],[3,4],[4,1],[2,-2],[2,-1],[0,-2]],[[1295,8423],[2,-1],[1,2],[2,-1],[3,-1],[3,-3],[1,-3],[0,-2],[-1,-4],[1,-4],[0,-2],[-1,-2],[-1,-1],[-1,0],[-2,4],[-3,6],[-3,2],[1,-2],[2,-4],[0,-2],[1,-3],[1,-2],[0,-2],[0,-3],[0,-2],[-1,-1],[-5,0],[-3,-1],[-3,1],[-1,1],[-1,2],[0,4],[-1,7],[1,5],[-3,5],[-1,3],[-3,2],[-2,3],[1,2],[2,1],[5,0],[9,-4]],[[750,8431],[-4,-2],[-3,-4],[-1,-2],[-2,3],[0,5],[2,3],[10,-1],[0,-1],[0,-1],[-2,0]],[[273,8434],[-3,-3],[-2,1],[-1,2],[0,1],[8,3],[-2,-4]],[[1251,8444],[2,-6],[2,-5],[1,-7],[3,-12],[1,-5],[0,-2],[1,-7],[-1,-2],[0,-1],[-1,-2],[1,-5],[0,-8],[-1,-4],[0,-1],[-2,1],[-2,3],[-1,2],[-3,8],[-1,4],[0,2],[1,2],[1,2],[1,3],[-1,0],[-3,-1],[-2,3],[-2,1],[1,5],[-1,1],[-3,-2],[-1,2],[-1,1],[0,3],[1,2],[3,6],[0,1],[-2,0],[-2,2],[-1,6],[-2,4],[-1,0],[-3,-10],[-2,-3],[-4,-1],[1,3],[1,2],[-2,8],[0,3],[1,2],[3,1],[2,1],[1,2],[0,2],[2,6],[1,1],[3,0],[6,-6],[2,-1],[3,-4]],[[743,8474],[-1,-2],[-2,2],[-3,3],[-1,2],[-1,1],[2,1],[3,-2],[2,-3],[1,-2]],[[753,8472],[0,-3],[1,0],[4,4],[3,1],[2,0],[3,-2],[0,-1],[0,-1],[-2,-3],[0,-2],[2,-3],[5,-2],[1,-1],[0,-2],[-4,-5],[-1,-1],[-1,-1],[-6,1],[-5,2],[-3,0],[-2,-2],[1,0],[5,-1],[2,-2],[0,-2],[1,-2],[-1,-1],[-2,-1],[-3,0],[-3,-2],[-2,-3],[-6,0],[-4,-4],[-2,-2],[-1,-2],[-1,-1],[-4,-2],[2,-1],[0,-1],[0,-2],[0,-1],[-3,-6],[-6,-5],[-2,0],[0,1],[-1,1],[0,1],[8,10],[-3,0],[-3,3],[-2,-2],[-1,1],[1,2],[1,3],[-1,1],[-2,1],[-3,0],[-2,-1],[-1,-1],[0,-1],[3,0],[1,-1],[0,-1],[1,-2],[0,-1],[-1,-3],[-1,-3],[-2,1],[-5,6],[-2,10],[-3,8],[-1,2],[1,5],[4,6],[4,2],[3,3],[3,1],[2,0],[2,-1],[1,-3],[0,-1],[0,-1],[2,-1],[1,-6],[3,-5],[1,-1],[2,-2],[-2,4],[-1,5],[-1,9],[0,2],[1,1],[3,-1],[0,2],[-4,3],[-2,2],[0,2],[0,2],[2,2],[1,1],[1,0],[2,0],[1,-1],[2,-6],[1,-1],[1,0],[1,1],[1,1],[1,2],[1,0],[3,-1],[1,0],[0,2],[0,2],[1,1],[0,2],[-1,3],[1,1],[7,-2],[2,-3],[-1,-4]],[[1230,8497],[4,-6],[0,-1],[-1,-4],[-2,-1],[0,-2],[2,-1],[1,1],[4,6],[1,1],[1,0],[5,-2],[5,-2],[1,-3],[1,-3],[-1,-8],[-4,-2],[-2,0],[-2,2],[-3,-3],[3,-2],[7,-1],[3,-4],[0,-4],[-1,-6],[-4,2],[-4,3],[-8,6],[-2,0],[-1,-1],[0,-3],[0,-7],[-2,-4],[-6,2],[-3,5],[-2,8],[-8,10],[-3,2],[-3,6],[2,5],[0,2],[1,1],[3,2],[1,4],[2,-3],[3,-4],[0,4],[1,2],[3,0],[2,1],[1,2],[3,1],[2,-1]],[[1269,8496],[0,-1],[-4,0],[-4,2],[-2,3],[1,1],[3,1],[4,-2],[2,-4]],[[1259,8492],[7,-1],[5,0],[5,-9],[3,-7],[1,-5],[1,-5],[2,-4],[-1,-1],[-2,3],[-2,6],[-1,3],[-1,1],[-1,2],[-2,6],[0,2],[-1,2],[-1,0],[-1,0],[-1,0],[0,-5],[1,-4],[5,-11],[4,-5],[0,-2],[1,-6],[-2,-2],[2,-5],[0,-1],[0,-1],[-5,-2],[-5,-9],[-4,-5],[-3,-1],[-1,1],[-1,2],[0,2],[-1,4],[2,2],[2,11],[0,4],[-3,5],[-2,4],[-1,6],[-1,15],[-1,5],[-1,4],[-2,3],[-1,4],[0,4],[0,2],[2,-3],[3,-5],[2,-4]],[[766,8504],[1,-1],[1,4],[1,0],[3,-3],[2,1],[2,-4],[1,0],[1,0],[0,-4],[-2,-4],[-1,-1],[-2,1],[-2,2],[0,2],[-1,0],[-2,-2],[0,-1],[1,-2],[0,-2],[-2,0],[-2,0],[-2,-2],[-1,2],[0,2],[-1,0],[-1,-3],[-1,-3],[-3,-2],[0,-1],[-2,0],[-2,-1],[-2,0],[-9,4],[-2,2],[8,9],[4,3],[2,0],[2,-1],[1,0],[0,4],[-2,3],[0,1],[5,2],[2,0],[2,-1],[1,-2],[2,-2]],[[764,8511],[-1,0],[-2,2],[-1,2],[1,1],[4,3],[2,0],[1,-1],[0,-2],[-1,-1],[-3,-4]],[[530,8517],[-2,-1],[-2,0],[-2,6],[1,0],[3,4],[6,3],[2,1],[-6,-13]],[[984,8590],[-1,0],[2,4],[3,4],[2,3],[3,1],[0,-2],[-4,-4],[-5,-6]],[[888,8605],[-1,-2],[-6,1],[1,4],[5,2],[4,-4],[-3,-1]],[[896,8590],[-3,-1],[-1,2],[2,4],[1,3],[1,0],[4,5],[4,4],[3,5],[4,7],[1,3],[1,0],[3,-1],[2,-3],[-1,-2],[-9,-11],[-1,-1],[-1,-4],[-1,-1],[-1,0],[-1,-2],[0,-3],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-2,-1]],[[385,8624],[3,-3],[1,0],[4,1],[2,-1],[1,-1],[1,-2],[0,-4],[0,-3],[0,-4],[0,-2],[2,-2],[1,-4],[0,-3],[-5,-1],[-5,-1],[-4,-2],[-1,-2],[1,-2],[-1,-1],[-1,1],[-2,2],[-3,1],[-8,2],[-10,7],[-4,1],[-4,6],[-4,6],[3,1],[2,1],[12,-1],[1,5],[2,1],[3,1],[4,3],[1,0],[2,-1],[3,1],[2,0],[1,0]],[[969,8621],[-1,-1],[-2,0],[-2,1],[5,4],[0,-1],[0,-3]],[[933,8628],[1,-2],[5,0],[2,0],[1,-1],[-1,-1],[-2,-1],[-6,-3],[-5,-3],[-1,0],[-1,4],[-1,1],[0,2],[0,1],[1,2],[2,2],[1,0],[4,-1]],[[898,8628],[0,-2],[-1,-1],[1,-3],[-1,-5],[-1,-3],[-1,-2],[-1,0],[0,1],[0,2],[-2,0],[0,4],[1,1],[0,2],[0,1],[2,5],[0,1],[0,-2],[1,0],[1,3],[1,-2]],[[777,8622],[-1,0],[2,3],[1,6],[1,-1],[1,-1],[-3,-6],[-1,-1]],[[202,8628],[6,-4],[3,1],[3,-4],[2,-2],[-5,2],[-6,-1],[-9,8],[-4,2],[1,5],[4,2],[1,-6],[4,-3]],[[891,8650],[-4,-1],[-1,1],[-1,1],[1,3],[0,1],[2,1],[2,-2],[0,-1],[1,-3]],[[237,8817],[1,-2],[2,0],[5,0],[4,-2],[4,1],[6,4],[3,1],[4,1],[3,-1],[4,-2],[1,-2],[1,-2],[1,-3],[1,-2],[7,-3],[4,-1],[1,-1],[1,-2],[4,-2],[3,1],[2,-1],[7,0],[7,-2],[-1,-6],[-2,-2],[-8,1],[-7,-1],[-3,-3],[-2,-4],[0,-3],[-2,-2],[-1,-1],[-1,2],[-2,6],[-1,2],[-1,1],[-4,2],[-3,1],[-3,0],[-1,2],[-1,4],[-1,1],[-3,2],[-3,2],[-9,4],[-3,1],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[-4,2],[-3,2],[-1,2],[-1,3],[0,3],[1,3],[1,7],[3,2],[5,-5]],[[386,8970],[-1,0],[3,3],[6,3],[0,-1],[-4,-2],[-4,-3]],[[1388,8357],[-1,-3],[-1,-3],[-1,-4],[0,-3],[0,-5],[0,-3],[2,-7],[1,-4],[0,-3],[-4,-9],[-1,-5],[0,-2]],[[1373,8291],[-1,1],[-7,1],[-2,9],[-1,6],[-2,6],[0,1],[1,4],[7,3],[0,2],[-2,0],[-1,2],[-1,6],[0,5],[0,4],[-1,7],[-1,5],[-5,9],[0,2],[2,3],[1,2],[-7,-4],[-10,-5],[-4,-3],[-1,-2],[0,-1],[1,-3],[0,-1],[-1,-2],[-1,-5],[-2,-5],[-1,-2],[-4,3],[-1,1],[-2,8],[0,1],[2,2],[2,4],[2,5],[5,14],[2,0],[6,2],[-8,2],[-2,0],[-1,2],[-1,3],[-1,4],[-4,1],[-1,1],[-2,4],[-1,2],[-1,2],[0,3],[-1,1],[-2,1],[-1,1],[0,6],[-5,2],[-1,2],[-3,4],[-1,2],[0,2],[1,5],[-1,1],[-2,-1],[-16,7],[1,10],[-3,13],[-3,5],[1,2],[1,1],[1,0],[6,-3],[5,-5],[1,1],[-9,9],[-2,3],[0,4],[0,1],[0,1],[9,0],[-8,3],[-2,0],[-2,-4],[-1,-1],[-2,0],[0,1],[-2,5],[-2,3],[-4,5],[-1,3],[0,5],[0,5],[3,10],[2,2],[0,1],[-1,0],[-1,-1],[-2,-5],[-3,-8],[-2,-3],[-2,1],[-2,3],[-4,4],[-5,1],[-3,4],[-5,12],[0,5],[-1,2],[-2,2],[-2,2],[-2,14],[-3,10],[-1,5],[0,5],[0,1],[-1,-4],[-1,-2],[-2,-1],[2,-4],[1,-2],[-1,0],[-2,0],[3,-7],[2,-11],[2,-7],[1,-7],[1,-5],[1,-4],[2,-10],[0,-2],[0,-2],[-1,-2],[-1,-1],[-5,2],[-1,2],[-3,5],[-3,2],[-8,-1],[-1,0],[0,4],[1,7],[-1,2],[-4,10],[0,2],[6,5],[-3,0],[-2,-2],[-1,1],[-2,7],[-1,2],[0,1],[0,-6],[1,-4],[0,-1],[0,-3],[-1,-2],[-1,-1],[-1,0],[-2,1],[-2,3],[-2,1],[-1,1],[-1,2],[-2,2],[-7,3],[-4,3],[-1,-1],[2,-3],[0,-2],[-1,-1],[-2,-3],[2,1],[3,0],[4,-2],[3,-3],[1,-1],[1,-2],[0,-1],[4,-2],[0,-1],[-2,-4],[4,1],[3,-2],[3,-5],[1,-4],[1,-4],[-1,-1],[-2,-1],[-9,-1],[-3,-5],[-1,0],[-2,1],[-5,4],[-6,4],[-13,11],[0,3],[-1,1],[-2,1],[-3,2],[-3,5],[-2,4],[0,2],[-2,3],[-6,7],[-3,2],[-3,1],[-2,1],[-1,0],[1,2],[0,1],[-5,1],[-5,3],[-13,8],[-6,5],[-4,3],[-2,1],[0,1],[0,1],[3,2],[2,1],[3,5],[0,2],[-2,4],[0,3],[0,2],[0,2],[0,1],[2,1],[0,1],[1,-1],[4,-4],[0,-2],[0,-6],[1,-8],[0,1],[0,2],[1,5],[0,2],[1,2],[1,2],[3,-1],[2,0],[-7,4],[-4,6],[-1,1],[-3,0],[-2,-3],[-7,-8],[-2,-2],[-8,-4],[-6,-1],[-6,1],[-5,1],[-14,8],[-2,1],[3,5],[0,1],[-1,5],[-1,1],[-1,1],[0,-1],[-1,-1],[1,-3],[-1,-1],[-3,-1],[-3,-2],[-12,4],[-13,3],[-11,1],[-15,-3],[-9,-2],[-5,0],[-4,0],[-1,2],[3,1],[-1,1],[-2,4],[-4,2],[-6,1],[-3,1],[-1,2],[-2,1],[-3,1],[-1,3],[1,7],[1,5],[1,3],[3,5],[-1,-1],[-4,-3],[-3,-4],[-4,-5],[-1,-2],[-3,-2],[-3,0],[-6,3],[-4,2],[-3,0],[-2,0],[3,3],[1,2],[2,4],[0,2],[-13,0],[0,2],[0,1],[-1,2],[-2,0],[-2,0],[-5,-2],[-1,1],[0,1],[2,1],[2,3],[-3,2],[-2,2],[-1,1],[0,6],[1,3],[8,4],[-2,1],[-6,0],[-4,-3],[-4,-4],[-3,-2],[-1,1],[-2,0],[-3,0],[-2,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,2],[-3,1],[-1,2],[-1,-1],[-1,-3],[-1,-1],[-4,-2],[-2,1],[-3,3],[0,1],[1,3],[6,12],[-1,0],[-2,-2],[-4,-4],[-2,-2],[-3,0],[-1,0],[-2,0],[-2,-1],[-1,-2],[-1,-1],[1,0],[3,1],[2,1],[0,-1],[-2,-5],[-2,-5],[-1,-2],[-2,0],[-3,0],[0,-1],[5,-5],[1,0],[2,-2],[1,-1],[-1,-4],[-1,-1],[-1,-1],[-3,0],[-1,-1],[-3,-2],[-1,-2],[3,1],[3,1],[4,1],[3,0],[1,2],[2,0],[2,-3],[1,-2],[-1,-2],[-1,-2],[-3,0],[-1,-2],[-1,-1],[0,-3],[0,-3],[0,-6],[0,-1],[-1,0],[-1,0],[-1,-2],[-3,-8],[-1,-1],[-1,1],[-1,0],[-1,-1],[-2,-1],[-3,0],[-3,0],[-4,2],[-2,1],[-1,2],[-4,-2],[-1,1],[-3,5],[-1,-6],[-1,-2],[-2,-4],[-2,-8],[0,1],[-2,7],[-1,1],[-2,-4],[0,-1],[0,-5],[0,-1],[-5,3],[-1,0],[1,-4],[0,-1],[-6,-8],[-2,1],[-1,0],[-1,0],[-4,-3],[-1,1],[-2,1],[-1,0],[0,-2],[0,-3],[-2,-3],[-4,-5],[-2,-2],[-1,-3],[0,-1],[-3,2],[-4,2],[0,-1],[1,-2],[0,-1],[-2,-1],[-2,1],[-2,0],[-3,-1],[-4,-2],[-3,0],[-5,4],[-1,0],[0,2],[1,3],[1,3],[1,1],[4,3],[5,1],[3,2],[4,4],[2,4],[4,7],[0,1],[-1,1],[-9,-8],[-1,-1],[-2,0],[-7,3],[-1,1],[-1,4],[2,8],[1,4],[3,6],[5,7],[1,4],[3,12],[0,5],[-1,6],[0,4],[1,1],[10,6],[5,4],[9,7],[3,0],[1,-3],[3,-1],[2,-2],[3,0],[4,2],[6,-1],[13,-4],[3,0],[-2,3],[-9,2],[-3,2],[-11,7],[-2,3],[1,2],[2,1],[1,1],[1,2],[1,2],[3,4],[3,3],[8,5],[-3,0],[-5,-1],[-2,-1],[-4,-3],[-1,-3],[-2,-4],[-1,-1],[-4,-1],[-10,0],[-2,2],[-1,0],[-1,0],[-9,-6],[-3,-3],[-3,-4],[-3,-2],[-5,-2],[-4,-2],[-4,-4],[-1,-3],[0,-2],[1,-4],[-1,-1],[-3,-1],[-3,-3],[-8,-9],[-1,-3],[0,-1],[1,-3],[0,-1],[-3,-3],[-4,-4],[-3,-2],[-3,0],[-1,1],[-4,2],[-3,1],[0,-1],[4,-3],[4,-3],[2,-4],[1,-2],[0,-3],[-1,-2],[-2,-5],[-3,-1],[-7,-1],[-2,-1],[-1,-1],[5,-2],[0,-1],[0,-4],[-2,-1],[-4,-3],[-3,0],[-1,0],[1,3],[0,1],[-2,1],[-1,-2],[-5,-4],[-1,-1],[2,-1],[0,-1],[-3,-3],[-1,-2],[-2,-2],[-7,-7],[0,-1],[-2,-6],[-1,-5],[2,-2],[6,-3],[3,0],[4,-2],[6,-5],[3,-3],[0,-1],[0,-2],[-1,-2],[-2,-4],[-5,-6],[-2,-1],[-4,-2],[-1,-1],[-4,-5],[-2,-3],[1,-3],[-1,-2],[-6,-3],[0,-1],[2,0],[0,-4],[-1,-4],[-1,-1],[-3,0],[-5,-1],[0,-1],[0,-3],[-12,-3],[-2,-6],[-2,-1],[-4,-5],[-3,-2],[-3,-1],[-2,-1],[0,-2],[-1,-2],[-3,-3],[-1,-3],[-1,-1],[-5,0],[-1,-2],[-1,-4],[-1,0],[-2,1],[-2,-1],[-6,-5],[-1,-2],[0,-1],[1,-1],[2,-3],[-1,-3],[-2,-5],[0,-1],[-3,-2],[-1,-3],[-2,0],[-2,0],[-1,-3],[-2,-1],[-1,0],[-2,-2],[-2,-3],[-2,-2],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,-1],[-2,-2],[-1,-5],[-1,-2],[-1,-1],[-2,1],[-3,1],[-2,-1],[-5,-3],[-1,-2],[3,-1],[1,0],[0,-1],[-1,-1],[-3,0],[-1,0],[-2,-2],[-5,-1],[-1,-1],[-4,-6],[0,-1],[0,-1],[2,1],[2,-1],[1,-1],[1,-2],[1,-3],[-4,-5],[-1,-2],[-1,-1],[-1,6],[0,1],[-1,0],[-1,-2],[-3,-6],[-2,-4],[-18,-8],[-2,-2],[-1,-4],[0,-3],[-2,-3],[-1,-1],[0,1],[0,9],[-1,2],[-1,1],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,0],[-3,-2],[-5,-6],[-4,-2],[-1,-1],[-1,-3],[-1,-1],[-2,0],[-2,1],[-1,-1],[-2,-3],[-1,-1],[-3,2],[-2,-1],[-2,-3],[-2,-2],[-2,-1],[-6,-1],[-2,0],[-1,1],[0,4],[1,3],[1,2],[1,1],[2,0],[3,-1],[0,1],[-1,1],[-3,2],[-3,1],[-2,-1],[-2,-1],[-1,-2],[-1,-2],[-1,-6],[-1,-2],[-7,-11],[-2,-4],[-3,0],[-1,-1],[-2,-3],[-1,-1],[-2,0],[-1,0],[-1,1],[0,1],[1,1],[0,2],[-2,4],[-1,2],[-3,0],[0,-1],[1,-9],[0,-2],[-2,-2],[-4,-3],[-1,0],[-4,6],[-3,1],[0,-2],[0,-4],[0,-3],[-3,-3],[-2,-2],[-1,0],[0,2],[1,5],[0,3],[0,3],[0,2],[0,2],[5,4],[2,1],[1,-1],[1,0],[2,0],[1,2],[0,2],[2,2],[4,4],[4,5],[4,9],[6,7],[6,7],[6,5],[14,6],[1,0],[-1,-2],[0,-2],[2,0],[5,1],[2,2],[0,-2],[-1,-1],[-3,-2],[1,-2],[4,-6],[1,-2],[1,1],[1,0],[-1,5],[2,1],[3,1],[2,-1],[1,-2],[1,-1],[3,-1],[1,0],[1,2],[-1,2],[-5,4],[-1,2],[0,2],[0,4],[2,4],[2,6],[2,5],[4,5],[3,2],[7,7],[14,8],[4,5],[5,5],[2,1],[0,-2],[0,-2],[3,-1],[2,0],[1,0],[1,2],[-1,4],[0,3],[0,3],[1,3],[2,4],[3,5],[4,6],[3,3],[2,1],[3,3],[4,6],[1,1],[3,1],[1,-1],[1,-1],[1,-1],[3,-1],[2,1],[0,1],[-2,0],[-1,1],[-1,4],[-2,2],[-1,3],[1,3],[2,9],[0,10],[1,5],[4,2],[6,1],[-4,2],[-1,0],[-3,2],[-1,5],[0,4],[2,5],[6,8],[8,6],[-1,1],[-1,1],[3,12],[3,10],[-4,-9],[-5,-6],[-15,-8],[-10,-7],[-4,-1],[-3,2],[-3,6],[-1,2],[-2,4],[1,5],[1,4],[3,0],[4,-1],[3,-1],[-4,4],[-6,3],[-2,-1],[-2,-5],[-3,-3],[-2,1],[-1,1],[1,-4],[-2,-6],[-1,-5],[3,-12],[-1,-4],[-4,-3],[-4,4],[-8,15],[-2,4],[-6,7],[-2,-1],[-3,-3],[-2,-1],[-7,5],[-3,4],[-3,5],[-4,-3],[-4,-3],[-4,-5],[-3,0],[-8,-4],[-1,0],[-1,-2],[-1,-1],[-1,-5],[-11,-3],[-11,2],[4,2],[4,2],[4,5],[-2,6],[0,3],[0,4],[4,5],[-4,0],[-3,-2],[-3,4],[-1,9],[3,4],[1,4],[2,5],[0,5],[-3,7],[-6,16],[-3,12],[-5,6],[4,10],[4,9],[5,5],[-3,0],[-2,0],[-2,-3],[-1,-3],[-6,-12],[-4,-5],[-2,-2],[4,-2],[0,-2],[1,-5],[-1,-5],[-1,-3],[-4,1],[-4,-5],[-10,-4],[-13,-3],[-6,1],[-7,5],[0,3],[1,3],[-10,9],[-5,9],[-4,0],[-3,3],[-4,3],[0,3],[1,3],[-3,1],[-3,0],[-3,1],[9,12],[3,8],[3,1],[3,-1],[5,-3],[4,-2],[2,-1],[1,-3],[-2,-5],[-1,-3],[2,1],[5,5],[3,4],[2,0],[1,-1],[2,-4],[3,-5],[5,4],[3,6],[-2,2],[-3,2],[-8,2],[2,1],[5,0],[2,1],[-2,3],[-3,1],[-6,-6],[-13,1],[-9,3],[-8,0],[-2,0],[-1,2],[5,5],[3,2],[0,2],[-2,0],[-4,-1],[-1,2],[0,4],[-1,-1],[-1,-2],[-2,1],[-2,2],[1,2],[2,2],[-1,1],[-2,-1],[-1,-3],[0,-3],[0,-3],[-3,-1],[-2,0],[-2,4],[-2,8],[-4,2],[-2,4],[3,5],[-1,3],[-3,1],[-4,-3],[-1,3],[-1,2],[0,4],[1,0],[1,-1],[7,2],[1,1],[-6,4],[-1,3],[2,2],[4,0],[7,2],[-3,3],[-1,2],[0,3],[1,5],[7,12],[7,11],[2,2],[4,1],[3,-1],[3,-2],[0,1],[-1,1],[-1,4],[4,2],[3,4],[0,1],[-3,-1],[-3,-4],[0,4],[-1,7],[1,7],[1,3],[3,3],[7,1],[1,0],[0,1],[-4,4],[2,4],[1,1],[8,3],[5,-1],[6,-3],[3,-4],[0,-2],[-1,-1],[-2,-1],[-1,-1],[1,-1],[2,2],[4,3],[2,-1],[2,-3],[2,0],[6,2],[4,3],[4,5],[5,3],[7,12],[2,4],[3,1],[2,-1],[1,-3],[3,-1],[13,0],[6,2],[5,4],[5,6],[3,4],[1,5],[-2,7],[-2,6],[-2,13],[-6,8],[-5,3],[-3,0],[2,5],[6,0],[4,1],[4,2],[1,2],[1,4],[0,5],[-1,2],[-2,3],[-3,3],[-2,2],[-1,0],[-8,-8],[-5,0],[-3,1],[-3,-4],[-9,-4],[-4,-4],[-9,-9],[-2,-5],[-2,0],[-2,9],[-9,8],[-3,-3],[1,-3],[2,-1],[4,-1],[-2,-3],[-1,-3],[-3,3],[-6,5],[-7,2],[-16,0],[-11,-5],[-1,1],[-1,0],[-2,-1],[0,-2],[-2,-1],[-2,0],[-4,1],[-9,2],[-19,4],[-5,3],[-5,6],[1,4],[1,2],[0,6],[-3,1],[-8,9],[-3,3],[1,1],[1,-1],[3,-1],[6,1],[2,6],[5,1],[4,0],[-1,1],[-1,1],[-11,3],[-2,-1],[-20,5],[-16,9],[-2,1],[-1,4],[2,4],[2,2],[0,-2],[1,-2],[9,4],[5,6],[9,1],[2,2],[3,3],[4,5],[6,3],[4,3],[5,2],[4,-3],[2,0],[8,-1],[2,1],[1,1],[1,1],[-8,5],[1,3],[1,1],[9,6],[7,1],[4,0],[11,7],[6,2],[11,2],[9,0],[2,-3],[-4,1],[-3,0],[2,-1],[2,-2],[-1,-2],[-3,-7],[0,-6],[-2,-1],[-2,-3],[10,-8],[14,0],[8,1],[5,-2],[4,-1],[10,2],[8,-2],[3,1],[7,11],[3,2],[3,-2],[4,-2],[3,2],[2,-3],[-1,6],[-2,2],[-11,5],[-8,-3],[-3,3],[1,5],[-8,11],[-4,3],[-4,0],[-2,4],[-2,5],[4,3],[3,1],[3,-2],[3,-7],[3,-1],[0,-7],[3,-6],[9,-6],[7,2],[5,0],[3,-1],[8,-6],[3,0],[12,2],[0,6],[-1,3],[-3,3],[-7,-1],[-6,4],[-6,-1],[-9,-6],[-5,2],[-3,4],[-5,3],[-1,6],[4,7],[3,3],[-2,3],[-7,2],[-12,-2],[0,2],[0,3],[-5,-5],[-5,1],[-7,-1],[-15,5],[-5,5],[-2,5],[-4,12],[-5,8],[-35,26],[-16,6],[-8,7],[-5,2],[-4,1],[-6,2],[4,3],[3,1],[-3,-3],[2,-1],[3,2],[2,2],[3,9],[3,13],[-1,5],[19,-1],[13,1],[5,1],[16,2],[4,2],[8,4],[9,8],[8,11],[1,2],[1,0],[1,0],[1,4],[1,9],[4,9],[16,20],[8,8],[3,3],[2,3],[2,-2],[1,-1],[1,-1],[-2,-1],[-3,-2],[-3,-2],[-1,-1],[2,0],[6,2],[4,2],[18,4],[10,7],[0,2],[14,8],[2,0],[3,-1],[-4,-6],[2,-1],[-2,-7],[5,0],[1,-3],[1,3],[-1,3],[1,4],[1,3],[3,-1],[9,2],[-10,1],[-6,6],[-4,0],[11,9],[11,5],[2,0],[1,-1],[0,-1],[-2,-1],[-2,-2],[1,-2],[1,0],[5,1],[2,2],[11,0],[3,1],[1,1],[13,0],[3,1],[8,5],[8,6],[3,3],[7,8],[5,6],[9,5],[2,-1],[-3,-1],[-2,-2],[3,-3],[18,-6],[4,-1],[2,-3],[-1,-4],[-5,-4],[-9,-4],[2,-1],[2,-4],[3,0],[5,1],[3,2],[8,8],[2,3],[2,1],[6,0],[3,-3],[4,-3],[-1,-4],[-2,-2],[6,-2],[5,-1],[6,-2],[7,4],[6,1],[6,0],[7,3],[13,-4],[3,1],[5,0],[5,-2],[2,-3],[-5,-4],[-1,-5],[2,-2],[3,0],[1,-3],[2,-1],[11,1],[-1,-2],[0,-1],[-4,-4],[20,-2],[3,2],[4,1],[9,3],[3,-2],[4,-2],[4,-1],[3,1],[8,4],[9,0],[4,-2],[4,1],[11,-4],[5,-1],[5,-6],[3,0],[4,3],[3,-1],[3,-2],[4,-1],[3,-3],[2,-2],[18,-3],[9,2],[13,-1],[6,-1],[6,0],[11,-7],[6,-1],[1,-1],[16,-2],[5,4],[10,1],[9,2],[5,0],[6,0],[2,0],[2,1],[14,-5],[8,-5],[3,-4],[17,-6],[5,-4],[3,-3],[2,-1],[1,2],[6,-1],[2,0]],[[3299,5816],[-1,0],[1,0],[-1,-1],[0,1],[0,1],[0,-1],[1,1],[-1,1],[1,0],[0,1],[1,1],[0,-1],[-1,-1],[0,-2]],[[3300,5826],[0,-1],[-2,4],[0,5],[1,2],[1,2],[1,0],[1,-4],[-1,-5],[-1,-3]],[[3305,5572],[-1,-1],[-1,6],[1,1],[3,5],[1,1],[0,-1],[0,-1],[1,-2],[0,-3],[-1,-3],[-3,-2]],[[3310,5588],[-3,-2],[0,2],[1,2],[2,1],[0,1],[1,1],[1,0],[1,-1],[-2,-2],[-1,-2]],[[3188,5693],[-1,-2],[-3,2],[-1,2],[0,2],[3,0],[2,-3],[0,-1]],[[3226,5706],[1,-8],[0,-1],[-3,-5],[-2,-1],[-2,0],[-1,1],[-2,4],[-1,-1],[-4,1],[-1,1],[1,4],[3,2],[1,0],[1,-2],[2,-2],[2,-1],[1,4],[3,6],[1,-2]],[[3019,5749],[-1,-2],[-2,-4],[-2,-2],[-11,-6],[-1,-1],[-1,-2],[0,-5],[0,-4],[3,-13],[1,-4],[5,-7],[-1,-1],[-2,0],[1,-9],[3,-7],[0,-4],[-2,-13],[-4,-7],[-2,-9],[-2,-4],[-4,-17],[3,-10],[0,-5],[3,-8],[2,-2],[1,-3],[0,-5],[1,-7],[1,-4],[2,-1],[3,0],[6,4],[2,2],[1,4],[3,7],[0,10],[1,12],[-1,7],[-3,11],[-2,8],[-3,7],[-2,12],[-1,4],[-1,5],[-1,9],[3,4],[-1,7],[6,2],[12,13],[8,3],[9,6],[2,4],[2,5],[1,1],[4,-5],[3,1],[1,4],[-2,8],[-2,0],[-8,-3],[-1,4],[0,3],[-2,9],[1,7],[2,5],[2,3],[3,2],[3,-4],[1,-3],[1,-4],[1,-9],[1,-10],[1,-6],[2,-5],[2,0],[1,1],[9,1],[5,-3],[6,-2],[6,-7],[6,-9],[1,-7],[1,-6],[1,-4],[-1,-4],[1,-7],[1,-7],[3,-5],[7,-1],[8,3],[13,3],[4,2],[20,2],[4,-4],[1,-3],[0,-3],[6,-13],[6,-1],[5,-4],[4,-3],[6,-3],[2,1],[3,1],[2,0],[19,21],[10,0],[1,1],[1,2],[-3,3],[-8,1],[-3,-2],[-1,6],[2,0],[9,1],[11,-1],[8,4],[5,1],[2,-1],[7,2],[13,-3],[10,3],[-1,-4],[-4,-2],[-5,0],[-4,-6],[-9,1],[-6,-1],[2,-2],[0,-5],[1,-1],[1,0],[2,-4],[0,-3],[1,-5],[-1,-6],[-1,-3],[2,1],[2,3],[0,3],[0,3],[1,-1],[1,-2],[3,-15],[3,-8],[0,1],[1,0],[0,1],[1,4],[1,-2],[1,-1],[0,3],[0,4],[0,2],[1,0],[1,0],[2,-2],[3,-5],[2,-5],[0,-3],[1,-1],[1,-2],[1,-3],[0,4],[-1,4],[0,3],[4,0],[1,5],[2,-3],[6,-13],[2,-2],[6,-2],[4,-6],[2,-6],[-1,-6],[-4,-2],[-1,-4],[-1,-4],[0,-3],[-1,-4],[-1,-2],[0,-5],[-2,-7],[-2,-8],[-10,0],[3,-3],[2,-2],[4,-6],[3,4],[4,1],[5,5],[2,1],[9,-3],[2,4],[2,1],[4,-1],[5,-4]],[[3205,6137],[-2,0],[1,2],[2,0],[1,0],[-2,-2]],[[3211,6140],[-1,0],[0,1],[0,2],[3,1],[-2,-4]],[[3214,6157],[0,-2],[-2,1],[-1,0],[0,1],[-1,0],[3,1],[1,-1]],[[3201,6101],[2,-3],[3,0],[-3,-2],[-6,-1],[0,4],[4,2]],[[3204,6134],[-2,-2],[-2,1],[1,2],[3,-1]],[[3198,6133],[-2,-1],[-3,3],[3,1],[1,-1],[1,-2]],[[7961,5561],[-1,0],[-1,1],[3,4],[0,-3],[0,-1],[-1,-1]],[[7890,5662],[0,-3],[0,-7],[-1,-6],[0,-3],[0,-2],[-2,12],[-3,6],[0,2],[1,0],[3,3],[1,0],[1,-2]],[[7976,5663],[-2,-4],[0,3],[2,2],[0,1],[1,0],[-1,-2]],[[7972,6276],[-1,-1],[-2,5],[1,3],[3,-2],[0,-1],[0,-1],[0,-2],[-1,-1]],[[7968,6280],[-1,-1],[-1,2],[-1,2],[1,3],[1,-4],[1,-2]],[[7986,6286],[-2,-1],[-1,0],[2,3],[1,3],[1,2],[0,-3],[-1,-4]],[[7988,6304],[-4,-8],[-1,0],[1,9],[1,2],[2,-3],[1,0]],[[7998,6321],[-1,-1],[-3,0],[-3,-5],[-2,-3],[-3,-1],[-3,-3],[-1,-6],[0,-4],[-1,-4],[-5,-6],[-1,0],[-1,3],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,2],[-1,1],[-1,0],[-1,-3],[2,-9],[1,-4],[-6,-12],[1,-8],[-2,-6],[-3,-5],[-7,-13],[-3,0],[-2,-3],[-5,-21],[0,-7],[0,-5],[0,-5],[-2,-10],[-2,-4],[-1,-6],[3,-11],[1,-2],[1,-6],[1,-4],[2,-4],[4,-11],[3,-4],[2,-2],[5,-10],[3,-6],[-2,-5],[1,-9],[-3,3],[0,-1],[4,-5],[6,-18],[5,-8],[6,-10],[1,-9],[5,-6],[6,-9],[-1,-2],[2,-3],[4,-5],[2,-5],[1,-4],[1,-1],[1,1],[2,0],[1,0],[2,-5],[2,-5],[1,-4],[1,0],[1,0],[0,-4],[0,-2],[3,-7],[2,-7],[3,-10],[3,-6],[2,-3],[2,-3],[2,-12],[1,-11],[3,-11],[1,-6],[0,-9],[2,-10],[1,-7],[1,-7],[0,-3],[1,-3],[1,-11],[0,-6],[-1,5],[0,-15],[1,-9],[0,-10],[1,-3],[1,-12],[2,-4],[0,-14],[0,-7],[-1,4],[-2,5],[-1,-2],[-2,-4],[2,-15],[-2,1],[0,-20],[1,-5],[0,-2],[0,-3],[-1,3],[0,3],[0,-1],[0,-1],[-1,-4],[-1,-4],[1,-4],[0,-3],[0,-3],[-1,-4],[-3,-1],[-1,-7],[0,-8],[-5,-1],[-3,-7],[-4,-2],[-4,-7],[-4,-7],[-3,0],[-2,-2],[-3,-10],[-4,-1],[-8,-9],[-3,-4],[-2,-2],[-3,-3],[-1,1],[-1,3],[-3,2],[-2,3],[0,4],[0,2],[-1,-2],[-1,-11],[0,-2],[-1,-1],[-3,3],[-2,6],[-4,-4],[2,-1],[1,0],[1,-1],[1,-4],[0,-2],[0,-2],[-3,-1],[-5,1],[3,-4],[4,-2],[1,-3],[0,-2],[-2,-3],[-1,-4],[0,-3],[0,-3],[-2,-2],[-1,0],[-3,4],[-9,17],[2,-5],[9,-19],[1,-6],[1,-4],[-1,-2],[-2,-3],[-3,0],[-5,7],[-7,17],[-3,2],[8,-19],[1,-5],[1,-5],[0,-4],[-1,-3],[-18,-18],[-3,-7],[-2,-10],[-4,-5],[-2,-5],[-6,-3],[-4,1],[4,9],[-2,3],[0,23],[1,25],[1,12],[3,3],[2,2],[1,3],[-1,3],[-1,4],[-2,2],[-3,1],[-2,5],[-1,0],[-2,-2],[-2,2],[0,4],[-3,4],[-2,4]],[[9718,3851],[-1,-3],[-1,0],[-2,2],[0,3],[3,0],[1,-2]],[[9707,3889],[-1,-6],[-3,1],[-2,5],[-1,4],[0,8],[2,1],[1,0],[0,-8],[4,-5]],[[9703,3925],[-2,-3],[-1,0],[-7,7],[0,2],[0,7],[1,4],[2,2],[1,-1],[1,-6],[3,-2],[-2,-2],[3,-4],[1,-4]],[[9678,4007],[3,-8],[1,-1],[-2,-6],[-3,0],[-4,1],[1,2],[-1,3],[-1,0],[-1,-1],[-1,1],[1,3],[2,6],[1,0],[1,0],[3,0]],[[9678,4053],[1,-1],[-1,-3],[-3,3],[-3,-1],[-1,0],[-1,2],[-1,5],[0,3],[2,2],[0,1],[1,-3],[1,-2],[1,-1],[2,-4],[2,-1]],[[9674,4079],[-3,-1],[-5,2],[-1,3],[-1,2],[1,2],[2,1],[3,6],[1,-2],[1,-7],[1,-2],[1,-2],[0,-2]],[[9649,4093],[2,-1],[1,-3],[4,-6],[1,0],[1,-3],[1,-1],[1,-4],[1,-3],[-2,-4],[-4,1],[-2,-4],[-3,1],[0,2],[0,1],[-1,6],[-1,9],[0,6],[-1,2],[-2,-2],[-1,0],[-2,4],[1,9],[0,3],[2,0],[2,-2],[2,-11]],[[9644,4115],[0,-1],[-3,3],[0,4],[3,-1],[0,-5]],[[9672,4101],[-1,0],[0,2],[-2,15],[1,13],[1,-3],[2,-23],[0,-3],[-1,-1]],[[9663,4132],[-2,-2],[-3,0],[-1,1],[4,9],[5,1],[-3,-9]],[[9671,4139],[-1,-4],[-1,4],[0,18],[0,2],[2,-13],[0,-7]],[[9631,4168],[2,-19],[2,0],[1,1],[1,4],[1,8],[1,1],[1,-1],[-1,-2],[1,-6],[1,-3],[1,-1],[1,-15],[1,-3],[-1,-3],[-2,-5],[-5,0],[-3,-4],[-2,1],[0,4],[-1,3],[-2,6],[0,12],[-3,21],[0,5],[1,7],[1,1],[2,-6],[2,-6]],[[9654,4202],[-1,-3],[-3,1],[-1,1],[0,5],[1,1],[2,2],[3,-3],[-1,-4]],[[9652,4223],[-1,-1],[-1,1],[-1,7],[0,2],[2,3],[2,-4],[0,-3],[0,-2],[0,-1],[-1,-1],[0,-1]],[[54,4198],[-1,0],[-2,1],[-1,3],[1,2],[1,-1],[1,-3],[1,-1],[0,-1]],[[107,4257],[-1,-1],[0,3],[0,3],[1,1],[1,-2],[-1,-4]],[[237,4215],[-7,0],[-4,2],[-1,0],[-4,6],[0,3],[2,2],[3,1],[7,-5],[1,-3],[2,-1],[1,-1],[0,-3],[0,-1]],[[213,4249],[3,-6],[1,-7],[-1,-7],[-3,2],[-4,-2],[-2,1],[-3,8],[-2,4],[-1,4],[3,0],[4,2],[5,1]],[[6493,5795],[1,0],[3,2],[8,0],[9,-7],[-2,-1],[-1,-3],[-4,-2],[-4,-5],[-11,-3],[-4,2],[-3,5],[-5,6],[2,4],[1,2],[1,2],[2,3],[3,-1],[4,-4]],[[6187,5858],[-2,-1],[1,4],[2,1],[-1,-4]],[[6188,5874],[0,-1],[-1,0],[-2,3],[2,4],[1,-3],[0,-3]],[[6182,5953],[0,-1],[-1,2],[1,5],[1,2],[0,-4],[0,-2],[-1,-2]],[[6474,6033],[-14,-11],[-4,-4],[-3,-6],[-3,-7],[-1,-13],[1,-12],[0,-6],[-4,-4],[-3,-3],[-4,-5],[-2,-1],[-2,-3],[-2,-3],[-8,-6],[-9,-5],[-13,-6],[-5,-7],[-5,-5],[-7,-1],[-10,-6],[-6,-5],[-7,-8],[-1,-3],[-1,-6],[-3,-5],[-4,-9],[-3,-4],[-2,0],[-4,-3],[-5,0],[-8,3],[-2,-2],[-1,-4],[-6,-5],[-7,-12],[-4,-3],[-8,-4],[-5,-5],[-3,-2],[-5,-1],[-8,1],[-8,-2],[-7,-3],[-4,-6],[-4,-10],[-6,-4],[-2,-4],[-2,-7],[-4,-2],[-3,-1],[-4,3],[-7,-9],[-3,-1],[-4,-1],[-3,-1],[-2,0],[-3,3],[-6,5],[-4,-3],[0,8],[-7,26],[2,22],[0,3],[-2,10],[-4,9],[0,11],[-1,8],[-1,9],[0,2],[0,2],[-2,13],[0,2],[-1,3],[1,2],[0,3],[-1,4],[-1,7],[-6,6],[1,6],[2,-2],[1,-2],[0,4],[0,2],[-2,17],[3,22],[-1,21]],[[6051,2266],[-1,-1],[-6,1],[0,2],[1,3],[1,2],[3,-1],[2,-3],[1,-1],[-1,-2]],[[5913,3456],[-1,-14],[-4,-21],[-1,-10],[-4,-35],[-4,-18],[-3,-7],[-7,-13],[-2,-2],[-2,-2],[-3,-2],[-12,-26],[-5,-12],[-4,-19],[-4,-10],[-6,-21],[-5,-17],[-5,-15],[-9,-21],[-4,-6],[-3,-3],[-7,-12],[-9,-19],[-8,-17],[-11,-20],[-7,-9],[-10,-16],[-2,-3],[-11,-16],[-8,-9],[-13,-11],[-5,-3],[-13,3],[-5,-2],[-4,-7],[0,-9],[-2,-2],[-3,1],[-8,4],[-5,-1],[-3,-5],[-2,-6],[-6,-1],[-12,7],[-13,4],[-3,0],[-7,-5],[-2,0],[-10,1],[-5,3],[-5,0],[-4,-3],[-5,-1],[-12,-18],[-7,0],[-6,-2],[-2,0],[-6,3],[-2,0],[-2,-1],[-3,-4],[-7,-1],[-3,-3],[-11,-16],[-3,1],[-2,1],[-6,0],[-7,9],[-2,-1],[0,3],[0,4],[-1,4],[-1,1],[-3,0],[-1,4],[-4,0],[-2,-1],[-1,0],[-1,4],[1,3],[-1,3],[0,5],[-2,2],[-1,0],[-3,0],[-2,-1],[-1,-1],[-1,-3],[0,-11],[-1,3],[-2,6],[0,7],[0,8],[3,3],[0,6],[-1,4],[-3,12],[-1,6],[-3,4],[-2,9],[-3,3],[-1,6],[-2,5],[-1,8],[2,5],[1,2],[2,-4],[3,2],[3,5],[2,9],[1,14],[-1,9],[-3,22],[-1,5],[-6,17],[-8,21],[-9,34],[-4,21],[-7,41],[-6,23],[-7,22],[-1,1]],[[5815,3732],[8,3],[7,-2],[8,-7],[8,-2],[7,2],[5,0],[5,-1],[3,-2],[3,-3]],[[5844,4120],[-4,0],[-7,0],[-8,0],[-6,-3],[-6,-5],[-7,-7],[-2,-3],[-1,-2],[-1,-3],[-1,-7],[0,-9],[-1,-7],[-2,-7],[-10,-7],[-6,-7],[-7,-7],[-5,-10],[-3,-12],[-5,-15],[-6,-13],[-6,-13],[-7,-5],[-5,1],[-7,6],[-5,1],[-4,-4],[-4,1],[-4,6],[-2,2],[-3,-2],[-3,1],[-5,3]]]}
@@ -0,0 +1,5 @@
1
+ d3=function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(){}function o(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function a(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=Co.length;r>e;++e){var u=Co[e]+t;if(u in n)return u}}function c(){}function l(){}function s(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new u;return t.on=function(t,u){var i,o=r.get(t);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function f(){vo.event.preventDefault()}function h(){for(var n,t=vo.event;n=t.sourceEvent;)t=n;return t}function g(n){for(var t=new l,e=0,r=arguments.length;++e<r;)t[arguments[e]]=s(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=vo.event;u.target=n,vo.event=u,t[u.type].apply(e,r)}finally{vo.event=i}}},t}function p(n){return jo(n,Oo),n}function d(n){return"function"==typeof n?n:function(){return Lo(n,this)}}function v(n){return"function"==typeof n?n:function(){return Ho(n,this)}}function m(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=vo.ns.qualify(n),null==t?n.local?r:e:"function"==typeof t?n.local?a:o:n.local?i:u}function y(n){return n.trim().replace(/\s+/g," ")}function M(n){return new RegExp("(?:^|\\s+)"+vo.requote(n)+"(?:\\s+|$)","g")}function x(n,t){function e(){for(var e=-1;++e<u;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<u;)n[e](this,r)}n=n.trim().split(/\s+/).map(b);var u=n.length;return"function"==typeof t?r:e}function b(n){var t=M(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute("class")||"";r?(t.lastIndex=0,t.test(u)||e.setAttribute("class",y(u+" "+n))):e.setAttribute("class",y(u.replace(t," ")))}}function _(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:"function"==typeof t?i:u}function w(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:"function"==typeof t?u:r}function S(n){return"function"==typeof n?n:(n=vo.ns.qualify(n)).local?function(){return Mo.createElementNS(n.space,n.local)}:function(){return Mo.createElementNS(this.namespaceURI,n)}}function E(n){return{__data__:n}}function k(n){return function(){return Po(this,n)}}function A(n){return arguments.length||(n=vo.ascending),function(t,e){return t&&e?n(t.__data__,e.__data__):!t-!e}}function N(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],o=0,a=i.length;a>o;o++)(u=i[o])&&t(u,o,e);return n}function q(n){return jo(n,Yo),n}function T(n){var t,e;return function(r,u,i){var o,a=n[i].update,c=a.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(o=a[t])&&++t<c;);return o}}function z(){var n=this.__transition__;n&&++n.active}function C(n,t,e){function r(){var t=this[o];t&&(this.removeEventListener(n,t,t.$),delete this[o])}function u(){var u=l(t,yo(arguments));r.call(this),this.addEventListener(n,this[o]=u,u.$=e),u._=t}function i(){var t,e=new RegExp("^__on([^.]+)"+vo.requote(n)+"$");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var o="__on"+n,a=n.indexOf("."),l=D;a>0&&(n=n.substring(0,a));var s=Uo.get(n);return s&&(n=s,l=j),a?t?u:r:t?c:i}function D(n,t){return function(e){var r=vo.event;vo.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{vo.event=r}}}function j(n,t){var e=D(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function L(){var n=".dragsuppress-"+ ++Zo,t="touchmove"+n,e="selectstart"+n,r="dragstart"+n,u="click"+n,i=vo.select(bo).on(t,f).on(e,f).on(r,f),o=xo.style,a=o[Vo];return o[Vo]="none",function(t){function e(){i.on(u,null)}i.on(n,null),o[Vo]=a,t&&(i.on(u,function(){f(),e()},!0),setTimeout(e,0))}}function H(n,t){var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();if(0>Xo&&(bo.scrollX||bo.scrollY)){e=vo.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var u=e[0][0].getScreenCTM();Xo=!(u.f||u.e),e.remove()}return Xo?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var i=n.getBoundingClientRect();return[t.clientX-i.left-n.clientLeft,t.clientY-i.top-n.clientTop]}function F(n){return n>0?1:0>n?-1:0}function P(n){return n>1?0:-1>n?Bo:Math.acos(n)}function O(n){return n>1?Bo/2:-1>n?-Bo/2:Math.asin(n)}function R(n){return(Math.exp(n)-Math.exp(-n))/2}function Y(n){return(Math.exp(n)+Math.exp(-n))/2}function I(n){return R(n)/Y(n)}function U(n){return(n=Math.sin(n/2))*n}function V(){}function Z(n,t,e){return new X(n,t,e)}function X(n,t,e){this.h=n,this.s=t,this.l=e}function B(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(o-i)*n/60:180>n?o:240>n?i+(o-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,i=2*e-o,ot(u(n+120),u(n),u(n-120))}function $(n,t,e){return new W(n,t,e)}function W(n,t,e){this.h=n,this.c=t,this.l=e}function J(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),G(e,Math.cos(n*=Jo)*t,Math.sin(n)*t)}function G(n,t,e){return new K(n,t,e)}function K(n,t,e){this.l=n,this.a=t,this.b=e}function Q(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=tt(u)*aa,r=tt(r)*ca,i=tt(i)*la,ot(rt(3.2404542*u-1.5371385*r-.4985314*i),rt(-.969266*u+1.8760108*r+.041556*i),rt(.0556434*u-.2040259*r+1.0572252*i))}function nt(n,t,e){return n>0?$(Math.atan2(e,t)*Go,Math.sqrt(t*t+e*e),n):$(0/0,0/0,n)}function tt(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function et(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function rt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function ut(n){return ot(n>>16,255&n>>8,255&n)}function it(n){return ut(n)+""}function ot(n,t,e){return new at(n,t,e)}function at(n,t,e){this.r=n,this.g=t,this.b=e}function ct(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function lt(n,t,e){var r,u,i,o=0,a=0,c=0;if(r=/([a-z]+)\((.*)\)/i.exec(n))switch(u=r[2].split(","),r[1]){case"hsl":return e(parseFloat(u[0]),parseFloat(u[1])/100,parseFloat(u[2])/100);case"rgb":return t(gt(u[0]),gt(u[1]),gt(u[2]))}return(i=ha.get(n))?t(i.r,i.g,i.b):(null!=n&&"#"===n.charAt(0)&&(4===n.length?(o=n.charAt(1),o+=o,a=n.charAt(2),a+=a,c=n.charAt(3),c+=c):7===n.length&&(o=n.substring(1,3),a=n.substring(3,5),c=n.substring(5,7)),o=parseInt(o,16),a=parseInt(a,16),c=parseInt(c,16)),t(o,a,c))}function st(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-i,c=(o+i)/2;return a?(u=.5>c?a/(o+i):a/(2-o-i),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=0/0,u=c>0&&1>c?0:r),Z(r,u,c)}function ft(n,t,e){n=ht(n),t=ht(t),e=ht(e);var r=et((.4124564*n+.3575761*t+.1804375*e)/aa),u=et((.2126729*n+.7151522*t+.072175*e)/ca),i=et((.0193339*n+.119192*t+.9503041*e)/la);return G(116*u-16,500*(r-u),200*(u-i))}function ht(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function gt(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function pt(n){return"function"==typeof n?n:function(){return n}}function dt(n){return n}function vt(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),mt(t,e,n,r)}}function mt(n,t,e,r){function u(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(i,c)}catch(r){return o.error.call(i,r),void 0}o.load.call(i,n)}else o.error.call(i,c)}var i={},o=vo.dispatch("beforesend","progress","load","error"),a={},c=new XMLHttpRequest,l=null;return!bo.XDomainRequest||"withCredentials"in c||!/^(http(s)?:)?\/\//.test(n)||(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=u:c.onreadystatechange=function(){c.readyState>3&&u()},c.onprogress=function(n){var t=vo.event;vo.event=n;try{o.progress.call(i,c)}finally{vo.event=t}},i.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+"",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",i):t},i.responseType=function(n){return arguments.length?(l=n,i):l},i.response=function(n){return e=n,i},["get","post"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(yo(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&"function"==typeof r&&(u=r,r=null),c.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),c.setRequestHeader)for(var s in a)c.setRequestHeader(s,a[s]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=l&&(c.responseType=l),null!=u&&i.on("error",u).on("load",function(n){u(null,n)}),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},vo.rebind(i,o,"on"),null==r?i:i.get(yt(r))}function yt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Mt(){var n=bt(),t=_t()-n;t>24?(isFinite(t)&&(clearTimeout(va),va=setTimeout(Mt,t)),da=0):(da=1,ya(Mt))}function xt(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now()),ma.callback=n,ma.time=e+t}function bt(){var n=Date.now();for(ma=ga;ma;)n>=ma.time&&(ma.flush=ma.callback(n-ma.time)),ma=ma.next;return n}function _t(){for(var n,t=ga,e=1/0;t;)t.flush?t=n?n.next=t.next:ga=t.next:(t.time<e&&(e=t.time),t=(n=t).next);return pa=n,e}function wt(n,t){var e=Math.pow(10,3*Math.abs(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function St(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Et(n){return n+""}function kt(){}function At(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function Nt(n,t){n&&Ta.hasOwnProperty(n.type)&&Ta[n.type](n,t)}function qt(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();++u<i;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function Tt(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)qt(n[e],t,1);t.polygonEnd()}function zt(){function n(n,t){n*=Jo,t=t*Jo/2+Bo/4;var e=n-r,o=Math.cos(t),a=Math.sin(t),c=i*a,l=u*o+c*Math.cos(e),s=c*Math.sin(e);Ca.add(Math.atan2(s,l)),r=n,u=o,i=a}var t,e,r,u,i;Da.point=function(o,a){Da.point=n,r=(t=o)*Jo,u=Math.cos(a=(e=a)*Jo/2+Bo/4),i=Math.sin(a)},Da.lineEnd=function(){n(t,e)}}function Ct(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function Dt(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function jt(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function Lt(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function Ht(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function Ft(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function Pt(n){return[Math.atan2(n[1],n[0]),O(n[2])]}function Ot(n,t){return Math.abs(n[0]-t[0])<$o&&Math.abs(n[1]-t[1])<$o}function Rt(n,t){n*=Jo;var e=Math.cos(t*=Jo);Yt(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function Yt(n,t,e){++ja,Ha+=(n-Ha)/ja,Fa+=(t-Fa)/ja,Pa+=(e-Pa)/ja}function It(){function n(n,u){n*=Jo;var i=Math.cos(u*=Jo),o=i*Math.cos(n),a=i*Math.sin(n),c=Math.sin(u),l=Math.atan2(Math.sqrt((l=e*c-r*a)*l+(l=r*o-t*c)*l+(l=t*a-e*o)*l),t*o+e*a+r*c);La+=l,Oa+=l*(t+(t=o)),Ra+=l*(e+(e=a)),Ya+=l*(r+(r=c)),Yt(t,e,r)}var t,e,r;Za.point=function(u,i){u*=Jo;var o=Math.cos(i*=Jo);t=o*Math.cos(u),e=o*Math.sin(u),r=Math.sin(i),Za.point=n,Yt(t,e,r)}}function Ut(){Za.point=Rt}function Vt(){function n(n,t){n*=Jo;var e=Math.cos(t*=Jo),o=e*Math.cos(n),a=e*Math.sin(n),c=Math.sin(t),l=u*c-i*a,s=i*o-r*c,f=r*a-u*o,h=Math.sqrt(l*l+s*s+f*f),g=r*o+u*a+i*c,p=h&&-P(g)/h,d=Math.atan2(h,g);Ia+=p*l,Ua+=p*s,Va+=p*f,La+=d,Oa+=d*(r+(r=o)),Ra+=d*(u+(u=a)),Ya+=d*(i+(i=c)),Yt(r,u,i)}var t,e,r,u,i;Za.point=function(o,a){t=o,e=a,Za.point=n,o*=Jo;var c=Math.cos(a*=Jo);r=c*Math.cos(o),u=c*Math.sin(o),i=Math.sin(a),Yt(r,u,i)},Za.lineEnd=function(){n(t,e),Za.lineEnd=Ut,Za.point=Rt}}function Zt(){return!0}function Xt(n,t,e,r,u){var i=[],o=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(Ot(e,r)){u.lineStart();for(var a=0;t>a;++a)u.point((e=n[a])[0],e[1]);return u.lineEnd(),void 0}var c={point:e,points:n,other:null,visited:!1,entry:!0,subject:!0},l={point:e,points:[e],other:c,visited:!1,entry:!1,subject:!1};c.other=l,i.push(c),o.push(l),c={point:r,points:[r],other:null,visited:!1,entry:!1,subject:!0},l={point:r,points:[r],other:c,visited:!1,entry:!0,subject:!1},c.other=l,i.push(c),o.push(l)}}),o.sort(t),Bt(i),Bt(o),i.length){if(e)for(var a=1,c=!e(o[0].point),l=o.length;l>a;++a)o[a].entry=c=!c;for(var s,f,h,g=i[0];;){for(s=g;s.visited;)if((s=s.next)===g)return;f=s.points,u.lineStart();do{if(s.visited=s.other.visited=!0,s.entry){if(s.subject)for(var a=0;a<f.length;a++)u.point((h=f[a])[0],h[1]);else r(s.point,s.next.point,1,u);s=s.next}else{if(s.subject){f=s.prev.points;for(var a=f.length;--a>=0;)u.point((h=f[a])[0],h[1])}else r(s.point,s.prev.point,-1,u);s=s.prev}s=s.other,f=s.points}while(!s.visited);u.lineEnd()}}}function Bt(n){if(t=n.length){for(var t,e,r=0,u=n[0];++r<t;)u.next=e=n[r],e.prev=u,u=e;u.next=e=n[0],e.prev=u}}function $t(n,t,e,r){return function(u){function i(t,e){n(t,e)&&u.point(t,e)}function o(n,t){d.point(n,t)}function a(){v.point=o,d.lineStart()}function c(){v.point=i,d.lineEnd()}function l(n,t){y.point(n,t),p.push([n,t])}function s(){y.lineStart(),p=[]}function f(){l(p[0][0],p[0][1]),y.lineEnd();var n,t=y.clean(),e=m.buffer(),r=e.length;if(p.pop(),g.push(p),p=null,r){if(1&t){n=e[0];var i,r=n.length-1,o=-1;for(u.lineStart();++o<r;)u.point((i=n[o])[0],i[1]);return u.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),h.push(e.filter(Wt))}}var h,g,p,d=t(u),v={point:i,lineStart:a,lineEnd:c,polygonStart:function(){v.point=l,v.lineStart=s,v.lineEnd=f,h=[],g=[],u.polygonStart()},polygonEnd:function(){v.point=i,v.lineStart=a,v.lineEnd=c,h=vo.merge(h),h.length?Xt(h,Gt,null,e,u):r(g)&&(u.lineStart(),e(null,null,1,u),u.lineEnd()),u.polygonEnd(),h=g=null},sphere:function(){u.polygonStart(),u.lineStart(),e(null,null,1,u),u.lineEnd(),u.polygonEnd()}},m=Jt(),y=t(m);return v}}function Wt(n){return n.length>1}function Jt(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:c,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Gt(n,t){return((n=n.point)[0]<0?n[1]-Bo/2-$o:Bo/2-n[1])-((t=t.point)[0]<0?t[1]-Bo/2-$o:Bo/2-t[1])}function Kt(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,o=!1,a=!1,c=0;Ca.reset();for(var l=0,s=t.length;s>l;++l){var f=t[l],h=f.length;if(h){for(var g=f[0],p=g[0],d=g[1]/2+Bo/4,v=Math.sin(d),m=Math.cos(d),y=1;;){y===h&&(y=0),n=f[y];var M=n[0],x=n[1]/2+Bo/4,b=Math.sin(x),_=Math.cos(x),w=M-p,S=Math.abs(w)>Bo,E=v*b;if(Ca.add(Math.atan2(E*Math.sin(w),m*_+E*Math.cos(w))),Math.abs(x)<$o&&(a=!0),i+=S?w+(w>=0?2:-2)*Bo:w,S^p>=e^M>=e){var k=jt(Ct(g),Ct(n));Ft(k);var A=jt(u,k);Ft(A);var N=(S^w>=0?-1:1)*O(A[2]);r>N&&(c+=S^w>=0?1:-1)}if(!y++)break;p=M,v=b,m=_,g=n}Math.abs(i)>$o&&(o=!0)}}return(!a&&!o&&0>Ca||-$o>i)^1&c}function Qt(n){var t,e=0/0,r=0/0,u=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(i,o){var a=i>0?Bo:-Bo,c=Math.abs(i-e);Math.abs(c-Bo)<$o?(n.point(e,r=(r+o)/2>0?Bo/2:-Bo/2),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(i,r),t=0):u!==a&&c>=Bo&&(Math.abs(e-u)<$o&&(e-=u*$o),Math.abs(i-a)<$o&&(i-=a*$o),r=ne(e,r,i,o),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),t=0),n.point(e=i,r=o),u=a},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function ne(n,t,e,r){var u,i,o=Math.sin(n-e);return Math.abs(o)>$o?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*o)):(t+r)/2}function te(n,t,e,r){var u;if(null==n)u=e*Bo/2,r.point(-Bo,u),r.point(0,u),r.point(Bo,u),r.point(Bo,0),r.point(Bo,-u),r.point(0,-u),r.point(-Bo,-u),r.point(-Bo,0),r.point(-Bo,u);else if(Math.abs(n[0]-t[0])>$o){var i=(n[0]<t[0]?1:-1)*Bo;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function ee(n){return Kt(Ba,n)}function re(n){function t(n,t){return Math.cos(n)*Math.cos(t)>o}function e(n){var e,i,o,c,s;return{lineStart:function(){c=o=!1,s=1},point:function(f,h){var g,p=[f,h],d=t(f,h),v=a?d?0:u(f,h):d?u(f+(0>f?Bo:-Bo),h):0;if(!e&&(c=o=d)&&n.lineStart(),d!==o&&(g=r(e,p),(Ot(e,g)||Ot(p,g))&&(p[0]+=$o,p[1]+=$o,d=t(p[0],p[1]))),d!==o)s=0,d?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(l&&e&&a^d){var m;v&i||!(m=r(p,e,!0))||(s=0,a?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!d||e&&Ot(e,p)||n.point(p[0],p[1]),e=p,o=d,i=v},lineEnd:function(){o&&n.lineEnd(),e=null},clean:function(){return s|(c&&o)<<1}}}function r(n,t,e){var r=Ct(n),u=Ct(t),i=[1,0,0],a=jt(r,u),c=Dt(a,a),l=a[0],s=c-l*l;if(!s)return!e&&n;var f=o*c/s,h=-o*l/s,g=jt(i,a),p=Ht(i,f),d=Ht(a,h);Lt(p,d);var v=g,m=Dt(p,v),y=Dt(v,v),M=m*m-y*(Dt(p,p)-1);if(!(0>M)){var x=Math.sqrt(M),b=Ht(v,(-m-x)/y);if(Lt(b,p),b=Pt(b),!e)return b;var _,w=n[0],S=t[0],E=n[1],k=t[1];w>S&&(_=w,w=S,S=_);var A=S-w,N=Math.abs(A-Bo)<$o,q=N||$o>A;if(!N&&E>k&&(_=E,E=k,k=_),q?N?E+k>0^b[1]<(Math.abs(b[0]-w)<$o?E:k):E<=b[1]&&b[1]<=k:A>Bo^(w<=b[0]&&b[0]<=S)){var T=Ht(v,(-m+x)/y);return Lt(T,p),[b,Pt(T)]}}}function u(t,e){var r=a?n:Bo-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}function i(n){return Kt(c,n)}var o=Math.cos(n),a=o>0,c=[n,0],l=Math.abs(o)>$o,s=qe(n,6*Jo);return $t(t,e,s,i)}function ue(n,t,e,r){function u(r,u){return Math.abs(r[0]-n)<$o?u>0?0:3:Math.abs(r[0]-e)<$o?u>0?2:1:Math.abs(r[1]-t)<$o?u>0?1:0:u>0?3:2}function i(n,t){return o(n.point,t.point)}function o(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}function a(u,i){var o=i[0]-u[0],a=i[1]-u[1],c=[0,1];return Math.abs(o)<$o&&Math.abs(a)<$o?n<=u[0]&&u[0]<=e&&t<=u[1]&&u[1]<=r:ie(n-u[0],o,c)&&ie(u[0]-e,-o,c)&&ie(t-u[1],a,c)&&ie(u[1]-r,-a,c)?(c[1]<1&&(i[0]=u[0]+c[1]*o,i[1]=u[1]+c[1]*a),c[0]>0&&(u[0]+=c[0]*o,u[1]+=c[0]*a),!0):!1}return function(c){function l(i){var o=u(i,-1),a=s([0===o||3===o?n:e,o>1?r:t]);return a}function s(n){for(var t=0,e=M.length,r=n[1],u=0;e>u;++u)for(var i,o=1,a=M[u],c=a.length,l=a[0];c>o;++o)i=a[o],l[1]<=r?i[1]>r&&f(l,i,n)>0&&++t:i[1]<=r&&f(l,i,n)<0&&--t,l=i;return 0!==t}function f(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(e[0]-n[0])*(t[1]-n[1])}function h(i,a,c,l){var s=0,f=0;if(null==i||(s=u(i,c))!==(f=u(a,c))||o(i,a)<0^c>0){do l.point(0===s||3===s?n:e,s>1?r:t);while((s=(s+c+4)%4)!==f)}else l.point(a[0],a[1])}function g(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function p(n,t){g(n,t)&&c.point(n,t)}function d(){T.point=m,M&&M.push(x=[]),A=!0,k=!1,S=E=0/0}function v(){y&&(m(b,_),w&&k&&q.rejoin(),y.push(q.buffer())),T.point=p,k&&c.lineEnd()}function m(n,t){n=Math.max(-$a,Math.min($a,n)),t=Math.max(-$a,Math.min($a,t));var e=g(n,t);if(M&&x.push([n,t]),A)b=n,_=t,w=e,A=!1,e&&(c.lineStart(),c.point(n,t));else if(e&&k)c.point(n,t);else{var r=[S,E],u=[n,t];a(r,u)?(k||(c.lineStart(),c.point(r[0],r[1])),c.point(u[0],u[1]),e||c.lineEnd()):e&&(c.lineStart(),c.point(n,t))}S=n,E=t,k=e}var y,M,x,b,_,w,S,E,k,A,N=c,q=Jt(),T={point:p,lineStart:d,lineEnd:v,polygonStart:function(){c=q,y=[],M=[]},polygonEnd:function(){c=N,(y=vo.merge(y)).length?(c.polygonStart(),Xt(y,i,l,h,c),c.polygonEnd()):s([n,t])&&(c.polygonStart(),c.lineStart(),h(null,null,1,c),c.lineEnd(),c.polygonEnd()),y=M=x=null}};return T}}function ie(n,t,e){if(Math.abs(t)<$o)return 0>=n;var r=n/t;if(t>0){if(r>e[1])return!1;r>e[0]&&(e[0]=r)}else{if(r<e[0])return!1;r<e[1]&&(e[1]=r)}return!0}function oe(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function ae(n){var t=0,e=Bo/3,r=_e(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*Bo/180,e=n[1]*Bo/180):[180*(t/Bo),180*(e/Bo)]},u}function ce(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),o-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),o=Math.sqrt(i)/u;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/u,O((i-(n*n+e*e)*u*u)/(2*u))]},e}function le(){function n(n,t){Ja+=u*n-r*t,r=n,u=t}var t,e,r,u;tc.point=function(i,o){tc.point=n,t=r=i,e=u=o},tc.lineEnd=function(){n(t,e)}}function se(n,t){Ga>n&&(Ga=n),n>Qa&&(Qa=n),Ka>t&&(Ka=t),t>nc&&(nc=t)}function fe(){function n(n,t){o.push("M",n,",",t,i)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function u(){o.push("Z")}var i=he(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return i=he(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function he(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function ge(n,t){Ha+=n,Fa+=t,++Pa}function pe(){function n(n,r){var u=n-t,i=r-e,o=Math.sqrt(u*u+i*i);Oa+=o*(t+n)/2,Ra+=o*(e+r)/2,Ya+=o,ge(t=n,e=r)}var t,e;rc.point=function(r,u){rc.point=n,ge(t=r,e=u)}}function de(){rc.point=ge}function ve(){function n(n,t){var e=n-r,i=t-u,o=Math.sqrt(e*e+i*i);Oa+=o*(r+n)/2,Ra+=o*(u+t)/2,Ya+=o,o=u*n-r*t,Ia+=o*(r+n),Ua+=o*(u+t),Va+=3*o,ge(r=n,u=t)}var t,e,r,u;rc.point=function(i,o){rc.point=n,ge(t=r=i,e=u=o)},rc.lineEnd=function(){n(t,e)}}function me(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,o,0,2*Bo)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function u(){a.point=t}function i(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:u,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=u,a.point=t},pointRadius:function(n){return o=n,a},result:c};return a}function ye(n){function t(t){function r(e,r){e=n(e,r),t.point(e[0],e[1])}function u(){M=0/0,S.point=o,t.lineStart()}function o(r,u){var o=Ct([r,u]),a=n(r,u);e(M,x,y,b,_,w,M=a[0],x=a[1],y=r,b=o[0],_=o[1],w=o[2],i,t),t.point(M,x)}function a(){S.point=r,t.lineEnd()}function c(){u(),S.point=l,S.lineEnd=s}function l(n,t){o(f=n,h=t),g=M,p=x,d=b,v=_,m=w,S.point=o}function s(){e(M,x,y,b,_,w,g,p,f,d,v,m,i,t),S.lineEnd=a,a()}var f,h,g,p,d,v,m,y,M,x,b,_,w,S={point:r,lineStart:u,lineEnd:a,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=u}};return S}function e(t,i,o,a,c,l,s,f,h,g,p,d,v,m){var y=s-t,M=f-i,x=y*y+M*M;if(x>4*r&&v--){var b=a+g,_=c+p,w=l+d,S=Math.sqrt(b*b+_*_+w*w),E=Math.asin(w/=S),k=Math.abs(Math.abs(w)-1)<$o?(o+h)/2:Math.atan2(_,b),A=n(k,E),N=A[0],q=A[1],T=N-t,z=q-i,C=M*T-y*z;(C*C/x>r||Math.abs((y*T+M*z)/x-.5)>.3||u>a*g+c*p+l*d)&&(e(t,i,o,a,c,l,N,q,k,b/=S,_/=S,w,v,m),m.point(N,q),e(N,q,k,b,_,w,s,f,h,g,p,d,v,m))}}var r=.5,u=Math.cos(30*Jo),i=16;return t.precision=function(n){return arguments.length?(i=(r=n*n)>0&&16,t):Math.sqrt(r)},t}function Me(n){this.stream=n}function xe(n){var t=ye(function(t,e){return n([t*Go,e*Go])});return function(n){var e=new Me(n=t(n));return e.point=function(t,e){n.point(t*Jo,e*Jo)},e}}function be(n){return _e(function(){return n})()}function _e(n){function t(n){return n=a(n[0]*Jo,n[1]*Jo),[n[0]*h+c,l-n[1]*h]}function e(n){return n=a.invert((n[0]-c)/h,(l-n[1])/h),n&&[n[0]*Go,n[1]*Go]}function r(){a=oe(o=Ee(m,y,M),i);var n=i(d,v);return c=g-n[0]*h,l=p+n[1]*h,u()}function u(){return s&&(s.valid=!1,s=null),t}var i,o,a,c,l,s,f=ye(function(n,t){return n=i(n,t),[n[0]*h+c,l-n[1]*h]}),h=150,g=480,p=250,d=0,v=0,m=0,y=0,M=0,x=Xa,b=dt,_=null,w=null;return t.stream=function(n){return s&&(s.valid=!1),s=we(o,x(f(b(n)))),s.valid=!0,s},t.clipAngle=function(n){return arguments.length?(x=null==n?(_=n,Xa):re((_=+n)*Jo),u()):_},t.clipExtent=function(n){return arguments.length?(w=n,b=n?ue(n[0][0],n[0][1],n[1][0],n[1][1]):dt,u()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(d=n[0]%360*Jo,v=n[1]%360*Jo,r()):[d*Go,v*Go]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Jo,y=n[1]%360*Jo,M=n.length>2?n[2]%360*Jo:0,r()):[m*Go,y*Go,M*Go]},vo.rebind(t,f,"precision"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function we(n,t){var e=new Me(t);return e.point=function(e,r){r=n(e*Jo,r*Jo),e=r[0],t.point(e>Bo?e-2*Bo:-Bo>e?e+2*Bo:e,r[1])},e}function Se(n,t){return[n,t]}function Ee(n,t,e){return n?t||e?oe(Ae(n),Ne(t,e)):Ae(n):t||e?Ne(t,e):Se}function ke(n){return function(t,e){return t+=n,[t>Bo?t-2*Bo:-Bo>t?t+2*Bo:t,e]}}function Ae(n){var t=ke(n);return t.invert=ke(-n),t}function Ne(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,l=Math.sin(t),s=l*r+a*u;return[Math.atan2(c*i-s*o,a*r-l*u),O(s*i+c*o)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,l=Math.sin(t),s=l*i-c*o;return[Math.atan2(c*i+l*o,a*r+s*u),O(s*r-a*u)]},e}function qe(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,o,a){var c=o*t;null!=u?(u=Te(e,u),i=Te(e,i),(o>0?i>u:u>i)&&(u+=2*o*Bo)):(u=n+2*o*Bo,i=n-.5*c);for(var l,s=u;o>0?s>i:i>s;s-=c)a.point((l=Pt([e,-r*Math.cos(s),-r*Math.sin(s)]))[0],l[1])}}function Te(n,t){var e=Ct(t);e[0]-=n,Ft(e);var r=P(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-$o)%(2*Math.PI)}function ze(n,t,e){var r=vo.range(n,t-$o,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function Ce(n,t,e){var r=vo.range(n,t-$o,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function De(n){return n.source}function je(n){return n.target}function Le(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),o=Math.cos(r),a=Math.sin(r),c=u*Math.cos(n),l=u*Math.sin(n),s=o*Math.cos(e),f=o*Math.sin(e),h=2*Math.asin(Math.sqrt(U(r-t)+u*o*U(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*s,u=e*l+t*f,o=e*i+t*a;return[Math.atan2(u,r)*Go,Math.atan2(o,Math.sqrt(r*r+u*u))*Go]}:function(){return[n*Go,t*Go]};return p.distance=h,p}function He(){function n(n,u){var i=Math.sin(u*=Jo),o=Math.cos(u),a=Math.abs((n*=Jo)-t),c=Math.cos(a);uc+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*i-e*o*c)*a),e*i+r*o*c),t=n,e=i,r=o}var t,e,r;ic.point=function(u,i){t=u*Jo,e=Math.sin(i*=Jo),r=Math.cos(i),ic.point=n},ic.lineEnd=function(){ic.point=ic.lineEnd=c}}function Fe(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),o=Math.cos(u);return[Math.atan2(n*i,r*o),Math.asin(r&&e*i/r)]},e}function Pe(n,t){function e(n,t){var e=Math.abs(Math.abs(t)-Bo/2)<$o?0:o/Math.pow(u(t),i);return[e*Math.sin(i*n),o-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(Bo/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),o=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=o-t,r=F(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(o/r,1/i))-Bo/2]},e):Re}function Oe(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return Math.abs(u)<$o?Se:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-F(u)*Math.sqrt(n*n+e*e)]},e)}function Re(n,t){return[n,Math.log(Math.tan(Bo/4+t/2))]}function Ye(n){var t,e=be(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var o=i.apply(e,arguments);if(o===e){if(t=null==n){var a=Bo*r(),c=u();i([[c[0]-a,c[1]-a],[c[0]+a,c[1]+a]])}}else t&&(o=null);return o},e.clipExtent(null)}function Ie(n,t){var e=Math.cos(t)*Math.sin(n);return[Math.log((1+e)/(1-e))/2,Math.atan2(Math.tan(t),Math.cos(n))]}function Ue(n){function t(t){function o(){l.push("M",i(n(s),a))}for(var c,l=[],s=[],f=-1,h=t.length,g=pt(e),p=pt(r);++f<h;)u.call(this,c=t[f],f)?s.push([+g.call(this,c,f),+p.call(this,c,f)]):s.length&&(o(),s=[]);return s.length&&o(),l.length?l.join(""):null}var e=Ve,r=Ze,u=Zt,i=Xe,o=i.key,a=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(o="function"==typeof n?i=n:(i=fc.get(n)||Xe).key,t):o},t.tension=function(n){return arguments.length?(a=n,t):a},t}function Ve(n){return n[0]}function Ze(n){return n[1]}function Xe(n){return n.join("L")}function Be(n){return Xe(n)+"Z"}function $e(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r[0]+(r=n[t])[0])/2,"V",r[1]);return e>1&&u.push("H",r[0]),u.join("")}function We(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("V",(r=n[t])[1],"H",r[0]);return u.join("")}function Je(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r=n[t])[0],"V",r[1]);return u.join("")}function Ge(n,t){return n.length<4?Xe(n):n[1]+nr(n.slice(1,n.length-1),tr(n,t))}function Ke(n,t){return n.length<3?Xe(n):n[0]+nr((n.push(n[0]),n),tr([n[n.length-2]].concat(n,[n[1]]),t))}function Qe(n,t){return n.length<3?Xe(n):n[0]+nr(n,tr(n,t))}function nr(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return Xe(n);var e=n.length!=t.length,r="",u=n[0],i=n[1],o=t[0],a=o,c=1;if(e&&(r+="Q"+(i[0]-2*o[0]/3)+","+(i[1]-2*o[1]/3)+","+i[0]+","+i[1],u=n[1],c=2),t.length>1){a=t[1],i=n[c],c++,r+="C"+(u[0]+o[0])+","+(u[1]+o[1])+","+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1];for(var l=2;l<t.length;l++,c++)i=n[c],a=t[l],r+="S"+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1]}if(e){var s=n[c];r+="Q"+(i[0]+2*a[0]/3)+","+(i[1]+2*a[1]/3)+","+s[0]+","+s[1]}return r}function tr(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],o=n[1],a=1,c=n.length;++a<c;)e=i,i=o,o=n[a],r.push([u*(o[0]-e[0]),u*(o[1]-e[1])]);return r}function er(n){if(n.length<3)return Xe(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],o=[u,u,u,(r=n[1])[0]],a=[i,i,i,r[1]],c=[u,",",i,"L",or(pc,o),",",or(pc,a)];for(n.push(n[e-1]);++t<=e;)r=n[t],o.shift(),o.push(r[0]),a.shift(),a.push(r[1]),ar(c,o,a);return n.pop(),c.push("L",r),c.join("")}function rr(n){if(n.length<4)return Xe(n);for(var t,e=[],r=-1,u=n.length,i=[0],o=[0];++r<3;)t=n[r],i.push(t[0]),o.push(t[1]);for(e.push(or(pc,i)+","+or(pc,o)),--r;++r<u;)t=n[r],i.shift(),i.push(t[0]),o.shift(),o.push(t[1]),ar(e,i,o);return e.join("")}function ur(n){for(var t,e,r=-1,u=n.length,i=u+4,o=[],a=[];++r<4;)e=n[r%u],o.push(e[0]),a.push(e[1]);for(t=[or(pc,o),",",or(pc,a)],--r;++r<i;)e=n[r%u],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),ar(t,o,a);return t.join("")}function ir(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],o=n[0][1],a=n[e][0]-i,c=n[e][1]-o,l=-1;++l<=e;)r=n[l],u=l/e,r[0]=t*r[0]+(1-t)*(i+u*a),r[1]=t*r[1]+(1-t)*(o+u*c);return er(n)}function or(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function ar(n,t,e){n.push("C",or(hc,t),",",or(hc,e),",",or(gc,t),",",or(gc,e),",",or(pc,t),",",or(pc,e))}function cr(n,t){return(t[1]-n[1])/(t[0]-n[0])}function lr(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],o=r[0]=cr(u,i);++t<e;)r[t]=(o+(o=cr(u=i,i=n[t+1])))/2;
2
+ return r[t]=o,r}function sr(n){for(var t,e,r,u,i=[],o=lr(n),a=-1,c=n.length-1;++a<c;)t=cr(n[a],n[a+1]),Math.abs(t)<1e-6?o[a]=o[a+1]=0:(e=o[a]/t,r=o[a+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),o[a]=u*e,o[a+1]=u*r));for(a=-1;++a<=c;)u=(n[Math.min(c,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),i.push([u||0,o[a]*u||0]);return i}function fr(n){return n.length<3?Xe(n):n[0]+nr(n,sr(n))}function hr(n,t,e,r){var u,i,o,a,c,l,s;return u=r[n],i=u[0],o=u[1],u=r[t],a=u[0],c=u[1],u=r[e],l=u[0],s=u[1],(s-o)*(a-i)-(c-o)*(l-i)>0}function gr(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function pr(n,t,e,r){var u=n[0],i=e[0],o=t[0]-u,a=r[0]-i,c=n[1],l=e[1],s=t[1]-c,f=r[1]-l,h=(a*(c-l)-f*(u-i))/(f*o-a*s);return[u+h*o,c+h*s]}function dr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function vr(n,t){var e={list:n.map(function(n,t){return{index:t,x:n[0],y:n[1]}}).sort(function(n,t){return n.y<t.y?-1:n.y>t.y?1:n.x<t.x?-1:n.x>t.x?1:0}),bottomSite:null},r={list:[],leftEnd:null,rightEnd:null,init:function(){r.leftEnd=r.createHalfEdge(null,"l"),r.rightEnd=r.createHalfEdge(null,"l"),r.leftEnd.r=r.rightEnd,r.rightEnd.l=r.leftEnd,r.list.unshift(r.leftEnd,r.rightEnd)},createHalfEdge:function(n,t){return{edge:n,side:t,vertex:null,l:null,r:null}},insert:function(n,t){t.l=n,t.r=n.r,n.r.l=t,n.r=t},leftBound:function(n){var t=r.leftEnd;do t=t.r;while(t!=r.rightEnd&&u.rightOf(t,n));return t=t.l},del:function(n){n.l.r=n.r,n.r.l=n.l,n.edge=null},right:function(n){return n.r},left:function(n){return n.l},leftRegion:function(n){return null==n.edge?e.bottomSite:n.edge.region[n.side]},rightRegion:function(n){return null==n.edge?e.bottomSite:n.edge.region[vc[n.side]]}},u={bisect:function(n,t){var e={region:{l:n,r:t},ep:{l:null,r:null}},r=t.x-n.x,u=t.y-n.y,i=r>0?r:-r,o=u>0?u:-u;return e.c=n.x*r+n.y*u+.5*(r*r+u*u),i>o?(e.a=1,e.b=u/r,e.c/=r):(e.b=1,e.a=r/u,e.c/=u),e},intersect:function(n,t){var e=n.edge,r=t.edge;if(!e||!r||e.region.r==r.region.r)return null;var u=e.a*r.b-e.b*r.a;if(Math.abs(u)<1e-10)return null;var i,o,a=(e.c*r.b-r.c*e.b)/u,c=(r.c*e.a-e.c*r.a)/u,l=e.region.r,s=r.region.r;l.y<s.y||l.y==s.y&&l.x<s.x?(i=n,o=e):(i=t,o=r);var f=a>=o.region.r.x;return f&&"l"===i.side||!f&&"r"===i.side?null:{x:a,y:c}},rightOf:function(n,t){var e=n.edge,r=e.region.r,u=t.x>r.x;if(u&&"l"===n.side)return 1;if(!u&&"r"===n.side)return 0;if(1===e.a){var i=t.y-r.y,o=t.x-r.x,a=0,c=0;if(!u&&e.b<0||u&&e.b>=0?c=a=i>=e.b*o:(c=t.x+t.y*e.b>e.c,e.b<0&&(c=!c),c||(a=1)),!a){var l=r.x-e.region.l.x;c=e.b*(o*o-i*i)<l*i*(1+2*o/l+e.b*e.b),e.b<0&&(c=!c)}}else{var s=e.c-e.a*t.x,f=t.y-s,h=t.x-r.x,g=s-r.y;c=f*f>h*h+g*g}return"l"===n.side?c:!c},endPoint:function(n,e,r){n.ep[e]=r,n.ep[vc[e]]&&t(n)},distance:function(n,t){var e=n.x-t.x,r=n.y-t.y;return Math.sqrt(e*e+r*r)}},i={list:[],insert:function(n,t,e){n.vertex=t,n.ystar=t.y+e;for(var r=0,u=i.list,o=u.length;o>r;r++){var a=u[r];if(!(n.ystar>a.ystar||n.ystar==a.ystar&&t.x>a.vertex.x))break}u.splice(r,0,n)},del:function(n){for(var t=0,e=i.list,r=e.length;r>t&&e[t]!=n;++t);e.splice(t,1)},empty:function(){return 0===i.list.length},nextEvent:function(n){for(var t=0,e=i.list,r=e.length;r>t;++t)if(e[t]==n)return e[t+1];return null},min:function(){var n=i.list[0];return{x:n.vertex.x,y:n.ystar}},extractMin:function(){return i.list.shift()}};r.init(),e.bottomSite=e.list.shift();for(var o,a,c,l,s,f,h,g,p,d,v,m,y,M=e.list.shift();;)if(i.empty()||(o=i.min()),M&&(i.empty()||M.y<o.y||M.y==o.y&&M.x<o.x))a=r.leftBound(M),c=r.right(a),h=r.rightRegion(a),m=u.bisect(h,M),f=r.createHalfEdge(m,"l"),r.insert(a,f),d=u.intersect(a,f),d&&(i.del(a),i.insert(a,d,u.distance(d,M))),a=f,f=r.createHalfEdge(m,"r"),r.insert(a,f),d=u.intersect(f,c),d&&i.insert(f,d,u.distance(d,M)),M=e.list.shift();else{if(i.empty())break;a=i.extractMin(),l=r.left(a),c=r.right(a),s=r.right(c),h=r.leftRegion(a),g=r.rightRegion(c),v=a.vertex,u.endPoint(a.edge,a.side,v),u.endPoint(c.edge,c.side,v),r.del(a),i.del(c),r.del(c),y="l",h.y>g.y&&(p=h,h=g,g=p,y="r"),m=u.bisect(h,g),f=r.createHalfEdge(m,y),r.insert(l,f),u.endPoint(m,vc[y],v),d=u.intersect(l,f),d&&(i.del(l),i.insert(l,d,u.distance(d,h))),d=u.intersect(f,s),d&&i.insert(f,d,u.distance(d,h))}for(a=r.right(r.leftEnd);a!=r.rightEnd;a=r.right(a))t(a.edge)}function mr(n){return n.x}function yr(n){return n.y}function Mr(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function xr(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var o=.5*(e+u),a=.5*(r+i),c=t.nodes;c[0]&&xr(n,c[0],e,r,o,a),c[1]&&xr(n,c[1],o,r,u,a),c[2]&&xr(n,c[2],e,a,o,i),c[3]&&xr(n,c[3],o,a,u,i)}}function br(n,t){n=vo.rgb(n),t=vo.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,o=t.g-r,a=t.b-u;return function(n){return"#"+ct(Math.round(e+i*n))+ct(Math.round(r+o*n))+ct(Math.round(u+a*n))}}function _r(n,t){var e,r={},u={};for(e in n)e in t?r[e]=Er(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function wr(n,t){return t-=n=+n,function(e){return n+t*e}}function Sr(n,t){var e,r,u,i,o,a=0,c=0,l=[],s=[];for(n+="",t+="",mc.lastIndex=0,r=0;e=mc.exec(t);++r)e.index&&l.push(t.substring(a,c=e.index)),s.push({i:l.length,x:e[0]}),l.push(null),a=mc.lastIndex;for(a<t.length&&l.push(t.substring(a)),r=0,i=s.length;(e=mc.exec(n))&&i>r;++r)if(o=s[r],o.x==e[0]){if(o.i)if(null==l[o.i+1])for(l[o.i-1]+=o.x,l.splice(o.i,1),u=r+1;i>u;++u)s[u].i--;else for(l[o.i-1]+=o.x+l[o.i+1],l.splice(o.i,2),u=r+1;i>u;++u)s[u].i-=2;else if(null==l[o.i+1])l[o.i]=o.x;else for(l[o.i]=o.x+l[o.i+1],l.splice(o.i+1,1),u=r+1;i>u;++u)s[u].i--;s.splice(r,1),i--,r--}else o.x=wr(parseFloat(e[0]),parseFloat(o.x));for(;i>r;)o=s.pop(),null==l[o.i+1]?l[o.i]=o.x:(l[o.i]=o.x+l[o.i+1],l.splice(o.i+1,1)),i--;return 1===l.length?null==l[0]?(o=s[0].x,function(n){return o(n)+""}):function(){return t}:function(n){for(r=0;i>r;++r)l[(o=s[r]).i]=o.x(n);return l.join("")}}function Er(n,t){for(var e,r=vo.interpolators.length;--r>=0&&!(e=vo.interpolators[r](n,t)););return e}function kr(n,t){var e,r=[],u=[],i=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(Er(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;o>e;++e)u[e]=t[e];return function(n){for(e=0;a>e;++e)u[e]=r[e](n);return u}}function Ar(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function Nr(n){return function(t){return 1-n(1-t)}}function qr(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function Tr(n){return n*n}function zr(n){return n*n*n}function Cr(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function Dr(n){return function(t){return Math.pow(t,n)}}function jr(n){return 1-Math.cos(n*Bo/2)}function Lr(n){return Math.pow(2,10*(n-1))}function Hr(n){return 1-Math.sqrt(1-n*n)}function Fr(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/(2*Bo)*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,10*-r)*Math.sin(2*(r-e)*Bo/t)}}function Pr(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function Or(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Rr(n,t){n=vo.hcl(n),t=vo.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,o=t.c-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return J(e+i*n,r+o*n,u+a*n)+""}}function Yr(n,t){n=vo.hsl(n),t=vo.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,o=t.s-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return B(e+i*n,r+o*n,u+a*n)+""}}function Ir(n,t){n=vo.lab(n),t=vo.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,o=t.a-r,a=t.b-u;return function(n){return Q(e+i*n,r+o*n,u+a*n)+""}}function Ur(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Vr(n){var t=[n.a,n.b],e=[n.c,n.d],r=Xr(t),u=Zr(t,e),i=Xr(Br(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*Go,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*Go:0}function Zr(n,t){return n[0]*t[0]+n[1]*t[1]}function Xr(n){var t=Math.sqrt(Zr(n,n));return t&&(n[0]/=t,n[1]/=t),t}function Br(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function $r(n,t){var e,r=[],u=[],i=vo.transform(n),o=vo.transform(t),a=i.translate,c=o.translate,l=i.rotate,s=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push("translate(",null,",",null,")"),u.push({i:1,x:wr(a[0],c[0])},{i:3,x:wr(a[1],c[1])})):c[0]||c[1]?r.push("translate("+c+")"):r.push(""),l!=s?(l-s>180?s+=360:s-l>180&&(l+=360),u.push({i:r.push(r.pop()+"rotate(",null,")")-2,x:wr(l,s)})):s&&r.push(r.pop()+"rotate("+s+")"),f!=h?u.push({i:r.push(r.pop()+"skewX(",null,")")-2,x:wr(f,h)}):h&&r.push(r.pop()+"skewX("+h+")"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+"scale(",null,",",null,")"),u.push({i:e-4,x:wr(g[0],p[0])},{i:e-2,x:wr(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+"scale("+p+")"),e=u.length,function(n){for(var t,i=-1;++i<e;)r[(t=u[i]).i]=t.x(n);return r.join("")}}function Wr(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Jr(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Gr(n){for(var t=n.source,e=n.target,r=Qr(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function Kr(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Qr(n,t){if(n===t)return n;for(var e=Kr(n),r=Kr(t),u=e.pop(),i=r.pop(),o=null;u===i;)o=u,u=e.pop(),i=r.pop();return o}function nu(n){n.fixed|=2}function tu(n){n.fixed&=-7}function eu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function ru(n){n.fixed&=-5}function uu(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,o=n.nodes,a=o.length,c=-1;++c<a;)i=o[c],null!=i&&(uu(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var l=t*e[n.point.index];n.charge+=n.pointCharge=l,r+=l*n.point.x,u+=l*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function iu(n,t){return vo.rebind(n,t,"sort","children","value"),n.nodes=n,n.links=lu,n}function ou(n){return n.children}function au(n){return n.value}function cu(n,t){return t.value-n.value}function lu(n){return vo.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function su(n){return n.x}function fu(n){return n.y}function hu(n,t,e){n.y0=t,n.y=e}function gu(n){return vo.range(n.length)}function pu(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function du(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function vu(n){return n.reduce(mu,0)}function mu(n,t){return n+t[1]}function yu(n,t){return Mu(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function Mu(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];++e<=t;)i[e]=u*e+r;return i}function xu(n){return[vo.min(n),vo.max(n)]}function bu(n,t){return n.parent==t.parent?1:2}function _u(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function wu(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function Su(n,t){var e=n.children;if(e&&(u=e.length))for(var r,u,i=-1;++i<u;)t(r=Su(e[i],t),n)>0&&(n=r);return n}function Eu(n,t){return n.x-t.x}function ku(n,t){return t.x-n.x}function Au(n,t){return n.depth-t.depth}function Nu(n,t){function e(n,r){var u=n.children;if(u&&(o=u.length))for(var i,o,a=null,c=-1;++c<o;)i=u[c],e(i,a),a=i;t(n,r)}e(n,null)}function qu(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function Tu(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function zu(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function Cu(n,t){return n.value-t.value}function Du(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function ju(n,t){n._pack_next=t,t._pack_prev=n}function Lu(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function Hu(n){function t(n){s=Math.min(n.x-n.r,s),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(l=e.length)){var e,r,u,i,o,a,c,l,s=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(Fu),r=e[0],r.x=-r.r,r.y=0,t(r),l>1&&(u=e[1],u.x=u.r,u.y=0,t(u),l>2))for(i=e[2],Ru(r,u,i),t(i),Du(r,i),r._pack_prev=i,Du(i,u),u=r._pack_next,o=3;l>o;o++){Ru(r,u,i=e[o]);var p=0,d=1,v=1;for(a=u._pack_next;a!==u;a=a._pack_next,d++)if(Lu(a,i)){p=1;break}if(1==p)for(c=r._pack_prev;c!==a._pack_prev&&!Lu(c,i);c=c._pack_prev,v++);p?(v>d||d==v&&u.r<r.r?ju(r,u=a):ju(r=c,u),o--):(Du(r,i),u=i,t(i))}var m=(s+f)/2,y=(h+g)/2,M=0;for(o=0;l>o;o++)i=e[o],i.x-=m,i.y-=y,M=Math.max(M,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=M,e.forEach(Pu)}}function Fu(n){n._pack_next=n._pack_prev=n}function Pu(n){delete n._pack_next,delete n._pack_prev}function Ou(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,o=u.length;++i<o;)Ou(u[i],t,e,r)}function Ru(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var o=t.r+e.r,a=u*u+i*i;o*=o,r*=r;var c=.5+(r-o)/(2*a),l=Math.sqrt(Math.max(0,2*o*(r+a)-(r-=a)*r-o*o))/(2*a);e.x=n.x+c*u+l*i,e.y=n.y+c*i-l*u}else e.x=n.x+r,e.y=n.y}function Yu(n){return 1+vo.max(n,function(n){return n.y})}function Iu(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Uu(n){var t=n.children;return t&&t.length?Uu(t[0]):n}function Vu(n){var t,e=n.children;return e&&(t=e.length)?Vu(e[t-1]):n}function Zu(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function Xu(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function Bu(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function $u(n){return n.rangeExtent?n.rangeExtent():Bu(n.range())}function Wu(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Ju(n,t){var e,r=0,u=n.length-1,i=n[r],o=n[u];return i>o&&(e=r,r=u,u=e,e=i,i=o,o=e),n[r]=t.floor(i),n[u]=t.ceil(o),n}function Gu(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:Ac}function Ku(n,t,e,r){var u=[],i=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++o<=a;)u.push(e(n[o-1],n[o])),i.push(r(t[o-1],t[o]));return function(t){var e=vo.bisect(n,t,1,a)-1;return i[e](u[e](t))}}function Qu(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?Ku:Wu,c=r?Jr:Wr;return o=u(n,t,c,e),a=u(t,n,c,Er),i}function i(n){return o(n)}var o,a;return i.invert=function(n){return a(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Ur)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return ri(n,t)},i.tickFormat=function(t,e){return ui(n,t,e)},i.nice=function(t){return ti(n,t),u()},i.copy=function(){return Qu(n,t,e,r)},u()}function ni(n,t){return vo.rebind(n,t,"range","rangeRound","interpolate","clamp")}function ti(n,t){return Ju(n,Gu(ei(n,t)[2]))}function ei(n,t){null==t&&(t=10);var e=Bu(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function ri(n,t){return vo.range.apply(vo,ei(n,t))}function ui(n,t,e){var r=-Math.floor(Math.log(ei(n,t)[2])/Math.LN10+.01);return vo.format(e?e.replace(Sa,function(n,t,e,u,i,o,a,c,l,s){return[t,e,u,i,o,a,c,l||"."+(r-2*("%"===s)),s].join("")}):",."+r+"f")}function ii(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(u(t))}return o.invert=function(t){return i(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),o):t},o.nice=function(){var t=Ju(r.map(u),e?Math:qc);return n.domain(t),r=t.map(i),o},o.ticks=function(){var n=Bu(r),o=[],a=n[0],c=n[1],l=Math.floor(u(a)),s=Math.ceil(u(c)),f=t%1?2:t;if(isFinite(s-l)){if(e){for(;s>l;l++)for(var h=1;f>h;h++)o.push(i(l)*h);o.push(i(l))}else for(o.push(i(l));l++<s;)for(var h=f-1;h>0;h--)o.push(i(l)*h);for(l=0;o[l]<a;l++);for(s=o.length;o[s-1]>c;s--);o=o.slice(l,s)}return o},o.tickFormat=function(n,t){if(!arguments.length)return Nc;arguments.length<2?t=Nc:"function"!=typeof t&&(t=vo.format(t));var r,a=Math.max(.1,n/o.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return n/i(c(u(n)+r))<=a?t(n):""}},o.copy=function(){return ii(n.copy(),t,e,r)},ni(o,n)}function oi(n,t,e){function r(t){return n(u(t))}var u=ai(t),i=ai(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return ri(e,n)},r.tickFormat=function(n,t){return ui(e,n,t)},r.nice=function(n){return r.domain(ti(e,n))},r.exponent=function(o){return arguments.length?(u=ai(t=o),i=ai(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return oi(n.copy(),t,e)},ni(r,n)}function ai(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function ci(n,t){function e(t){return o[((i.get(t)||i.set(t,n.push(t)))-1)%o.length]}function r(t,e){return vo.range(n.length).map(function(n){return t+e*n})}var i,o,a;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new u;for(var o,a=-1,c=r.length;++a<c;)i.has(o=r[a])||i.set(o,n.push(o));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(o=n,a=0,t={t:"range",a:arguments},e):o},e.rangePoints=function(u,i){arguments.length<2&&(i=0);var c=u[0],l=u[1],s=(l-c)/(Math.max(1,n.length-1)+i);return o=r(n.length<2?(c+l)/2:c+s*i/2,s),a=0,t={t:"rangePoints",a:arguments},e},e.rangeBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var l=u[1]<u[0],s=u[l-0],f=u[1-l],h=(f-s)/(n.length-i+2*c);return o=r(s+h*c,h),l&&o.reverse(),a=h*(1-i),t={t:"rangeBands",a:arguments},e},e.rangeRoundBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var l=u[1]<u[0],s=u[l-0],f=u[1-l],h=Math.floor((f-s)/(n.length-i+2*c)),g=f-s-(n.length-i)*h;return o=r(s+Math.round(g/2),h),l&&o.reverse(),a=Math.round(h*(1-i)),t={t:"rangeRoundBands",a:arguments},e},e.rangeBand=function(){return a},e.rangeExtent=function(){return Bu(t.a[0])},e.copy=function(){return ci(n,t)},e.domain(n)}function li(n,t){function e(){var e=0,i=t.length;for(u=[];++e<i;)u[e-1]=vo.quantile(n,e/i);return r}function r(n){return isNaN(n=+n)?void 0:t[vo.bisect(u,n)]}var u;return r.domain=function(t){return arguments.length?(n=t.filter(function(n){return!isNaN(n)}).sort(vo.ascending),e()):n},r.range=function(n){return arguments.length?(t=n,e()):t},r.quantiles=function(){return u},r.invertExtent=function(e){return e=t.indexOf(e),0>e?[0/0,0/0]:[e>0?u[e-1]:n[0],e<u.length?u[e]:n[n.length-1]]},r.copy=function(){return li(n,t)},e()}function si(n,t,e){function r(t){return e[Math.max(0,Math.min(o,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),o=e.length-1,r}var i,o;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/i+n,[t,t+1/i]},r.copy=function(){return si(n,t,e)},u()}function fi(n,t){function e(e){return e>=e?t[vo.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return fi(n,t)},e}function hi(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return ri(n,t)},t.tickFormat=function(t,e){return ui(n,t,e)},t.copy=function(){return hi(n)},t}function gi(n){return n.innerRadius}function pi(n){return n.outerRadius}function di(n){return n.startAngle}function vi(n){return n.endAngle}function mi(n){for(var t,e,r,u=-1,i=n.length;++u<i;)t=n[u],e=t[0],r=t[1]+jc,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function yi(n){function t(t){function c(){d.push("M",a(n(m),f),s,l(n(v.reverse()),f),"Z")}for(var h,g,p,d=[],v=[],m=[],y=-1,M=t.length,x=pt(e),b=pt(u),_=e===r?function(){return g}:pt(r),w=u===i?function(){return p}:pt(i);++y<M;)o.call(this,h=t[y],y)?(v.push([g=+x.call(this,h,y),p=+b.call(this,h,y)]),m.push([+_.call(this,h,y),+w.call(this,h,y)])):v.length&&(c(),v=[],m=[]);return v.length&&c(),d.length?d.join(""):null}var e=Ve,r=Ve,u=0,i=Ze,o=Zt,a=Xe,c=a.key,l=a,s="L",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(o=n,t):o},t.interpolate=function(n){return arguments.length?(c="function"==typeof n?a=n:(a=fc.get(n)||Xe).key,l=a.reverse||a,s=a.closed?"M":"L",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function Mi(n){return n.radius}function xi(n){return[n.x,n.y]}function bi(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+jc;return[e*Math.cos(r),e*Math.sin(r)]}}function _i(){return 64}function wi(){return"circle"}function Si(n){var t=Math.sqrt(n/Bo);return"M0,"+t+"A"+t+","+t+" 0 1,1 0,"+-t+"A"+t+","+t+" 0 1,1 0,"+t+"Z"}function Ei(n,t){return jo(n,Yc),n.id=t,n}function ki(n,t,e,r){var u=n.id;return N(n,"function"==typeof e?function(n,i,o){n.__transition__[u].tween.set(t,r(e.call(n,n.__data__,i,o)))}:(e=r(e),function(n){n.__transition__[u].tween.set(t,e)}))}function Ai(n){return null==n&&(n=""),function(){this.textContent=n}}function Ni(n,t,e,r){var i=n.__transition__||(n.__transition__={active:0,count:0}),o=i[e];if(!o){var a=r.time;o=i[e]={tween:new u,time:a,ease:r.ease,delay:r.delay,duration:r.duration},++i.count,vo.timer(function(r){function u(r){return i.active>e?l():(i.active=e,o.event&&o.event.start.call(n,s,t),o.tween.forEach(function(e,r){(r=r.call(n,s,t))&&p.push(r)}),c(r)?1:(xt(c,0,a),void 0))}function c(r){if(i.active!==e)return l();for(var u=(r-h)/g,a=f(u),c=p.length;c>0;)p[--c].call(n,a);return u>=1?(o.event&&o.event.end.call(n,s,t),l()):void 0}function l(){return--i.count?delete i[e]:delete n.__transition__,1}var s=n.__data__,f=o.ease,h=o.delay,g=o.duration,p=[];return r>=h?u(r):(xt(u,h,a),void 0)},0,a)}}function qi(n,t){n.attr("transform",function(n){return"translate("+t(n)+",0)"})}function Ti(n,t){n.attr("transform",function(n){return"translate(0,"+t(n)+")"})}function zi(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Ci(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new $c(e-1)),1),e}function i(n,e){return t(n=new $c(+n),e),n}function o(n,r,i){var o=u(n),a=[];if(i>1)for(;r>o;)e(o)%i||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{$c=zi;var r=new zi;return r._=n,o(r,t,e)}finally{$c=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=o;var c=n.utc=Di(n);return c.floor=c,c.round=Di(r),c.ceil=Di(u),c.offset=Di(i),c.range=a,n}function Di(n){return function(t,e){try{$c=zi;var r=new zi;return r._=t,n(r,e)._}finally{$c=Date}}}function ji(n){function t(t){for(var r,u,i,o=[],a=-1,c=0;++a<e;)37===n.charCodeAt(a)&&(o.push(n.substring(c,a)),null!=(u=gl[r=n.charAt(++a)])&&(r=n.charAt(++a)),(i=pl[r])&&(r=i(t,null==u?"e"===r?" ":"0":u)),o.push(r),c=a+1);return o.push(n.substring(c,a)),o.join("")}var e=n.length;return t.parse=function(t){var e={y:1900,m:0,d:1,H:0,M:0,S:0,L:0},r=Li(e,n,t,0);if(r!=t.length)return null;"p"in e&&(e.H=e.H%12+12*e.p);var u=new $c;return"j"in e?u.setFullYear(e.y,0,e.j):"w"in e&&("W"in e||"U"in e)?(u.setFullYear(e.y,0,1),u.setFullYear(e.y,0,"W"in e?(e.w+6)%7+7*e.W-(u.getDay()+5)%7:e.w+7*e.U-(u.getDay()+6)%7)):u.setFullYear(e.y,e.m,e.d),u.setHours(e.H,e.M,e.S,e.L),u},t.toString=function(){return n},t}function Li(n,t,e,r){for(var u,i,o,a=0,c=t.length,l=e.length;c>a;){if(r>=l)return-1;if(u=t.charCodeAt(a++),37===u){if(o=t.charAt(a++),i=dl[o in gl?t.charAt(a++):o],!i||(r=i(n,e,r))<0)return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function Hi(n){return new RegExp("^(?:"+n.map(vo.requote).join("|")+")","i")}function Fi(n){for(var t=new u,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function Pi(n,t,e){var r=0>n?"-":"",u=(r?-n:n)+"",i=u.length;return r+(e>i?new Array(e-i+1).join(t)+u:u)}function Oi(n,t,e){ol.lastIndex=0;var r=ol.exec(t.substring(e));return r?(n.w=al.get(r[0].toLowerCase()),e+r[0].length):-1}function Ri(n,t,e){ul.lastIndex=0;var r=ul.exec(t.substring(e));return r?(n.w=il.get(r[0].toLowerCase()),e+r[0].length):-1}function Yi(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Ii(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Ui(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function Vi(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e));return r?(n.m=fl.get(r[0].toLowerCase()),e+r[0].length):-1}function Zi(n,t,e){cl.lastIndex=0;var r=cl.exec(t.substring(e));return r?(n.m=ll.get(r[0].toLowerCase()),e+r[0].length):-1}function Xi(n,t,e){return Li(n,pl.c.toString(),t,e)}function Bi(n,t,e){return Li(n,pl.x.toString(),t,e)}function $i(n,t,e){return Li(n,pl.X.toString(),t,e)}function Wi(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Ji(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+2));return r?(n.y=Gi(+r[0]),e+r[0].length):-1}function Gi(n){return n+(n>68?1900:2e3)}function Ki(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function Qi(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function no(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function to(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function eo(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function ro(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function uo(n,t,e){vl.lastIndex=0;var r=vl.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function io(n,t,e){var r=ml.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}function oo(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=~~(Math.abs(t)/60),u=Math.abs(t)%60;return e+Pi(r,"0",2)+Pi(u,"0",2)}function ao(n,t,e){hl.lastIndex=0;var r=hl.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function co(n){function t(n){try{$c=zi;var t=new $c;return t._=n,e(t)}finally{$c=Date}}var e=ji(n);return t.parse=function(n){try{$c=zi;var t=e.parse(n);return t&&t._}finally{$c=Date}},t.toString=e.toString,t}function lo(n){return n.toISOString()}function so(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=vo.bisect(Ml,u);return i==Ml.length?[t.year,ei(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/Ml[i-1]<Ml[i]/u?i-1:i]:[wl,ei(n,e)[2]]}return r.invert=function(t){return fo(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(fo)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,fo(+e+1),t).length}var i=r.domain(),o=Bu(i),a=null==n?u(o,10):"number"==typeof n&&u(o,n);return a&&(n=a[0],t=a[1]),r.domain(Ju(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=fo(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=fo(+t+1);return t}}:n))},r.ticks=function(n,t){var e=Bu(r.domain()),i=null==n?u(e,10):"number"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],fo(+e[1]+1),t)},r.tickFormat=function(){return e},r.copy=function(){return so(n.copy(),t,e)},ni(r,n)}function fo(n){return new Date(n)}function ho(n){return function(t){for(var e=n.length-1,r=n[e];!r[1](t);)r=n[--e];return r[0](t)}}function go(n){return JSON.parse(n.responseText)}function po(n){var t=Mo.createRange();return t.selectNode(Mo.body),t.createContextualFragment(n.responseText)}var vo={version:"3.3.2"};Date.now||(Date.now=function(){return+new Date});var mo=[].slice,yo=function(n){return mo.call(n)},Mo=document,xo=Mo.documentElement,bo=window;try{yo(xo.childNodes)[0].nodeType}catch(_o){yo=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}try{Mo.createElement("div").style.setProperty("opacity",0,"")}catch(wo){var So=bo.Element.prototype,Eo=So.setAttribute,ko=So.setAttributeNS,Ao=bo.CSSStyleDeclaration.prototype,No=Ao.setProperty;So.setAttribute=function(n,t){Eo.call(this,n,t+"")},So.setAttributeNS=function(n,t,e){ko.call(this,n,t,e+"")},Ao.setProperty=function(n,t,e){No.call(this,n,t+"",e)}}vo.ascending=function(n,t){return t>n?-1:n>t?1:n>=t?0:0/0},vo.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},vo.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},vo.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},vo.extent=function(n,t){var e,r,u,i=-1,o=n.length;if(1===arguments.length){for(;++i<o&&!(null!=(e=u=n[i])&&e>=e);)e=u=void 0;for(;++i<o;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;++i<o&&!(null!=(e=u=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<o;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},vo.sum=function(n,t){var e,r=0,u=n.length,i=-1;if(1===arguments.length)for(;++i<u;)isNaN(e=+n[i])||(r+=e);else for(;++i<u;)isNaN(e=+t.call(n,n[i],i))||(r+=e);return r},vo.mean=function(t,e){var r,u=t.length,i=0,o=-1,a=0;if(1===arguments.length)for(;++o<u;)n(r=t[o])&&(i+=(r-i)/++a);else for(;++o<u;)n(r=e.call(t,t[o],o))&&(i+=(r-i)/++a);return a?i:void 0},vo.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},vo.median=function(t,e){return arguments.length>1&&(t=t.map(e)),t=t.filter(n),t.length?vo.quantile(t.sort(vo.ascending),.5):void 0},vo.bisector=function(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n.call(t,t[i],i)<e?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;e<n.call(t,t[i],i)?u=i:r=i+1}return r}}};var qo=vo.bisector(function(n){return n});vo.bisectLeft=qo.left,vo.bisect=vo.bisectRight=qo.right,vo.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},vo.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},vo.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=new Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},vo.zip=function(){if(!(u=arguments.length))return[];for(var n=-1,e=vo.min(arguments,t),r=new Array(e);++n<e;)for(var u,i=-1,o=r[n]=new Array(u);++i<u;)o[i]=arguments[i][n];return r},vo.transpose=function(n){return vo.zip.apply(vo,n)},vo.keys=function(n){var t=[];for(var e in n)t.push(e);return t},vo.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},vo.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},vo.merge=function(n){return Array.prototype.concat.apply([],n)},vo.range=function(n,t,r){if(arguments.length<3&&(r=1,arguments.length<2&&(t=n,n=0)),1/0===(t-n)/r)throw new Error("infinite range");
3
+ var u,i=[],o=e(Math.abs(r)),a=-1;if(n*=o,t*=o,r*=o,0>r)for(;(u=n+r*++a)>t;)i.push(u/o);else for(;(u=n+r*++a)<t;)i.push(u/o);return i},vo.map=function(n){var t=new u;if(n instanceof u)n.forEach(function(n,e){t.set(n,e)});else for(var e in n)t.set(e,n[e]);return t},r(u,{has:function(n){return To+n in this},get:function(n){return this[To+n]},set:function(n,t){return this[To+n]=t},remove:function(n){return n=To+n,n in this&&delete this[n]},keys:function(){var n=[];return this.forEach(function(t){n.push(t)}),n},values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},forEach:function(n){for(var t in this)t.charCodeAt(0)===zo&&n.call(this,t.substring(1),this[t])}});var To="\0",zo=To.charCodeAt(0);vo.nest=function(){function n(t,a,c){if(c>=o.length)return r?r.call(i,a):e?a.sort(e):a;for(var l,s,f,h,g=-1,p=a.length,d=o[c++],v=new u;++g<p;)(h=v.get(l=d(s=a[g])))?h.push(s):v.set(l,[s]);return t?(s=t(),f=function(e,r){s.set(e,n(t,r,c))}):(s={},f=function(e,r){s[e]=n(t,r,c)}),v.forEach(f),s}function t(n,e){if(e>=o.length)return n;var r=[],u=a[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,i={},o=[],a=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(vo.map,e,0),0)},i.key=function(n){return o.push(n),i},i.sortKeys=function(n){return a[o.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},vo.set=function(n){var t=new i;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},r(i,{has:function(n){return To+n in this},add:function(n){return this[To+n]=!0,n},remove:function(n){return n=To+n,n in this&&delete this[n]},values:function(){var n=[];return this.forEach(function(t){n.push(t)}),n},forEach:function(n){for(var t in this)t.charCodeAt(0)===zo&&n.call(this,t.substring(1))}}),vo.behavior={},vo.rebind=function(n,t){for(var e,r=1,u=arguments.length;++r<u;)n[e=arguments[r]]=o(n,t,t[e]);return n};var Co=["webkit","ms","moz","Moz","o","O"];vo.dispatch=function(){for(var n=new l,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=s(n);return n},l.prototype.on=function(n,t){var e=n.indexOf("."),r="";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},vo.event=null,vo.requote=function(n){return n.replace(Do,"\\$&")};var Do=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,jo={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},Lo=function(n,t){return t.querySelector(n)},Ho=function(n,t){return t.querySelectorAll(n)},Fo=xo[a(xo,"matchesSelector")],Po=function(n,t){return Fo.call(n,t)};"function"==typeof Sizzle&&(Lo=function(n,t){return Sizzle(n,t)[0]||null},Ho=function(n,t){return Sizzle.uniqueSort(Sizzle(n,t))},Po=Sizzle.matchesSelector),vo.selection=function(){return Io};var Oo=vo.selection.prototype=[];Oo.select=function(n){var t,e,r,u,i=[];n=d(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]),t.parentNode=(r=this[o]).parentNode;for(var c=-1,l=r.length;++c<l;)(u=r[c])?(t.push(e=n.call(u,u.__data__,c,o)),e&&"__data__"in u&&(e.__data__=u.__data__)):t.push(null)}return p(i)},Oo.selectAll=function(n){var t,e,r=[];n=v(n);for(var u=-1,i=this.length;++u<i;)for(var o=this[u],a=-1,c=o.length;++a<c;)(e=o[a])&&(r.push(t=yo(n.call(e,e.__data__,a,u))),t.parentNode=e);return p(r)};var Ro={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};vo.ns={prefix:Ro,qualify:function(n){var t=n.indexOf(":"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),Ro.hasOwnProperty(e)?{space:Ro[e],local:n}:n}},Oo.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=vo.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(m(t,n[t]));return this}return this.each(m(n,t))},Oo.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=n.trim().split(/^|\s+/g)).length,u=-1;if(t=e.classList){for(;++u<r;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute("class");++u<r;)if(!M(n[u]).test(t))return!1;return!0}for(t in n)this.each(x(t,n[t]));return this}return this.each(x(n,t))},Oo.style=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t="");for(e in n)this.each(_(e,n[e],t));return this}if(2>r)return bo.getComputedStyle(this.node(),null).getPropertyValue(n);e=""}return this.each(_(n,t,e))},Oo.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(w(t,n[t]));return this}return this.each(w(n,t))},Oo.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},Oo.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},Oo.append=function(n){return n=S(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},Oo.insert=function(n,t){return n=S(n),t=d(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments))})},Oo.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},Oo.data=function(n,t){function e(n,e){var r,i,o,a=n.length,f=e.length,h=Math.min(a,f),g=new Array(f),p=new Array(f),d=new Array(a);if(t){var v,m=new u,y=new u,M=[];for(r=-1;++r<a;)v=t.call(i=n[r],i.__data__,r),m.has(v)?d[r]=i:m.set(v,i),M.push(v);for(r=-1;++r<f;)v=t.call(e,o=e[r],r),(i=m.get(v))?(g[r]=i,i.__data__=o):y.has(v)||(p[r]=E(o)),y.set(v,o),m.remove(v);for(r=-1;++r<a;)m.has(M[r])&&(d[r]=n[r])}else{for(r=-1;++r<h;)i=n[r],o=e[r],i?(i.__data__=o,g[r]=i):p[r]=E(o);for(;f>r;++r)p[r]=E(e[r]);for(;a>r;++r)d[r]=n[r]}p.update=g,p.parentNode=g.parentNode=d.parentNode=n.parentNode,c.push(p),l.push(g),s.push(d)}var r,i,o=-1,a=this.length;if(!arguments.length){for(n=new Array(a=(r=this[0]).length);++o<a;)(i=r[o])&&(n[o]=i.__data__);return n}var c=q([]),l=p([]),s=p([]);if("function"==typeof n)for(;++o<a;)e(r=this[o],n.call(r,r.parentNode.__data__,o));else for(;++o<a;)e(r=this[o],n);return l.enter=function(){return c},l.exit=function(){return s},l},Oo.datum=function(n){return arguments.length?this.property("__data__",n):this.property("__data__")},Oo.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=k(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a)&&t.push(r)}return p(u)},Oo.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},Oo.sort=function(n){n=A.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},Oo.each=function(n){return N(this,function(t,e,r){n.call(t,t.__data__,e,r)})},Oo.call=function(n){var t=yo(arguments);return n.apply(t[0]=this,t),this},Oo.empty=function(){return!this.node()},Oo.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},Oo.size=function(){var n=0;return this.each(function(){++n}),n};var Yo=[];vo.selection.enter=q,vo.selection.enter.prototype=Yo,Yo.append=Oo.append,Yo.empty=Oo.empty,Yo.node=Oo.node,Yo.call=Oo.call,Yo.size=Oo.size,Yo.select=function(n){for(var t,e,r,u,i,o=[],a=-1,c=this.length;++a<c;){r=(u=this[a]).update,o.push(t=[]),t.parentNode=u.parentNode;for(var l=-1,s=u.length;++l<s;)(i=u[l])?(t.push(r[l]=e=n.call(u.parentNode,i.__data__,l,a)),e.__data__=i.__data__):t.push(null)}return p(o)},Yo.insert=function(n,t){return arguments.length<2&&(t=T(this)),Oo.insert.call(this,n,t)},Oo.transition=function(){for(var n,t,e=Fc||++Ic,r=[],u=Pc||{time:Date.now(),ease:Cr,delay:0,duration:250},i=-1,o=this.length;++i<o;){r.push(n=[]);for(var a=this[i],c=-1,l=a.length;++c<l;)(t=a[c])&&Ni(t,c,e,u),n.push(t)}return Ei(r,e)},Oo.interrupt=function(){return this.each(z)},vo.select=function(n){var t=["string"==typeof n?Lo(n,Mo):n];return t.parentNode=xo,p([t])},vo.selectAll=function(n){var t=yo("string"==typeof n?Ho(n,Mo):n);return t.parentNode=xo,p([t])};var Io=vo.select(xo);Oo.on=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(C(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(C(n,t,e))};var Uo=vo.map({mouseenter:"mouseover",mouseleave:"mouseout"});Uo.forEach(function(n){"on"+n in Mo&&Uo.remove(n)});var Vo=a(xo.style,"userSelect"),Zo=0;vo.mouse=function(n){return H(n,h())};var Xo=/WebKit/.test(bo.navigator.userAgent)?-1:0;vo.touches=function(n,t){return arguments.length<2&&(t=h().touches),t?yo(t).map(function(t){var e=H(n,t);return e.identifier=t.identifier,e}):[]},vo.behavior.drag=function(){function n(){this.on("mousedown.drag",o).on("touchstart.drag",a)}function t(){return vo.event.changedTouches[0].identifier}function e(n,t){return vo.touches(n).filter(function(n){return n.identifier===t})[0]}function r(n,t,e,r){return function(){function o(){if(!s)return a();var n=t(s,g),e=n[0]-d[0],r=n[1]-d[1];v|=e|r,d=n,f({type:"drag",x:n[0]+c[0],y:n[1]+c[1],dx:e,dy:r})}function a(){m.on(e+"."+p,null).on(r+"."+p,null),y(v&&vo.event.target===h),f({type:"dragend"})}var c,l=this,s=l.parentNode,f=u.of(l,arguments),h=vo.event.target,g=n(),p=null==g?"drag":"drag-"+g,d=t(s,g),v=0,m=vo.select(bo).on(e+"."+p,o).on(r+"."+p,a),y=L();i?(c=i.apply(l,arguments),c=[c.x-d[0],c.y-d[1]]):c=[0,0],f({type:"dragstart"})}}var u=g(n,"drag","dragstart","dragend"),i=null,o=r(c,vo.mouse,"mousemove","mouseup"),a=r(t,e,"touchmove","touchend");return n.origin=function(t){return arguments.length?(i=t,n):i},vo.rebind(n,u,"on")};var Bo=Math.PI,$o=1e-6,Wo=$o*$o,Jo=Bo/180,Go=180/Bo,Ko=Math.SQRT2,Qo=2,na=4;vo.interpolateZoom=function(n,t){function e(n){var t=n*y;if(m){var e=Y(d),o=i/(Qo*h)*(e*I(Ko*t+d)-R(d));return[r+o*l,u+o*s,i*e/Y(Ko*t+d)]}return[r+n*l,u+n*s,i*Math.exp(Ko*t)]}var r=n[0],u=n[1],i=n[2],o=t[0],a=t[1],c=t[2],l=o-r,s=a-u,f=l*l+s*s,h=Math.sqrt(f),g=(c*c-i*i+na*f)/(2*i*Qo*h),p=(c*c-i*i-na*f)/(2*c*Qo*h),d=Math.log(Math.sqrt(g*g+1)-g),v=Math.log(Math.sqrt(p*p+1)-p),m=v-d,y=(m||Math.log(c/i))/Ko;return e.duration=1e3*y,e},vo.behavior.zoom=function(){function n(n){n.on(A,l).on(ra+".zoom",h).on(N,p).on("dblclick.zoom",d).on(T,s)}function t(n){return[(n[0]-S.x)/S.k,(n[1]-S.y)/S.k]}function e(n){return[n[0]*S.k+S.x,n[1]*S.k+S.y]}function r(n){S.k=Math.max(k[0],Math.min(k[1],n))}function u(n,t){t=e(t),S.x+=n[0]-t[0],S.y+=n[1]-t[1]}function i(){b&&b.domain(x.range().map(function(n){return(n-S.x)/S.k}).map(x.invert)),w&&w.domain(_.range().map(function(n){return(n-S.y)/S.k}).map(_.invert))}function o(n){n({type:"zoomstart"})}function a(n){i(),n({type:"zoom",scale:S.k,translate:[S.x,S.y]})}function c(n){n({type:"zoomend"})}function l(){function n(){s=1,u(vo.mouse(r),h),a(i)}function e(){f.on(N,bo===r?p:null).on(q,null),g(s&&vo.event.target===l),c(i)}var r=this,i=j.of(r,arguments),l=vo.event.target,s=0,f=vo.select(bo).on(N,n).on(q,e),h=t(vo.mouse(r)),g=L();z.call(r),o(i)}function s(){function n(){var n=vo.touches(d);return p=S.k,g={},n.forEach(function(n){g[n.identifier]=t(n)}),n}function e(){var t=Date.now(),e=n();if(1===e.length){if(500>t-M){var i=e[0],o=g[i.identifier];r(2*S.k),u(i,o),f(),a(v)}M=t}else if(e.length>1){var i=e[0],c=e[1],l=i[0]-c[0],s=i[1]-c[1];m=l*l+s*s}}function i(){var n=vo.touches(d),t=n[0],e=g[t.identifier];if(i=n[1]){var i,o=g[i.identifier],c=vo.event.scale;if(null==c){var l=(l=i[0]-t[0])*l+(l=i[1]-t[1])*l;c=m&&Math.sqrt(l/m)}t=[(t[0]+i[0])/2,(t[1]+i[1])/2],e=[(e[0]+o[0])/2,(e[1]+o[1])/2],r(c*p)}M=null,u(t,e),a(v)}function h(){vo.event.touches.length?n():(y.on(C,null).on(D,null),x.on(A,l).on(T,s),b(),c(v))}var g,p,d=this,v=j.of(d,arguments),m=0,y=vo.select(bo).on(C,i).on(D,h),x=vo.select(d).on(A,null).on(T,e),b=L();z.call(d),e(),o(v)}function h(){var n=j.of(this,arguments);y?clearTimeout(y):(z.call(this),o(n)),y=setTimeout(function(){y=null,c(n)},50),f();var e=m||vo.mouse(this);v||(v=t(e)),r(Math.pow(2,.002*ta())*S.k),u(e,v),a(n)}function p(){v=null}function d(){var n=j.of(this,arguments),e=vo.mouse(this),i=t(e),l=Math.log(S.k)/Math.LN2;o(n),r(Math.pow(2,vo.event.shiftKey?Math.ceil(l)-1:Math.floor(l)+1)),u(e,i),a(n),c(n)}var v,m,y,M,x,b,_,w,S={x:0,y:0,k:1},E=[960,500],k=ea,A="mousedown.zoom",N="mousemove.zoom",q="mouseup.zoom",T="touchstart.zoom",C="touchmove.zoom",D="touchend.zoom",j=g(n,"zoomstart","zoom","zoomend");return n.event=function(n){n.each(function(){var n=j.of(this,arguments),t=S;Fc?vo.select(this).transition().each("start.zoom",function(){S=this.__chart__||{x:0,y:0,k:1},o(n)}).tween("zoom:zoom",function(){var e=E[0],r=E[1],u=e/2,i=r/2,o=vo.interpolateZoom([(u-S.x)/S.k,(i-S.y)/S.k,e/S.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=o(t),c=e/r[2];this.__chart__=S={x:u-r[0]*c,y:i-r[1]*c,k:c},a(n)}}).each("end.zoom",function(){c(n)}):(this.__chart__=S,o(n),a(n),c(n))})},n.translate=function(t){return arguments.length?(S={x:+t[0],y:+t[1],k:S.k},i(),n):[S.x,S.y]},n.scale=function(t){return arguments.length?(S={x:S.x,y:S.y,k:+t},i(),n):S.k},n.scaleExtent=function(t){return arguments.length?(k=null==t?ea:[+t[0],+t[1]],n):k},n.center=function(t){return arguments.length?(m=t&&[+t[0],+t[1]],n):m},n.size=function(t){return arguments.length?(E=t&&[+t[0],+t[1]],n):E},n.x=function(t){return arguments.length?(b=t,x=t.copy(),S={x:0,y:0,k:1},n):b},n.y=function(t){return arguments.length?(w=t,_=t.copy(),S={x:0,y:0,k:1},n):w},vo.rebind(n,j,"on")};var ta,ea=[0,1/0],ra="onwheel"in Mo?(ta=function(){return-vo.event.deltaY*(vo.event.deltaMode?120:1)},"wheel"):"onmousewheel"in Mo?(ta=function(){return vo.event.wheelDelta},"mousewheel"):(ta=function(){return-vo.event.detail},"MozMousePixelScroll");V.prototype.toString=function(){return this.rgb()+""},vo.hsl=function(n,t,e){return 1===arguments.length?n instanceof X?Z(n.h,n.s,n.l):lt(""+n,st,Z):Z(+n,+t,+e)};var ua=X.prototype=new V;ua.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),Z(this.h,this.s,this.l/n)},ua.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),Z(this.h,this.s,n*this.l)},ua.rgb=function(){return B(this.h,this.s,this.l)},vo.hcl=function(n,t,e){return 1===arguments.length?n instanceof W?$(n.h,n.c,n.l):n instanceof K?nt(n.l,n.a,n.b):nt((n=ft((n=vo.rgb(n)).r,n.g,n.b)).l,n.a,n.b):$(+n,+t,+e)};var ia=W.prototype=new V;ia.brighter=function(n){return $(this.h,this.c,Math.min(100,this.l+oa*(arguments.length?n:1)))},ia.darker=function(n){return $(this.h,this.c,Math.max(0,this.l-oa*(arguments.length?n:1)))},ia.rgb=function(){return J(this.h,this.c,this.l).rgb()},vo.lab=function(n,t,e){return 1===arguments.length?n instanceof K?G(n.l,n.a,n.b):n instanceof W?J(n.l,n.c,n.h):ft((n=vo.rgb(n)).r,n.g,n.b):G(+n,+t,+e)};var oa=18,aa=.95047,ca=1,la=1.08883,sa=K.prototype=new V;sa.brighter=function(n){return G(Math.min(100,this.l+oa*(arguments.length?n:1)),this.a,this.b)},sa.darker=function(n){return G(Math.max(0,this.l-oa*(arguments.length?n:1)),this.a,this.b)},sa.rgb=function(){return Q(this.l,this.a,this.b)},vo.rgb=function(n,t,e){return 1===arguments.length?n instanceof at?ot(n.r,n.g,n.b):lt(""+n,ot,B):ot(~~n,~~t,~~e)};var fa=at.prototype=new V;fa.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),ot(Math.min(255,~~(t/n)),Math.min(255,~~(e/n)),Math.min(255,~~(r/n)))):ot(u,u,u)},fa.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),ot(~~(n*this.r),~~(n*this.g),~~(n*this.b))},fa.hsl=function(){return st(this.r,this.g,this.b)},fa.toString=function(){return"#"+ct(this.r)+ct(this.g)+ct(this.b)};var ha=vo.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});ha.forEach(function(n,t){ha.set(n,ut(t))}),vo.functor=pt,vo.xhr=vt(dt),vo.dsv=function(n,t){function e(n,e,i){arguments.length<3&&(i=e,e=null);var o=vo.xhr(n,t,i);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:u(n)):e},o.row(e)}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function o(t){return t.map(a).join(n)}function a(n){return c.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var c=new RegExp('["'+n+"\n]"),l=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(s>=c)return o;if(u)return u=!1,i;var t=s;if(34===n.charCodeAt(t)){for(var e=t;e++<c;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}s=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++s):10===r&&(u=!0),n.substring(t+1,e).replace(/""/g,'"')}for(;c>s;){var r=n.charCodeAt(s++),a=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(s)&&(++s,++a);else if(r!==l)continue;return n.substring(t,s-a)}return n.substring(t)}for(var r,u,i={},o={},a=[],c=n.length,s=0,f=0;(r=e())!==o;){for(var h=[];r!==i&&r!==o;)h.push(r),r=e();(!t||(h=t(h,f++)))&&a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new i,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(a).join(n)].concat(t.map(function(t){return u.map(function(n){return a(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(o).join("\n")},e},vo.csv=vo.dsv(",","text/csv"),vo.tsv=vo.dsv(" ","text/tab-separated-values");var ga,pa,da,va,ma,ya=bo[a(bo,"requestAnimationFrame")]||function(n){setTimeout(n,17)};vo.timer=function(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={callback:n,time:u,next:null};pa?pa.next=i:ga=i,pa=i,da||(va=clearTimeout(va),da=1,ya(Mt))},vo.timer.flush=function(){bt(),_t()};var Ma=".",xa=",",ba=[3,3],_a="$",wa=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(wt);vo.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=vo.round(n,St(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((0>=e?e+1:e-1)/3)))),wa[8+e/3]},vo.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)},vo.format=function(n){var t=Sa.exec(n),e=t[1]||" ",r=t[2]||">",u=t[3]||"",i=t[4]||"",o=t[5],a=+t[6],c=t[7],l=t[8],s=t[9],f=1,h="",g=!1;switch(l&&(l=+l.substring(1)),(o||"0"===e&&"="===r)&&(o=e="0",r="=",c&&(a-=Math.floor((a-1)/4))),s){case"n":c=!0,s="g";break;case"%":f=100,h="%",s="f";break;case"p":f=100,h="%",s="r";break;case"b":case"o":case"x":case"X":"#"===i&&(i="0"+s.toLowerCase());case"c":case"d":g=!0,l=0;break;case"s":f=-1,s="r"}"#"===i?i="":"$"===i&&(i=_a),"r"!=s||l||(s="g"),null!=l&&("g"==s?l=Math.max(1,Math.min(21,l)):("e"==s||"f"==s)&&(l=Math.max(0,Math.min(20,l)))),s=Ea.get(s)||Et;var p=o&&c;return function(n){if(g&&n%1)return"";var t=0>n||0===n&&0>1/n?(n=-n,"-"):u;if(0>f){var d=vo.formatPrefix(n,l);n=d.scale(n),h=d.symbol}else n*=f;n=s(n,l);var v=n.lastIndexOf("."),m=0>v?n:n.substring(0,v),y=0>v?"":Ma+n.substring(v+1);!o&&c&&(m=ka(m));var M=i.length+m.length+y.length+(p?0:t.length),x=a>M?new Array(M=a-M+1).join(e):"";return p&&(m=ka(x+m)),t+=i,n=m+y,("<"===r?t+n+x:">"===r?x+t+n:"^"===r?x.substring(0,M>>=1)+t+n+x.substring(M):t+(p?n:x+n))+h}};var Sa=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,Ea=vo.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=vo.round(n,St(n,t))).toFixed(Math.max(0,Math.min(20,St(n*(1+1e-15),t))))}}),ka=dt;if(ba){var Aa=ba.length;ka=function(n){for(var t=n.length,e=[],r=0,u=ba[0];t>0&&u>0;)e.push(n.substring(t-=u,t+u)),u=ba[r=(r+1)%Aa];return e.reverse().join(xa)}}vo.geo={},kt.prototype={s:0,t:0,add:function(n){At(n,this.t,Na),At(Na.s,this.s,this),this.s?this.t+=Na.t:this.s=Na.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var Na=new kt;vo.geo.stream=function(n,t){n&&qa.hasOwnProperty(n.type)?qa[n.type](n,t):Nt(n,t)};var qa={Feature:function(n,t){Nt(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;++r<u;)Nt(e[r].geometry,t)}},Ta={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){qt(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)qt(e[r],t,0)},Polygon:function(n,t){Tt(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)Tt(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;++r<u;)Nt(e[r],t)}};vo.geo.area=function(n){return za=0,vo.geo.stream(n,Da),za};var za,Ca=new kt,Da={sphere:function(){za+=4*Bo},point:c,lineStart:c,lineEnd:c,polygonStart:function(){Ca.reset(),Da.lineStart=zt},polygonEnd:function(){var n=2*Ca;za+=0>n?4*Bo+n:n,Da.lineStart=Da.lineEnd=Da.point=c}};vo.geo.bounds=function(){function n(n,t){M.push(x=[s=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=Ct([t*Jo,e*Jo]);if(m){var u=jt(m,r),i=[u[1],-u[0],0],o=jt(i,u);Ft(o),o=Pt(o);var c=t-p,l=c>0?1:-1,d=o[0]*Go*l,v=Math.abs(c)>180;if(v^(d>l*p&&l*t>d)){var y=o[1]*Go;y>g&&(g=y)}else if(d=(d+360)%360-180,v^(d>l*p&&l*t>d)){var y=-o[1]*Go;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);v?p>t?a(s,t)>a(s,h)&&(h=t):a(t,h)>a(s,h)&&(s=t):h>=s?(s>t&&(s=t),t>h&&(h=t)):t>p?a(s,t)>a(s,h)&&(h=t):a(t,h)>a(s,h)&&(s=t)}else n(t,e);m=r,p=t}function e(){b.point=t}function r(){x[0]=s,x[1]=h,b.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=Math.abs(r)>180?r+(r>0?360:-360):r}else d=n,v=e;Da.point(n,e),t(n,e)}function i(){Da.lineStart()}function o(){u(d,v),Da.lineEnd(),Math.abs(y)>$o&&(s=-(h=180)),x[0]=s,x[1]=h,m=null}function a(n,t){return(t-=n)<0?t+360:t}function c(n,t){return n[0]-t[0]}function l(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var s,f,h,g,p,d,v,m,y,M,x,b={point:n,lineStart:e,lineEnd:r,polygonStart:function(){b.point=u,b.lineStart=i,b.lineEnd=o,y=0,Da.polygonStart()},polygonEnd:function(){Da.polygonEnd(),b.point=n,b.lineStart=e,b.lineEnd=r,0>Ca?(s=-(h=180),f=-(g=90)):y>$o?g=90:-$o>y&&(f=-90),x[0]=s,x[1]=h}};return function(n){g=h=-(s=f=1/0),M=[],vo.geo.stream(n,b);var t=M.length;if(t){M.sort(c);for(var e,r=1,u=M[0],i=[u];t>r;++r)e=M[r],l(e[0],u)||l(e[1],u)?(a(u[0],e[1])>a(u[0],u[1])&&(u[1]=e[1]),a(e[0],u[1])>a(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var o,e,p=-1/0,t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(o=a(u[1],e[0]))>p&&(p=o,s=e[0],h=u[1])}return M=x=null,1/0===s||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[s,f],[h,g]]}}(),vo.geo.centroid=function(n){ja=La=Ha=Fa=Pa=Oa=Ra=Ya=Ia=Ua=Va=0,vo.geo.stream(n,Za);var t=Ia,e=Ua,r=Va,u=t*t+e*e+r*r;return Wo>u&&(t=Oa,e=Ra,r=Ya,$o>La&&(t=Ha,e=Fa,r=Pa),u=t*t+e*e+r*r,Wo>u)?[0/0,0/0]:[Math.atan2(e,t)*Go,O(r/Math.sqrt(u))*Go]};var ja,La,Ha,Fa,Pa,Oa,Ra,Ya,Ia,Ua,Va,Za={sphere:c,point:Rt,lineStart:It,lineEnd:Ut,polygonStart:function(){Za.lineStart=Vt},polygonEnd:function(){Za.lineStart=It}},Xa=$t(Zt,Qt,te,ee),Ba=[-Bo,0],$a=1e9;vo.geo.clipExtent=function(){var n,t,e,r,u,i,o={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(a){return arguments.length?(i=ue(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),u&&(u.valid=!1,u=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(vo.geo.conicEqualArea=function(){return ae(ce)}).raw=ce,vo.geo.albers=function(){return vo.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},vo.geo.albersUsa=function(){function n(n){var i=n[0],o=n[1];return t=null,e(i,o),t||(r(i,o),t)||u(i,o),t}var t,e,r,u,i=vo.geo.albers(),o=vo.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=vo.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?o:u>=.166&&.234>u&&r>=-.214&&-.115>r?a:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),a.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),a.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var l=i.scale(),s=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[s-.455*l,f-.238*l],[s+.455*l,f+.238*l]]).stream(c).point,r=o.translate([s-.307*l,f+.201*l]).clipExtent([[s-.425*l+$o,f+.12*l+$o],[s-.214*l-$o,f+.234*l-$o]]).stream(c).point,u=a.translate([s-.205*l,f+.212*l]).clipExtent([[s-.214*l+$o,f+.166*l+$o],[s-.115*l-$o,f+.234*l-$o]]).stream(c).point,n},n.scale(1070)};var Wa,Ja,Ga,Ka,Qa,nc,tc={point:c,lineStart:c,lineEnd:c,polygonStart:function(){Ja=0,tc.lineStart=le},polygonEnd:function(){tc.lineStart=tc.lineEnd=tc.point=c,Wa+=Math.abs(Ja/2)}},ec={point:se,lineStart:c,lineEnd:c,polygonStart:c,polygonEnd:c},rc={point:ge,lineStart:pe,lineEnd:de,polygonStart:function(){rc.lineStart=ve},polygonEnd:function(){rc.point=ge,rc.lineStart=pe,rc.lineEnd=de}};vo.geo.transform=function(n){return{stream:function(t){var e=new Me(t);for(var r in n)e[r]=n[r];return e}}},Me.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},vo.geo.path=function(){function n(n){return n&&("function"==typeof a&&i.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=u(i)),vo.geo.stream(n,o)),i.result()}function t(){return o=null,n}var e,r,u,i,o,a=4.5;return n.area=function(n){return Wa=0,vo.geo.stream(n,u(tc)),Wa},n.centroid=function(n){return Ha=Fa=Pa=Oa=Ra=Ya=Ia=Ua=Va=0,vo.geo.stream(n,u(rc)),Va?[Ia/Va,Ua/Va]:Ya?[Oa/Ya,Ra/Ya]:Pa?[Ha/Pa,Fa/Pa]:[0/0,0/0]},n.bounds=function(n){return Qa=nc=-(Ga=Ka=1/0),vo.geo.stream(n,u(ec)),[[Ga,Ka],[Qa,nc]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||xe(n):dt,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new fe:new me(n),"function"!=typeof a&&i.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(i.pointRadius(+t),+t),n):a},n.projection(vo.geo.albersUsa()).context(null)},vo.geo.projection=be,vo.geo.projectionMutator=_e,(vo.geo.equirectangular=function(){return be(Se)}).raw=Se.invert=Se,vo.geo.rotation=function(n){function t(t){return t=n(t[0]*Jo,t[1]*Jo),t[0]*=Go,t[1]*=Go,t}return n=Ee(n[0]%360*Jo,n[1]*Jo,n.length>2?n[2]*Jo:0),t.invert=function(t){return t=n.invert(t[0]*Jo,t[1]*Jo),t[0]*=Go,t[1]*=Go,t},t},vo.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=Ee(-n[0]*Jo,-n[1]*Jo,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=Go,n[1]*=Go}}),{type:"Polygon",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=qe((t=+r)*Jo,u*Jo),n):t},n.precision=function(r){return arguments.length?(e=qe(t*Jo,(u=+r)*Jo),n):u},n.angle(90)},vo.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Jo,u=n[1]*Jo,i=t[1]*Jo,o=Math.sin(r),a=Math.cos(r),c=Math.sin(u),l=Math.cos(u),s=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*o)*e+(e=l*s-c*f*a)*e),c*s+l*f*a)},vo.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return vo.range(Math.ceil(i/v)*v,u,v).map(h).concat(vo.range(Math.ceil(l/m)*m,c,m).map(g)).concat(vo.range(Math.ceil(r/p)*p,e,p).filter(function(n){return Math.abs(n%v)>$o}).map(s)).concat(vo.range(Math.ceil(a/d)*d,o,d).filter(function(n){return Math.abs(n%m)>$o}).map(f))}var e,r,u,i,o,a,c,l,s,f,h,g,p=10,d=p,v=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(g(c).slice(1),h(u).reverse().slice(1),g(l).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()
4
+ },n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],l=+t[0][1],c=+t[1][1],i>u&&(t=i,i=u,u=t),l>c&&(t=l,l=c,c=t),n.precision(y)):[[i,l],[u,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(y)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(v=+t[0],m=+t[1],n):[v,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],d=+t[1],n):[p,d]},n.precision=function(t){return arguments.length?(y=+t,s=ze(a,o,90),f=Ce(r,e,y),h=ze(l,c,90),g=Ce(i,u,y),n):y},n.majorExtent([[-180,-90+$o],[180,90-$o]]).minorExtent([[-180,-80-$o],[180,80+$o]])},vo.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=De,u=je;return n.distance=function(){return vo.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e="function"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},vo.geo.interpolate=function(n,t){return Le(n[0]*Jo,n[1]*Jo,t[0]*Jo,t[1]*Jo)},vo.geo.length=function(n){return uc=0,vo.geo.stream(n,ic),uc};var uc,ic={sphere:c,point:c,lineStart:He,lineEnd:c,polygonStart:c,polygonEnd:c},oc=Fe(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(vo.geo.azimuthalEqualArea=function(){return be(oc)}).raw=oc;var ac=Fe(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},dt);(vo.geo.azimuthalEquidistant=function(){return be(ac)}).raw=ac,(vo.geo.conicConformal=function(){return ae(Pe)}).raw=Pe,(vo.geo.conicEquidistant=function(){return ae(Oe)}).raw=Oe;var cc=Fe(function(n){return 1/n},Math.atan);(vo.geo.gnomonic=function(){return be(cc)}).raw=cc,Re.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Bo/2]},(vo.geo.mercator=function(){return Ye(Re)}).raw=Re;var lc=Fe(function(){return 1},Math.asin);(vo.geo.orthographic=function(){return be(lc)}).raw=lc;var sc=Fe(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(vo.geo.stereographic=function(){return be(sc)}).raw=sc,Ie.invert=function(n,t){return[Math.atan2(R(n),Math.cos(t)),O(Math.sin(t)/Y(n))]},(vo.geo.transverseMercator=function(){return Ye(Ie)}).raw=Ie,vo.geom={},vo.svg={},vo.svg.line=function(){return Ue(dt)};var fc=vo.map({linear:Xe,"linear-closed":Be,step:$e,"step-before":We,"step-after":Je,basis:er,"basis-open":rr,"basis-closed":ur,bundle:ir,cardinal:Qe,"cardinal-open":Ge,"cardinal-closed":Ke,monotone:fr});fc.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var hc=[0,2/3,1/3,0],gc=[0,1/3,2/3,0],pc=[0,1/6,2/3,1/6];vo.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,u,i,o,a,c,l,s,f,h,g,p,d=pt(e),v=pt(r),m=n.length,y=m-1,M=[],x=[],b=0;if(d===Ve&&r===Ze)t=n;else for(i=0,t=[];m>i;++i)t.push([+d.call(this,u=n[i],i),+v.call(this,u,i)]);for(i=1;m>i;++i)(t[i][1]<t[b][1]||t[i][1]==t[b][1]&&t[i][0]<t[b][0])&&(b=i);for(i=0;m>i;++i)i!==b&&(c=t[i][1]-t[b][1],a=t[i][0]-t[b][0],M.push({angle:Math.atan2(c,a),index:i}));for(M.sort(function(n,t){return n.angle-t.angle}),g=M[0].angle,h=M[0].index,f=0,i=1;y>i;++i){if(o=M[i].index,g==M[i].angle){if(a=t[h][0]-t[b][0],c=t[h][1]-t[b][1],l=t[o][0]-t[b][0],s=t[o][1]-t[b][1],a*a+c*c>=l*l+s*s){M[i].index=-1;continue}M[f].index=-1}g=M[i].angle,f=i,h=o}for(x.push(b),i=0,o=0;2>i;++o)M[o].index>-1&&(x.push(M[o].index),i++);for(p=x.length;y>o;++o)if(!(M[o].index<0)){for(;!hr(x[p-2],x[p-1],M[o].index,t);)--p;x[p++]=M[o].index}var _=[];for(i=p-1;i>=0;--i)_.push(n[x[i]]);return _}var e=Ve,r=Ze;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},vo.geom.polygon=function(n){return jo(n,dc),n};var dc=vo.geom.polygon.prototype=[];dc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;++t<e;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},dc.centroid=function(n){var t,e,r=-1,u=this.length,i=0,o=0,a=this[u-1];for(arguments.length||(n=-1/(6*this.area()));++r<u;)t=a,a=this[r],e=t[0]*a[1]-a[0]*t[1],i+=(t[0]+a[0])*e,o+=(t[1]+a[1])*e;return[i*n,o*n]},dc.clip=function(n){for(var t,e,r,u,i,o,a=dr(n),c=-1,l=this.length-dr(this),s=this[l-1];++c<l;){for(t=n.slice(),n.length=0,u=this[c],i=t[(r=t.length-a)-1],e=-1;++e<r;)o=t[e],gr(o,s,u)?(gr(i,s,u)||n.push(pr(i,o,s,u)),n.push(o)):gr(i,s,u)&&n.push(pr(i,o,s,u)),i=o;a&&n.push(n[0]),s=u}return n},vo.geom.delaunay=function(n){var t=n.map(function(){return[]}),e=[];return vr(n,function(e){t[e.region.l.index].push(n[e.region.r.index])}),t.forEach(function(t,r){var u=n[r],i=u[0],o=u[1];t.forEach(function(n){n.angle=Math.atan2(n[0]-i,n[1]-o)}),t.sort(function(n,t){return n.angle-t.angle});for(var a=0,c=t.length-1;c>a;a++)e.push([u,t[a],t[a+1]])}),e},vo.geom.voronoi=function(n){function t(n){var t,i,o,a=n.map(function(){return[]}),c=pt(e),l=pt(r),s=n.length,f=1e6;if(c===Ve&&l===Ze)t=n;else for(t=new Array(s),o=0;s>o;++o)t[o]=[+c.call(this,i=n[o],o),+l.call(this,i,o)];if(vr(t,function(n){var t,e,r,u,i,o;1===n.a&&n.b>=0?(t=n.ep.r,e=n.ep.l):(t=n.ep.l,e=n.ep.r),1===n.a?(i=t?t.y:-f,r=n.c-n.b*i,o=e?e.y:f,u=n.c-n.b*o):(r=t?t.x:-f,i=n.c-n.a*r,u=e?e.x:f,o=n.c-n.a*u);var c=[r,i],l=[u,o];a[n.region.l.index].push(c,l),a[n.region.r.index].push(c,l)}),a=a.map(function(n,e){var r=t[e][0],u=t[e][1],i=n.map(function(n){return Math.atan2(n[0]-r,n[1]-u)}),o=vo.range(n.length).sort(function(n,t){return i[n]-i[t]});return o.filter(function(n,t){return!t||i[n]-i[o[t-1]]>$o}).map(function(t){return n[t]})}),a.forEach(function(n,e){var r=n.length;if(!r)return n.push([-f,-f],[-f,f],[f,f],[f,-f]);if(!(r>2)){var u=t[e],i=n[0],o=n[1],a=u[0],c=u[1],l=i[0],s=i[1],h=o[0],g=o[1],p=Math.abs(h-l),d=g-s;if(Math.abs(d)<$o){var v=s>c?-f:f;n.push([-f,v],[f,v])}else if($o>p){var m=l>a?-f:f;n.push([m,-f],[m,f])}else{var v=(l-a)*(g-s)>(h-l)*(s-c)?f:-f,y=Math.abs(d)-p;Math.abs(y)<$o?n.push([0>d?v:-v,v]):(y>0&&(v*=-1),n.push([-f,v],[f,v]))}}}),u)for(o=0;s>o;++o)u.clip(a[o]);for(o=0;s>o;++o)a[o].point=n[o];return a}var e=Ve,r=Ze,u=null;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.clipExtent=function(n){if(!arguments.length)return u&&[u[0],u[2]];if(null==n)u=null;else{var e=+n[0][0],r=+n[0][1],i=+n[1][0],o=+n[1][1];u=vo.geom.polygon([[e,r],[e,o],[i,o],[i,r]])}return t},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):u&&u[2]},t.links=function(n){var t,u,i,o=n.map(function(){return[]}),a=[],c=pt(e),l=pt(r),s=n.length;if(c===Ve&&l===Ze)t=n;else for(t=new Array(s),i=0;s>i;++i)t[i]=[+c.call(this,u=n[i],i),+l.call(this,u,i)];return vr(t,function(t){var e=t.region.l.index,r=t.region.r.index;o[e][r]||(o[e][r]=o[r][e]=!0,a.push({source:n[e],target:n[r]}))}),a},t.triangles=function(n){if(e===Ve&&r===Ze)return vo.geom.delaunay(n);for(var t,u=new Array(c),i=pt(e),o=pt(r),a=-1,c=n.length;++a<c;)(u[a]=[+i.call(this,t=n[a],a),+o.call(this,t,a)]).data=t;return vo.geom.delaunay(u).map(function(n){return n.map(function(n){return n.data})})},t)};var vc={l:"r",r:"l"};vo.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,o,a){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,s=n.y;if(null!=c)if(Math.abs(c-e)+Math.abs(s-r)<.01)l(n,t,e,r,u,i,o,a);else{var f=n.point;n.x=n.y=n.point=null,l(n,f,c,s,u,i,o,a),l(n,t,e,r,u,i,o,a)}else n.x=e,n.y=r,n.point=t}else l(n,t,e,r,u,i,o,a)}function l(n,t,e,r,u,o,a,c){var l=.5*(u+a),s=.5*(o+c),f=e>=l,h=r>=s,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=Mr()),f?u=l:a=l,h?o=s:c=s,i(n,t,e,r,u,o,a,c)}var s,f,h,g,p,d,v,m,y,M=pt(a),x=pt(c);if(null!=t)d=t,v=e,m=r,y=u;else if(m=y=-(d=v=1/0),f=[],h=[],p=n.length,o)for(g=0;p>g;++g)s=n[g],s.x<d&&(d=s.x),s.y<v&&(v=s.y),s.x>m&&(m=s.x),s.y>y&&(y=s.y),f.push(s.x),h.push(s.y);else for(g=0;p>g;++g){var b=+M(s=n[g],g),_=+x(s,g);d>b&&(d=b),v>_&&(v=_),b>m&&(m=b),_>y&&(y=_),f.push(b),h.push(_)}var w=m-d,S=y-v;w>S?y=v+w:m=d+S;var E=Mr();if(E.add=function(n){i(E,n,+M(n,++g),+x(n,g),d,v,m,y)},E.visit=function(n){xr(n,E,d,v,m,y)},g=-1,null==t){for(;++g<p;)i(E,n[g],f[g],h[g],d,v,m,y);--g}else n.forEach(E.add);return f=h=n=s=null,E}var o,a=Ve,c=Ze;return(o=arguments.length)?(a=mr,c=yr,3===o&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(a=n,i):a},i.y=function(n){return arguments.length?(c=n,i):c},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},vo.interpolateRgb=br,vo.interpolateObject=_r,vo.interpolateNumber=wr,vo.interpolateString=Sr;var mc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;vo.interpolate=Er,vo.interpolators=[function(n,t){var e=typeof t;return("string"===e?ha.has(t)||/^(#|rgb\(|hsl\()/.test(t)?br:Sr:t instanceof V?br:"object"===e?Array.isArray(t)?kr:_r:wr)(n,t)}],vo.interpolateArray=kr;var yc=function(){return dt},Mc=vo.map({linear:yc,poly:Dr,quad:function(){return Tr},cubic:function(){return zr},sin:function(){return jr},exp:function(){return Lr},circle:function(){return Hr},elastic:Fr,back:Pr,bounce:function(){return Or}}),xc=vo.map({"in":dt,out:Nr,"in-out":qr,"out-in":function(n){return qr(Nr(n))}});vo.ease=function(n){var t=n.indexOf("-"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):"in";return e=Mc.get(e)||yc,r=xc.get(r)||dt,Ar(r(e.apply(null,Array.prototype.slice.call(arguments,1))))},vo.interpolateHcl=Rr,vo.interpolateHsl=Yr,vo.interpolateLab=Ir,vo.interpolateRound=Ur,vo.transform=function(n){var t=Mo.createElementNS(vo.ns.prefix.svg,"g");return(vo.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new Vr(e?e.matrix:bc)})(n)},Vr.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var bc={a:1,b:0,c:0,d:1,e:0,f:0};vo.interpolateTransform=$r,vo.layout={},vo.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Gr(n[e]));return t}},vo.layout.chord=function(){function n(){var n,l,f,h,g,p={},d=[],v=vo.range(i),m=[];for(e=[],r=[],n=0,h=-1;++h<i;){for(l=0,g=-1;++g<i;)l+=u[h][g];d.push(l),m.push(vo.range(i)),n+=l}for(o&&v.sort(function(n,t){return o(d[n],d[t])}),a&&m.forEach(function(n,t){n.sort(function(n,e){return a(u[t][n],u[t][e])})}),n=(2*Bo-s*i)/n,l=0,h=-1;++h<i;){for(f=l,g=-1;++g<i;){var y=v[h],M=m[y][g],x=u[y][M],b=l,_=l+=x*n;p[y+"-"+M]={index:y,subindex:M,startAngle:b,endAngle:_,value:x}}r[y]={index:y,startAngle:f,endAngle:l,value:(l-f)/n},l+=s}for(h=-1;++h<i;)for(g=h-1;++g<i;){var w=p[h+"-"+g],S=p[g+"-"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,o,a,c,l={},s=0;return l.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,l):u},l.padding=function(n){return arguments.length?(s=n,e=r=null,l):s},l.sortGroups=function(n){return arguments.length?(o=n,e=r=null,l):o},l.sortSubgroups=function(n){return arguments.length?(a=n,e=null,l):a},l.sortChords=function(n){return arguments.length?(c=n,e&&t(),l):c},l.chords=function(){return e||n(),e},l.groups=function(){return r||n(),r},l},vo.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,o=t.cy-n.y,a=1/Math.sqrt(i*i+o*o);if(d>(u-e)*a){var c=t.charge*a*a;return n.px-=i*c,n.py-=o*c,!0}if(t.point&&isFinite(a)){var c=t.pointCharge*a*a;n.px-=i*c,n.py-=o*c}}return!t.charge}}function t(n){n.px=vo.event.x,n.py=vo.event.y,a.resume()}var e,r,u,i,o,a={},c=vo.dispatch("start","tick","end"),l=[1,1],s=.9,f=_c,h=wc,g=-30,p=.1,d=.8,v=[],m=[];return a.tick=function(){if((r*=.99)<.005)return c.end({type:"end",alpha:r=0}),!0;var t,e,a,f,h,d,y,M,x,b=v.length,_=m.length;for(e=0;_>e;++e)a=m[e],f=a.source,h=a.target,M=h.x-f.x,x=h.y-f.y,(d=M*M+x*x)&&(d=r*i[e]*((d=Math.sqrt(d))-u[e])/d,M*=d,x*=d,h.x-=M*(y=f.weight/(h.weight+f.weight)),h.y-=x*y,f.x+=M*(y=1-y),f.y+=x*y);if((y=r*p)&&(M=l[0]/2,x=l[1]/2,e=-1,y))for(;++e<b;)a=v[e],a.x+=(M-a.x)*y,a.y+=(x-a.y)*y;if(g)for(uu(t=vo.geom.quadtree(v),r,o),e=-1;++e<b;)(a=v[e]).fixed||t.visit(n(a));for(e=-1;++e<b;)a=v[e],a.fixed?(a.x=a.px,a.y=a.py):(a.x-=(a.px-(a.px=a.x))*s,a.y-=(a.py-(a.py=a.y))*s);c.tick({type:"tick",alpha:r})},a.nodes=function(n){return arguments.length?(v=n,a):v},a.links=function(n){return arguments.length?(m=n,a):m},a.size=function(n){return arguments.length?(l=n,a):l},a.linkDistance=function(n){return arguments.length?(f="function"==typeof n?n:+n,a):f},a.distance=a.linkDistance,a.linkStrength=function(n){return arguments.length?(h="function"==typeof n?n:+n,a):h},a.friction=function(n){return arguments.length?(s=+n,a):s},a.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,a):g},a.gravity=function(n){return arguments.length?(p=+n,a):p},a.theta=function(n){return arguments.length?(d=+n,a):d},a.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:"start",alpha:r=n}),vo.timer(a.tick)),a):r},a.start=function(){function n(n,r){for(var u,i=t(e),o=-1,a=i.length;++o<a;)if(!isNaN(u=i[o][n]))return u;return Math.random()*r}function t(){if(!c){for(c=[],r=0;p>r;++r)c[r]=[];for(r=0;d>r;++r){var n=m[r];c[n.source.index].push(n.target),c[n.target.index].push(n.source)}}return c[e]}var e,r,c,s,p=v.length,d=m.length,y=l[0],M=l[1];for(e=0;p>e;++e)(s=v[e]).index=e,s.weight=0;for(e=0;d>e;++e)s=m[e],"number"==typeof s.source&&(s.source=v[s.source]),"number"==typeof s.target&&(s.target=v[s.target]),++s.source.weight,++s.target.weight;for(e=0;p>e;++e)s=v[e],isNaN(s.x)&&(s.x=n("x",y)),isNaN(s.y)&&(s.y=n("y",M)),isNaN(s.px)&&(s.px=s.x),isNaN(s.py)&&(s.py=s.y);if(u=[],"function"==typeof f)for(e=0;d>e;++e)u[e]=+f.call(this,m[e],e);else for(e=0;d>e;++e)u[e]=f;if(i=[],"function"==typeof h)for(e=0;d>e;++e)i[e]=+h.call(this,m[e],e);else for(e=0;d>e;++e)i[e]=h;if(o=[],"function"==typeof g)for(e=0;p>e;++e)o[e]=+g.call(this,v[e],e);else for(e=0;p>e;++e)o[e]=g;return a.resume()},a.resume=function(){return a.alpha(.1)},a.stop=function(){return a.alpha(0)},a.drag=function(){return e||(e=vo.behavior.drag().origin(dt).on("dragstart.force",nu).on("drag.force",t).on("dragend.force",tu)),arguments.length?(this.on("mouseover.force",eu).on("mouseout.force",ru).call(e),void 0):e},vo.rebind(a,c,"on")};var _c=20,wc=1;vo.layout.hierarchy=function(){function n(t,o,a){var c=u.call(e,t,o);if(t.depth=o,a.push(t),c&&(l=c.length)){for(var l,s,f=-1,h=t.children=[],g=0,p=o+1;++f<l;)s=n(c[f],p,a),s.parent=t,h.push(s),g+=s.value;r&&h.sort(r),i&&(t.value=g)}else i&&(t.value=+i.call(e,t,o)||0);return t}function t(n,r){var u=n.children,o=0;if(u&&(a=u.length))for(var a,c=-1,l=r+1;++c<a;)o+=t(u[c],l);else i&&(o=+i.call(e,n,r)||0);return i&&(n.value=o),o}function e(t){var e=[];return n(t,0,e),e}var r=cu,u=ou,i=au;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(u=n,e):u},e.value=function(n){return arguments.length?(i=n,e):i},e.revalue=function(n){return t(n,0),n},e},vo.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(o=i.length)){var o,a,c,l=-1;for(r=t.value?r/t.value:0;++l<o;)n(a=i[l],e,c=a.value*r,u),e+=c}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;++i<u;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var o=r.call(this,e,i);return n(o[0],0,u[0],u[1]/t(o[0])),o}var r=vo.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},iu(e,r)},vo.layout.pie=function(){function n(i){var o=i.map(function(e,r){return+t.call(n,e,r)}),a=+("function"==typeof r?r.apply(this,arguments):r),c=(("function"==typeof u?u.apply(this,arguments):u)-a)/vo.sum(o),l=vo.range(i.length);null!=e&&l.sort(e===Sc?function(n,t){return o[t]-o[n]}:function(n,t){return e(i[n],i[t])});var s=[];return l.forEach(function(n){var t;s[n]={data:i[n],value:t=o[n],startAngle:a,endAngle:a+=t*c}}),s}var t=Number,e=Sc,r=0,u=2*Bo;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n};var Sc={};vo.layout.stack=function(){function n(a,c){var l=a.map(function(e,r){return t.call(n,e,r)}),s=l.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),o.call(n,t,e)]})}),f=e.call(n,s,c);l=vo.permute(l,f),s=vo.permute(s,f);var h,g,p,d=r.call(n,s,c),v=l.length,m=l[0].length;for(g=0;m>g;++g)for(u.call(n,l[0][g],p=d[g],s[0][g][1]),h=1;v>h;++h)u.call(n,l[h][g],p+=s[h-1][g][1],s[h][g][1]);return a}var t=dt,e=gu,r=pu,u=hu,i=su,o=fu;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:Ec.get(t)||gu,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:kc.get(t)||pu,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(u=t,n):u},n};var Ec=vo.map({"inside-out":function(n){var t,e,r=n.length,u=n.map(du),i=n.map(vu),o=vo.range(r).sort(function(n,t){return u[n]-u[t]}),a=0,c=0,l=[],s=[];for(t=0;r>t;++t)e=o[t],c>a?(a+=i[e],l.push(e)):(c+=i[e],s.push(e));return s.reverse().concat(l)},reverse:function(n){return vo.range(n.length).reverse()},"default":gu}),kc=vo.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,l,s=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=l=0,e=1;h>e;++e){for(t=0,u=0;s>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];s>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,l>c&&(l=c)}for(e=0;h>e;++e)g[e]-=l;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,o=1/u,a=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=o}for(e=0;i>e;++e)a[e]=0;return a},zero:pu});vo.layout.histogram=function(){function n(n,i){for(var o,a,c=[],l=n.map(e,this),s=r.call(this,l,i),f=u.call(this,s,l,i),i=-1,h=l.length,g=f.length-1,p=t?1:1/h;++i<g;)o=c[i]=[],o.dx=f[i+1]-(o.x=f[i]),o.y=0;if(g>0)for(i=-1;++i<h;)a=l[i],a>=s[0]&&a<=s[1]&&(o=c[vo.bisect(f,a,1,g)-1],o.y+=p,o.push(n[i]));return c}var t=!0,e=Number,r=xu,u=yu;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=pt(t),n):r},n.bins=function(t){return arguments.length?(u="number"==typeof t?function(n){return Mu(n,t)}:pt(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},vo.layout.tree=function(){function n(n,i){function o(n,t){var r=n.children,u=n._tree;if(r&&(i=r.length)){for(var i,a,l,s=r[0],f=s,h=-1;++h<i;)l=r[h],o(l,a),f=c(l,a,f),a=l;qu(n);var g=.5*(s._tree.prelim+l._tree.prelim);t?(u.prelim=t._tree.prelim+e(n,t),u.mod=u.prelim-g):u.prelim=g}else t&&(u.prelim=t._tree.prelim+e(n,t))}function a(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,u=-1;for(t+=n._tree.mod;++u<r;)a(e[u],t)}}function c(n,t,r){if(t){for(var u,i=n,o=n,a=t,c=n.parent.children[0],l=i._tree.mod,s=o._tree.mod,f=a._tree.mod,h=c._tree.mod;a=wu(a),i=_u(i),a&&i;)c=_u(c),o=wu(o),o._tree.ancestor=n,u=a._tree.prelim+f-i._tree.prelim-l+e(a,i),u>0&&(Tu(zu(a,n,r),n,u),l+=u,s+=u),f+=a._tree.mod,l+=i._tree.mod,h+=c._tree.mod,s+=o._tree.mod;a&&!wu(o)&&(o._tree.thread=a,o._tree.mod+=f-s),i&&!_u(c)&&(c._tree.thread=i,c._tree.mod+=l-h,r=n)}return r}var l=t.call(this,n,i),s=l[0];Nu(s,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),o(s),a(s,-s._tree.prelim);var f=Su(s,ku),h=Su(s,Eu),g=Su(s,Au),p=f.x-e(f,h)/2,d=h.x+e(h,f)/2,v=g.depth||1;return Nu(s,u?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(d-p)*r[0],n.y=n.depth/v*r[1],delete n._tree}),l}var t=vo.layout.hierarchy().sort(null).value(null),e=bu,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},iu(n,t)},vo.layout.pack=function(){function n(n,i){var o=e.call(this,n,i),a=o[0],c=u[0],l=u[1],s=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,Nu(a,function(n){n.r=+s(n.value)}),Nu(a,Hu),r){var f=r*(t?1:Math.max(2*a.r/c,2*a.r/l))/2;Nu(a,function(n){n.r+=f}),Nu(a,Hu),Nu(a,function(n){n.r-=f})}return Ou(a,c/2,l/2,t?1:1/Math.max(2*a.r/c,2*a.r/l)),o}var t,e=vo.layout.hierarchy().sort(Cu),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},iu(n,e)},vo.layout.cluster=function(){function n(n,i){var o,a=t.call(this,n,i),c=a[0],l=0;Nu(c,function(n){var t=n.children;t&&t.length?(n.x=Iu(t),n.y=Yu(t)):(n.x=o?l+=e(n,o):0,n.y=0,o=n)});var s=Uu(c),f=Vu(c),h=s.x-e(s,f)/2,g=f.x+e(f,s)/2;return Nu(c,u?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),a}var t=vo.layout.hierarchy().sort(null).value(null),e=bu,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},iu(n,t)},vo.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;++u<i;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var o,a,c,l=f(e),s=[],h=i.slice(),p=1/0,d="slice"===g?l.dx:"dice"===g?l.dy:"slice-dice"===g?1&e.depth?l.dy:l.dx:Math.min(l.dx,l.dy);for(n(h,l.dx*l.dy/e.value),s.area=0;(c=h.length)>0;)s.push(o=h[c-1]),s.area+=o.area,"squarify"!==g||(a=r(s,d))<=p?(h.pop(),p=a):(s.area-=s.pop().area,u(s,d,l,!1),d=Math.min(l.dx,l.dy),s.length=s.area=0,p=1/0);s.length&&(u(s,d,l,!0),s.length=s.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,o=f(t),a=r.slice(),c=[];for(n(a,o.dx*o.dy/t.value),c.area=0;i=a.pop();)c.push(i),c.area+=i.area,null!=i.z&&(u(c,i.z?o.dx:o.dy,o,!a.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,o=-1,a=n.length;++o<a;)(e=n[o].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,o=n.length,a=e.x,l=e.y,s=t?c(n.area/t):0;if(t==e.dx){for((r||s>e.dy)&&(s=e.dy);++i<o;)u=n[i],u.x=a,u.y=l,u.dy=s,a+=u.dx=Math.min(e.x+e.dx-a,s?c(u.area/s):0);u.z=!0,u.dx+=e.x+e.dx-a,e.y+=s,e.dy-=s}else{for((r||s>e.dx)&&(s=e.dx);++i<o;)u=n[i],u.x=a,u.y=l,u.dx=s,l+=u.dy=Math.min(e.y+e.dy-l,s?c(u.area/s):0);u.z=!1,u.dy+=e.y+e.dy-l,e.x+=s,e.dx-=s}}function i(r){var u=o||a(r),i=u[0];return i.x=0,i.y=0,i.dx=l[0],i.dy=l[1],o&&a.revalue(i),n([i],i.dx*i.dy/i.value),(o?e:t)(i),h&&(o=u),u}var o,a=vo.layout.hierarchy(),c=Math.round,l=[1,1],s=null,f=Zu,h=!1,g="squarify",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(l=n,i):l},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Zu(t):Xu(t,"number"==typeof e?[e,e,e,e]:e)}function e(t){return Xu(t,n)}if(!arguments.length)return s;var r;return f=null==(s=n)?Zu:"function"==(r=typeof n)?t:"number"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(c=n?Math.round:Number,i):c!=Number},i.sticky=function(n){return arguments.length?(h=n,o=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+"",i):g},iu(i,a)},vo.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=vo.random.normal.apply(vo,arguments);return function(){return Math.exp(n())}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t/n}}},vo.scale={};var Ac={floor:dt,ceil:dt};vo.scale.linear=function(){return Qu([0,1],[0,1],Er,!1)},vo.scale.log=function(){return ii(vo.scale.linear().domain([0,1]),10,!0,[1,10])};var Nc=vo.format(".0e"),qc={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};vo.scale.pow=function(){return oi(vo.scale.linear(),1,[0,1])},vo.scale.sqrt=function(){return vo.scale.pow().exponent(.5)},vo.scale.ordinal=function(){return ci([],{t:"range",a:[[]]})},vo.scale.category10=function(){return vo.scale.ordinal().range(Tc)},vo.scale.category20=function(){return vo.scale.ordinal().range(zc)},vo.scale.category20b=function(){return vo.scale.ordinal().range(Cc)},vo.scale.category20c=function(){return vo.scale.ordinal().range(Dc)};var Tc=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(it),zc=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(it),Cc=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(it),Dc=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(it);vo.scale.quantile=function(){return li([],[])},vo.scale.quantize=function(){return si(0,1,[0,1])},vo.scale.threshold=function(){return fi([.5],[0,1])},vo.scale.identity=function(){return hi([0,1])},vo.svg.arc=function(){function n(){var n=t.apply(this,arguments),i=e.apply(this,arguments),o=r.apply(this,arguments)+jc,a=u.apply(this,arguments)+jc,c=(o>a&&(c=o,o=a,a=c),a-o),l=Bo>c?"0":"1",s=Math.cos(o),f=Math.sin(o),h=Math.cos(a),g=Math.sin(a);return c>=Lc?n?"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"M0,"+n+"A"+n+","+n+" 0 1,0 0,"+-n+"A"+n+","+n+" 0 1,0 0,"+n+"Z":"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"Z":n?"M"+i*s+","+i*f+"A"+i+","+i+" 0 "+l+",1 "+i*h+","+i*g+"L"+n*h+","+n*g+"A"+n+","+n+" 0 "+l+",0 "+n*s+","+n*f+"Z":"M"+i*s+","+i*f+"A"+i+","+i+" 0 "+l+",1 "+i*h+","+i*g+"L0,0"+"Z"}var t=gi,e=pi,r=di,u=vi;return n.innerRadius=function(e){return arguments.length?(t=pt(e),n):t},n.outerRadius=function(t){return arguments.length?(e=pt(t),n):e},n.startAngle=function(t){return arguments.length?(r=pt(t),n):r},n.endAngle=function(t){return arguments.length?(u=pt(t),n):u},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,i=(r.apply(this,arguments)+u.apply(this,arguments))/2+jc;return[Math.cos(i)*n,Math.sin(i)*n]},n};var jc=-Bo/2,Lc=2*Bo-1e-6;vo.svg.line.radial=function(){var n=Ue(mi);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},We.reverse=Je,Je.reverse=We,vo.svg.area=function(){return yi(dt)},vo.svg.area.radial=function(){var n=yi(mi);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},vo.svg.chord=function(){function n(n,a){var c=t(this,i,n,a),l=t(this,o,n,a);return"M"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,l)?u(c.r,c.p1,c.r,c.p0):u(c.r,c.p1,l.r,l.p0)+r(l.r,l.p1,l.a1-l.a0)+u(l.r,l.p1,c.r,c.p0))+"Z"}function t(n,t,e,r){var u=t.call(n,e,r),i=a.call(n,u,r),o=c.call(n,u,r)+jc,s=l.call(n,u,r)+jc;return{r:i,a0:o,a1:s,p0:[i*Math.cos(o),i*Math.sin(o)],p1:[i*Math.cos(s),i*Math.sin(s)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Bo)+",1 "+t}function u(n,t,e,r){return"Q 0,0 "+r}var i=De,o=je,a=Mi,c=di,l=vi;return n.radius=function(t){return arguments.length?(a=pt(t),n):a},n.source=function(t){return arguments.length?(i=pt(t),n):i},n.target=function(t){return arguments.length?(o=pt(t),n):o},n.startAngle=function(t){return arguments.length?(c=pt(t),n):c},n.endAngle=function(t){return arguments.length?(l=pt(t),n):l},n},vo.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),o=e.call(this,n,u),a=(i.y+o.y)/2,c=[i,{x:i.x,y:a},{x:o.x,y:a},o];return c=c.map(r),"M"+c[0]+"C"+c[1]+" "+c[2]+" "+c[3]}var t=De,e=je,r=xi;return n.source=function(e){return arguments.length?(t=pt(e),n):t},n.target=function(t){return arguments.length?(e=pt(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},vo.svg.diagonal.radial=function(){var n=vo.svg.diagonal(),t=xi,e=n.projection;return n.projection=function(n){return arguments.length?e(bi(t=n)):t},n},vo.svg.symbol=function(){function n(n,r){return(Hc.get(t.call(this,n,r))||Si)(e.call(this,n,r))}var t=wi,e=_i;return n.type=function(e){return arguments.length?(t=pt(e),n):t},n.size=function(t){return arguments.length?(e=pt(t),n):e},n};var Hc=vo.map({circle:Si,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Rc)),e=t*Rc;return"M0,"+-t+"L"+e+",0"+" 0,"+t+" "+-e+",0"+"Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/Oc),e=t*Oc/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/Oc),e=t*Oc/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});vo.svg.symbolTypes=Hc.keys();var Fc,Pc,Oc=Math.sqrt(3),Rc=Math.tan(30*Jo),Yc=[],Ic=0;Yc.call=Oo.call,Yc.empty=Oo.empty,Yc.node=Oo.node,Yc.size=Oo.size,vo.transition=function(n){return arguments.length?Fc?n.transition():n:Io.transition()},vo.transition.prototype=Yc,Yc.select=function(n){var t,e,r,u=this.id,i=[];n=d(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]);for(var c=this[o],l=-1,s=c.length;++l<s;)(r=c[l])&&(e=n.call(r,r.__data__,l,o))?("__data__"in r&&(e.__data__=r.__data__),Ni(e,l,u,r.__transition__[u]),t.push(e)):t.push(null)}return Ei(i,u)},Yc.selectAll=function(n){var t,e,r,u,i,o=this.id,a=[];n=v(n);for(var c=-1,l=this.length;++c<l;)for(var s=this[c],f=-1,h=s.length;++f<h;)if(r=s[f]){i=r.__transition__[o],e=n.call(r,r.__data__,f,c),a.push(t=[]);for(var g=-1,p=e.length;++g<p;)(u=e[g])&&Ni(u,g,o,i),t.push(u)}return Ei(a,o)},Yc.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=k(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]);for(var e=this[i],a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a)&&t.push(r)}return Ei(u,this.id)},Yc.tween=function(n,t){var e=this.id;return arguments.length<2?this.node().__transition__[e].tween.get(n):N(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Yc.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function u(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function i(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?$r:Er,a=vo.ns.qualify(n);return ki(this,"attr."+n,t,a.local?i:u)},Yc.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))
5
+ }}var u=vo.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Yc.style=function(n,t,e){function r(){this.style.removeProperty(n)}function u(t){return null==t?r:(t+="",function(){var r,u=bo.getComputedStyle(this,null).getPropertyValue(n);return u!==t&&(r=Er(u,t),function(t){this.style.setProperty(n,r(t),e)})})}var i=arguments.length;if(3>i){if("string"!=typeof n){2>i&&(t="");for(e in n)this.style(e,n[e],t);return this}e=""}return ki(this,"style."+n,t,u)},Yc.styleTween=function(n,t,e){function r(r,u){var i=t.call(this,r,u,bo.getComputedStyle(this,null).getPropertyValue(n));return i&&function(t){this.style.setProperty(n,i(t),e)}}return arguments.length<3&&(e=""),this.tween("style."+n,r)},Yc.text=function(n){return ki(this,"text",n,Ai)},Yc.remove=function(){return this.each("end.transition",function(){var n;this.__transition__.count<2&&(n=this.parentNode)&&n.removeChild(this)})},Yc.ease=function(n){var t=this.id;return arguments.length<1?this.node().__transition__[t].ease:("function"!=typeof n&&(n=vo.ease.apply(vo,arguments)),N(this,function(e){e.__transition__[t].ease=n}))},Yc.delay=function(n){var t=this.id;return N(this,"function"==typeof n?function(e,r,u){e.__transition__[t].delay=+n.call(e,e.__data__,r,u)}:(n=+n,function(e){e.__transition__[t].delay=n}))},Yc.duration=function(n){var t=this.id;return N(this,"function"==typeof n?function(e,r,u){e.__transition__[t].duration=Math.max(1,n.call(e,e.__data__,r,u))}:(n=Math.max(1,n),function(e){e.__transition__[t].duration=n}))},Yc.each=function(n,t){var e=this.id;if(arguments.length<2){var r=Pc,u=Fc;Fc=e,N(this,function(t,r,u){Pc=t.__transition__[e],n.call(t,t.__data__,r,u)}),Pc=r,Fc=u}else N(this,function(r){var u=r.__transition__[e];(u.event||(u.event=vo.dispatch("start","end"))).on(n,t)});return this},Yc.transition=function(){for(var n,t,e,r,u=this.id,i=++Ic,o=[],a=0,c=this.length;c>a;a++){o.push(n=[]);for(var t=this[a],l=0,s=t.length;s>l;l++)(e=t[l])&&(r=Object.create(e.__transition__[u]),r.delay+=r.duration,Ni(e,l,i,r)),n.push(e)}return Ei(o,i)},vo.svg.axis=function(){function n(n){n.each(function(){var n,l=vo.select(this),s=null==c?e.ticks?e.ticks.apply(e,a):e.domain():c,f=null==t?e.tickFormat?e.tickFormat.apply(e,a):dt:t,h=l.selectAll(".tick").data(s,dt),g=h.enter().insert("g",".domain").attr("class","tick").style("opacity",1e-6),p=vo.transition(h.exit()).style("opacity",1e-6).remove(),d=vo.transition(h).style("opacity",1),v=$u(e),m=l.selectAll(".domain").data([0]),y=(m.enter().append("path").attr("class","domain"),vo.transition(m)),M=e.copy(),x=this.__chart__||M;this.__chart__=M,g.append("line"),g.append("text");var b=g.select("line"),_=d.select("line"),w=h.select("text").text(f),S=g.select("text"),E=d.select("text");switch(r){case"bottom":n=qi,b.attr("y2",u),S.attr("y",Math.max(u,0)+o),_.attr("x2",0).attr("y2",u),E.attr("x",0).attr("y",Math.max(u,0)+o),w.attr("dy",".71em").style("text-anchor","middle"),y.attr("d","M"+v[0]+","+i+"V0H"+v[1]+"V"+i);break;case"top":n=qi,b.attr("y2",-u),S.attr("y",-(Math.max(u,0)+o)),_.attr("x2",0).attr("y2",-u),E.attr("x",0).attr("y",-(Math.max(u,0)+o)),w.attr("dy","0em").style("text-anchor","middle"),y.attr("d","M"+v[0]+","+-i+"V0H"+v[1]+"V"+-i);break;case"left":n=Ti,b.attr("x2",-u),S.attr("x",-(Math.max(u,0)+o)),_.attr("x2",-u).attr("y2",0),E.attr("x",-(Math.max(u,0)+o)).attr("y",0),w.attr("dy",".32em").style("text-anchor","end"),y.attr("d","M"+-i+","+v[0]+"H0V"+v[1]+"H"+-i);break;case"right":n=Ti,b.attr("x2",u),S.attr("x",Math.max(u,0)+o),_.attr("x2",u).attr("y2",0),E.attr("x",Math.max(u,0)+o).attr("y",0),w.attr("dy",".32em").style("text-anchor","start"),y.attr("d","M"+i+","+v[0]+"H0V"+v[1]+"H"+i)}if(e.rangeBand){var k=M.rangeBand()/2,A=function(n){return M(n)+k};g.call(n,A),d.call(n,A)}else g.call(n,x),d.call(n,M),p.call(n,M)})}var t,e=vo.scale.linear(),r=Uc,u=6,i=6,o=3,a=[10],c=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Vc?t+"":Uc,n):r},n.ticks=function(){return arguments.length?(a=arguments,n):a},n.tickValues=function(t){return arguments.length?(c=t,n):c},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Uc="bottom",Vc={top:1,right:1,bottom:1,left:1};vo.svg.brush=function(){function n(i){i.each(function(){var i=vo.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=i.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),i.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=i.selectAll(".resize").data(v,dt);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return Zc[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var s,f=vo.transition(i),h=vo.transition(o);c&&(s=$u(c),h.attr("x",s[0]).attr("width",s[1]-s[0]),e(f)),l&&(s=$u(l),h.attr("y",s[0]).attr("height",s[1]-s[0]),r(f)),t(f)})}function t(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+s[+/e$/.test(n)]+","+h[+/^s/.test(n)]+")"})}function e(n){n.select(".extent").attr("x",s[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",s[1]-s[0])}function r(n){n.select(".extent").attr("y",h[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",h[1]-h[0])}function u(){function u(){var n=vo.event.changedTouches;return n?vo.touches(_,n)[0]:vo.mouse(_)}function g(){32==vo.event.keyCode&&(q||(x=null,z[0]-=s[1],z[1]-=h[1],q=2),f())}function v(){32==vo.event.keyCode&&2==q&&(z[0]+=s[1],z[1]+=h[1],q=0,f())}function m(){var n=u(),i=!1;b&&(n[0]+=b[0],n[1]+=b[1]),q||(vo.event.altKey?(x||(x=[(s[0]+s[1])/2,(h[0]+h[1])/2]),z[0]=s[+(n[0]<x[0])],z[1]=h[+(n[1]<x[1])]):x=null),A&&y(n,c,0)&&(e(E),i=!0),N&&y(n,l,1)&&(r(E),i=!0),i&&(t(E),S({type:"brush",mode:q?"move":"resize"}))}function y(n,t,e){var r,u,a=$u(t),c=a[0],l=a[1],f=z[e],g=e?h:s,v=g[1]-g[0];return q&&(c-=f,l-=v+f),r=(e?d:p)?Math.max(c,Math.min(l,n[e])):n[e],q?u=(r+=f)+v:(x&&(f=Math.max(c,Math.min(l,2*x[e]-r))),r>f?(u=r,r=f):u=f),g[0]!=r||g[1]!=u?(e?o=null:i=null,g[0]=r,g[1]=u,!0):void 0}function M(){m(),E.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),vo.select("body").style("cursor",null),C.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),T(),S({type:"brushend"})}var x,b,_=this,w=vo.select(vo.event.target),S=a.of(_,arguments),E=vo.select(_),k=w.datum(),A=!/^(n|s)$/.test(k)&&c,N=!/^(e|w)$/.test(k)&&l,q=w.classed("extent"),T=L(),z=u(),C=vo.select(bo).on("keydown.brush",g).on("keyup.brush",v);if(vo.event.changedTouches?C.on("touchmove.brush",m).on("touchend.brush",M):C.on("mousemove.brush",m).on("mouseup.brush",M),E.interrupt().selectAll("*").interrupt(),q)z[0]=s[0]-z[0],z[1]=h[0]-z[1];else if(k){var D=+/w$/.test(k),j=+/^n/.test(k);b=[s[1-D]-z[0],h[1-j]-z[1]],z[0]=s[D],z[1]=h[j]}else vo.event.altKey&&(x=z.slice());E.style("pointer-events","none").selectAll(".resize").style("display",null),vo.select("body").style("cursor",w.style("cursor")),S({type:"brushstart"}),m()}var i,o,a=g(n,"brushstart","brush","brushend"),c=null,l=null,s=[0,0],h=[0,0],p=!0,d=!0,v=Xc[0];return n.event=function(n){n.each(function(){var n=a.of(this,arguments),t={x:s,y:h,i:i,j:o},e=this.__chart__||t;this.__chart__=t,Fc?vo.select(this).transition().each("start.brush",function(){i=e.i,o=e.j,s=e.x,h=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=kr(s,t.x),r=kr(h,t.y);return i=o=null,function(u){s=t.x=e(u),h=t.y=r(u),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){i=t.i,o=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,v=Xc[!c<<1|!l],n):c},n.y=function(t){return arguments.length?(l=t,v=Xc[!c<<1|!l],n):l},n.clamp=function(t){return arguments.length?(c&&l?(p=!!t[0],d=!!t[1]):c?p=!!t:l&&(d=!!t),n):c&&l?[p,d]:c?p:l?d:null},n.extent=function(t){var e,r,u,a,f;return arguments.length?(c&&(e=t[0],r=t[1],l&&(e=e[0],r=r[0]),i=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(f=e,e=r,r=f),(e!=s[0]||r!=s[1])&&(s=[e,r])),l&&(u=t[0],a=t[1],c&&(u=u[1],a=a[1]),o=[u,a],l.invert&&(u=l(u),a=l(a)),u>a&&(f=u,u=a,a=f),(u!=h[0]||a!=h[1])&&(h=[u,a])),n):(c&&(i?(e=i[0],r=i[1]):(e=s[0],r=s[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(f=e,e=r,r=f))),l&&(o?(u=o[0],a=o[1]):(u=h[0],a=h[1],l.invert&&(u=l.invert(u),a=l.invert(a)),u>a&&(f=u,u=a,a=f))),c&&l?[[e,u],[r,a]]:c?[e,r]:l&&[u,a])},n.clear=function(){return n.empty()||(s=[0,0],h=[0,0],i=o=null),n},n.empty=function(){return!!c&&s[0]==s[1]||!!l&&h[0]==h[1]},vo.rebind(n,a,"on")};var Zc={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Xc=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Bc=vo.time={},$c=Date,Wc=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];zi.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){Jc.setUTCDate.apply(this._,arguments)},setDay:function(){Jc.setUTCDay.apply(this._,arguments)},setFullYear:function(){Jc.setUTCFullYear.apply(this._,arguments)},setHours:function(){Jc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){Jc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){Jc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){Jc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){Jc.setUTCSeconds.apply(this._,arguments)},setTime:function(){Jc.setTime.apply(this._,arguments)}};var Jc=Date.prototype,Gc="%a %b %e %X %Y",Kc="%m/%d/%Y",Qc="%H:%M:%S",nl=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],tl=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],el=["January","February","March","April","May","June","July","August","September","October","November","December"],rl=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];Bc.year=Ci(function(n){return n=Bc.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),Bc.years=Bc.year.range,Bc.years.utc=Bc.year.utc.range,Bc.day=Ci(function(n){var t=new $c(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),Bc.days=Bc.day.range,Bc.days.utc=Bc.day.utc.range,Bc.dayOfYear=function(n){var t=Bc.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},Wc.forEach(function(n,t){n=n.toLowerCase(),t=7-t;var e=Bc[n]=Ci(function(n){return(n=Bc.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=Bc.year(n).getDay();return Math.floor((Bc.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});Bc[n+"s"]=e.range,Bc[n+"s"].utc=e.utc.range,Bc[n+"OfYear"]=function(n){var e=Bc.year(n).getDay();return Math.floor((Bc.dayOfYear(n)+(e+t)%7)/7)}}),Bc.week=Bc.sunday,Bc.weeks=Bc.sunday.range,Bc.weeks.utc=Bc.sunday.utc.range,Bc.weekOfYear=Bc.sundayOfYear,Bc.format=ji;var ul=Hi(nl),il=Fi(nl),ol=Hi(tl),al=Fi(tl),cl=Hi(el),ll=Fi(el),sl=Hi(rl),fl=Fi(rl),hl=/^%/,gl={"-":"",_:" ",0:"0"},pl={a:function(n){return tl[n.getDay()]},A:function(n){return nl[n.getDay()]},b:function(n){return rl[n.getMonth()]},B:function(n){return el[n.getMonth()]},c:ji(Gc),d:function(n,t){return Pi(n.getDate(),t,2)},e:function(n,t){return Pi(n.getDate(),t,2)},H:function(n,t){return Pi(n.getHours(),t,2)},I:function(n,t){return Pi(n.getHours()%12||12,t,2)},j:function(n,t){return Pi(1+Bc.dayOfYear(n),t,3)},L:function(n,t){return Pi(n.getMilliseconds(),t,3)},m:function(n,t){return Pi(n.getMonth()+1,t,2)},M:function(n,t){return Pi(n.getMinutes(),t,2)},p:function(n){return n.getHours()>=12?"PM":"AM"},S:function(n,t){return Pi(n.getSeconds(),t,2)},U:function(n,t){return Pi(Bc.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Pi(Bc.mondayOfYear(n),t,2)},x:ji(Kc),X:ji(Qc),y:function(n,t){return Pi(n.getFullYear()%100,t,2)},Y:function(n,t){return Pi(n.getFullYear()%1e4,t,4)},Z:oo,"%":function(){return"%"}},dl={a:Oi,A:Ri,b:Vi,B:Zi,c:Xi,d:Qi,e:Qi,H:to,I:to,j:no,L:uo,m:Ki,M:eo,p:io,S:ro,U:Ii,w:Yi,W:Ui,x:Bi,X:$i,y:Ji,Y:Wi,"%":ao},vl=/^\s*\d+/,ml=vo.map({am:0,pm:1});ji.utc=co;var yl=co("%Y-%m-%dT%H:%M:%S.%LZ");ji.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?lo:yl,lo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},lo.toString=yl.toString,Bc.second=Ci(function(n){return new $c(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),Bc.seconds=Bc.second.range,Bc.seconds.utc=Bc.second.utc.range,Bc.minute=Ci(function(n){return new $c(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),Bc.minutes=Bc.minute.range,Bc.minutes.utc=Bc.minute.utc.range,Bc.hour=Ci(function(n){var t=n.getTimezoneOffset()/60;return new $c(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),Bc.hours=Bc.hour.range,Bc.hours.utc=Bc.hour.utc.range,Bc.month=Ci(function(n){return n=Bc.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),Bc.months=Bc.month.range,Bc.months.utc=Bc.month.utc.range;var Ml=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],xl=[[Bc.second,1],[Bc.second,5],[Bc.second,15],[Bc.second,30],[Bc.minute,1],[Bc.minute,5],[Bc.minute,15],[Bc.minute,30],[Bc.hour,1],[Bc.hour,3],[Bc.hour,6],[Bc.hour,12],[Bc.day,1],[Bc.day,2],[Bc.week,1],[Bc.month,1],[Bc.month,3],[Bc.year,1]],bl=[[ji("%Y"),Zt],[ji("%B"),function(n){return n.getMonth()}],[ji("%b %d"),function(n){return 1!=n.getDate()}],[ji("%a %d"),function(n){return n.getDay()&&1!=n.getDate()}],[ji("%I %p"),function(n){return n.getHours()}],[ji("%I:%M"),function(n){return n.getMinutes()}],[ji(":%S"),function(n){return n.getSeconds()}],[ji(".%L"),function(n){return n.getMilliseconds()}]],_l=ho(bl);xl.year=Bc.year,Bc.scale=function(){return so(vo.scale.linear(),xl,_l)};var wl={range:function(n,t,e){return vo.range(+n,+t,e).map(fo)}},Sl=xl.map(function(n){return[n[0].utc,n[1]]}),El=[[co("%Y"),Zt],[co("%B"),function(n){return n.getUTCMonth()}],[co("%b %d"),function(n){return 1!=n.getUTCDate()}],[co("%a %d"),function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],[co("%I %p"),function(n){return n.getUTCHours()}],[co("%I:%M"),function(n){return n.getUTCMinutes()}],[co(":%S"),function(n){return n.getUTCSeconds()}],[co(".%L"),function(n){return n.getUTCMilliseconds()}]],kl=ho(El);return Sl.year=Bc.year.utc,Bc.scale.utc=function(){return so(vo.scale.linear(),Sl,kl)},vo.text=vt(function(n){return n.responseText}),vo.json=function(n,t){return mt(n,"application/json",go,t)},vo.html=function(n,t){return mt(n,"text/html",po,t)},vo.xml=vt(function(n){return n.responseXML}),vo}();
@@ -0,0 +1,80 @@
1
+ <!DOCTYPE html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <style>
5
+
6
+ body {
7
+ margin: 0;
8
+ }
9
+ .subunit {
10
+ fill: #D7D7D7;
11
+ stroke: #F2F2F2;
12
+ stroke-width: 2;
13
+ }
14
+ .subunit.highlight {
15
+ fill: #658436;
16
+ }
17
+
18
+ </style>
19
+ </head>
20
+ <body>
21
+ <script src="d3.v3.min.js"></script>
22
+ <script src="topojson.v1.min.js"></script>
23
+ <script>
24
+
25
+ function getParameterByName(name) {
26
+ name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
27
+ var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
28
+ results = regex.exec(location.search);
29
+ return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
30
+ }
31
+
32
+ var countries = (getParameterByName('c') || 'TZ').toUpperCase().split(','),
33
+ width = getParameterByName('w') || 380,
34
+ height = getParameterByName('h') || 230,
35
+ percent = getParameterByName('p') || .95,
36
+ maxScale = getParameterByName('m') || 300;
37
+
38
+ var svg = d3.select("body").append("svg")
39
+ .attr("width", width)
40
+ .attr("height", height);
41
+
42
+ var projection = d3.geo.mercator()
43
+ .scale(1)
44
+ .translate([0, 0]);
45
+
46
+ var path = d3.geo.path()
47
+ .projection(projection);
48
+
49
+ d3.json("countries.json", function(error, world) {
50
+ var bounds = [[Number.MAX_VALUE, Number.MAX_VALUE], [Number.MIN_VALUE, Number.MIN_VALUE]],
51
+ features = topojson.feature(world, world.objects.countries).features;
52
+
53
+ for (var i = 0; i < features.length; i++) {
54
+ if (countries.indexOf(features[i].id) !== -1) {
55
+ var b = path.bounds(features[i]);
56
+ bounds = [
57
+ [Math.min(bounds[0][0], b[0][0]), Math.min(bounds[0][1], b[0][1])],
58
+ [Math.max(bounds[1][0], b[1][0]), Math.max(bounds[1][1], b[1][1])]
59
+ ];
60
+ }
61
+ }
62
+
63
+ var scale = percent / Math.max((bounds[1][0] - bounds[0][0]) / width, (bounds[1][1] - bounds[0][1]) / height),
64
+ scale = Math.min(scale, maxScale),
65
+ translate = [(width - scale * (bounds[1][0] + bounds[0][0])) / 2, (height - scale * (bounds[1][1] + bounds[0][1])) / 2];
66
+
67
+ projection
68
+ .scale(scale)
69
+ .translate(translate);
70
+
71
+ svg.selectAll("path")
72
+ .data(features)
73
+ .enter().append("path")
74
+ .attr("class", function(d) { return "subunit " + d.id + (countries.indexOf(d.id) !== -1 ? ' highlight' : ''); })
75
+ .attr("d", path);
76
+ });
77
+
78
+ </script>
79
+ </body>
80
+ </html>
@@ -0,0 +1 @@
1
+ topojson=function(){function e(e,n){function t(n){var t=e.arcs[n],r=t[0],o=[0,0];return t.forEach(function(e){o[0]+=e[0],o[1]+=e[1]}),[r,o]}var r={},o={};n.forEach(function(e){var n,a,i=t(e),u=i[0],c=i[1];if(n=o[u])if(delete o[n.end],n.push(e),n.end=c,a=r[c]){delete r[a.start];var s=a===n?n:n.concat(a);r[s.start=n.start]=o[s.end=a.end]=s}else if(a=o[c]){delete r[a.start],delete o[a.end];var s=n.concat(a.map(function(e){return~e}).reverse());r[s.start=n.start]=o[s.end=a.start]=s}else r[n.start]=o[n.end]=n;else if(n=r[c])if(delete r[n.start],n.unshift(e),n.start=u,a=o[u]){delete o[a.end];var f=a===n?n:a.concat(n);r[f.start=a.start]=o[f.end=n.end]=f}else if(a=r[u]){delete r[a.start],delete o[a.end];var f=a.map(function(e){return~e}).reverse().concat(n);r[f.start=a.end]=o[f.end=n.end]=f}else r[n.start]=o[n.end]=n;else if(n=r[u])if(delete r[n.start],n.unshift(~e),n.start=c,a=o[c]){delete o[a.end];var f=a===n?n:a.concat(n);r[f.start=a.start]=o[f.end=n.end]=f}else if(a=r[c]){delete r[a.start],delete o[a.end];var f=a.map(function(e){return~e}).reverse().concat(n);r[f.start=a.end]=o[f.end=n.end]=f}else r[n.start]=o[n.end]=n;else if(n=o[c])if(delete o[n.end],n.push(~e),n.end=u,a=o[u]){delete r[a.start];var s=a===n?n:n.concat(a);r[s.start=n.start]=o[s.end=a.end]=s}else if(a=r[u]){delete r[a.start],delete o[a.end];var s=n.concat(a.map(function(e){return~e}).reverse());r[s.start=n.start]=o[s.end=a.start]=s}else r[n.start]=o[n.end]=n;else n=[e],r[n.start=u]=o[n.end=c]=n});var a=[];for(var i in o)a.push(o[i]);return a}function n(n,t,r){function a(e){0>e&&(e=~e),(l[e]||(l[e]=[])).push(f)}function i(e){e.forEach(a)}function u(e){e.forEach(i)}function c(e){"GeometryCollection"===e.type?e.geometries.forEach(c):e.type in d&&(f=e,d[e.type](e.arcs))}var s=[];if(arguments.length>1){var f,l=[],d={LineString:i,MultiLineString:u,Polygon:u,MultiPolygon:function(e){e.forEach(u)}};c(t),l.forEach(arguments.length<3?function(e,n){s.push(n)}:function(e,n){r(e[0],e[e.length-1])&&s.push(n)})}else for(var p=0,v=n.arcs.length;v>p;++p)s.push(p);return o(n,{type:"MultiLineString",arcs:e(n,s)})}function t(e,n){return"GeometryCollection"===n.type?{type:"FeatureCollection",features:n.geometries.map(function(n){return r(e,n)})}:r(e,n)}function r(e,n){var t={type:"Feature",id:n.id,properties:n.properties||{},geometry:o(e,n)};return null==n.id&&delete t.id,t}function o(e,n){function t(e,n){n.length&&n.pop();for(var t,r=f[0>e?~e:e],o=0,i=r.length;i>o;++o)n.push(t=r[o].slice()),s(t,o);0>e&&a(n,i)}function r(e){return e=e.slice(),s(e,0),e}function o(e){for(var n=[],r=0,o=e.length;o>r;++r)t(e[r],n);return n.length<2&&n.push(n[0].slice()),n}function i(e){for(var n=o(e);n.length<4;)n.push(n[0].slice());return n}function u(e){return e.map(i)}function c(e){var n=e.type;return"GeometryCollection"===n?{type:n,geometries:e.geometries.map(c)}:n in l?{type:n,coordinates:l[n](e)}:null}var s=d(e.transform),f=e.arcs,l={Point:function(e){return r(e.coordinates)},MultiPoint:function(e){return e.coordinates.map(r)},LineString:function(e){return o(e.arcs)},MultiLineString:function(e){return e.arcs.map(o)},Polygon:function(e){return u(e.arcs)},MultiPolygon:function(e){return e.arcs.map(u)}};return c(n)}function a(e,n){for(var t,r=e.length,o=r-n;o<--r;)t=e[o],e[o++]=e[r],e[r]=t}function i(e,n){for(var t=0,r=e.length;r>t;){var o=t+r>>>1;e[o]<n?t=o+1:r=o}return t}function u(e){function n(e,n){e.forEach(function(e){0>e&&(e=~e);var t=o[e];t?t.push(n):o[e]=[n]})}function t(e,t){e.forEach(function(e){n(e,t)})}function r(e,n){"GeometryCollection"===e.type?e.geometries.forEach(function(e){r(e,n)}):e.type in u&&u[e.type](e.arcs,n)}var o={},a=e.map(function(){return[]}),u={LineString:n,MultiLineString:t,Polygon:t,MultiPolygon:function(e,n){e.forEach(function(e){t(e,n)})}};e.forEach(r);for(var c in o)for(var s=o[c],f=s.length,l=0;f>l;++l)for(var d=l+1;f>d;++d){var p,v=s[l],h=s[d];(p=a[v])[c=i(p,h)]!==h&&p.splice(c,0,h),(p=a[h])[c=i(p,v)]!==v&&p.splice(c,0,v)}return a}function c(e,n){function t(e){i.remove(e),e[1][2]=n(e),i.push(e)}var r,o=d(e.transform),a=p(e.transform),i=l(f),u=0;for(n||(n=s),e.arcs.forEach(function(e){var t=[];e.forEach(o);for(var a=1,u=e.length-1;u>a;++a)r=e.slice(a-1,a+2),r[1][2]=n(r),t.push(r),i.push(r);e[0][2]=e[u][2]=1/0;for(var a=0,u=t.length;u>a;++a)r=t[a],r.previous=t[a-1],r.next=t[a+1]});r=i.pop();){var c=r.previous,v=r.next;r[1][2]<u?r[1][2]=u:u=r[1][2],c&&(c.next=v,c[2]=r[2],t(c)),v&&(v.previous=c,v[0]=r[0],t(v))}return e.arcs.forEach(function(e){e.forEach(a)}),e}function s(e){return Math.abs((e[0][0]-e[2][0])*(e[1][1]-e[0][1])-(e[0][0]-e[1][0])*(e[2][1]-e[0][1]))}function f(e,n){return e[1][2]-n[1][2]}function l(e){function n(n){for(var t=o[n];n>0;){var r=(n+1>>1)-1,a=o[r];if(e(t,a)>=0)break;o[a.index=n]=a,o[t.index=n=r]=t}}function t(n){for(var t=o[n];;){var r=n+1<<1,a=r-1,i=n,u=o[i];if(a<o.length&&e(o[a],u)<0&&(u=o[i=a]),r<o.length&&e(o[r],u)<0&&(u=o[i=r]),i===n)break;o[u.index=n]=u,o[t.index=n=i]=t}}var r={},o=[];return r.push=function(){for(var e=0,t=arguments.length;t>e;++e){var r=arguments[e];n(r.index=o.push(r)-1)}return o.length},r.pop=function(){var e=o[0],n=o.pop();return o.length&&(o[n.index=0]=n,t(0)),e},r.remove=function(r){var a=r.index,i=o.pop();return a!==o.length&&(o[i.index=a]=i,(e(i,r)<0?n:t)(a)),a},r}function d(e){if(!e)return v;var n,t,r=e.scale[0],o=e.scale[1],a=e.translate[0],i=e.translate[1];return function(e,u){u||(n=t=0),e[0]=(n+=e[0])*r+a,e[1]=(t+=e[1])*o+i}}function p(e){if(!e)return v;var n,t,r=e.scale[0],o=e.scale[1],a=e.translate[0],i=e.translate[1];return function(e,u){u||(n=t=0);var c=0|(e[0]-a)/r,s=0|(e[1]-i)/o;e[0]=c-n,e[1]=s-t,n=c,t=s}}function v(){}return{version:"1.4.0",mesh:n,feature:t,neighbors:u,presimplify:c}}();
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'snapa/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "snapa"
8
+ spec.version = Snapa::VERSION
9
+ spec.authors = ["Ben Tillman"]
10
+ spec.email = ["ben.tillman@gmail.com"]
11
+ spec.description = %q{Uses phantomjs to render and take a png snapshot of part of a page}
12
+ spec.summary = %q{Use this gem to render your page with phantomjs and take a png snapshot
13
+ of the rendered body / css selector, usefull for generating an IE friendly
14
+ version of an svg or html5 canvas. A map example is provided by passing :map
15
+ to the initializer.}
16
+ spec.homepage = ""
17
+ spec.license = "MIT"
18
+
19
+ spec.files = `git ls-files`.split($/)
20
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
21
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_dependency "rack"
25
+ spec.add_development_dependency "bundler", "~> 1.3"
26
+ spec.add_development_dependency "rake"
27
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: snapa
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ben Tillman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rack
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Uses phantomjs to render and take a png snapshot of part of a page
56
+ email:
57
+ - ben.tillman@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - config.ru
68
+ - lib/snapa.js
69
+ - lib/snapa.rb
70
+ - lib/snapa/version.rb
71
+ - public/countries.json
72
+ - public/d3.v3.min.js
73
+ - public/map.html
74
+ - public/topojson.v1.min.js
75
+ - snapa.gemspec
76
+ homepage: ''
77
+ licenses:
78
+ - MIT
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.0.6
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Use this gem to render your page with phantomjs and take a png snapshot of
100
+ the rendered body / css selector, usefull for generating an IE friendly version
101
+ of an svg or html5 canvas. A map example is provided by passing :map to the initializer.
102
+ test_files: []
103
+ has_rdoc: