{"url":"https://api.github.com/gists/8423351","forks_url":"https://api.github.com/gists/8423351/forks","commits_url":"https://api.github.com/gists/8423351/commits","id":"8423351","node_id":"MDQ6R2lzdDg0MjMzNTE=","git_pull_url":"https://gist.github.com/8423351.git","git_push_url":"https://gist.github.com/8423351.git","html_url":"https://gist.github.com/mbostock/8423351","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/703d310b399098a243a76a50bc209167e924cfd2/.block","size":17,"truncated":false,"content":"license: gpl-3.0\n","encoding":"utf-8"},".gitignore":{"filename":".gitignore","type":"text/plain","language":"Ignore List","raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/f03556e8df38b8f516800d1b0cc3a38807917a60/.gitignore","size":29,"truncated":false,"content":".DS_Store\nbuild\nnode_modules\n","encoding":"utf-8"},"Makefile":{"filename":"Makefile","type":"text/plain","language":"Makefile","raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/b0bfc12467f7193a885ae073a11fc8dc4a670641/Makefile","size":715,"truncated":false,"content":"GENERATED_FILES = \\\n\tny.json\n\nall: $(GENERATED_FILES)\n\n.PHONY: clean all\n\nclean:\n\trm -rf -- $(GENERATED_FILES) build\n\nbuild/tl_2012_%_tract.zip:\n\tmkdir build\n\tcurl -o $@ 'http://www2.census.gov/geo/tiger/TIGER2012/TRACT/$(notdir $@)'\n\nbuild/tracts.shp: build/tl_2012_36_tract.zip\n\trm -rf $(basename $@)\n\tmkdir -p $(basename $@)\n\tunzip -d $(basename $@) $<\n\tfor file in $(basename $@)/*; do chmod 644 $$file; mv $$file $(basename $@).$${file##*.}; done\n\trmdir $(basename $@)\n\ttouch $@\n\nny.json: build/tracts.shp\n\tnode_modules/.bin/topojson -o $@ --q0=0 --simplify=1 --projection='d3.geo.mercator().center([-75.819, 42.795]).scale(6193).translate([480, 350]).precision(0)' --id-property=TRACTCE -- $(filter %.shp,$^)\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/464a8b07cfa57d0b95dbaaa77aeb1905252d85bb/README.md","size":86,"truncated":false,"content":"Makefile modeled after the [U.S. Atlas project](https://github.com/mbostock/us-atlas).","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/5d9f06bd5ef48908ba1591c7e0918ba73b302a3a/index.html","size":1229,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.tract {\n  fill: #ccc;\n}\n\n.tract:hover {\n  fill: orange;\n}\n\n.tract-border {\n  fill: none;\n  stroke: #333;\n  stroke-linejoin: round;\n  stroke-linecap: round;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script src=\"//d3js.org/topojson.v1.min.js\"></script>\n<script>\n\nvar width = 960,\n    height = 700;\n\nvar path = d3.geo.path()\n    .projection(null);\n\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width)\n    .attr(\"height\", height);\n\nd3.json(\"ny.json\", function(error, ny) {\n  if (error) throw error;\n\n  var tracts = ny.objects.tracts;\n\n  // strip water counties\n  tracts.geometries = tracts.geometries\n    .filter(function(d) { return (d.id / 10000 | 0) !== 99; });\n\n  svg.append(\"g\")\n    .selectAll(\"path\")\n      .data(topojson.feature(ny, tracts).features)\n    .enter().append(\"path\")\n      .attr(\"class\", \"tract\")\n      .attr(\"d\", path)\n    .append(\"title\")\n      .text(function(d, i) { return d.id; });\n\n  svg.append(\"path\")\n      .attr(\"class\", \"tract-border\")\n      .datum(topojson.mesh(ny, tracts, function(a, b) { return a !== b; }))\n      .attr(\"d\", path);\n});\n\nd3.select(self.frameElement).style(\"height\", height + \"px\");\n\n</script>\n","encoding":"utf-8"},"ny.json":{"filename":"ny.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/b351abf6bd92a284ffa7e07cdf5a2db7624bf2f8/ny.json","size":727449,"truncated":false,"content":"{\"type\":\"Topology\",\"objects\":{\"tracts\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"Polygon\",\"id\":\"960800\",\"arcs\":[[0,1,2]]},{\"type\":\"Polygon\",\"id\":\"960700\",\"arcs\":[[3,-2,4,5,6]]},{\"type\":\"Polygon\",\"id\":\"961200\",\"arcs\":[[7,8,9,10,11]]},{\"type\":\"Polygon\",\"id\":\"961100\",\"arcs\":[[12,13,-8,14,15]]},{\"type\":\"Polygon\",\"id\":\"961000\",\"arcs\":[[16,-13,17,18]]},{\"type\":\"Polygon\",\"id\":\"960200\",\"arcs\":[[19,20,21,-7,22,23]]},{\"type\":\"Polygon\",\"id\":\"960598\",\"arcs\":[[24,25,26,27,28]]},{\"type\":\"Polygon\",\"id\":\"960498\",\"arcs\":[[-29,29,30]]},{\"type\":\"Polygon\",\"id\":\"960300\",\"arcs\":[[31,-24,32,-25,-31,33,34]]},{\"type\":\"Polygon\",\"id\":\"961300\",\"arcs\":[[-15,-12,35,36,37]]},{\"type\":\"Polygon\",\"id\":\"960900\",\"arcs\":[[-33,-23,-6,38,-19,39,-26]]},{\"type\":\"Polygon\",\"id\":\"961400\",\"arcs\":[[40,-27,-40,-18,-16,-38,41,42,43]]},{\"type\":\"Polygon\",\"id\":\"960100\",\"arcs\":[[44,45,-3,-4,-22]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[46,47,48]]},{\"type\":\"Polygon\",\"id\":\"953900\",\"arcs\":[[49,50,51,52,53]]},{\"type\":\"Polygon\",\"id\":\"952800\",\"arcs\":[[54,55,56,57]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[58,59,60,61,62,63]]},{\"type\":\"Polygon\",\"id\":\"954600\",\"arcs\":[[64,65,66,67,68,69,70]]},{\"type\":\"Polygon\",\"id\":\"955000\",\"arcs\":[[71,72,73,74,75,-67]]},{\"type\":\"Polygon\",\"id\":\"953500\",\"arcs\":[[76,77]]},{\"type\":\"Polygon\",\"id\":\"951100\",\"arcs\":[[78,79,80,-61]]},{\"type\":\"Polygon\",\"id\":\"954400\",\"arcs\":[[81,82,83,84,85,86,87]]},{\"type\":\"Polygon\",\"id\":\"954900\",\"arcs\":[[88,89,-49,90,91,92,93]]},{\"type\":\"Polygon\",\"id\":\"951000\",\"arcs\":[[94,-62,-81,95,96,-73,97]]},{\"type\":\"Polygon\",\"id\":\"951700\",\"arcs\":[[98,99,100,101,102,103,104,105]]},{\"type\":\"Polygon\",\"id\":\"950900\",\"arcs\":[[106,107,108,-98,-72,-66,109,110,111]]},{\"type\":\"Polygon\",\"id\":\"955400\",\"arcs\":[[112,113,114,115,-84]]},{\"type\":\"Polygon\",\"id\":\"955300\",\"arcs\":[[116,117,-63,-95,-109]]},{\"type\":\"Polygon\",\"id\":\"952000\",\"arcs\":[[118,119,120,121]]},{\"type\":\"Polygon\",\"id\":\"953800\",\"arcs\":[[122,123,124,125,126,-50]]},{\"type\":\"Polygon\",\"id\":\"953000\",\"arcs\":[[127,128,129,130,-75]]},{\"type\":\"Polygon\",\"id\":\"952200\",\"arcs\":[[131,132,-105,133,134,135]]},{\"type\":\"Polygon\",\"id\":\"951800\",\"arcs\":[[136,-100,137,-119,138]]},{\"type\":\"Polygon\",\"id\":\"952300\",\"arcs\":[[139,-136,140,141]]},{\"type\":\"Polygon\",\"id\":\"951300\",\"arcs\":[[-92,142,143,144,145]]},{\"type\":\"Polygon\",\"id\":\"953300\",\"arcs\":[[146,-57,147,148,149,-129],[150,-78]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[151,-94,152,153,-59,154]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[155,156,157,-47,-90]]},{\"type\":\"Polygon\",\"id\":\"951400\",\"arcs\":[[-145,158,-101,-137,159,160]]},{\"type\":\"Polygon\",\"id\":\"951500\",\"arcs\":[[-153,-93,-146,-161,161,-142,162,163,164]]},{\"type\":\"Polygon\",\"id\":\"952100\",\"arcs\":[[165,-121,166,-106,-133]]},{\"type\":\"Polygon\",\"id\":\"952500\",\"arcs\":[[167,168,-103]]},{\"type\":\"Polygon\",\"id\":\"952900\",\"arcs\":[[169,170,-58,-147,-128,-74,-97]]},{\"type\":\"Polygon\",\"id\":\"953600\",\"arcs\":[[171,172,173]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[-154,-165,174,-79,-60]]},{\"type\":\"Polygon\",\"id\":\"954500\",\"arcs\":[[175,-68,-76,-131,176,-82,177,178]]},{\"type\":\"Polygon\",\"id\":\"954200\",\"arcs\":[[-130,-150,179,180,-113,-83,-177]]},{\"type\":\"Polygon\",\"id\":\"954700\",\"arcs\":[[181,-70,182,-179,183,184]]},{\"type\":\"Polygon\",\"id\":\"951200\",\"arcs\":[[-80,-175,-164,185,186,-170,-96]]},{\"type\":\"Polygon\",\"id\":\"954100\",\"arcs\":[[-52,187,188]]},{\"type\":\"Polygon\",\"id\":\"951900\",\"arcs\":[[-138,-99,-167,-120]]},{\"type\":\"Polygon\",\"id\":\"951600\",\"arcs\":[[-141,-135,189,190,-186,-163]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[191,192,193,194,-156,-89,-152,195]]},{\"type\":\"Polygon\",\"id\":\"954000\",\"arcs\":[[-181,196,-53,-189,197,198,-114]]},{\"type\":\"Polygon\",\"id\":\"953700\",\"arcs\":[[199,200,201,202,-174,203,204,-123,-54,-197,-180,-149]]},{\"type\":\"Polygon\",\"id\":\"954800\",\"arcs\":[[-176,-183,-69]]},{\"type\":\"Polygon\",\"id\":\"953400\",\"arcs\":[[-77,-151]]},{\"type\":\"Polygon\",\"id\":\"952700\",\"arcs\":[[-187,-191,205,-55,-171]]},{\"type\":\"Polygon\",\"id\":\"952400\",\"arcs\":[[-160,-139,-122,-166,-132,-140,-162]]},{\"type\":\"Polygon\",\"id\":\"952600\",\"arcs\":[[-206,-190,-134,-104,-169,206,207,208,-200,-148,-56]]},{\"type\":\"Polygon\",\"id\":\"951800\",\"arcs\":[[209,210,211]]},{\"type\":\"Polygon\",\"id\":\"951600\",\"arcs\":[[212,213,214,-212,215,216]]},{\"type\":\"Polygon\",\"id\":\"951500\",\"arcs\":[[217,218,219,-210,-215,220]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[-111,221,222,223,224,225,226]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[-222,-110,-65,227,228]]},{\"type\":\"Polygon\",\"id\":\"951200\",\"arcs\":[[-178,-88,229,230,231,232,233]]},{\"type\":\"Polygon\",\"id\":\"952500\",\"arcs\":[[234,235,236,237,238]]},{\"type\":\"Polygon\",\"id\":\"950700\",\"arcs\":[[239,240]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[-224,241,-241,242,243,244,245]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[-229,246,247,-221,-214,248,-243,-240,-242,-223]]},{\"type\":\"Polygon\",\"id\":\"952400\",\"arcs\":[[249,250,-239,251]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[252,-226,253,254,255,256]]},{\"type\":\"Polygon\",\"id\":\"951700\",\"arcs\":[[-211,-220,257,258,259,260,-236,-216]]},{\"type\":\"Polygon\",\"id\":\"951300\",\"arcs\":[[261,-184,-234,262,263,-260]]},{\"type\":\"Polygon\",\"id\":\"951100\",\"arcs\":[[-185,-262,-259,264,265]]},{\"type\":\"Polygon\",\"id\":\"951000\",\"arcs\":[[266,-265,-258,-219,267]]},{\"type\":\"Polygon\",\"id\":\"950900\",\"arcs\":[[268,-268,-218,-248]]},{\"type\":\"Polygon\",\"id\":\"950800\",\"arcs\":[[-228,-71,-182,-266,-267,-269,-247]]},{\"type\":\"Polygon\",\"id\":\"952100\",\"arcs\":[[-255,269,270,271,272]]},{\"type\":\"Polygon\",\"id\":\"952200\",\"arcs\":[[-272,273,274,275]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[-225,-246,276,-270,-254]]},{\"type\":\"Polygon\",\"id\":\"952000\",\"arcs\":[[-245,277,-217,-235,-251,278,-274,-271,-277]]},{\"type\":\"Polygon\",\"id\":\"951900\",\"arcs\":[[-244,-249,-213,-278]]},{\"type\":\"Polygon\",\"id\":\"952300\",\"arcs\":[[-275,-279,-250,279]]},{\"type\":\"Polygon\",\"id\":\"010900\",\"arcs\":[[280,281,282,283,284]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[285,286,287,288,289,290,291]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[292,-283,293,294,295,296]]},{\"type\":\"Polygon\",\"id\":\"010700\",\"arcs\":[[-290,297,298,299,300,301,302,303,304]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[-297,305,306,307,308]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[309,310,311]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[-311,312,313,314,-281]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[315,316,317,318,-314]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-304,319,-284,-293,-309,320,321,322,323]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[324,-291,-305,-324,325,326,327,328]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-289,329,330,-306,-296,331,332,333,-298]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[-315,-319,334,-282]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[-299,-334,335,336,337]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[338,-316,-313,-310,339]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[340,-337,-340,-312,-285,-320,-303]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[341,342,343,-318]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[-300,-338,-341,-302,344]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[345,-295,346,-343]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-332,-346,-342,-317,347]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[-344,-347,-294,-335]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[-345,-301]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-333,-348,-339,-336]]},{\"type\":\"Polygon\",\"id\":\"008900\",\"arcs\":[[348,349,350,351]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[352,353,354,355]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[356,357,358,359]]},{\"type\":\"Polygon\",\"id\":\"017700\",\"arcs\":[[360,361,362,363]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[364,365,366,367]]},{\"type\":\"Polygon\",\"id\":\"026100\",\"arcs\":[[368,369,370,371]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[372,373,374,375,376,377]]},{\"type\":\"Polygon\",\"id\":\"016600\",\"arcs\":[[378,379,380,381,382,383]]},{\"type\":\"Polygon\",\"id\":\"005600\",\"arcs\":[[384,385,386,387]]},{\"type\":\"Polygon\",\"id\":\"005200\",\"arcs\":[[388,-387,389,390]]},{\"type\":\"Polygon\",\"id\":\"008200\",\"arcs\":[[391,392,393,394,395]]},{\"type\":\"Polygon\",\"id\":\"003602\",\"arcs\":[[396,397,398,399]]},{\"type\":\"Polygon\",\"id\":\"005700\",\"arcs\":[[400,401,402,403,404,405]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[406,407,-406,408,409]]},{\"type\":\"Polygon\",\"id\":\"002800\",\"arcs\":[[410,411,412,413,414]]},{\"type\":\"Polygon\",\"id\":\"004800\",\"arcs\":[[415,416,417,418]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[419,420,421,422,423,424]]},{\"type\":\"Polygon\",\"id\":\"004700\",\"arcs\":[[425,426,427,428]]},{\"type\":\"Polygon\",\"id\":\"001002\",\"arcs\":[[429,430,431,432,433,434]]},{\"type\":\"Polygon\",\"id\":\"017900\",\"arcs\":[[435,-364,436,437]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[438,439,440,441,442,443,444]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[445,446,447,448,449,-378,450,451]]},{\"type\":\"Polygon\",\"id\":\"019900\",\"arcs\":[[452,453,454,455,456]]},{\"type\":\"Polygon\",\"id\":\"009800\",\"arcs\":[[457,458,459,460]]},{\"type\":\"Polygon\",\"id\":\"018600\",\"arcs\":[[461,462,463,464,465,466]]},{\"type\":\"Polygon\",\"id\":\"004900\",\"arcs\":[[467,468,469,470,471,-426]]},{\"type\":\"Polygon\",\"id\":\"006700\",\"arcs\":[[472,473,474,475,476]]},{\"type\":\"Polygon\",\"id\":\"009700\",\"arcs\":[[477,478,479,480]]},{\"type\":\"Polygon\",\"id\":\"027300\",\"arcs\":[[481,482,483,484,485]]},{\"type\":\"Polygon\",\"id\":\"004000\",\"arcs\":[[486,-418,487,488]]},{\"type\":\"Polygon\",\"id\":\"010900\",\"arcs\":[[489,490,491,492,493]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[-493,494,495,496]]},{\"type\":\"Polygon\",\"id\":\"007300\",\"arcs\":[[497,-473,498,499,500]]},{\"type\":\"Polygon\",\"id\":\"015002\",\"arcs\":[[501,502,503,504]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[505,506,507,508,509]]},{\"type\":\"Polygon\",\"id\":\"003002\",\"arcs\":[[510,511,512,-398]]},{\"type\":\"Polygon\",\"id\":\"005501\",\"arcs\":[[513,-409,-405,514,-470]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[515,-434,516,517,518,519]]},{\"type\":\"Polygon\",\"id\":\"009200\",\"arcs\":[[520,521,522,523,-394,524]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[525,526,527,528,529]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[530,531,532,533]]},{\"type\":\"Polygon\",\"id\":\"008000\",\"arcs\":[[-524,534,535,536,-395]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[537,538,539,540]]},{\"type\":\"Polygon\",\"id\":\"002900\",\"arcs\":[[541,542,543,544,545,-508]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-450,546,547,548,-373]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[-428,-506,549,550,551]]},{\"type\":\"Polygon\",\"id\":\"007200\",\"arcs\":[[552,-537,553,554,555,556]]},{\"type\":\"Polygon\",\"id\":\"023501\",\"arcs\":[[557,558,559,560,561,562]]},{\"type\":\"Polygon\",\"id\":\"007100\",\"arcs\":[[563,564,565,566,-474,-498]]},{\"type\":\"Polygon\",\"id\":\"008800\",\"arcs\":[[-523,567,568,569,570,-535]]},{\"type\":\"Polygon\",\"id\":\"006900\",\"arcs\":[[571,-499,-477,572,573]]},{\"type\":\"Polygon\",\"id\":\"002602\",\"arcs\":[[-414,574,575,576]]},{\"type\":\"Polygon\",\"id\":\"009500\",\"arcs\":[[-496,577,578,579,-479]]},{\"type\":\"Polygon\",\"id\":\"006100\",\"arcs\":[[-391,580,-401,-408,581]]},{\"type\":\"Polygon\",\"id\":\"030700\",\"arcs\":[[582,583,584]]},{\"type\":\"Polygon\",\"id\":\"016200\",\"arcs\":[[585,586,587,588,589,590,591,592,593]]},{\"type\":\"Polygon\",\"id\":\"002700\",\"arcs\":[[594,595,596,-544]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[597,-500,-572,598,599]]},{\"type\":\"Polygon\",\"id\":\"003200\",\"arcs\":[[600,601,-415,-577,602,-511]]},{\"type\":\"Polygon\",\"id\":\"006800\",\"arcs\":[[-557,603,604,605,-386]]},{\"type\":\"Polygon\",\"id\":\"017800\",\"arcs\":[[606,607,608,609,-589]]},{\"type\":\"Polygon\",\"id\":\"002400\",\"arcs\":[[-413,610,611,612,613,-575]]},{\"type\":\"Polygon\",\"id\":\"017401\",\"arcs\":[[614,615,616,617]]},{\"type\":\"Polygon\",\"id\":\"019300\",\"arcs\":[[618,619,620,621,622]]},{\"type\":\"Polygon\",\"id\":\"019100\",\"arcs\":[[623,624,625,626]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[627,628,629,-555]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[630,631,632,633]]},{\"type\":\"Polygon\",\"id\":\"003601\",\"arcs\":[[-399,634,-440,635]]},{\"type\":\"Polygon\",\"id\":\"007600\",\"arcs\":[[-578,-495,-492,636,637,638]]},{\"type\":\"Polygon\",\"id\":\"018400\",\"arcs\":[[-464,639,640,641,642]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[643,-550,-510,-447,644]]},{\"type\":\"Polygon\",\"id\":\"018700\",\"arcs\":[[-626,645,646,647,648]]},{\"type\":\"Polygon\",\"id\":\"023400\",\"arcs\":[[649,650,651]]},{\"type\":\"Polygon\",\"id\":\"027900\",\"arcs\":[[652,653,654,655,656,657]]},{\"type\":\"Polygon\",\"id\":\"004500\",\"arcs\":[[-427,-472,658,659,-507]]},{\"type\":\"Polygon\",\"id\":\"022000\",\"arcs\":[[660,661,662,663,664]]},{\"type\":\"Polygon\",\"id\":\"007900\",\"arcs\":[[665,666,667,-600,668]]},{\"type\":\"Polygon\",\"id\":\"008300\",\"arcs\":[[669,-351,670,671,-667]]},{\"type\":\"Polygon\",\"id\":\"006400\",\"arcs\":[[-605,672,673,674,675,-416,676]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[-606,-677,-419,677,-390]]},{\"type\":\"Polygon\",\"id\":\"028500\",\"arcs\":[[678,679,680,681]]},{\"type\":\"Polygon\",\"id\":\"011201\",\"arcs\":[[682,683,684,685]]},{\"type\":\"Polygon\",\"id\":\"001502\",\"arcs\":[[686,687,-547,-449]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[688,689,690,691,692,693,694,-362,695,696,697,-621,698,-466,-618,699,700,701,-505,702,703,704,-634,705,-683,706,-422]]},{\"type\":\"Polygon\",\"id\":\"024301\",\"arcs\":[[707,708,709,710,711]]},{\"type\":\"Polygon\",\"id\":\"006600\",\"arcs\":[[-604,-556,-630,712,-673]]},{\"type\":\"Polygon\",\"id\":\"019400\",\"arcs\":[[713,714,715,716]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[717,-403,718,-489,-601,-397]]},{\"type\":\"Polygon\",\"id\":\"009300\",\"arcs\":[[719,-480,720,-349]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[721,-444,722,-526,723,-595,-543]]},{\"type\":\"Polygon\",\"id\":\"006500\",\"arcs\":[[-567,724,-410,-514,-469,725,-475]]},{\"type\":\"Polygon\",\"id\":\"022800\",\"arcs\":[[726,727,728,729]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[730,-494,731,732]]},{\"type\":\"Polygon\",\"id\":\"010000\",\"arcs\":[[-539,733,734,-461,-521]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-732,-497,-478,735]]},{\"type\":\"Polygon\",\"id\":\"005502\",\"arcs\":[[-404,-718,-400,736,-515]]},{\"type\":\"Polygon\",\"id\":\"008100\",\"arcs\":[[-671,737,738,-565,739]]},{\"type\":\"Polygon\",\"id\":\"004300\",\"arcs\":[[-471,-737,-636,-439,740,-659]]},{\"type\":\"Polygon\",\"id\":\"001001\",\"arcs\":[[-433,741,742,743,744,-517]]},{\"type\":\"Polygon\",\"id\":\"002601\",\"arcs\":[[-576,745,746,-603]]},{\"type\":\"Polygon\",\"id\":\"017300\",\"arcs\":[[747,-363,-695,748]]},{\"type\":\"Polygon\",\"id\":\"001402\",\"arcs\":[[749,750,-520,751,-442]]},{\"type\":\"Polygon\",\"id\":\"004100\",\"arcs\":[[-660,-741,-445,-722,-542]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[-530,752,753,-596,-724]]},{\"type\":\"Polygon\",\"id\":\"014900\",\"arcs\":[[754,-689,-421,755]]},{\"type\":\"Polygon\",\"id\":\"000202\",\"arcs\":[[756,-518,-745,757,758,759]]},{\"type\":\"Polygon\",\"id\":\"003001\",\"arcs\":[[-635,-513,760,-750,-441]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[-488,761,-411,-602]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[762,-376,763,764,765,766]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[767,768,769,-685,-541,770]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[-746,-614,771,772,-430,773]]},{\"type\":\"Polygon\",\"id\":\"008400\",\"arcs\":[[774,775,-392,-637,-491]]},{\"type\":\"Polygon\",\"id\":\"014802\",\"arcs\":[[776,777,778,779,-503]]},{\"type\":\"Polygon\",\"id\":\"002201\",\"arcs\":[[780,-435,-516,-751,-761]]},{\"type\":\"Polygon\",\"id\":\"004200\",\"arcs\":[[-487,-719,-402,-581,-678]]},{\"type\":\"Polygon\",\"id\":\"001501\",\"arcs\":[[-509,-546,781,782,783,-687,-448]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[-551,-644,784,785,786]]},{\"type\":\"Polygon\",\"id\":\"014402\",\"arcs\":[[787,788,789,790]]},{\"type\":\"Polygon\",\"id\":\"031900\",\"arcs\":[[-451,-377,-763,791,792]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[793,794,795,796,797]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[798,-789,799,800,801,-367]]},{\"type\":\"Polygon\",\"id\":\"019702\",\"arcs\":[[802,803,-620,804]]},{\"type\":\"Polygon\",\"id\":\"020300\",\"arcs\":[[805,806,807,-454,808]]},{\"type\":\"Polygon\",\"id\":\"015500\",\"arcs\":[[809,810,811,812]]},{\"type\":\"Polygon\",\"id\":\"015001\",\"arcs\":[[-504,813,814,-703]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[-425,815,816]]},{\"type\":\"Polygon\",\"id\":\"027500\",\"arcs\":[[817,-486,818,819,820]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[-354,-533,821,-731]]},{\"type\":\"Polygon\",\"id\":\"002202\",\"arcs\":[[-512,-747,-774,-781]]},{\"type\":\"Polygon\",\"id\":\"009000\",\"arcs\":[[-460,822,823,-568,-522]]},{\"type\":\"Polygon\",\"id\":\"022600\",\"arcs\":[[-729,824,825,826,827]]},{\"type\":\"Polygon\",\"id\":\"006000\",\"arcs\":[[-675,828,829,830,831]]},{\"type\":\"Polygon\",\"id\":\"005800\",\"arcs\":[[832,-579,-639,-388,833,834]]},{\"type\":\"Polygon\",\"id\":\"002500\",\"arcs\":[[-597,-754,835,-782,-545]]},{\"type\":\"Polygon\",\"id\":\"006200\",\"arcs\":[[-713,-629,836,837,838,839,-829,-674]]},{\"type\":\"Polygon\",\"id\":\"028300\",\"arcs\":[[-681,840,841,-655]]},{\"type\":\"Polygon\",\"id\":\"020701\",\"arcs\":[[842,843,-807]]},{\"type\":\"Polygon\",\"id\":\"029700\",\"arcs\":[[844,845,846,847,-583,848,849,850,851]]},{\"type\":\"Polygon\",\"id\":\"029100\",\"arcs\":[[852,853,-679,854,855]]},{\"type\":\"Polygon\",\"id\":\"026700\",\"arcs\":[[856,857]]},{\"type\":\"Polygon\",\"id\":\"025500\",\"arcs\":[[858,-820,859,860,861,862,863]]},{\"type\":\"Polygon\",\"id\":\"025100\",\"arcs\":[[864,865,-712,866,-863]]},{\"type\":\"Polygon\",\"id\":\"028100\",\"arcs\":[[867,-653,868,-483]]},{\"type\":\"Polygon\",\"id\":\"030900\",\"arcs\":[[869,870,871,872,873,-847]]},{\"type\":\"Polygon\",\"id\":\"023600\",\"arcs\":[[874,875,876,877,878,-651,879]]},{\"type\":\"Polygon\",\"id\":\"020901\",\"arcs\":[[880,881,882,883,884]]},{\"type\":\"Polygon\",\"id\":\"025300\",\"arcs\":[[-862,885,-371,886,887,-865]]},{\"type\":\"Polygon\",\"id\":\"022302\",\"arcs\":[[888,889,890]]},{\"type\":\"Polygon\",\"id\":\"023300\",\"arcs\":[[891,892,893,894]]},{\"type\":\"Polygon\",\"id\":\"030300\",\"arcs\":[[-849,-585,895,896,897]]},{\"type\":\"Polygon\",\"id\":\"011203\",\"arcs\":[[898,899,-734,900]]},{\"type\":\"Polygon\",\"id\":\"009600\",\"arcs\":[[901,902,-771,903,-776]]},{\"type\":\"Polygon\",\"id\":\"023200\",\"arcs\":[[904,-652,-879,905,906]]},{\"type\":\"Polygon\",\"id\":\"011401\",\"arcs\":[[-706,-633,907,908]]},{\"type\":\"Polygon\",\"id\":\"022500\",\"arcs\":[[909,910,911,912,913]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[-728,914,915,916,917,-825]]},{\"type\":\"Polygon\",\"id\":\"024302\",\"arcs\":[[918,919,920,-875,921,-560]]},{\"type\":\"Polygon\",\"id\":\"022200\",\"arcs\":[[922,923,-661,924]]},{\"type\":\"Polygon\",\"id\":\"010601\",\"arcs\":[[925,926,927,928]]},{\"type\":\"Polygon\",\"id\":\"024500\",\"arcs\":[[-867,-711,929,930,931]]},{\"type\":\"Polygon\",\"id\":\"023700\",\"arcs\":[[932,-563,-892,933]]},{\"type\":\"Polygon\",\"id\":\"008700\",\"arcs\":[[-350,934,-835,935,-738]]},{\"type\":\"Polygon\",\"id\":\"022400\",\"arcs\":[[-827,936,-923,937]]},{\"type\":\"Polygon\",\"id\":\"026300\",\"arcs\":[[-861,938,939,-372,-886]]},{\"type\":\"Polygon\",\"id\":\"023000\",\"arcs\":[[940,941,-907,942,-915,-727]]},{\"type\":\"Polygon\",\"id\":\"018800\",\"arcs\":[[-716,-608,943,944]]},{\"type\":\"Polygon\",\"id\":\"020800\",\"arcs\":[[-826,-918,945,946,-937]]},{\"type\":\"Polygon\",\"id\":\"021400\",\"arcs\":[[-943,-906,-878,947,-916]]},{\"type\":\"Polygon\",\"id\":\"021303\",\"arcs\":[[948,949,950,-882,951]]},{\"type\":\"Polygon\",\"id\":\"008602\",\"arcs\":[[-569,-824,952,953,954,955]]},{\"type\":\"Polygon\",\"id\":\"020101\",\"arcs\":[[-808,-844,956]]},{\"type\":\"Polygon\",\"id\":\"019000\",\"arcs\":[[957,-663,958,-640,-463]]},{\"type\":\"Polygon\",\"id\":\"024100\",\"arcs\":[[959,960,-931,961,-933]]},{\"type\":\"Polygon\",\"id\":\"018900\",\"arcs\":[[-625,-622,-698,962,-646]]},{\"type\":\"Polygon\",\"id\":\"019500\",\"arcs\":[[-456,-623,-624,963]]},{\"type\":\"Polygon\",\"id\":\"019701\",\"arcs\":[[-957,-843,964,-884,965,966,-805,-619,-455]]},{\"type\":\"Polygon\",\"id\":\"022102\",\"arcs\":[[967,968,-941,-730,969,970]]},{\"type\":\"Polygon\",\"id\":\"023502\",\"arcs\":[[-922,-880,971,-561]]},{\"type\":\"Polygon\",\"id\":\"027700\",\"arcs\":[[-656,-842,972,973]]},{\"type\":\"Polygon\",\"id\":\"021000\",\"arcs\":[[-948,-877,974,975,976,977,-917]]},{\"type\":\"Polygon\",\"id\":\"018500\",\"arcs\":[[-647,-963,-697,978,979]]},{\"type\":\"Polygon\",\"id\":\"004400\",\"arcs\":[[-676,-832,980,981,-611,-412,-762,-417]]},{\"type\":\"Polygon\",\"id\":\"031704\",\"arcs\":[[982,-452,-793,983]]},{\"type\":\"Polygon\",\"id\":\"031703\",\"arcs\":[[-645,-446,-983,984,-785]]},{\"type\":\"Polygon\",\"id\":\"023802\",\"arcs\":[[985,986,-801,987,988,989,990]]},{\"type\":\"Polygon\",\"id\":\"023801\",\"arcs\":[[991,-927,992,-359,-991,993,994,-954]]},{\"type\":\"Polygon\",\"id\":\"023100\",\"arcs\":[[995,-893,-562,996,997]]},{\"type\":\"Polygon\",\"id\":\"022700\",\"arcs\":[[-911,998,-998,999,-968,1000]]},{\"type\":\"Polygon\",\"id\":\"008603\",\"arcs\":[[-459,-928,-992,-953,-823]]},{\"type\":\"Polygon\",\"id\":\"008601\",\"arcs\":[[-570,-956,1001,-837,1002]]},{\"type\":\"Polygon\",\"id\":\"029900\",\"arcs\":[[1003,-896,-584,-848,-874,1004,1005,1006,1007,-854]]},{\"type\":\"Polygon\",\"id\":\"022301\",\"arcs\":[[1008,-913,1009,-949,1010,-889]]},{\"type\":\"Polygon\",\"id\":\"018200\",\"arcs\":[[1011,-945,1012,1013,-642]]},{\"type\":\"Polygon\",\"id\":\"016400\",\"arcs\":[[-381,1014,-586,1015]]},{\"type\":\"Polygon\",\"id\":\"000201\",\"arcs\":[[-760,1016,-528,1017]]},{\"type\":\"Polygon\",\"id\":\"028700\",\"arcs\":[[-851,1018,-855,-682,-654,-868,-482,-818,1019]]},{\"type\":\"Polygon\",\"id\":\"017402\",\"arcs\":[[-465,-643,1020,-615]]},{\"type\":\"Polygon\",\"id\":\"020102\",\"arcs\":[[1021,1022,-803,-967]]},{\"type\":\"Polygon\",\"id\":\"018100\",\"arcs\":[[-979,-696,-361,1023]]},{\"type\":\"Polygon\",\"id\":\"017100\",\"arcs\":[[1024,1025,1026,1027]]},{\"type\":\"Polygon\",\"id\":\"023900\",\"arcs\":[[-962,-930,-710,1028,-558]]},{\"type\":\"Polygon\",\"id\":\"016900\",\"arcs\":[[-1026,-749,-694,1029]]},{\"type\":\"Polygon\",\"id\":\"017000\",\"arcs\":[[1030,1031,-587,-1015,-380]]},{\"type\":\"Polygon\",\"id\":\"025900\",\"arcs\":[[-997,-972,-650,-905,-942,-969,-1000]]},{\"type\":\"Polygon\",\"id\":\"024200\",\"arcs\":[[1032,-977,1033,1034,1035,-714,1036]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[-573,-476,-726,-468,-429,-552,-787,1037]]},{\"type\":\"Polygon\",\"id\":\"025700\",\"arcs\":[[-883,1038,-925,-665,-1022,-966]]},{\"type\":\"Polygon\",\"id\":\"021500\",\"arcs\":[[-951,1039,-970,-828,-938,-1039]]},{\"type\":\"Polygon\",\"id\":\"017200\",\"arcs\":[[1040,-616,-1021,-1014,1041,-1031,-379]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[1042,1043,-769,1044]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[-812,-756,-420,-817,1045,1046]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[-802,-987,1047,1048]]},{\"type\":\"Polygon\",\"id\":\"015300\",\"arcs\":[[1049,-690,-755,-811]]},{\"type\":\"Polygon\",\"id\":\"026500\",\"arcs\":[[-819,-485,1050,-939,-860]]},{\"type\":\"Polygon\",\"id\":\"021900\",\"arcs\":[[-890,-1011,-952,-881,1051,1052]]},{\"type\":\"Polygon\",\"id\":\"024900\",\"arcs\":[[-888,1053,-708,-866]]},{\"type\":\"Polygon\",\"id\":\"017500\",\"arcs\":[[-437,-748,-1025,1054]]},{\"type\":\"Polygon\",\"id\":\"016700\",\"arcs\":[[-1027,1055,1056,1057]]},{\"type\":\"Polygon\",\"id\":\"016002\",\"arcs\":[[1058,1059,1060,-701]]},{\"type\":\"Polygon\",\"id\":\"018000\",\"arcs\":[[-1013,-944,-607,-588,-1032,-1042]]},{\"type\":\"Polygon\",\"id\":\"018300\",\"arcs\":[[1061,-648,-980,-1024,-436]]},{\"type\":\"Polygon\",\"id\":\"016500\",\"arcs\":[[-1030,-693,1062,-1056]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[-946,-978,-1033,1063]]},{\"type\":\"Polygon\",\"id\":\"016300\",\"arcs\":[[1064,-1057,1065,1066]]},{\"type\":\"Polygon\",\"id\":\"024700\",\"arcs\":[[-864,-932,-961,1067]]},{\"type\":\"Polygon\",\"id\":\"016100\",\"arcs\":[[-1063,-692,1068,-1066]]},{\"type\":\"Polygon\",\"id\":\"015700\",\"arcs\":[[-1069,-691,-1050,1069]]},{\"type\":\"Polygon\",\"id\":\"016001\",\"arcs\":[[-1061,1070,-502,-702]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[1071,-902,1072,-532]]},{\"type\":\"Polygon\",\"id\":\"019800\",\"arcs\":[[-1064,1073,-641,1074]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[-705,1075,1076,-631]]},{\"type\":\"Polygon\",\"id\":\"021600\",\"arcs\":[[-804,1077,-467,-699]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[-1073,-775,-490,-822]]},{\"type\":\"Polygon\",\"id\":\"016800\",\"arcs\":[[-617,-1041,-384,-1059,-700]]},{\"type\":\"Polygon\",\"id\":\"019200\",\"arcs\":[[-1036,1078,1079,-609,-715]]},{\"type\":\"Polygon\",\"id\":\"015802\",\"arcs\":[[-383,1080,1081,-1060]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[1082,-1043,1083,1084]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[1085,-424,1086,-1083]]},{\"type\":\"Polygon\",\"id\":\"011402\",\"arcs\":[[1087,1088,-899,-908]]},{\"type\":\"Polygon\",\"id\":\"022900\",\"arcs\":[[1089,-894,-996,-999,-910]]},{\"type\":\"Polygon\",\"id\":\"015200\",\"arcs\":[[1090,1091,-593,1092,1093,-988,-800,-788]]},{\"type\":\"Polygon\",\"id\":\"021703\",\"arcs\":[[-1010,-912,-1001,-971,-1040,-950]]},{\"type\":\"Polygon\",\"id\":\"001401\",\"arcs\":[[-443,-752,-519,-757,-1018,-527,-723]]},{\"type\":\"Polygon\",\"id\":\"024000\",\"arcs\":[[-610,-1080,1094,1095,1096,1097,-590]]},{\"type\":\"Polygon\",\"id\":\"029500\",\"arcs\":[[-850,-898,1098,-856,-1019]]},{\"type\":\"Polygon\",\"id\":\"015601\",\"arcs\":[[1099,-1092,1100,1101]]},{\"type\":\"Polygon\",\"id\":\"015801\",\"arcs\":[[-1082,-1102,1102,-777,-1071]]},{\"type\":\"Polygon\",\"id\":\"015400\",\"arcs\":[[-1103,-1101,-1091,1103,-778]]},{\"type\":\"Polygon\",\"id\":\"014601\",\"arcs\":[[1104,1105,-366,1106]]},{\"type\":\"Polygon\",\"id\":\"031100\",\"arcs\":[[-709,-1054,-887,-370,1107,-858,-973,-841,-680,-1008,1108,1109,1110,1111,1112,-919,-559,-1029]]},{\"type\":\"Polygon\",\"id\":\"029300\",\"arcs\":[[-1099,-897,-1004,-853]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[1113,-809,-453,1114]]},{\"type\":\"Polygon\",\"id\":\"014602\",\"arcs\":[[-779,-1104,-791,-1105]]},{\"type\":\"Polygon\",\"id\":\"015602\",\"arcs\":[[-382,-1016,-594,-1100,-1081]]},{\"type\":\"Polygon\",\"id\":\"015900\",\"arcs\":[[-1067,-1070,-810,1115]]},{\"type\":\"Polygon\",\"id\":\"011202\",\"arcs\":[[-684,-909,-901,-538]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[1116,-1045,-768,-903,-1072]]},{\"type\":\"Polygon\",\"id\":\"007400\",\"arcs\":[[-638,-396,-553,-385]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[-672,-740,-564,-501,-598,-668]]},{\"type\":\"Polygon\",\"id\":\"009900\",\"arcs\":[[-355,-733,-736,-481,-720,-352,-670,-666,1117]]},{\"type\":\"Polygon\",\"id\":\"014401\",\"arcs\":[[-1106,-790,-799]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[1118,1119,-534,-353,1120]]},{\"type\":\"Polygon\",\"id\":\"027100\",\"arcs\":[[-869,-658,1121,-940,-1051,-484]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[-735,-900,1122,-929,-458]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[1123,1124,-365,1125,1126]]},{\"type\":\"Polygon\",\"id\":\"010602\",\"arcs\":[[-360,-993,-926,1127]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-1089,1128,1129,-1128,-1123]]},{\"type\":\"Polygon\",\"id\":\"009400\",\"arcs\":[[-540,-525,-393,-904]]},{\"type\":\"Polygon\",\"id\":\"009100\",\"arcs\":[[-721,-580,-833,-935]]},{\"type\":\"Polygon\",\"id\":\"014200\",\"arcs\":[[-704,-815,-1124,-1076]]},{\"type\":\"Polygon\",\"id\":\"020000\",\"arcs\":[[-662,-924,-947,-1075,-959]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[-1126,-368,-1049,-796,1130]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[-1084,-1117,-531,-1120]]},{\"type\":\"Polygon\",\"id\":\"012400\",\"arcs\":[[-1048,-986,-358,-797]]},{\"type\":\"Polygon\",\"id\":\"013700\",\"arcs\":[[-1087,-423,-707,-686,-770,-1044]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[-1046,-816,-1086,-1085,-1119,1131]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[1132,-794,1133,-1129,-1088,-632]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[-739,-936,-834,-389,1134]]},{\"type\":\"Polygon\",\"id\":\"021100\",\"arcs\":[[-1052,-885,-965,-806,-1114,1135]]},{\"type\":\"Polygon\",\"id\":\"021800\",\"arcs\":[[-664,-958,-462,-1078,-1023]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[-1134,-798,-357,-1130]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[-1077,-1127,-1131,-795,-1133]]},{\"type\":\"Polygon\",\"id\":\"014801\",\"arcs\":[[-780,-1107,-1125,-814]]},{\"type\":\"Polygon\",\"id\":\"026900\",\"arcs\":[[-657,-974,-857,-1108,-369,-1122]]},{\"type\":\"Polygon\",\"id\":\"019600\",\"arcs\":[[-1037,-717,-1012,-1074]]},{\"type\":\"Polygon\",\"id\":\"007800\",\"arcs\":[[-536,-571,-1003,-628,-554]]},{\"type\":\"Polygon\",\"id\":\"006300\",\"arcs\":[[-566,-1135,-582,-407,-725]]},{\"type\":\"Polygon\",\"id\":\"011401\",\"arcs\":[[1136,1137,1138,1139]]},{\"type\":\"Polygon\",\"id\":\"011202\",\"arcs\":[[1140,1141,1142,1143,1144]]},{\"type\":\"Polygon\",\"id\":\"011201\",\"arcs\":[[-1138,1145,1146,-1142,1147]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[1148,1149,1150,1151,1152,1153,1154]]},{\"type\":\"Polygon\",\"id\":\"009700\",\"arcs\":[[1155,1156,-1155,1157,1158,1159]]},{\"type\":\"Polygon\",\"id\":\"009602\",\"arcs\":[[1160,1161,-1137,1162,1163]]},{\"type\":\"Polygon\",\"id\":\"009601\",\"arcs\":[[1164,1165,1166,-1161,1167]]},{\"type\":\"Polygon\",\"id\":\"014605\",\"arcs\":[[1168,1169,1170,1171,1172]]},{\"type\":\"Polygon\",\"id\":\"008100\",\"arcs\":[[1173,1174,1175,1176,-1156,1177]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[1178,1179,1180,1181,-1176]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[-1181,1182,1183,1184,1185,1186]]},{\"type\":\"Polygon\",\"id\":\"007400\",\"arcs\":[[1187,1188,1189,1190]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[-1167,1191,-1190,1192,-1146,-1162]]},{\"type\":\"Polygon\",\"id\":\"006400\",\"arcs\":[[1193,1194,-1192,-1166]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[1195,1196,-1186,1197,1198,1199,1200]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[1201,1202,1203,-1194,-1165,1204]]},{\"type\":\"Polygon\",\"id\":\"004700\",\"arcs\":[[1205,1206,1207,1208,1209,1210,-1200]]},{\"type\":\"Polygon\",\"id\":\"004000\",\"arcs\":[[1211,1212,1213,1214,1215,-1202,-1209]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[-1199,1216,-1206]]},{\"type\":\"Polygon\",\"id\":\"003600\",\"arcs\":[[1217,1218,-1203,-1216]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[-1198,-1185,1219,1220,1221,-1207,-1217]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[1222,1223,1224,1225,-1183,-1180]]},{\"type\":\"Polygon\",\"id\":\"002900\",\"arcs\":[[-1222,1226,1227,-1212,-1208]]},{\"type\":\"Polygon\",\"id\":\"002700\",\"arcs\":[[1228,1229,-1213,-1228]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[1230,-1225,1231,1232,1233,1234,1235,1236,-1229,-1227,-1221]]},{\"type\":\"Polygon\",\"id\":\"013204\",\"arcs\":[[1237,1238,1239,1240,1241,1242]]},{\"type\":\"Polygon\",\"id\":\"002002\",\"arcs\":[[1243,-1191,-1195,-1204,1244]]},{\"type\":\"Polygon\",\"id\":\"002001\",\"arcs\":[[1245,1246,-1245,-1219]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[-1175,1247,1248,-1223,-1179]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[1249,1250,-1246,-1218,-1215]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[1251,1252,1253,-1232,-1224,-1249,1254]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[-1251,1255,1256,1257,1258,-1188,-1244,-1247]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-1255,-1248,-1174,1259]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-1237,1260,1261,1262,1263,1264,-1256,-1250,-1214,-1230]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[-1184,-1226,-1231,-1220]]},{\"type\":\"Polygon\",\"id\":\"027702\",\"arcs\":[[1265,1266,1267,1268,1269]]},{\"type\":\"Polygon\",\"id\":\"030301\",\"arcs\":[[1270,1271,1272,1273,1274]]},{\"type\":\"Polygon\",\"id\":\"027302\",\"arcs\":[[1275,1276,1277,1278,1279]]},{\"type\":\"Polygon\",\"id\":\"027301\",\"arcs\":[[1280,1281,1282,-1280,1283,1284,1285,1286,1287]]},{\"type\":\"Polygon\",\"id\":\"025100\",\"arcs\":[[1288,1289,1290,1291,-1281,1292,-1273]]},{\"type\":\"Polygon\",\"id\":\"024800\",\"arcs\":[[1293,1294,1295]]},{\"type\":\"Polygon\",\"id\":\"024700\",\"arcs\":[[1296,1297,-1289,1298]]},{\"type\":\"Polygon\",\"id\":\"023900\",\"arcs\":[[1299,1300,-1299,-1272,1301,1302]]},{\"type\":\"Polygon\",\"id\":\"023100\",\"arcs\":[[1303,-1303,1304,1305]]},{\"type\":\"Polygon\",\"id\":\"022600\",\"arcs\":[[1306,1307,1308,1309,1310,-1294,1311]]},{\"type\":\"Polygon\",\"id\":\"990100\",\"arcs\":[[1312,1313,1314,1315,1316,1317,1318,-1143,-1147,-1193,-1189,-1259,1319,1320,1321,1322]]},{\"type\":\"Polygon\",\"id\":\"027706\",\"arcs\":[[1323,-1286,1324,-1266,1325]]},{\"type\":\"Polygon\",\"id\":\"027705\",\"arcs\":[[-1285,1326,-1267,-1325]]},{\"type\":\"Polygon\",\"id\":\"024402\",\"arcs\":[[1327,-1323,1328,1329]]},{\"type\":\"Polygon\",\"id\":\"024401\",\"arcs\":[[-1295,-1311,1330,-1330,1331]]},{\"type\":\"Polygon\",\"id\":\"022300\",\"arcs\":[[1332,-1300,-1304,1333,1334]]},{\"type\":\"Polygon\",\"id\":\"021300\",\"arcs\":[[1335,1336,1337,-1297,-1301]]},{\"type\":\"Polygon\",\"id\":\"020803\",\"arcs\":[[1338,1339,-1309,1340]]},{\"type\":\"Polygon\",\"id\":\"017008\",\"arcs\":[[1341,1342,1343,1344]]},{\"type\":\"Polygon\",\"id\":\"020801\",\"arcs\":[[1345,1346,1347,-1341,-1308]]},{\"type\":\"Polygon\",\"id\":\"030302\",\"arcs\":[[1348,-1305,-1302,-1271,1349]]},{\"type\":\"Polygon\",\"id\":\"020700\",\"arcs\":[[1350,-1159,1351,-1336,-1333]]},{\"type\":\"Polygon\",\"id\":\"020100\",\"arcs\":[[-1338,1352,1353,1354,-1290,-1298]]},{\"type\":\"Polygon\",\"id\":\"019700\",\"arcs\":[[-1355,1355,1356,-1291]]},{\"type\":\"Polygon\",\"id\":\"018902\",\"arcs\":[[1357,1358,-1276,-1283,1359]]},{\"type\":\"Polygon\",\"id\":\"018901\",\"arcs\":[[-1357,1360,-1360,-1282,-1292]]},{\"type\":\"Polygon\",\"id\":\"018702\",\"arcs\":[[1361,1362,1363,-1277,-1359,1364]]},{\"type\":\"Polygon\",\"id\":\"018701\",\"arcs\":[[1365,1366,-1365,-1358,-1361]]},{\"type\":\"Polygon\",\"id\":\"022800\",\"arcs\":[[1367,1368,-1326,-1270,1369,1370,-1342,1371,1372,-1346,-1307,1373]]},{\"type\":\"Polygon\",\"id\":\"017009\",\"arcs\":[[-1344,1374,1375,1376]]},{\"type\":\"Polygon\",\"id\":\"014604\",\"arcs\":[[1377,-1171,1378,1379,1380,1381,1382]]},{\"type\":\"Polygon\",\"id\":\"029103\",\"arcs\":[[1383,-1287,-1324,-1369,1384]]},{\"type\":\"Polygon\",\"id\":\"017700\",\"arcs\":[[-1210,-1205,-1168,-1164,1385,1386,-1362,1387]]},{\"type\":\"Polygon\",\"id\":\"017600\",\"arcs\":[[1388,1389,-1314,1390,1391]]},{\"type\":\"Polygon\",\"id\":\"017300\",\"arcs\":[[-1387,1392,-1363]]},{\"type\":\"Polygon\",\"id\":\"017010\",\"arcs\":[[1393,-1377,-1347,-1373]]},{\"type\":\"Polygon\",\"id\":\"016901\",\"arcs\":[[-1211,-1388,-1367,1394]]},{\"type\":\"Polygon\",\"id\":\"015603\",\"arcs\":[[1395,1396,1397,-1315,-1390,1398]]},{\"type\":\"Polygon\",\"id\":\"015602\",\"arcs\":[[1399,-1399,-1389,1400]]},{\"type\":\"Polygon\",\"id\":\"015601\",\"arcs\":[[1401,-1396,-1400,-1380]]},{\"type\":\"Polygon\",\"id\":\"015400\",\"arcs\":[[1402,-1242,1403,-1316,-1398]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[1404,1405,-1366,-1356,-1354]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[1406,1407,1408,-1201,-1395,-1406]]},{\"type\":\"Polygon\",\"id\":\"029104\",\"arcs\":[[-1274,-1293,-1288,-1384,1409]]},{\"type\":\"Polygon\",\"id\":\"017007\",\"arcs\":[[-1345,-1394,-1372]]},{\"type\":\"Polygon\",\"id\":\"013203\",\"arcs\":[[-1170,1410,-1243,-1403,-1397,-1402,-1379]]},{\"type\":\"Polygon\",\"id\":\"032300\",\"arcs\":[[1411,1412,-1350,-1275,1413,1414]]},{\"type\":\"Polygon\",\"id\":\"031902\",\"arcs\":[[-1334,1415,-1412,1416]]},{\"type\":\"Polygon\",\"id\":\"031901\",\"arcs\":[[-1306,-1349,-1413,-1416]]},{\"type\":\"Polygon\",\"id\":\"020804\",\"arcs\":[[-1376,1417,1418,-1339,-1348]]},{\"type\":\"Polygon\",\"id\":\"027704\",\"arcs\":[[-1284,1419,-1268,-1327]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[1420,1421,-1407,-1405,-1353]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[1422,1423,1424,-1239,1425,1426]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[1427,1428,1429,1430,1431,-1424]]},{\"type\":\"Polygon\",\"id\":\"013302\",\"arcs\":[[-1352,-1158,-1154,1432,-1152,1433,-1421,-1337]]},{\"type\":\"Polygon\",\"id\":\"013301\",\"arcs\":[[-1153,-1433]]},{\"type\":\"Polygon\",\"id\":\"029102\",\"arcs\":[[-1414,-1410,-1385,-1368,1434]]},{\"type\":\"Polygon\",\"id\":\"017005\",\"arcs\":[[1435,1436,-1392,-1418,-1375]]},{\"type\":\"Polygon\",\"id\":\"027900\",\"arcs\":[[-1420,-1279,1437,-1427,1438,-1173,1439,1440,-1370,-1269]]},{\"type\":\"Polygon\",\"id\":\"014606\",\"arcs\":[[-1426,-1238,-1411,-1169,-1439]]},{\"type\":\"Polygon\",\"id\":\"013201\",\"arcs\":[[-1432,1441,-1240,-1425]]},{\"type\":\"Polygon\",\"id\":\"012804\",\"arcs\":[[-1144,-1319,1442,-1430]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[-1151,1443,-1408,-1422,-1434]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[1444,-1145,-1429,1445]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[1446,-1196,-1409,-1444,-1150]]},{\"type\":\"Polygon\",\"id\":\"011402\",\"arcs\":[[-1139,-1148,-1141,-1445,1447]]},{\"type\":\"Polygon\",\"id\":\"017012\",\"arcs\":[[-1371,1448,-1382,1449,-1436,-1343]]},{\"type\":\"Polygon\",\"id\":\"017011\",\"arcs\":[[-1381,-1401,-1437,-1450]]},{\"type\":\"Polygon\",\"id\":\"014608\",\"arcs\":[[-1172,-1378,1450,-1440]]},{\"type\":\"Polygon\",\"id\":\"014607\",\"arcs\":[[-1441,-1451,-1383,-1449]]},{\"type\":\"Polygon\",\"id\":\"012806\",\"arcs\":[[-1431,-1443,-1318,1451,-1442]]},{\"type\":\"Polygon\",\"id\":\"012805\",\"arcs\":[[-1452,-1317,-1404,-1241]]},{\"type\":\"Polygon\",\"id\":\"019800\",\"arcs\":[[-1340,-1419,-1391,-1313,-1328,-1331,-1310]]},{\"type\":\"Polygon\",\"id\":\"018100\",\"arcs\":[[-1364,-1393,-1386,-1163,-1140,-1448,-1446,-1428,-1423,-1438,-1278]]},{\"type\":\"Polygon\",\"id\":\"006700\",\"arcs\":[[-1177,-1182,-1187,-1197,-1447,-1149,-1157]]},{\"type\":\"Polygon\",\"id\":\"961600\",\"arcs\":[[1452,1453,1454,1455,1456]]},{\"type\":\"Polygon\",\"id\":\"940200\",\"arcs\":[[1457,1458]]},{\"type\":\"Polygon\",\"id\":\"962200\",\"arcs\":[[1459,1460,1461,-1459,1462,1463,1464,1465]]},{\"type\":\"Polygon\",\"id\":\"960702\",\"arcs\":[[1466,1467,-1466,1468,1469,1470]]},{\"type\":\"MultiPolygon\",\"id\":\"940000\",\"arcs\":[[[1471,1472]],[[1473,1474,1475]]]},{\"type\":\"Polygon\",\"id\":\"961700\",\"arcs\":[[1476,-1454,1477]]},{\"type\":\"Polygon\",\"id\":\"960100\",\"arcs\":[[1478,1479,1480,1481,1482]]},{\"type\":\"Polygon\",\"id\":\"960600\",\"arcs\":[[1483,-1471,1484,1485,1486]]},{\"type\":\"Polygon\",\"id\":\"961100\",\"arcs\":[[-1465,1487,1488,-1457,1489,1490,-1469]]},{\"type\":\"Polygon\",\"id\":\"940300\",\"arcs\":[[-1485,-1470,-1491,1491,1492,1493]]},{\"type\":\"Polygon\",\"id\":\"961500\",\"arcs\":[[1494,-1478,-1453,-1489,1495]]},{\"type\":\"Polygon\",\"id\":\"960200\",\"arcs\":[[1496,1497,-1482,1498,1499]]},{\"type\":\"Polygon\",\"id\":\"961200\",\"arcs\":[[1500,1501,1502,1503,1504]]},{\"type\":\"Polygon\",\"id\":\"961800\",\"arcs\":[[-1477,-1495,1505,-1501,1506,-1455]]},{\"type\":\"Polygon\",\"id\":\"961300\",\"arcs\":[[-1490,-1456,-1507,-1505,1507,-1492]]},{\"type\":\"Polygon\",\"id\":\"960800\",\"arcs\":[[1508,-1499,-1481,1509,-1460,-1468]]},{\"type\":\"Polygon\",\"id\":\"960400\",\"arcs\":[[1510,-1473,1511,1512,1513,1514,1515,1516,1517,-1474]]},{\"type\":\"Polygon\",\"id\":\"960300\",\"arcs\":[[1518,1519,1520,-1500,-1509,-1467,-1484,1521,-1515]]},{\"type\":\"Polygon\",\"id\":\"961400\",\"arcs\":[[-1486,-1494,1522,1523,1524,1525]]},{\"type\":\"Polygon\",\"id\":\"961000\",\"arcs\":[[1526,-1502,-1506,-1496,-1488,-1464]]},{\"type\":\"Polygon\",\"id\":\"960500\",\"arcs\":[[-1522,-1487,-1526,1527,1528,-1516]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[1529,1530,1531,1532,1533,1534,1535]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[1536,1537,1538,1539]]},{\"type\":\"Polygon\",\"id\":\"015301\",\"arcs\":[[1540,1541,1542]]},{\"type\":\"Polygon\",\"id\":\"013203\",\"arcs\":[[1543,1544,1545]]},{\"type\":\"Polygon\",\"id\":\"013206\",\"arcs\":[[1546,1547,1548,1549,-1532]]},{\"type\":\"Polygon\",\"id\":\"012306\",\"arcs\":[[-1545,1550,1551,1552,1553,1554,1555]]},{\"type\":\"Polygon\",\"id\":\"990000\",\"arcs\":[[1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571]]},{\"type\":\"Polygon\",\"id\":\"014803\",\"arcs\":[[-1568,1572,1573,1574,1575,1576]]},{\"type\":\"Polygon\",\"id\":\"011603\",\"arcs\":[[1577,1578,1579,1580,1581,1582,1583]]},{\"type\":\"Polygon\",\"id\":\"014504\",\"arcs\":[[1584,1585,1586,1587,1588]]},{\"type\":\"Polygon\",\"id\":\"011705\",\"arcs\":[[1589,1590,1591,1592,1593,1594,1595]]},{\"type\":\"Polygon\",\"id\":\"002900\",\"arcs\":[[1596,1597,1598,1599]]},{\"type\":\"Polygon\",\"id\":\"013506\",\"arcs\":[[1600,1601,1602,1603,1604,1605,1606]]},{\"type\":\"Polygon\",\"id\":\"013001\",\"arcs\":[[1607,1608,1609,1610,1611,1612,1613]]},{\"type\":\"Polygon\",\"id\":\"008100\",\"arcs\":[[1614,1615,1616,1617,1618,1619,1620]]},{\"type\":\"Polygon\",\"id\":\"013401\",\"arcs\":[[-1566,1621,1622,1623,1624,1625]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[1626,1627,1628,1629,1630,-1583,1631,1632]]},{\"type\":\"Polygon\",\"id\":\"013204\",\"arcs\":[[1633,1634,-1546,-1556,1635,1636,-1549]]},{\"type\":\"Polygon\",\"id\":\"008500\",\"arcs\":[[-1565,1637,1638,1639,-1622]]},{\"type\":\"Polygon\",\"id\":\"014906\",\"arcs\":[[1640,1641,1642,1643,1644,1645,1646]]},{\"type\":\"Polygon\",\"id\":\"014602\",\"arcs\":[[-1588,1647,1648,1649,-1614,1650,1651,-1547,-1531,1652]]},{\"type\":\"Polygon\",\"id\":\"015304\",\"arcs\":[[1653,1654,-1541,1655,1656]]},{\"type\":\"Polygon\",\"id\":\"014601\",\"arcs\":[[1657,-1653,-1530,1658,1659]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[1660,1661,1662,1663,1664,1665]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[1666,1667,1668,-1586,1669,1670,1671]]},{\"type\":\"Polygon\",\"id\":\"014301\",\"arcs\":[[1672,1673,1674,1675,1676]]},{\"type\":\"Polygon\",\"id\":\"004602\",\"arcs\":[[1677,1678,1679,1680,1681]]},{\"type\":\"Polygon\",\"id\":\"006800\",\"arcs\":[[1682,1683,1684,1685,1686,-1668,1687]]},{\"type\":\"Polygon\",\"id\":\"014103\",\"arcs\":[[1688,1689,1690,-1604]]},{\"type\":\"Polygon\",\"id\":\"008800\",\"arcs\":[[1691,1692,1693,1694,1695,1696,-1673]]},{\"type\":\"Polygon\",\"id\":\"013701\",\"arcs\":[[-1623,-1640,1697,1698,1699]]},{\"type\":\"Polygon\",\"id\":\"013503\",\"arcs\":[[1700,1701,1702,1703,-1574,1704]]},{\"type\":\"Polygon\",\"id\":\"012301\",\"arcs\":[[1705,1706,1707,1708,1709,1710,-1552]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[1711,1712,1713,-1609,1714]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[1715,-1563,1716,1717]]},{\"type\":\"Polygon\",\"id\":\"013508\",\"arcs\":[[1718,-1607,1719,1720,-1703]]},{\"type\":\"Polygon\",\"id\":\"011208\",\"arcs\":[[1721,1722,1723,1724]]},{\"type\":\"Polygon\",\"id\":\"015303\",\"arcs\":[[-1655,1725,-1542]]},{\"type\":\"Polygon\",\"id\":\"003802\",\"arcs\":[[1726]]},{\"type\":\"Polygon\",\"id\":\"003200\",\"arcs\":[[1727,1728,1729,1730,1731,1732,1733]]},{\"type\":\"Polygon\",\"id\":\"011604\",\"arcs\":[[1734,1735,-1584,-1631]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[-1598,1736,1737,1738,1739,1740]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[1741,1742,1743,-1649,-1686,1744,1745]]},{\"type\":\"Polygon\",\"id\":\"014503\",\"arcs\":[[-1670,-1585,1746,1747]]},{\"type\":\"Polygon\",\"id\":\"007801\",\"arcs\":[[1748,1749,1750,-1738]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[1751,1752,1753,1754,1755,1756]]},{\"type\":\"Polygon\",\"id\":\"010602\",\"arcs\":[[1757,1758,1759,-1615,1760,1761]]},{\"type\":\"Polygon\",\"id\":\"004800\",\"arcs\":[[1762,1763,1764,1765]]},{\"type\":\"Polygon\",\"id\":\"013702\",\"arcs\":[[-1700,1766,1767,1768,-1624]]},{\"type\":\"Polygon\",\"id\":\"013402\",\"arcs\":[[-1626,1769,-1705,-1573,-1567]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[1770,-1632,-1582,1771,-1708,1772,1773]]},{\"type\":\"Polygon\",\"id\":\"015102\",\"arcs\":[[1774,1775,1776,1777,1778,-1570]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[1779,-1774,1780,-1713,1781]]},{\"type\":\"Polygon\",\"id\":\"011708\",\"arcs\":[[-1592,1782,1783,1784,1785,1786,1787]]},{\"type\":\"Polygon\",\"id\":\"008301\",\"arcs\":[[1788,1789,-1756,1790,1791,1792]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[1793,-1740,1794,1795,1796]]},{\"type\":\"Polygon\",\"id\":\"011201\",\"arcs\":[[1797,1798,1799,1800,-1753,1801,1802]]},{\"type\":\"Polygon\",\"id\":\"005500\",\"arcs\":[[1803,1804,1805,1806]]},{\"type\":\"Polygon\",\"id\":\"009500\",\"arcs\":[[1807,-1734,1808,1809,1810,1811]]},{\"type\":\"Polygon\",\"id\":\"003500\",\"arcs\":[[1812,1813,1814,1815]]},{\"type\":\"Polygon\",\"id\":\"011706\",\"arcs\":[[-1783,-1591]]},{\"type\":\"Polygon\",\"id\":\"013902\",\"arcs\":[[1816,1817,1818]]},{\"type\":\"Polygon\",\"id\":\"014001\",\"arcs\":[[1819,1820,1821,1822,-1602,1823]]},{\"type\":\"Polygon\",\"id\":\"010902\",\"arcs\":[[-1757,-1790,1824,1825,1826]]},{\"type\":\"Polygon\",\"id\":\"014802\",\"arcs\":[[1827,1828,-1576,1829,-1720,-1606,1830,-1642,1831,1832]]},{\"type\":\"Polygon\",\"id\":\"010901\",\"arcs\":[[1833,-1825,-1789,1834,-1616,-1760]]},{\"type\":\"Polygon\",\"id\":\"014302\",\"arcs\":[[-1675,1835,1836,-1672,1837,1838,1839]]},{\"type\":\"Polygon\",\"id\":\"014202\",\"arcs\":[[1840,1841,1842,-1838,-1671,-1748,1843,1844,-1644]]},{\"type\":\"Polygon\",\"id\":\"011301\",\"arcs\":[[-1558,1845,1846,1847,1848]]},{\"type\":\"Polygon\",\"id\":\"012304\",\"arcs\":[[-1711,1849,-1594,1850,-1553]]},{\"type\":\"Polygon\",\"id\":\"009603\",\"arcs\":[[1851,1852,1853,1854,1855,-1696]]},{\"type\":\"Polygon\",\"id\":\"010700\",\"arcs\":[[1856,-1561,1857,-1803,1858,1859]]},{\"type\":\"Polygon\",\"id\":\"009302\",\"arcs\":[[1860,1861,1862,-1600,1863,-1729]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[-1731,1864,1865,-1814,1866]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[-1732,-1867,-1813,1867]]},{\"type\":\"Polygon\",\"id\":\"004900\",\"arcs\":[[-1764,1868,1869,1870,1871]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[1872,1873,1874,1875,1876]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[1877,-1860,1878,1879,-1758,1880,1881]]},{\"type\":\"Polygon\",\"id\":\"013505\",\"arcs\":[[1882,-1689,-1603]]},{\"type\":\"Polygon\",\"id\":\"011205\",\"arcs\":[[1883,1884,1885,-1725,1886,-1799]]},{\"type\":\"Polygon\",\"id\":\"009301\",\"arcs\":[[1887,1888,-1807,1889,1890,-1862,1891,1892]]},{\"type\":\"Polygon\",\"id\":\"011505\",\"arcs\":[[1893,1894,1895,1896,1897,1898,1899]]},{\"type\":\"Polygon\",\"id\":\"014901\",\"arcs\":[[-1647,1900]]},{\"type\":\"Polygon\",\"id\":\"012202\",\"arcs\":[[1901,1902,1903,-1595,-1850,-1710]]},{\"type\":\"Polygon\",\"id\":\"011601\",\"arcs\":[[1904,1905,-1900,1906,-1579]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[-1891,-1666,-1749,-1737,-1597,-1863]]},{\"type\":\"Polygon\",\"id\":\"008701\",\"arcs\":[[-1856,1907,-1836,-1674,-1697]]},{\"type\":\"Polygon\",\"id\":\"013601\",\"arcs\":[[-1768,1908,1909,-1820,1910,1911]]},{\"type\":\"Polygon\",\"id\":\"002400\",\"arcs\":[[1912,1913,1914,1915,-1694,1916]]},{\"type\":\"Polygon\",\"id\":\"013604\",\"arcs\":[[-1911,-1824,1917,1918]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[1919,1920,1921,-1804,-1889,1922]]},{\"type\":\"Polygon\",\"id\":\"011605\",\"arcs\":[[1923,-1905,-1578,-1736]]},{\"type\":\"Polygon\",\"id\":\"006600\",\"arcs\":[[1924,-1742,1925,1926]]},{\"type\":\"Polygon\",\"id\":\"007600\",\"arcs\":[[1927,1928,-1627,1929,-1664]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[-1923,-1888,1930,1931]]},{\"type\":\"Polygon\",\"id\":\"002700\",\"arcs\":[[-1810,1932,1933,1934]]},{\"type\":\"Polygon\",\"id\":\"015101\",\"arcs\":[[-1569,-1577,-1829,1935,-1775]]},{\"type\":\"Polygon\",\"id\":\"011203\",\"arcs\":[[-1560,1936,-1884,-1798,-1858]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[-1755,1937,-1629,1938,1939,1940,1941]]},{\"type\":\"Polygon\",\"id\":\"006200\",\"arcs\":[[1942,1943,1944,-1683,1945]]},{\"type\":\"Polygon\",\"id\":\"015200\",\"arcs\":[[-1936,-1828,1946,-1657,1947,1948,1949,-1776]]},{\"type\":\"Polygon\",\"id\":\"011901\",\"arcs\":[[-1907,-1899,1950,1951,1952,1953,1954,1955,-1580]]},{\"type\":\"Polygon\",\"id\":\"012201\",\"arcs\":[[-1581,-1956,1956,1957,-1902,-1709,-1772]]},{\"type\":\"Polygon\",\"id\":\"002200\",\"arcs\":[[1958,1959,-1917,1960,1961]]},{\"type\":\"Polygon\",\"id\":\"004702\",\"arcs\":[[1962,-1620,1963,-1766,1964,-1679]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[1965,1966,-1818,1967,1968,1969,-1540,1970,1971,-1961,-1693,1972]]},{\"type\":\"Polygon\",\"id\":\"008702\",\"arcs\":[[1973,1974,-1946,-1688,-1667,-1837,-1908]]},{\"type\":\"Polygon\",\"id\":\"014102\",\"arcs\":[[-1690,1975,1976,-1966,1977]]},{\"type\":\"Polygon\",\"id\":\"005700\",\"arcs\":[[1978,-1662,1979]]},{\"type\":\"Polygon\",\"id\":\"009604\",\"arcs\":[[1980,1981,1982,1983,-1854]]},{\"type\":\"Polygon\",\"id\":\"009602\",\"arcs\":[[-1984,1984,1985,1986,-1974,-1855]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[-1955,1987,-1957]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[-1848,1988,1989,1990,-1722,-1886,1991]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[1992,1993,1994,1995,-1913,-1960]]},{\"type\":\"Polygon\",\"id\":\"011902\",\"arcs\":[[1996,-1953,1997,1998,-1596,-1904]]},{\"type\":\"Polygon\",\"id\":\"003000\",\"arcs\":[[-1599,-1741,-1794,1999,-1865,-1730,-1864]]},{\"type\":\"Polygon\",\"id\":\"008400\",\"arcs\":[[2000,-1792,2001,2002]]},{\"type\":\"Polygon\",\"id\":\"005800\",\"arcs\":[[2003,-1941,2004,-1663,-1979,2005]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[-1988,-1954,-1997,-1903,-1958]]},{\"type\":\"Polygon\",\"id\":\"010601\",\"arcs\":[[2006,-1826,-1834,-1759,-1880]]},{\"type\":\"Polygon\",\"id\":\"006900\",\"arcs\":[[2007,2008,2009,-1743,-1925]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[-1987,2010,-1943,-1975]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[2011,2012,-1998,-1952]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[-1962,-1972,2013]]},{\"type\":\"Polygon\",\"id\":\"014804\",\"arcs\":[[-1704,-1721,-1830,-1575]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[2014,-2002,2015,2016,-1805,-1922]]},{\"type\":\"Polygon\",\"id\":\"006000\",\"arcs\":[[-1940,2017,-1928,-2005]]},{\"type\":\"Polygon\",\"id\":\"009200\",\"arcs\":[[-1877,2018,-1931,-1893,2019,2020,-1995,2021]]},{\"type\":\"Polygon\",\"id\":\"008200\",\"arcs\":[[-1617,-1835,-1793,-2001,2022]]},{\"type\":\"Polygon\",\"id\":\"003600\",\"arcs\":[[-1866,-2000,-1797,2023,2024,-1815]]},{\"type\":\"Polygon\",\"id\":\"011501\",\"arcs\":[[2025,-1723,-1991,2026,-1895,2027,2028,-1754,-1801]]},{\"type\":\"Polygon\",\"id\":\"013104\",\"arcs\":[[-1612,2029,-1635,2030,2031]]},{\"type\":\"Polygon\",\"id\":\"014203\",\"arcs\":[[-1676,-1840,2032,-1842,2033]]},{\"type\":\"Polygon\",\"id\":\"007900\",\"arcs\":[[2034,-1869,-1763,-1964,-1619]]},{\"type\":\"Polygon\",\"id\":\"005200\",\"arcs\":[[2035,-1871,2036,2037,-1875]]},{\"type\":\"Polygon\",\"id\":\"007802\",\"arcs\":[[-1739,-1751,2038,-1771,-1780,2039,-1795]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[-1930,-1633,-2039,-1750,-1665]]},{\"type\":\"Polygon\",\"id\":\"013901\",\"arcs\":[[-1910,2040,-1968,-1817,2041,-1821]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[2042,-1761,2043]]},{\"type\":\"Polygon\",\"id\":\"011503\",\"arcs\":[[-1938,-2029,2044,-1735,-1630]]},{\"type\":\"Polygon\",\"id\":\"006100\",\"arcs\":[[-1939,-1628,-1929,-2018]]},{\"type\":\"Polygon\",\"id\":\"014903\",\"arcs\":[[2045,-1832,-1641,-1901,-1646,2046,2047,2048,2049]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[-1879,-1859,-1802,-1752,-1827,-2007]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-2038,-1920,-1932,-2019,-1876]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[-2016,-1791,-1942,-2004,2050]]},{\"type\":\"Polygon\",\"id\":\"004701\",\"arcs\":[[-1638,-1564,-1716,2051,2052,-2044,-1621,-1963,-1678,-1538,2053]]},{\"type\":\"Polygon\",\"id\":\"014204\",\"arcs\":[[-1839,-1843,-2033]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[-1539,-1682,-1993,-1959,-2014,-1971]]},{\"type\":\"Polygon\",\"id\":\"009400\",\"arcs\":[[2054,-2020,-1892,-1861,-1728,-1808]]},{\"type\":\"Polygon\",\"id\":\"015000\",\"arcs\":[[2055,-2049,2056,-1659,-1536,2057]]},{\"type\":\"Polygon\",\"id\":\"014505\",\"arcs\":[[2058,2059,-1660,-2057,-2048]]},{\"type\":\"Polygon\",\"id\":\"004000\",\"arcs\":[[-1916,2060,-1852,-1695]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-1996,-2021,-2055,-1812,-1982,2061,-1914]]},{\"type\":\"Polygon\",\"id\":\"011302\",\"arcs\":[[-1849,-1992,-1885,-1937,-1559]]},{\"type\":\"Polygon\",\"id\":\"013101\",\"arcs\":[[2062,-1706,-1551,-1544,-2030,-1611]]},{\"type\":\"Polygon\",\"id\":\"011504\",\"arcs\":[[-1894,-1906,-1924,-2045,-2028]]},{\"type\":\"Polygon\",\"id\":\"008600\",\"arcs\":[[2063,-1698,-1639,-2054,-1537,-1970]]},{\"type\":\"Polygon\",\"id\":\"011703\",\"arcs\":[[-1898,2064,2065,-2012,-1951]]},{\"type\":\"Polygon\",\"id\":\"006700\",\"arcs\":[[2066,2067,-1926,-1746,2068,-1684,-1945]]},{\"type\":\"Polygon\",\"id\":\"011707\",\"arcs\":[[-2066,2069,-1784,-1590,-1999,-2013]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[-1699,-2064,-1969,-2041,-1909,-1767]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-2053,2070,-1881,-1762,-2043]]},{\"type\":\"Polygon\",\"id\":\"013002\",\"arcs\":[[-1714,-1781,-1773,-1707,-2063,-1610]]},{\"type\":\"Polygon\",\"id\":\"015400\",\"arcs\":[[-1656,-1543,-1726,-1654,-1947,-1833,-2046,2071,2072,-1948]]},{\"type\":\"Polygon\",\"id\":\"013205\",\"arcs\":[[2073,-2031,-1634,-1548,-1652]]},{\"type\":\"Polygon\",\"id\":\"012402\",\"arcs\":[[-1636,-1555,2074,2075,2076,2077,2078,2079]]},{\"type\":\"Polygon\",\"id\":\"012401\",\"arcs\":[[-2079,2080,2081,2082]]},{\"type\":\"Polygon\",\"id\":\"014501\",\"arcs\":[[2083,-1844,-1747,-1589,-1658,-2060]]},{\"type\":\"Polygon\",\"id\":\"007100\",\"arcs\":[[-1745,-1685,-2069]]},{\"type\":\"Polygon\",\"id\":\"006300\",\"arcs\":[[-2011,-1986,2084,2085,-2067,-1944]]},{\"type\":\"Polygon\",\"id\":\"008000\",\"arcs\":[[-1618,-2023,-2003,-2015,-1921,-2037,-1870,-2035]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[-1680,-1965,-1765,-1872,-2036,-1874,2086]]},{\"type\":\"Polygon\",\"id\":\"014004\",\"arcs\":[[-2042,-1819,-1967,-1977,2087,-1822]]},{\"type\":\"Polygon\",\"id\":\"014003\",\"arcs\":[[-2088,-1976,-1883,-1823]]},{\"type\":\"Polygon\",\"id\":\"014104\",\"arcs\":[[-1691,-1978,-1973,-1692,-1677,-2034,-1841,-1643,-1831,-1605]]},{\"type\":\"Polygon\",\"id\":\"011207\",\"arcs\":[[-1724,-2026,-1800,-1887]]},{\"type\":\"Polygon\",\"id\":\"003805\",\"arcs\":[[-1744,-2010,2088,-1733,-1868,-1816,-2025,2089,-1715,-1608,-1650],[-1727]]},{\"type\":\"Polygon\",\"id\":\"980100\",\"arcs\":[[-1717,-1562,-1857,-1878,2090]]},{\"type\":\"Polygon\",\"id\":\"012305\",\"arcs\":[[-1851,-1593,-1788,-2075,-1554]]},{\"type\":\"Polygon\",\"id\":\"009601\",\"arcs\":[[-1983,-1811,-1935,2091,-2085,-1985]]},{\"type\":\"Polygon\",\"id\":\"006400\",\"arcs\":[[-2092,-1934,2092,-2008,-1927,-2068,-2086]]},{\"type\":\"Polygon\",\"id\":\"006500\",\"arcs\":[[-1933,-1809,-2089,-2009,-2093]]},{\"type\":\"Polygon\",\"id\":\"004100\",\"arcs\":[[-2062,-1981,-1853,-2061,-1915]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[-2087,-1873,-2022,-1994,-1681]]},{\"type\":\"Polygon\",\"id\":\"005600\",\"arcs\":[[-2017,-2051,-2006,-1980,-1661,-1890,-1806]]},{\"type\":\"Polygon\",\"id\":\"013603\",\"arcs\":[[-1770,-1625,-1769,-1912,-1919,2093,-1701]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[-1533,-1550,-1637,-2080,-2083,2094,2095,2096]]},{\"type\":\"Polygon\",\"id\":\"980000\",\"arcs\":[[-1587,-1669,-1687,-1648]]},{\"type\":\"Polygon\",\"id\":\"014905\",\"arcs\":[[-1845,-2084,-2059,-2047,-1645]]},{\"type\":\"Polygon\",\"id\":\"013507\",\"arcs\":[[-1702,-2094,-1918,-1601,-1719]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[-1718,-2091,-1882,-2071,-2052]]},{\"type\":\"Polygon\",\"id\":\"013103\",\"arcs\":[[-1613,-2032,-2074,-1651]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[-2090,-2024,-1796,-2040,-1782,-1712]]},{\"type\":\"Polygon\",\"id\":\"407700\",\"arcs\":[[2097,2098,2099,2100,2101,2102,2103,2104,2105]]},{\"type\":\"Polygon\",\"id\":\"414002\",\"arcs\":[[2106,2107,2108,2109,2110,2111]]},{\"type\":\"Polygon\",\"id\":\"411600\",\"arcs\":[[2112,2113,2114,2115,2116,2117,2118,2119,2120,2121]]},{\"type\":\"Polygon\",\"id\":\"303302\",\"arcs\":[[2122,2123,2124,2125,2126]]},{\"type\":\"Polygon\",\"id\":\"303400\",\"arcs\":[[2127,2128,-2124,2129]]},{\"type\":\"Polygon\",\"id\":\"303500\",\"arcs\":[[2130,-2126,2131,2132,2133]]},{\"type\":\"Polygon\",\"id\":\"303600\",\"arcs\":[[-2125,-2129,2134,2135,2136,2137,-2132]]},{\"type\":\"Polygon\",\"id\":\"407000\",\"arcs\":[[2138,2139,2140,2141,2142,2143,2144]]},{\"type\":\"Polygon\",\"id\":\"416702\",\"arcs\":[[2145,2146,2147,2148]]},{\"type\":\"Polygon\",\"id\":\"413200\",\"arcs\":[[2149,2150,2151,2152,2153,2154]]},{\"type\":\"Polygon\",\"id\":\"413002\",\"arcs\":[[2155,-2155,2156,2157]]},{\"type\":\"Polygon\",\"id\":\"519300\",\"arcs\":[[2158,2159,2160,2161,2162,2163,2164,2165,2166]]},{\"type\":\"Polygon\",\"id\":\"407900\",\"arcs\":[[2167,2168,2169,2170,2171,-2104]]},{\"type\":\"Polygon\",\"id\":\"409500\",\"arcs\":[[2172,2173,2174,2175,2176,2177,2178,2179]]},{\"type\":\"Polygon\",\"id\":\"416300\",\"arcs\":[[2180,2181,-2119,2182,2183,2184,2185]]},{\"type\":\"Polygon\",\"id\":\"416600\",\"arcs\":[[2186,-2148,2187,2188,2189]]},{\"type\":\"Polygon\",\"id\":\"413400\",\"arcs\":[[2190,2191,2192,-2153,2193]]},{\"type\":\"Polygon\",\"id\":\"416202\",\"arcs\":[[2194]]},{\"type\":\"Polygon\",\"id\":\"413600\",\"arcs\":[[2195,2196,2197,2198,2199,2200,2201]]},{\"type\":\"Polygon\",\"id\":\"303700\",\"arcs\":[[2202,2203,2204,2205,-2135,-2128]]},{\"type\":\"Polygon\",\"id\":\"303900\",\"arcs\":[[2206,2207,2208,2209,2210,2211,2212]]},{\"type\":\"Polygon\",\"id\":\"404300\",\"arcs\":[[2213,2214,2215,2216,2217,2218]]},{\"type\":\"Polygon\",\"id\":\"404400\",\"arcs\":[[2219,2220,2221,2222,-2216]]},{\"type\":\"Polygon\",\"id\":\"519704\",\"arcs\":[[2223,2224,2225,2226]]},{\"type\":\"Polygon\",\"id\":\"519702\",\"arcs\":[[2227,2228,2229,2230,-2224,2231,2232]]},{\"type\":\"Polygon\",\"id\":\"413100\",\"arcs\":[[-2201,2233,2234,-2151,2235,2236]]},{\"type\":\"Polygon\",\"id\":\"521100\",\"arcs\":[[2237,2238,2239,2240]]},{\"type\":\"Polygon\",\"id\":\"519200\",\"arcs\":[[-2164,2241,2242,2243]]},{\"type\":\"Polygon\",\"id\":\"409000\",\"arcs\":[[2244,2245,-2175,2246,2247,2248,2249]]},{\"type\":\"Polygon\",\"id\":\"409200\",\"arcs\":[[-2248,2250,2251,2252,2253]]},{\"type\":\"Polygon\",\"id\":\"519100\",\"arcs\":[[-2165,-2244,2254,2255]]},{\"type\":\"Polygon\",\"id\":\"416201\",\"arcs\":[[2256,-2157,-2154,-2193,2257,2258,2259,2260,2261,-2116,2262],[-2195]]},{\"type\":\"Polygon\",\"id\":\"412200\",\"arcs\":[[-2158,-2257,2263,2264]]},{\"type\":\"Polygon\",\"id\":\"411800\",\"arcs\":[[2265,2266,2267,2268,2269,2270]]},{\"type\":\"Polygon\",\"id\":\"404500\",\"arcs\":[[2271,2272,2273,2274,2275,-2221,2276]]},{\"type\":\"Polygon\",\"id\":\"404600\",\"arcs\":[[-2222,-2276,2277]]},{\"type\":\"Polygon\",\"id\":\"404700\",\"arcs\":[[2278,2279,2280,2281,2282,-2274,2283]]},{\"type\":\"Polygon\",\"id\":\"410700\",\"arcs\":[[2284,2285,2286,2287,2288]]},{\"type\":\"Polygon\",\"id\":\"410900\",\"arcs\":[[2289,2290,2291,2292]]},{\"type\":\"Polygon\",\"id\":\"408400\",\"arcs\":[[-2170,2293,2294,2295,2296,2297]]},{\"type\":\"Polygon\",\"id\":\"520900\",\"arcs\":[[2298,-2241,2299,2300]]},{\"type\":\"Polygon\",\"id\":\"409300\",\"arcs\":[[2301,-2173,2302,2303,-2252]]},{\"type\":\"Polygon\",\"id\":\"520402\",\"arcs\":[[2304,2305,2306,2307,2308,2309]]},{\"type\":\"Polygon\",\"id\":\"411100\",\"arcs\":[[2310,-2122,2311,2312,2313]]},{\"type\":\"Polygon\",\"id\":\"521000\",\"arcs\":[[2314,2315,2316,2317,-2238,-2299,2318]]},{\"type\":\"Polygon\",\"id\":\"408900\",\"arcs\":[[2319,-2249,-2254,2320,2321]]},{\"type\":\"Polygon\",\"id\":\"408600\",\"arcs\":[[2322,2323,-2320,2324,2325]]},{\"type\":\"Polygon\",\"id\":\"408000\",\"arcs\":[[2326,2327,-2168,-2103]]},{\"type\":\"Polygon\",\"id\":\"411301\",\"arcs\":[[2328,-2292,2329,2330,2331,2332]]},{\"type\":\"Polygon\",\"id\":\"404800\",\"arcs\":[[-2223,-2278,-2275,2333,2334,2335,2336,2337,2338,-2217]]},{\"type\":\"Polygon\",\"id\":\"404902\",\"arcs\":[[-2337,2339,2340,2341]]},{\"type\":\"Polygon\",\"id\":\"405000\",\"arcs\":[[-2336,2342,2343,-2340]]},{\"type\":\"Polygon\",\"id\":\"405200\",\"arcs\":[[-2335,2344,2345,2346,-2343]]},{\"type\":\"Polygon\",\"id\":\"413803\",\"arcs\":[[2347,2348,-2191,2349]]},{\"type\":\"Polygon\",\"id\":\"413700\",\"arcs\":[[2350,2351,-2350,2352,-2234,-2200]]},{\"type\":\"Polygon\",\"id\":\"408800\",\"arcs\":[[2353,-2250,-2324,2354,-2243]]},{\"type\":\"Polygon\",\"id\":\"412500\",\"arcs\":[[2355,2356,2357,2358]]},{\"type\":\"Polygon\",\"id\":\"411902\",\"arcs\":[[2359,2360,2361,-2286]]},{\"type\":\"Polygon\",\"id\":\"414202\",\"arcs\":[[-2110,2362,2363,2364]]},{\"type\":\"Polygon\",\"id\":\"407102\",\"arcs\":[[2365,2366,2367,2368,2369,2370]]},{\"type\":\"Polygon\",\"id\":\"409400\",\"arcs\":[[-2251,-2247,-2174,-2302]]},{\"type\":\"Polygon\",\"id\":\"415202\",\"arcs\":[[2371,2372,2373,2374,2375]]},{\"type\":\"Polygon\",\"id\":\"415102\",\"arcs\":[[2376,2377,-2375,2378,2379]]},{\"type\":\"Polygon\",\"id\":\"520200\",\"arcs\":[[2380,2381,2382,2383,-2245,2384]]},{\"type\":\"Polygon\",\"id\":\"517600\",\"arcs\":[[2385,2386,2387,2388,2389,2390]]},{\"type\":\"Polygon\",\"id\":\"517102\",\"arcs\":[[2391,2392,2393,2394,2395]]},{\"type\":\"Polygon\",\"id\":\"415700\",\"arcs\":[[2396,2397,2398,2399,2400,2401]]},{\"type\":\"Polygon\",\"id\":\"408700\",\"arcs\":[[-2255,-2355,-2323]]},{\"type\":\"Polygon\",\"id\":\"412800\",\"arcs\":[[2402,-2370,2403,2404,2405,2406,2407,-2144]]},{\"type\":\"Polygon\",\"id\":\"407502\",\"arcs\":[[2408,2409,-2298,2410,2411,2412,2413]]},{\"type\":\"Polygon\",\"id\":\"407501\",\"arcs\":[[2414,2415,-2414,2416,-2368]]},{\"type\":\"Polygon\",\"id\":\"411000\",\"arcs\":[[-2333,2417,-2314,2418,2419,2420,2421]]},{\"type\":\"Polygon\",\"id\":\"407101\",\"arcs\":[[2422,-2371,-2403,-2143]]},{\"type\":\"Polygon\",\"id\":\"300100\",\"arcs\":[[2423,2424,2425,2426,2427,2428,2429,2430,2431]]},{\"type\":\"Polygon\",\"id\":\"300300\",\"arcs\":[[2432,2433,-2429]]},{\"type\":\"Polygon\",\"id\":\"404901\",\"arcs\":[[-2342,2434,2435,2436,2437,-2338]]},{\"type\":\"Polygon\",\"id\":\"405100\",\"arcs\":[[-2341,-2344,-2347,2438,2439,2440,-2435]]},{\"type\":\"Polygon\",\"id\":\"405400\",\"arcs\":[[2441,2442,2443,2444,-2439,-2346,2445]]},{\"type\":\"Polygon\",\"id\":\"412700\",\"arcs\":[[2446,-2405,2447,2448,-2196,2449,-2357]]},{\"type\":\"Polygon\",\"id\":\"406900\",\"arcs\":[[2450,2451,2452,2453,2454,2455]]},{\"type\":\"Polygon\",\"id\":\"411400\",\"arcs\":[[2456,2457,-2114,2458,2459]]},{\"type\":\"Polygon\",\"id\":\"520501\",\"arcs\":[[2460,-2310,2461,2462,2463,-2383]]},{\"type\":\"Polygon\",\"id\":\"407302\",\"arcs\":[[2464,-2172,2465,2466,2467]]},{\"type\":\"Polygon\",\"id\":\"520502\",\"arcs\":[[2468,2469,2470,-2315,2471,2472,-2463]]},{\"type\":\"Polygon\",\"id\":\"411302\",\"arcs\":[[2473,2474,-2460,2475,-2331]]},{\"type\":\"Polygon\",\"id\":\"300400\",\"arcs\":[[-2428,2476,2477,2478,-2433]]},{\"type\":\"Polygon\",\"id\":\"300500\",\"arcs\":[[-2434,-2479,2479,2480,2481,2482,2483,-2430]]},{\"type\":\"Polygon\",\"id\":\"410300\",\"arcs\":[[2484,2485,2486,2487]]},{\"type\":\"Polygon\",\"id\":\"517000\",\"arcs\":[[2488,-2396,2489,2490,2491]]},{\"type\":\"Polygon\",\"id\":\"517101\",\"arcs\":[[-2395,2492,2493,2494,-2490]]},{\"type\":\"Polygon\",\"id\":\"412302\",\"arcs\":[[2495,-2237,2496,2497]]},{\"type\":\"Polygon\",\"id\":\"521802\",\"arcs\":[[2498,2499,2500,2501,2502]]},{\"type\":\"Polygon\",\"id\":\"407600\",\"arcs\":[[-2098,2503]]},{\"type\":\"Polygon\",\"id\":\"520300\",\"arcs\":[[-2384,-2464,2504,2505,-2176,-2246]]},{\"type\":\"Polygon\",\"id\":\"521302\",\"arcs\":[[2506,2507,2508,2509,2510]]},{\"type\":\"Polygon\",\"id\":\"415300\",\"arcs\":[[2511,2512,2513,2514,2515]]},{\"type\":\"Polygon\",\"id\":\"304002\",\"arcs\":[[2516,2517,2518,-2211]]},{\"type\":\"Polygon\",\"id\":\"300600\",\"arcs\":[[2519,2520,2521,2522,-2480,-2478]]},{\"type\":\"Polygon\",\"id\":\"300700\",\"arcs\":[[-2523,2523,-2481]]},{\"type\":\"Polygon\",\"id\":\"300800\",\"arcs\":[[-2524,-2522,2524,2525,2526,2527,-2482]]},{\"type\":\"Polygon\",\"id\":\"300900\",\"arcs\":[[-2521,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,-2525]]},{\"type\":\"Polygon\",\"id\":\"517200\",\"arcs\":[[2539,2540,-2391,2541,-2494]]},{\"type\":\"Polygon\",\"id\":\"406300\",\"arcs\":[[2542,2543,2544,2545,-2282]]},{\"type\":\"Polygon\",\"id\":\"409900\",\"arcs\":[[2546,2547,-2485,2548,2549,2550]]},{\"type\":\"Polygon\",\"id\":\"414400\",\"arcs\":[[-2109,2551,2552,-2377,2553,2554,2555,2556,-2363]]},{\"type\":\"Polygon\",\"id\":\"519900\",\"arcs\":[[2557,2558,2559,2560,-2162,2561]]},{\"type\":\"Polygon\",\"id\":\"407401\",\"arcs\":[[-2467,2562,-2409,-2416,2563]]},{\"type\":\"Polygon\",\"id\":\"415101\",\"arcs\":[[2564,-2378,-2553,2565]]},{\"type\":\"Polygon\",\"id\":\"520600\",\"arcs\":[[2566,2567,2568,-2469,-2462,-2309]]},{\"type\":\"Polygon\",\"id\":\"413900\",\"arcs\":[[-2413,2569,-2112,2570,2571,2572]]},{\"type\":\"Polygon\",\"id\":\"301000\",\"arcs\":[[-2491,2573,2574,2575,2576,2577,2578,2579,-2424,2580]]},{\"type\":\"Polygon\",\"id\":\"301101\",\"arcs\":[[2581,2582,-2579]]},{\"type\":\"Polygon\",\"id\":\"301102\",\"arcs\":[[-2578,2583,2584,-2582]]},{\"type\":\"Polygon\",\"id\":\"301200\",\"arcs\":[[-2583,-2585,2585,2586,-2425,-2580]]},{\"type\":\"Polygon\",\"id\":\"405700\",\"arcs\":[[2587,2588,2589,2590,-2444]]},{\"type\":\"Polygon\",\"id\":\"405800\",\"arcs\":[[2591,2592,2593,2594,2595]]},{\"type\":\"Polygon\",\"id\":\"406001\",\"arcs\":[[2596,2597,2598,2599,2600,2601,-2593]]},{\"type\":\"Polygon\",\"id\":\"406002\",\"arcs\":[[-2600,2602,2603]]},{\"type\":\"Polygon\",\"id\":\"520100\",\"arcs\":[[2604,-2230,2605,2606,-2306,2607,2608,-2559]]},{\"type\":\"Polygon\",\"id\":\"520401\",\"arcs\":[[-2382,2609,-2608,-2305,-2461]]},{\"type\":\"Polygon\",\"id\":\"406201\",\"arcs\":[[2610,-2603,-2599,2611,-2145,-2408,2612]]},{\"type\":\"Polygon\",\"id\":\"304100\",\"arcs\":[[-2210,2613,2614,2615,2616,-2106,-2517]]},{\"type\":\"Polygon\",\"id\":\"406202\",\"arcs\":[[-2613,-2407,2617,-2359,2618,2619,2620,2621]]},{\"type\":\"Polygon\",\"id\":\"301300\",\"arcs\":[[-2577,2622,2623,2624,-2586,-2584]]},{\"type\":\"Polygon\",\"id\":\"301400\",\"arcs\":[[2625,2626,-2623,-2576]]},{\"type\":\"Polygon\",\"id\":\"301500\",\"arcs\":[[-2625,2627,2628,-2426,-2587]]},{\"type\":\"Polygon\",\"id\":\"517301\",\"arcs\":[[-2493,-2394,2629,2630,2631,-2540]]},{\"type\":\"Polygon\",\"id\":\"517302\",\"arcs\":[[2632,-2386,-2541,-2632]]},{\"type\":\"Polygon\",\"id\":\"409800\",\"arcs\":[[-2436,-2441,2633,-2551,2634,2635]]},{\"type\":\"Polygon\",\"id\":\"521500\",\"arcs\":[[-2471,2636,2637,2638,-2316]]},{\"type\":\"Polygon\",\"id\":\"412900\",\"arcs\":[[-2369,-2417,-2573,2639,-2448,-2404]]},{\"type\":\"Polygon\",\"id\":\"408300\",\"arcs\":[[2640,2641,2642,2643,2644,2645]]},{\"type\":\"Polygon\",\"id\":\"409600\",\"arcs\":[[-2643,2646,-2303,-2180,2647,2648,2649,2650]]},{\"type\":\"Polygon\",\"id\":\"522000\",\"arcs\":[[2651,2652,2653,2654,-2501,2655,-2568]]},{\"type\":\"Polygon\",\"id\":\"412400\",\"arcs\":[[-2619,-2358,-2450,-2202,-2496,2656,2657]]},{\"type\":\"Polygon\",\"id\":\"301600\",\"arcs\":[[-2624,-2627,2658,2659,2660,-2628]]},{\"type\":\"Polygon\",\"id\":\"301900\",\"arcs\":[[2661,2662,-2530,2663]]},{\"type\":\"Polygon\",\"id\":\"302000\",\"arcs\":[[-2626,2664,2665,2666,-2531,-2663,-2659]]},{\"type\":\"Polygon\",\"id\":\"405301\",\"arcs\":[[-2283,-2546,2667,2668,-2446,-2345,-2334]]},{\"type\":\"Polygon\",\"id\":\"405302\",\"arcs\":[[2669,-2595,2670,-2668,-2545]]},{\"type\":\"Polygon\",\"id\":\"405500\",\"arcs\":[[-2669,-2671,-2594,-2602,2671,2672,-2442]]},{\"type\":\"Polygon\",\"id\":\"405600\",\"arcs\":[[-2673,2673,-2588,-2443]]},{\"type\":\"Polygon\",\"id\":\"408500\",\"arcs\":[[-2644,-2651,2674,2675,-2295,2676]]},{\"type\":\"Polygon\",\"id\":\"407801\",\"arcs\":[[2677,-2325,-2322,-2641,2678,2679,-2100,2680]]},{\"type\":\"Polygon\",\"id\":\"414100\",\"arcs\":[[-2571,-2111,-2365,2681,2682]]},{\"type\":\"Polygon\",\"id\":\"412600\",\"arcs\":[[-2406,-2447,-2356,-2618]]},{\"type\":\"Polygon\",\"id\":\"304202\",\"arcs\":[[2683,-2614,-2209,2684,2685,-2681,-2099,-2504,-2617,2686]]},{\"type\":\"Polygon\",\"id\":\"519801\",\"arcs\":[[2687,2688,-2562,-2161,2689]]},{\"type\":\"Polygon\",\"id\":\"302101\",\"arcs\":[[2690,2691,2692,2693,2694,2695,-2666]]},{\"type\":\"Polygon\",\"id\":\"302102\",\"arcs\":[[2696,2697,2698,-2695]]},{\"type\":\"Polygon\",\"id\":\"302200\",\"arcs\":[[-2696,-2699,2699,2700,2701,-2532,-2667]]},{\"type\":\"Polygon\",\"id\":\"406100\",\"arcs\":[[2702,2703,-2597,-2592]]},{\"type\":\"Polygon\",\"id\":\"405900\",\"arcs\":[[-2672,-2601,-2604,-2611,2704,-2589,-2674]]},{\"type\":\"Polygon\",\"id\":\"406400\",\"arcs\":[[2705,-2137,2706,2707,2708,2709,-2543,-2281,2710]]},{\"type\":\"Polygon\",\"id\":\"407201\",\"arcs\":[[-2453,2711,-2141,2712]]},{\"type\":\"Polygon\",\"id\":\"520002\",\"arcs\":[[-2609,-2610,-2381,2713,-2560]]},{\"type\":\"Polygon\",\"id\":\"415402\",\"arcs\":[[-2401,2714,-2373,2715]]},{\"type\":\"Polygon\",\"id\":\"410800\",\"arcs\":[[2716,2717,-2288,2718,-2474,-2330,-2291]]},{\"type\":\"Polygon\",\"id\":\"409700\",\"arcs\":[[-2179,2719,2720,2721,-2648]]},{\"type\":\"Polygon\",\"id\":\"408200\",\"arcs\":[[2722,-2679,-2646,2723,-2327,-2102]]},{\"type\":\"Polygon\",\"id\":\"408100\",\"arcs\":[[-2724,-2645,-2677,-2294,-2169,-2328]]},{\"type\":\"Polygon\",\"id\":\"415000\",\"arcs\":[[2724,2725,-2566,-2552,-2108,2726]]},{\"type\":\"Polygon\",\"id\":\"302300\",\"arcs\":[[-2702,2727,2728,2729,-2533]]},{\"type\":\"Polygon\",\"id\":\"302400\",\"arcs\":[[-2701,2730,-2123,2731,2732,-2728]]},{\"type\":\"Polygon\",\"id\":\"302501\",\"arcs\":[[-2698,2733,-2203,-2130,-2731,-2700]]},{\"type\":\"Polygon\",\"id\":\"413804\",\"arcs\":[[2734,2735,-2348,-2352]]},{\"type\":\"Polygon\",\"id\":\"303800\",\"arcs\":[[-2213,2736,2737,2738,-2205]]},{\"type\":\"Polygon\",\"id\":\"407402\",\"arcs\":[[-2171,-2410,-2563,-2466]]},{\"type\":\"Polygon\",\"id\":\"413500\",\"arcs\":[[-2640,-2572,-2683,-2197,-2449]]},{\"type\":\"Polygon\",\"id\":\"301700\",\"arcs\":[[-2662,2739,-2660]]},{\"type\":\"Polygon\",\"id\":\"301800\",\"arcs\":[[-2477,-2427,-2629,-2661,-2740,-2664,-2529,-2520]]},{\"type\":\"Polygon\",\"id\":\"416500\",\"arcs\":[[2740,-2190,2741,-2261]]},{\"type\":\"Polygon\",\"id\":\"411500\",\"arcs\":[[2742,-2264,-2263,-2115,-2458]]},{\"type\":\"Polygon\",\"id\":\"412301\",\"arcs\":[[-2657,-2498,2743,2744,2745]]},{\"type\":\"Polygon\",\"id\":\"302502\",\"arcs\":[[2746,2747,2748,-2207,-2204,-2734,-2697,-2694]]},{\"type\":\"Polygon\",\"id\":\"302600\",\"arcs\":[[2749,-2272,2750]]},{\"type\":\"Polygon\",\"id\":\"302700\",\"arcs\":[[2751,-2284,-2273,-2750,2752,2753,2754]]},{\"type\":\"Polygon\",\"id\":\"407301\",\"arcs\":[[2755,-2518,-2105,-2465,2756,-2451,2757,2758,-2738]]},{\"type\":\"Polygon\",\"id\":\"414201\",\"arcs\":[[-2682,-2364,-2557,2759,-2198]]},{\"type\":\"Polygon\",\"id\":\"414600\",\"arcs\":[[-2297,2760,-2727,2761,-2411]]},{\"type\":\"Polygon\",\"id\":\"520700\",\"arcs\":[[-2473,2762,-2505]]},{\"type\":\"Polygon\",\"id\":\"415600\",\"arcs\":[[-2722,2763,-2402,2764,-2514,2765,-2649]]},{\"type\":\"Polygon\",\"id\":\"414800\",\"arcs\":[[-2676,2766,-2512,2767,2768]]},{\"type\":\"Polygon\",\"id\":\"415401\",\"arcs\":[[-2765,-2716,-2372,2769,-2515]]},{\"type\":\"Polygon\",\"id\":\"412100\",\"arcs\":[[2770,2771,-2745,2772,-2265,2773,-2361]]},{\"type\":\"Polygon\",\"id\":\"415201\",\"arcs\":[[-2768,-2516,-2770,-2376,-2565,-2726,2774]]},{\"type\":\"Polygon\",\"id\":\"414502\",\"arcs\":[[2775,-2554,-2380,2776,2777,2778]]},{\"type\":\"Polygon\",\"id\":\"520001\",\"arcs\":[[-2163,-2561,-2714,-2385,-2354,-2242]]},{\"type\":\"Polygon\",\"id\":\"302800\",\"arcs\":[[2779,2780,2781,-2755,-2535]]},{\"type\":\"Polygon\",\"id\":\"302900\",\"arcs\":[[2782,2783,2784,-2280,2785,-2781,2786]]},{\"type\":\"Polygon\",\"id\":\"303000\",\"arcs\":[[-2782,-2786,-2279,-2752]]},{\"type\":\"Polygon\",\"id\":\"303101\",\"arcs\":[[-2730,2787,-2787,-2780,-2534]]},{\"type\":\"Polygon\",\"id\":\"410500\",\"arcs\":[[2788,2789,-2271,-2289,-2718,2790,-2486,-2548]]},{\"type\":\"Polygon\",\"id\":\"416100\",\"arcs\":[[2791,-2511,2792,-2399]]},{\"type\":\"Polygon\",\"id\":\"411700\",\"arcs\":[[-2475,-2719,-2287,-2362,-2774,-2743,-2457]]},{\"type\":\"Polygon\",\"id\":\"412000\",\"arcs\":[[-2620,-2658,-2746,-2772,2793,-2269,2794]]},{\"type\":\"Polygon\",\"id\":\"411901\",\"arcs\":[[-2285,-2270,-2794,-2771,-2360]]},{\"type\":\"Polygon\",\"id\":\"519802\",\"arcs\":[[-2225,-2231,-2605,-2558,-2689]]},{\"type\":\"Polygon\",\"id\":\"416000\",\"arcs\":[[2795,2796,-2792,-2398,2797]]},{\"type\":\"Polygon\",\"id\":\"415500\",\"arcs\":[[-2178,-2300,2798,2799,-2720]]},{\"type\":\"Polygon\",\"id\":\"413300\",\"arcs\":[[-2235,-2353,-2194,-2152]]},{\"type\":\"Polygon\",\"id\":\"414501\",\"arcs\":[[-2778,2800,-2735,2801]]},{\"type\":\"Polygon\",\"id\":\"518900\",\"arcs\":[[2802,-2166,2803,-2686,2804]]},{\"type\":\"Polygon\",\"id\":\"416701\",\"arcs\":[[-2260,2805,2806,-2149,-2187,-2741]]},{\"type\":\"Polygon\",\"id\":\"303102\",\"arcs\":[[-2729,-2733,2807,-2134,2808,-2783,-2788]]},{\"type\":\"Polygon\",\"id\":\"303201\",\"arcs\":[[-2133,-2138,-2706,2809,-2784,-2809]]},{\"type\":\"Polygon\",\"id\":\"303202\",\"arcs\":[[-2711,-2785,-2810]]},{\"type\":\"Polygon\",\"id\":\"303301\",\"arcs\":[[-2127,-2131,-2808,-2732]]},{\"type\":\"Polygon\",\"id\":\"414001\",\"arcs\":[[-2762,-2107,-2570,-2412]]},{\"type\":\"Polygon\",\"id\":\"414700\",\"arcs\":[[-2769,-2775,-2725,-2761,-2296]]},{\"type\":\"Polygon\",\"id\":\"410400\",\"arcs\":[[-2791,-2717,-2290,2810,2811,-2487]]},{\"type\":\"Polygon\",\"id\":\"519602\",\"arcs\":[[2812,-2226,-2688,2813]]},{\"type\":\"Polygon\",\"id\":\"416801\",\"arcs\":[[-2259,2814,2815,-2806]]},{\"type\":\"Polygon\",\"id\":\"416402\",\"arcs\":[[-2117,-2262,-2742,-2189,2816,2817]]},{\"type\":\"Polygon\",\"id\":\"416401\",\"arcs\":[[-2818,2818,-2183,-2118]]},{\"type\":\"Polygon\",\"id\":\"518000\",\"arcs\":[[2819,2820,2821,2822,2823]]},{\"type\":\"Polygon\",\"id\":\"518800\",\"arcs\":[[2824,2825,2826,2827,2828,2829]]},{\"type\":\"Polygon\",\"id\":\"520800\",\"arcs\":[[-2763,-2472,-2319,-2301,-2177,-2506]]},{\"type\":\"Polygon\",\"id\":\"406501\",\"arcs\":[[-2710,2830,-2708,2831,-2758,-2456,2832,2833,2834,-2703,-2596,-2670,-2544]]},{\"type\":\"Polygon\",\"id\":\"409100\",\"arcs\":[[-2253,-2304,-2647,-2642,-2321]]},{\"type\":\"Polygon\",\"id\":\"416900\",\"arcs\":[[-2192,-2349,-2736,-2801,-2777,-2379,-2374,-2715,-2400,-2793,-2510,2835,2836,2837,-2815,-2258]]},{\"type\":\"Polygon\",\"id\":\"519000\",\"arcs\":[[-2256,-2326,-2678,-2804]]},{\"type\":\"Polygon\",\"id\":\"414900\",\"arcs\":[[-2650,-2766,-2513,-2767,-2675]]},{\"type\":\"Polygon\",\"id\":\"517802\",\"arcs\":[[-2630,-2393,2838]]},{\"type\":\"Polygon\",\"id\":\"517901\",\"arcs\":[[2839,2840,2841]]},{\"type\":\"Polygon\",\"id\":\"518203\",\"arcs\":[[2842,2843,2844,2845,2846]]},{\"type\":\"Polygon\",\"id\":\"518204\",\"arcs\":[[2847,-2233,2848,-2825,2849,-2846]]},{\"type\":\"Polygon\",\"id\":\"518700\",\"arcs\":[[2850,2851,-2850,-2830,2852,2853]]},{\"type\":\"Polygon\",\"id\":\"519400\",\"arcs\":[[2854,2855,-2160]]},{\"type\":\"Polygon\",\"id\":\"519500\",\"arcs\":[[2856,-2855,-2159,2857,-2828]]},{\"type\":\"Polygon\",\"id\":\"519601\",\"arcs\":[[-2827,2858,-2814,-2690,-2856,-2857]]},{\"type\":\"Polygon\",\"id\":\"521200\",\"arcs\":[[-2318,2859,2860,2861,-2239]]},{\"type\":\"Polygon\",\"id\":\"407802\",\"arcs\":[[-2680,-2723,-2101]]},{\"type\":\"Polygon\",\"id\":\"521801\",\"arcs\":[[-2656,-2500,2862,-2637,-2470,-2569]]},{\"type\":\"Polygon\",\"id\":\"414301\",\"arcs\":[[-2760,-2556,2863,2864,-2199]]},{\"type\":\"Polygon\",\"id\":\"521601\",\"arcs\":[[-2317,-2639,2865,2866,-2860]]},{\"type\":\"Polygon\",\"id\":\"304001\",\"arcs\":[[-2519,-2756,-2737,-2212]]},{\"type\":\"Polygon\",\"id\":\"518300\",\"arcs\":[[2867,2868,-2851,2869,2870]]},{\"type\":\"Polygon\",\"id\":\"518400\",\"arcs\":[[-2847,-2852,-2869]]},{\"type\":\"Polygon\",\"id\":\"519703\",\"arcs\":[[-2849,-2232,-2227,-2813,-2859,-2826]]},{\"type\":\"Polygon\",\"id\":\"410600\",\"arcs\":[[2871,2872,-2266,-2790]]},{\"type\":\"Polygon\",\"id\":\"415802\",\"arcs\":[[-2721,-2800,2873,-2798,-2397,-2764]]},{\"type\":\"Polygon\",\"id\":\"406600\",\"arcs\":[[-2206,-2739,-2759,-2832,-2707,-2136]]},{\"type\":\"Polygon\",\"id\":\"413001\",\"arcs\":[[-2744,-2497,-2236,-2150,-2156,-2773]]},{\"type\":\"Polygon\",\"id\":\"517902\",\"arcs\":[[2874,2875,2876,-2820,2877,-2840]]},{\"type\":\"Polygon\",\"id\":\"518100\",\"arcs\":[[-2822,2878,-2871,2879]]},{\"type\":\"Polygon\",\"id\":\"518201\",\"arcs\":[[-2877,2880,2881,-2843,-2868,-2879,-2821]]},{\"type\":\"Polygon\",\"id\":\"518501\",\"arcs\":[[2882,2883,2884,2885,-2805,-2685,-2208,-2749,2886]]},{\"type\":\"Polygon\",\"id\":\"518502\",\"arcs\":[[2887,-2858,-2167,-2803,-2886]]},{\"type\":\"Polygon\",\"id\":\"518600\",\"arcs\":[[2888,-2853,-2829,-2888,-2885]]},{\"type\":\"Polygon\",\"id\":\"521301\",\"arcs\":[[-2861,2889,2890,-2507,-2797]]},{\"type\":\"Polygon\",\"id\":\"521602\",\"arcs\":[[-2863,-2499,2891,-2866,-2638]]},{\"type\":\"Polygon\",\"id\":\"410200\",\"arcs\":[[-2621,-2795,-2268,2892]]},{\"type\":\"Polygon\",\"id\":\"521400\",\"arcs\":[[-2891,2893,2894,-2508]]},{\"type\":\"Polygon\",\"id\":\"521700\",\"arcs\":[[-2867,-2892,-2503,2895,-2894,-2890]]},{\"type\":\"Polygon\",\"id\":\"411200\",\"arcs\":[[-2332,-2476,-2459,-2113,-2311,-2418]]},{\"type\":\"Polygon\",\"id\":\"406801\",\"arcs\":[[2896,-2454,-2713,-2140,2897,2898,-2834]]},{\"type\":\"Polygon\",\"id\":\"414304\",\"arcs\":[[-2555,-2776,2899,-2864]]},{\"type\":\"Polygon\",\"id\":\"414303\",\"arcs\":[[-2900,-2779,-2802,-2351,-2865]]},{\"type\":\"Polygon\",\"id\":\"406802\",\"arcs\":[[-2455,-2897,-2833]]},{\"type\":\"Polygon\",\"id\":\"406702\",\"arcs\":[[-2899,2900,-2704,-2835]]},{\"type\":\"Polygon\",\"id\":\"406701\",\"arcs\":[[-2901,-2898,-2139,-2612,-2598]]},{\"type\":\"Polygon\",\"id\":\"304204\",\"arcs\":[[2901,-2687,-2616]]},{\"type\":\"Polygon\",\"id\":\"304203\",\"arcs\":[[-2684,-2902,-2615]]},{\"type\":\"Polygon\",\"id\":\"990400\",\"arcs\":[[-2184,-2819,-2817,-2188,-2147,2902,-2837,2903,2904,2905,2906]]},{\"type\":\"Polygon\",\"id\":\"990302\",\"arcs\":[[2907,2908,-2905,2909]]},{\"type\":\"Polygon\",\"id\":\"990301\",\"arcs\":[[2910,2911,-2875,-2842,2912,2913,2914]]},{\"type\":\"Polygon\",\"id\":\"990200\",\"arcs\":[[2915,-2914,-2492,2916]]},{\"type\":\"Polygon\",\"id\":\"990100\",\"arcs\":[[2917,2918,2919,2920,2921,2922,2923,2924,-2917,-2581,-2432,2925,2926]]},{\"type\":\"Polygon\",\"id\":\"982100\",\"arcs\":[[-2887,-2748,2927]]},{\"type\":\"Polygon\",\"id\":\"981100\",\"arcs\":[[2928,2929]]},{\"type\":\"Polygon\",\"id\":\"980100\",\"arcs\":[[-2709,-2831]]},{\"type\":\"Polygon\",\"id\":\"407203\",\"arcs\":[[-2452,2930,-2366,-2423,-2142,-2712]]},{\"type\":\"Polygon\",\"id\":\"407204\",\"arcs\":[[-2468,-2564,-2415,-2367,-2931,-2757]]},{\"type\":\"Polygon\",\"id\":\"522700\",\"arcs\":[[-2799,-2240,-2862,-2796,-2874]]},{\"type\":\"Polygon\",\"id\":\"521902\",\"arcs\":[[-2895,-2896,-2502,-2655,2931,2932,-2910,-2904,-2836,-2509]]},{\"type\":\"Polygon\",\"id\":\"416802\",\"arcs\":[[-2838,-2903,-2146,-2807,-2816]]},{\"type\":\"Polygon\",\"id\":\"410000\",\"arcs\":[[-2445,-2591,2933,-2872,-2789,-2547,-2634,-2440]]},{\"type\":\"Polygon\",\"id\":\"410100\",\"arcs\":[[-2934,-2590,-2705,-2622,-2893,-2267,-2873]]},{\"type\":\"Polygon\",\"id\":\"517400\",\"arcs\":[[-2542,-2390,2934,-2574,-2495]]},{\"type\":\"Polygon\",\"id\":\"517500\",\"arcs\":[[-2389,2935,-2691,-2665,-2575,-2935]]},{\"type\":\"Polygon\",\"id\":\"517701\",\"arcs\":[[2936,-2823,-2880,-2870,-2854,-2889,-2884,2937,-2929,2938,-2692,-2936,-2388]]},{\"type\":\"Polygon\",\"id\":\"517705\",\"arcs\":[[-2930,-2938,-2883,-2928,-2747,-2693,-2939]]},{\"type\":\"Polygon\",\"id\":\"517801\",\"arcs\":[[-2841,-2878,-2824,-2937,-2387,-2633,-2631,-2839,-2392,-2489,-2913]]},{\"type\":\"Polygon\",\"id\":\"011502\",\"arcs\":[[2939,2940,2941,2942,2943,2944,2945,2946,2947]]},{\"type\":\"Polygon\",\"id\":\"011501\",\"arcs\":[[2948,-2942,2949,2950,2951,2952,2953]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[2954,2955,2956,2957,2958,2959,2960]]},{\"type\":\"Polygon\",\"id\":\"010502\",\"arcs\":[[2961,2962,2963,2964,2965,2966,2967,2968]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[2969,-2968,2970,2971,2972,2973,2974]]},{\"type\":\"Polygon\",\"id\":\"011002\",\"arcs\":[[2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,-2951]]},{\"type\":\"Polygon\",\"id\":\"010702\",\"arcs\":[[2985,-2982,2986]]},{\"type\":\"Polygon\",\"id\":\"010501\",\"arcs\":[[-2957,2987,-2964,2988]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[-2956,2989,-2965,-2988]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[-2952,-2985,2990,2991,2992,2993]]},{\"type\":\"Polygon\",\"id\":\"010900\",\"arcs\":[[-2984,2994,-2987,-2981,2995,2996,2997,-2971,-2967,2998,-2991]]},{\"type\":\"Polygon\",\"id\":\"010202\",\"arcs\":[[2999,3000,3001,3002,3003,3004,-2969,-2970,3005]]},{\"type\":\"Polygon\",\"id\":\"010201\",\"arcs\":[[3006,-2960,3007,-3004]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[-2958,-2989,-2963,3008]]},{\"type\":\"Polygon\",\"id\":\"011301\",\"arcs\":[[-2999,-2966,-2990,-2955,3009,-2992]]},{\"type\":\"Polygon\",\"id\":\"011001\",\"arcs\":[[3010,-2978]]},{\"type\":\"Polygon\",\"id\":\"011302\",\"arcs\":[[3011,3012,3013,-2993,-3010,-2961,-3007,-3003,3014]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-3005,-3008,-2959,-3009,-2962]]},{\"type\":\"Polygon\",\"id\":\"010701\",\"arcs\":[[-2983,-2986,-2995]]},{\"type\":\"Polygon\",\"id\":\"006103\",\"arcs\":[[3015,3016,3017,3018]]},{\"type\":\"Polygon\",\"id\":\"016901\",\"arcs\":[[3019,3020,3021,3022,3023,3024]]},{\"type\":\"Polygon\",\"id\":\"006102\",\"arcs\":[[3025,-3017,3026,3027]]},{\"type\":\"Polygon\",\"id\":\"006000\",\"arcs\":[[3028,3029,3030,-3019,3031,3032]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[3033,3034,3035,3036]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[3037,3038,3039,3040,3041,3042,3043]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[3044,3045,3046,3047,3048,3049]]},{\"type\":\"Polygon\",\"id\":\"010321\",\"arcs\":[[3050,3051,3052,3053,3054]]},{\"type\":\"Polygon\",\"id\":\"006101\",\"arcs\":[[-3035,3055,-3027,-3016,-3031,3056]]},{\"type\":\"Polygon\",\"id\":\"005800\",\"arcs\":[[3057,3058,-3036,-3057,-3030,3059,3060,3061]]},{\"type\":\"Polygon\",\"id\":\"005700\",\"arcs\":[[3062,3063,-3060,-3029,3064,3065]]},{\"type\":\"Polygon\",\"id\":\"005602\",\"arcs\":[[3066,3067,3068]]},{\"type\":\"Polygon\",\"id\":\"014900\",\"arcs\":[[3069,3070,3071,3072,3073,3074]]},{\"type\":\"Polygon\",\"id\":\"005601\",\"arcs\":[[3075,3076,3077,-3069,3078,3079,3080]]},{\"type\":\"Polygon\",\"id\":\"005500\",\"arcs\":[[3081,-3080,3082,-3028,-3056,-3034,3083,3084,3085]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[-3084,-3037,-3059,3086]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[3087,3088,3089,-3085,-3087,-3058,3090]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[3091,-3061,-3064,3092]]},{\"type\":\"Polygon\",\"id\":\"014800\",\"arcs\":[[3093,3094,3095,3096,-3070,3097]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[3098,-3098,-3075,3099,-3067,-3078,3100]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[3101,3102,-3093,-3063,3103]]},{\"type\":\"Polygon\",\"id\":\"004900\",\"arcs\":[[3104,-3104,-3066,3105,3106,3107]]},{\"type\":\"Polygon\",\"id\":\"005200\",\"arcs\":[[3108,-3091,-3062,-3092,-3103,3109]]},{\"type\":\"Polygon\",\"id\":\"004800\",\"arcs\":[[-3048,3110,3111,-3108,3112]]},{\"type\":\"Polygon\",\"id\":\"004600\",\"arcs\":[[3113,3114,-3101,-3077,3115,3116,3117]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[3118,3119,3120,3121]]},{\"type\":\"Polygon\",\"id\":\"016802\",\"arcs\":[[3122,3123,3124,-3025,3125]]},{\"type\":\"Polygon\",\"id\":\"016300\",\"arcs\":[[-3106,-3065,-3033,3126,3127,3128,3129,3130]]},{\"type\":\"Polygon\",\"id\":\"016200\",\"arcs\":[[-3032,-3018,3131,3132,-3127]]},{\"type\":\"Polygon\",\"id\":\"004500\",\"arcs\":[[3133,-3116,-3076,3134]]},{\"type\":\"Polygon\",\"id\":\"004200\",\"arcs\":[[3135,3136,-3088,-3109,3137,3138]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[3139,3140,3141,-3105,-3112]]},{\"type\":\"Polygon\",\"id\":\"003601\",\"arcs\":[[3142,-3118,3143,3144]]},{\"type\":\"Polygon\",\"id\":\"004400\",\"arcs\":[[3145,-3135,-3081,-3082,3146,3147]]},{\"type\":\"Polygon\",\"id\":\"016100\",\"arcs\":[[-3083,-3079,-3068,-3100,-3074,3148,3149,-3132,-3026]]},{\"type\":\"Polygon\",\"id\":\"016002\",\"arcs\":[[3150,-3130,3151,3152,3153]]},{\"type\":\"Polygon\",\"id\":\"016001\",\"arcs\":[[-3129,3154,3155,-3124,3156,-3152]]},{\"type\":\"Polygon\",\"id\":\"004000\",\"arcs\":[[3157,3158,-3139,3159,-3141]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[-3160,-3138,-3110,-3102,-3142]]},{\"type\":\"Polygon\",\"id\":\"003602\",\"arcs\":[[3160,3161,3162,-3114,-3143]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[3163,3164,3165,3166,-3148,3167,3168,3169]]},{\"type\":\"Polygon\",\"id\":\"016502\",\"arcs\":[[3170,-3153,3171,3172,3173]]},{\"type\":\"Polygon\",\"id\":\"016501\",\"arcs\":[[-3157,-3123,3174,3175,-3172]]},{\"type\":\"Polygon\",\"id\":\"003200\",\"arcs\":[[3176,3177,-3169,3178,-3136,-3159,3179,3180]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[3181,3182,3183,3184,3185,3186,3187]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[3188,-3187,3189,3190,3191]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[3192,-3192,3193,3194]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[3195,3196,-3188,-3189,-3193,3197,3198]]},{\"type\":\"Polygon\",\"id\":\"015500\",\"arcs\":[[3199,3200,3201,3202]]},{\"type\":\"Polygon\",\"id\":\"015400\",\"arcs\":[[-3203,3203,3204,3205]]},{\"type\":\"Polygon\",\"id\":\"015203\",\"arcs\":[[3206,3207,3208,-3071,3209]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[3210,-3207,3211,-3096,3212]]},{\"type\":\"Polygon\",\"id\":\"016700\",\"arcs\":[[-3176,3213,3214,3215,3216,3217]]},{\"type\":\"Polygon\",\"id\":\"011011\",\"arcs\":[[3218,3219,3220,3221,3222,3223]]},{\"type\":\"Polygon\",\"id\":\"015000\",\"arcs\":[[3224,-3213,-3095,-3201]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[3225,3226,3227,3228,3229]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[3230,3231,3232,3233,3234,3235,-3227]]},{\"type\":\"Polygon\",\"id\":\"011402\",\"arcs\":[[3236,3237,3238,-3230,3239,-3038,3240,3241]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[3242,3243,3244,3245]]},{\"type\":\"Polygon\",\"id\":\"016600\",\"arcs\":[[3246,-3173,-3218,3247,-3041]]},{\"type\":\"Polygon\",\"id\":\"003500\",\"arcs\":[[3248,-3144,-3117,-3134,-3146,-3167,3249]]},{\"type\":\"Polygon\",\"id\":\"003000\",\"arcs\":[[-3180,-3158,3250,3251]]},{\"type\":\"Polygon\",\"id\":\"002700\",\"arcs\":[[3252,-3046,3253,3254]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[3255,3256,3257,3258,-3246,3259,3260,3261,-3235]]},{\"type\":\"Polygon\",\"id\":\"016902\",\"arcs\":[[3262,3263,3264,3265,-3021,3266]]},{\"type\":\"Polygon\",\"id\":\"014600\",\"arcs\":[[-3163,3267,3268,-3204,-3202,-3094,-3099,-3115]]},{\"type\":\"Polygon\",\"id\":\"002400\",\"arcs\":[[3269,-3165,3270]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[3271,3272,-3170,-3178,3273,3274]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[-3259,3275,3276,3277,-3255,3278,-3243]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[3279,3280,3281,-3161,3282]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[3283,-3283,-3145,3284]]},{\"type\":\"Polygon\",\"id\":\"001702\",\"arcs\":[[3285,-3285,-3249,3286,-3183]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[3287,-3205,-3269,3288,3289,3290]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[-3290,3291,-3281,3292,3293,3294,-3120,3295,3296]]},{\"type\":\"Polygon\",\"id\":\"010700\",\"arcs\":[[3297,3298,3299,3300]]},{\"type\":\"Polygon\",\"id\":\"001701\",\"arcs\":[[-3287,-3250,-3166,-3270,3301,-3184]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[3302,-3185,-3302,-3271,-3164,-3273]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[-3190,-3186,-3303,-3272,3303]]},{\"type\":\"Polygon\",\"id\":\"001400\",\"arcs\":[[3304,-3194,-3191,-3304,3305]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[-3293,-3280,-3284,-3286,-3182,3306]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-3198,-3195,-3305,3307,3308]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[3309,-3196,3310,3311]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[3312,3313,-3297,3314,3315,3316,-3299]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[3317,3318,-3313,-3298,3319]]},{\"type\":\"Polygon\",\"id\":\"011241\",\"arcs\":[[3320,3321,3322,3323]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[-3053,3324,3325,3326,-3291,-3314,-3319,3327]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[3328,-3311,-3199,-3309,3329,3330]]},{\"type\":\"Polygon\",\"id\":\"016801\",\"arcs\":[[-3175,-3126,-3024,3331,3332,3333,-3214]]},{\"type\":\"Polygon\",\"id\":\"014200\",\"arcs\":[[-3294,-3307,-3197,-3310,3334]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[3335,3336,3337,3338]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[3339,3340,-3315,-3296,-3119]]},{\"type\":\"Polygon\",\"id\":\"010301\",\"arcs\":[[3341,-3054,-3328,-3318,3342,3343]]},{\"type\":\"Polygon\",\"id\":\"011021\",\"arcs\":[[-3322,3344,-3320,3345,3346,3347,3348]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[3349,3350,3351,3352,-3051,3353,-3344,3354,3355]]},{\"type\":\"Polygon\",\"id\":\"011012\",\"arcs\":[[-3219,3356,-3347]]},{\"type\":\"Polygon\",\"id\":\"002101\",\"arcs\":[[3357,-3181,-3252,3358,-3277]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[-3222,3359,-3340,-3122,3360,3361]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[3362,3363,-3337]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[3364,-3223,-3362,3365,-3363,-3336,3366]]},{\"type\":\"Polygon\",\"id\":\"010900\",\"arcs\":[[3367,-3316,-3341,-3360,-3221,3368]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[-3260,-3245,3369,3370,3371,3372,3373,3374]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[3375,3376,3377]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[3378,-3261,-3375,3379,-3378,3380,-3174,-3247,-3040,3381]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[3382,-3331,3383,-3274,-3177,-3358,-3276,-3258]]},{\"type\":\"Polygon\",\"id\":\"000501\",\"arcs\":[[-3330,-3308,-3306,-3275,-3384]]},{\"type\":\"Polygon\",\"id\":\"015601\",\"arcs\":[[3384,3385,3386,3387,3388,-3225,-3200,-3206,-3288,-3327]]},{\"type\":\"Polygon\",\"id\":\"002901\",\"arcs\":[[-3278,-3359,-3251,-3140,-3111,-3047,-3253]]},{\"type\":\"Polygon\",\"id\":\"013701\",\"arcs\":[[-3338,-3364,-3366,-3361,-3121,-3295,-3335,-3312,-3329,-3383,-3257,3389]]},{\"type\":\"Polygon\",\"id\":\"016400\",\"arcs\":[[3390,-3049,-3113,-3107,-3131,-3151,3391]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[3392,3393,-3367,-3339,-3390,-3256,-3234]]},{\"type\":\"Polygon\",\"id\":\"940000\",\"arcs\":[[-3128,-3133,-3150,3394,-3155]]},{\"type\":\"Polygon\",\"id\":\"015202\",\"arcs\":[[3395,-3208,-3211,-3389]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[-3289,-3268,-3162,-3282,-3292]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[-3300,-3317,-3368,3396]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[3397,-3356,3398,-3324,3399,3400,3401,3402,3403]]},{\"type\":\"Polygon\",\"id\":\"011202\",\"arcs\":[[3404,3405,3406,-3401]]},{\"type\":\"Polygon\",\"id\":\"011201\",\"arcs\":[[-3402,-3407,3407,3408,-3232]]},{\"type\":\"Polygon\",\"id\":\"004301\",\"arcs\":[[-3410,3136,3088]]},{\"type\":\"Polygon\",\"id\":\"004302\",\"arcs\":[[-3168,-3147,-3086,-3090,-3410,-3179]]},{\"type\":\"Polygon\",\"id\":\"011231\",\"arcs\":[[-3406,3410,3411,-3408]]},{\"type\":\"Polygon\",\"id\":\"011232\",\"arcs\":[[-3323,-3349,3412,-3411,-3405,-3400]]},{\"type\":\"Polygon\",\"id\":\"015201\",\"arcs\":[[-3210,-3097,-3212]]},{\"type\":\"Polygon\",\"id\":\"015800\",\"arcs\":[[-3395,-3149,-3073,3413,-3267,-3020,-3125,-3156]]},{\"type\":\"Polygon\",\"id\":\"011401\",\"arcs\":[[3414,3415,-3403,-3231,-3226,-3239]]},{\"type\":\"Polygon\",\"id\":\"011102\",\"arcs\":[[-3413,-3348,-3357,-3224,-3365,-3394,3416]]},{\"type\":\"Polygon\",\"id\":\"011101\",\"arcs\":[[-3409,-3412,-3417,-3393,-3233]]},{\"type\":\"Polygon\",\"id\":\"011022\",\"arcs\":[[-3301,-3397,-3369,-3220,-3346]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[3417,-3325,-3052,-3353,3418]]},{\"type\":\"Polygon\",\"id\":\"011242\",\"arcs\":[[-3399,-3355,-3343,-3345,-3321]]},{\"type\":\"Polygon\",\"id\":\"010322\",\"arcs\":[[-3055,-3342,-3354]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[3419,3420,-3382,-3039,-3240]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[-3279,-3254,-3045,3421,-3370,-3244]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[-3050,-3391,3422,-3371,-3422]]},{\"type\":\"Polygon\",\"id\":\"015700\",\"arcs\":[[-3209,-3396,-3388,3423,-3263,-3414,-3072]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[3424,-3372,-3423,-3392,3425,3426]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[-3425,3427,-3373]]},{\"type\":\"Polygon\",\"id\":\"012400\",\"arcs\":[[-3380,-3374,-3428,-3427,3428,-3376]]},{\"type\":\"Polygon\",\"id\":\"012300\",\"arcs\":[[-3377,-3429,-3426,-3154,-3171,-3381]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[-3228,-3236,-3262,-3379,-3421,3429]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[-3229,-3430,-3420]]},{\"type\":\"Polygon\",\"id\":\"000401\",\"arcs\":[[3430,3431,3432,3433]]},{\"type\":\"Polygon\",\"id\":\"000402\",\"arcs\":[[3434,3435,3436,-3434,3437]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[-3438,-3433,3438,3439,3440,3441,3442]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[3443,3444,3445,3446,3447,-3439]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[3448,3449,3450,3451,3452]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[3453,3454,3455]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[3456,3457,3458,3459,3460,3461]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[3462,-3455,3463,3464,-3446,3465,3466,3467]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[3468,3469,-3462,3470,-3444,-3432]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[-3464,-3454,3471]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[3472,3473,3474,3475,-194]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[-3476,3476,3477,3478,3479,3480,3481,-157,-195]]},{\"type\":\"Polygon\",\"id\":\"001400\",\"arcs\":[[-3467,3482,3483,3484,-3477,-3475,3485]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[3486,-3460,3487,3488,3489,-3484]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[3490,-3452,3491,3492,-3469,-3431,-3437,3493]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-3451,3494,3495,-3492]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[3496,3497,-3488,-3459]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[-3445,-3471,-3461,-3487,-3483,-3466]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[-3490,3498,3499,3500,-3478,-3485]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[-3498,3501,3502,3503,-3499,-3489]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[-3493,-3496,3504,-3457,-3470]]},{\"type\":\"Polygon\",\"id\":\"220300\",\"arcs\":[[3505,3506,3507,3508]]},{\"type\":\"Polygon\",\"id\":\"120000\",\"arcs\":[[-3504,3509,3510,3511,-3500]]},{\"type\":\"Polygon\",\"id\":\"180001\",\"arcs\":[[3512,3513,3514,3515,3516,3517]]},{\"type\":\"Polygon\",\"id\":\"090000\",\"arcs\":[[-3501,-3512,3518,3519,3520,3521,3522,-3479]]},{\"type\":\"Polygon\",\"id\":\"070301\",\"arcs\":[[3523,3524,3525,3526,3527,3528,3529]]},{\"type\":\"Polygon\",\"id\":\"070401\",\"arcs\":[[-3528,3530,-202,3531]]},{\"type\":\"Polygon\",\"id\":\"060100\",\"arcs\":[[3532,3533,3534,3535,3536,3537,3538]]},{\"type\":\"Polygon\",\"id\":\"220901\",\"arcs\":[[3539,3540,3541,3542]]},{\"type\":\"Polygon\",\"id\":\"220100\",\"arcs\":[[3543,3544,3545,-173,3546]]},{\"type\":\"Polygon\",\"id\":\"130003\",\"arcs\":[[3547,3548,3549,3550,3551,-3526,3552]]},{\"type\":\"Polygon\",\"id\":\"080103\",\"arcs\":[[-3551,3553,3554,3555,3556,3557]]},{\"type\":\"Polygon\",\"id\":\"070201\",\"arcs\":[[-3529,-3532,-201,-209,3558]]},{\"type\":\"Polygon\",\"id\":\"070102\",\"arcs\":[[3559,3560,-3524,3561]]},{\"type\":\"Polygon\",\"id\":\"060301\",\"arcs\":[[3562,3563,3564,3565,3566,3567]]},{\"type\":\"Polygon\",\"id\":\"220201\",\"arcs\":[[3568,-3508,3569,-3544]]},{\"type\":\"Polygon\",\"id\":\"140200\",\"arcs\":[[-3527,-3552,-3558,3570,3571,3572]]},{\"type\":\"Polygon\",\"id\":\"070101\",\"arcs\":[[3573,3574,3575,-3562,-3530,-3559,-208]]},{\"type\":\"Polygon\",\"id\":\"050205\",\"arcs\":[[3576,3577,3578,3579,3580,3581,3582]]},{\"type\":\"Polygon\",\"id\":\"050102\",\"arcs\":[[3583,3584,3585,-3563,3586,3587,3588]]},{\"type\":\"Polygon\",\"id\":\"210301\",\"arcs\":[[3589,3590,3591]]},{\"type\":\"Polygon\",\"id\":\"210201\",\"arcs\":[[3592,-3592,3593]]},{\"type\":\"Polygon\",\"id\":\"020003\",\"arcs\":[[-3516,3594,3595,3596,3597]]},{\"type\":\"Polygon\",\"id\":\"050204\",\"arcs\":[[-3582,3598,3599,3600,3601]]},{\"type\":\"Polygon\",\"id\":\"210101\",\"arcs\":[[-3537,3602,3603,-3590,-3593,3604]]},{\"type\":\"Polygon\",\"id\":\"610000\",\"arcs\":[[-3578,3605,3606]]},{\"type\":\"Polygon\",\"id\":\"040001\",\"arcs\":[[3607,3608,3609,3610,-3513]]},{\"type\":\"Polygon\",\"id\":\"030000\",\"arcs\":[[3611,-3520,3612,3613,3614,3615,-3560,-3576]]},{\"type\":\"Polygon\",\"id\":\"020005\",\"arcs\":[[3616,3617,-3579,-3607,3618,-3596]]},{\"type\":\"Polygon\",\"id\":\"200002\",\"arcs\":[[3619]]},{\"type\":\"Polygon\",\"id\":\"080104\",\"arcs\":[[-3550,3620,-3517,-3598,3621,3622,3623,-3554]]},{\"type\":\"Polygon\",\"id\":\"190301\",\"arcs\":[[3624,3625,3626,3627,-3533,3628]]},{\"type\":\"Polygon\",\"id\":\"410000\",\"arcs\":[[-3571,-3557,3629,3630,3631,3632]]},{\"type\":\"Polygon\",\"id\":\"010000\",\"arcs\":[[3633,-3609,3634,3635,3636]]},{\"type\":\"Polygon\",\"id\":\"040003\",\"arcs\":[[3637,3638,3639,3640,-3514,-3611]]},{\"type\":\"Polygon\",\"id\":\"190101\",\"arcs\":[[-3589,3641,3642,3643]]},{\"type\":\"Polygon\",\"id\":\"050104\",\"arcs\":[[-3622,-3597,-3619,-3606,-3577,3644,3645]]},{\"type\":\"Polygon\",\"id\":\"150006\",\"arcs\":[[3646,3647]]},{\"type\":\"Polygon\",\"id\":\"640001\",\"arcs\":[[3648,3649,-3535]]},{\"type\":\"Polygon\",\"id\":\"150003\",\"arcs\":[[3650,3651,-143,-91,-48,-158,-3482]]},{\"type\":\"Polygon\",\"id\":\"150005\",\"arcs\":[[-3647,3652,-3480,-3523,3653,3654]]},{\"type\":\"Polygon\",\"id\":\"130004\",\"arcs\":[[3655,-3553,-3525,-3561,-3616]]},{\"type\":\"Polygon\",\"id\":\"190401\",\"arcs\":[[3656,3657,3658,3659,-3628]]},{\"type\":\"Polygon\",\"id\":\"110005\",\"arcs\":[[3660,3661]]},{\"type\":\"Polygon\",\"id\":\"140602\",\"arcs\":[[3662,3663,-125,3664]]},{\"type\":\"Polygon\",\"id\":\"150004\",\"arcs\":[[-3653,-3648,-3655,3665,-3651,-3481]]},{\"type\":\"Polygon\",\"id\":\"140101\",\"arcs\":[[-3573,3666,-3509,-3569,-3547,-172,-203,-3531]]},{\"type\":\"Polygon\",\"id\":\"190402\",\"arcs\":[[-3587,-3568,-3659,3667]]},{\"type\":\"Polygon\",\"id\":\"640002\",\"arcs\":[[-3536,-3650,3668,3669,-3603]]},{\"type\":\"Polygon\",\"id\":\"060202\",\"arcs\":[[-3538,-3605,-3594,-3591,-3604,-3670,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680]]},{\"type\":\"Polygon\",\"id\":\"160005\",\"arcs\":[[3681,3682]]},{\"type\":\"Polygon\",\"id\":\"160003\",\"arcs\":[[-102,-159,-144,-3652,-3666,-3654,-3522,3683,-3683,3684,-3574,-207,-168]]},{\"type\":\"Polygon\",\"id\":\"110004\",\"arcs\":[[3685,-3639,3686,3687,3688,-3661]]},{\"type\":\"Polygon\",\"id\":\"080201\",\"arcs\":[[-3556,3689,3690,3691,3692,-3630]]},{\"type\":\"Polygon\",\"id\":\"160004\",\"arcs\":[[-3684,-3521,-3612,-3575,-3685,-3682]]},{\"type\":\"Polygon\",\"id\":\"050103\",\"arcs\":[[3693,-3623,-3646,-3585,3694]]},{\"type\":\"Polygon\",\"id\":\"060302\",\"arcs\":[[3695,3696,-3565,3697,-3601,3698,-3672]]},{\"type\":\"Polygon\",\"id\":\"060400\",\"arcs\":[[-3566,-3697,3699]]},{\"type\":\"Polygon\",\"id\":\"080202\",\"arcs\":[[-3624,-3694,3700,-3690,-3555]]},{\"type\":\"Polygon\",\"id\":\"060201\",\"arcs\":[[-3660,-3567,-3700,-3696,-3671,-3669,-3649,-3534]]},{\"type\":\"Polygon\",\"id\":\"130005\",\"arcs\":[[-3615,3701,-3548,-3656]]},{\"type\":\"Polygon\",\"id\":\"020004\",\"arcs\":[[-3641,3702,-3617,-3595,-3515]]},{\"type\":\"Polygon\",\"id\":\"050203\",\"arcs\":[[-3586,-3645,-3583,-3602,-3698,-3564]]},{\"type\":\"Polygon\",\"id\":\"190102\",\"arcs\":[[-3691,-3701,-3695,-3584,-3644,3703,3704]]},{\"type\":\"Polygon\",\"id\":\"200001\",\"arcs\":[[-3635,-3608,-3518,-3621,-3549,-3702,-3614,3705],[-3620]]},{\"type\":\"Polygon\",\"id\":\"190204\",\"arcs\":[[3706,3707,-3642,-3588,-3668,-3658]]},{\"type\":\"Polygon\",\"id\":\"190203\",\"arcs\":[[-3704,-3643,-3708,3708,3709]]},{\"type\":\"Polygon\",\"id\":\"170000\",\"arcs\":[[-3511,3710,-3636,-3706,-3613,-3519]]},{\"type\":\"Polygon\",\"id\":\"300000\",\"arcs\":[[3711,-3709,-3707,-3657,-3627,3712]]},{\"type\":\"Polygon\",\"id\":\"140801\",\"arcs\":[[3713,-3713,-3626,3714,-126,-3664]]},{\"type\":\"Polygon\",\"id\":\"140700\",\"arcs\":[[-3692,-3705,-3710,-3712,-3714,3715]]},{\"type\":\"Polygon\",\"id\":\"140500\",\"arcs\":[[-205,3716,3717,3718,3719,-3665,-124]]},{\"type\":\"Polygon\",\"id\":\"140400\",\"arcs\":[[3720,-3631,-3693,-3716,-3663,-3720]]},{\"type\":\"Polygon\",\"id\":\"140300\",\"arcs\":[[-3572,-3633,3721,-3541,3722,-3506,-3667]]},{\"type\":\"Polygon\",\"id\":\"221001\",\"arcs\":[[-3542,-3722,-3632,-3721,-3719,3723]]},{\"type\":\"Polygon\",\"id\":\"220801\",\"arcs\":[[3724,-3543,-3724,-3718,3725]]},{\"type\":\"Polygon\",\"id\":\"220700\",\"arcs\":[[3726,-3726,-3717,-204,-3546]]},{\"type\":\"Polygon\",\"id\":\"221100\",\"arcs\":[[-3570,-3507,-3723,-3540,-3725,-3727,-3545]]},{\"type\":\"Polygon\",\"id\":\"110003\",\"arcs\":[[-3703,-3640,-3686,-3662,-3689,3727,3728,-3580,-3618]]},{\"type\":\"Polygon\",\"id\":\"100000\",\"arcs\":[[-3510,-3503,3729,-3637,-3711]]},{\"type\":\"Polygon\",\"id\":\"032700\",\"arcs\":[[3730,3731,3732,3733,3734,3735]]},{\"type\":\"Polygon\",\"id\":\"020101\",\"arcs\":[[3736,3737,3738,3739]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[3740,3741,3742,3743,3744]]},{\"type\":\"Polygon\",\"id\":\"032000\",\"arcs\":[[3745,3746,3747,3748,-3737,3749,3750,3751]]},{\"type\":\"Polygon\",\"id\":\"032101\",\"arcs\":[[3752,3753,3754,-3747]]},{\"type\":\"Polygon\",\"id\":\"031900\",\"arcs\":[[-3748,-3755,3755,3756,3757,3758,-3742]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[-3738,-3749,-3741,3759,3760]]},{\"type\":\"Polygon\",\"id\":\"020300\",\"arcs\":[[3761,3762,3763,3764,3765,3766]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[3767,-3751,3768,3769,-3763]]},{\"type\":\"Polygon\",\"id\":\"033003\",\"arcs\":[[3770,3771,3772,3773,3774,3775,3776]]},{\"type\":\"Polygon\",\"id\":\"020102\",\"arcs\":[[-3750,-3740,3777,-3769]]},{\"type\":\"Polygon\",\"id\":\"033004\",\"arcs\":[[-3734,3778,-3777,3779,3780]]},{\"type\":\"Polygon\",\"id\":\"032901\",\"arcs\":[[3781,3782,3783,3784,-3773,3785]]},{\"type\":\"Polygon\",\"id\":\"033002\",\"arcs\":[[-3776,3786,3787,3788,-3780]]},{\"type\":\"Polygon\",\"id\":\"032403\",\"arcs\":[[3789,3790,3791,3792,3793,3794]]},{\"type\":\"Polygon\",\"id\":\"033101\",\"arcs\":[[3795,3796,-3788,3797,3798,3799,3800]]},{\"type\":\"Polygon\",\"id\":\"032300\",\"arcs\":[[3801,-3792]]},{\"type\":\"Polygon\",\"id\":\"032602\",\"arcs\":[[3802,-3794,3803,3804,-3736,3805,-3796,3806]]},{\"type\":\"Polygon\",\"id\":\"032402\",\"arcs\":[[3807,3808,-3752,-3768,-3762,3809,3810]]},{\"type\":\"Polygon\",\"id\":\"032504\",\"arcs\":[[3811,3812,-3795,-3803,3813,3814]]},{\"type\":\"Polygon\",\"id\":\"032200\",\"arcs\":[[-3810,-3767,3815,-3804,-3793,-3802,-3791,3816]]},{\"type\":\"Polygon\",\"id\":\"033102\",\"arcs\":[[3817,-3800,3818,3819,3820,3821]]},{\"type\":\"Polygon\",\"id\":\"032502\",\"arcs\":[[3822,3823,3824,3825,-3808]]},{\"type\":\"Polygon\",\"id\":\"032503\",\"arcs\":[[3826,-3823,3827,-3812,3828]]},{\"type\":\"Polygon\",\"id\":\"032404\",\"arcs\":[[-3828,-3811,-3817,-3790,-3813]]},{\"type\":\"Polygon\",\"id\":\"032601\",\"arcs\":[[-3806,-3735,-3781,-3789,-3797]]},{\"type\":\"Polygon\",\"id\":\"033400\",\"arcs\":[[-3764,-3770,-3778,-3739,-3761,3829,3830]]},{\"type\":\"Polygon\",\"id\":\"033300\",\"arcs\":[[3831,3832,-3771,-3779,-3733]]},{\"type\":\"Polygon\",\"id\":\"033200\",\"arcs\":[[3833,3834,3835,-3832,-3732,3836]]},{\"type\":\"Polygon\",\"id\":\"033500\",\"arcs\":[[-3816,-3766,3837,3838,3839,3840,-3805]]},{\"type\":\"Polygon\",\"id\":\"032102\",\"arcs\":[[3841,3842,3843,3844,-3756,-3754]]},{\"type\":\"Polygon\",\"id\":\"021800\",\"arcs\":[[3845,-3743,-3759,3846,-3784,3847]]},{\"type\":\"Polygon\",\"id\":\"021700\",\"arcs\":[[3848,-3848,-3783,3849,3850]]},{\"type\":\"Polygon\",\"id\":\"021500\",\"arcs\":[[3851,3852,-3835,3853]]},{\"type\":\"Polygon\",\"id\":\"021400\",\"arcs\":[[-3840,3854,3855,-3854,-3834]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[-3837,-3731,-3841]]},{\"type\":\"Polygon\",\"id\":\"021600\",\"arcs\":[[-3850,-3782,3856,-3836,-3853]]},{\"type\":\"Polygon\",\"id\":\"020900\",\"arcs\":[[3857,-3851,-3852,-3856,3858]]},{\"type\":\"Polygon\",\"id\":\"020800\",\"arcs\":[[-3830,-3760,-3745,3859,-3858,3860,3861]]},{\"type\":\"Polygon\",\"id\":\"020700\",\"arcs\":[[-3744,-3846,-3849,-3860]]},{\"type\":\"Polygon\",\"id\":\"021002\",\"arcs\":[[-3839,3862,-3861,-3859,-3855]]},{\"type\":\"Polygon\",\"id\":\"021001\",\"arcs\":[[-3765,-3831,-3862,-3863,-3838]]},{\"type\":\"Polygon\",\"id\":\"032902\",\"arcs\":[[-3857,-3786,-3772,-3833]]},{\"type\":\"Polygon\",\"id\":\"080401\",\"arcs\":[[3863,3864,3865,-196,-155,-64,-118]]},{\"type\":\"Polygon\",\"id\":\"080201\",\"arcs\":[[3866,3867,3868,3869,3870,3871]]},{\"type\":\"Polygon\",\"id\":\"081101\",\"arcs\":[[3872,3873,3874,-192,-3866,3875]]},{\"type\":\"Polygon\",\"id\":\"081102\",\"arcs\":[[3876,3877,-3473,-193,-3875]]},{\"type\":\"Polygon\",\"id\":\"080501\",\"arcs\":[[-3870,3878,3879,-3873,3880,3881]]},{\"type\":\"Polygon\",\"id\":\"080402\",\"arcs\":[[3882,3883,-3864,-117,-108,3884,3885]]},{\"type\":\"Polygon\",\"id\":\"080502\",\"arcs\":[[-3881,-3876,-3865,-3884,3886,3887]]},{\"type\":\"Polygon\",\"id\":\"080202\",\"arcs\":[[3888,-3871,-3882,-3888,3889,3890,3891]]},{\"type\":\"Polygon\",\"id\":\"080100\",\"arcs\":[[3892,3893,-3442,3894,3895,-3868,3896]]},{\"type\":\"Polygon\",\"id\":\"080800\",\"arcs\":[[3897,3898]]},{\"type\":\"Polygon\",\"id\":\"080600\",\"arcs\":[[3899,-3899,3900,-3440,-3448,3901,-3879,-3869,-3896]]},{\"type\":\"Polygon\",\"id\":\"081000\",\"arcs\":[[3902,-3468,-3486,-3474,-3878]]},{\"type\":\"Polygon\",\"id\":\"080900\",\"arcs\":[[-3880,-3902,-3447,-3465,-3472,-3456,-3463,-3903,-3877,-3874]]},{\"type\":\"Polygon\",\"id\":\"080300\",\"arcs\":[[3903,-3890,-3887,-3883,3904]]},{\"type\":\"Polygon\",\"id\":\"080700\",\"arcs\":[[-3895,-3441,-3901,-3898,-3900]]},{\"type\":\"Polygon\",\"id\":\"050601\",\"arcs\":[[3905,3906,3907,3908,3909,3910,3911,3912,3913]]},{\"type\":\"Polygon\",\"id\":\"050101\",\"arcs\":[[3914,-2076,-1787]]},{\"type\":\"Polygon\",\"id\":\"050602\",\"arcs\":[[3915,3916,-3908,3917,3918,3919,-3914,3920,3921]]},{\"type\":\"Polygon\",\"id\":\"050102\",\"arcs\":[[-1786,3922,3923,3924,-2077,-3915]]},{\"type\":\"Polygon\",\"id\":\"050900\",\"arcs\":[[3925,3926,-3919]]},{\"type\":\"Polygon\",\"id\":\"051300\",\"arcs\":[[3927,3928,3929,3930,-3910]]},{\"type\":\"Polygon\",\"id\":\"051400\",\"arcs\":[[3931,3932,-3929,3933,3934]]},{\"type\":\"Polygon\",\"id\":\"051800\",\"arcs\":[[3935,3936,3937,3938,3939]]},{\"type\":\"Polygon\",\"id\":\"050800\",\"arcs\":[[-3927,3940,3941,-3920]]},{\"type\":\"Polygon\",\"id\":\"051000\",\"arcs\":[[3942,-3906,-3942]]},{\"type\":\"Polygon\",\"id\":\"051900\",\"arcs\":[[-3938,3943,3944,3945]]},{\"type\":\"Polygon\",\"id\":\"050400\",\"arcs\":[[3946,3947,3948,3949,3950,-3935,3951,3952,3953]]},{\"type\":\"Polygon\",\"id\":\"051600\",\"arcs\":[[3954,-3939,-3946,3955]]},{\"type\":\"Polygon\",\"id\":\"051700\",\"arcs\":[[3956,-3940,-3955,3957]]},{\"type\":\"Polygon\",\"id\":\"051100\",\"arcs\":[[-3918,-3907,-3943,-3941,-3926]]},{\"type\":\"Polygon\",\"id\":\"052000\",\"arcs\":[[3958,3959,3960,3961,3962,3963]]},{\"type\":\"Polygon\",\"id\":\"051500\",\"arcs\":[[3964,-3958,-3956,-3945,3965,3966,3967,3968,-3932,-3951]]},{\"type\":\"Polygon\",\"id\":\"050500\",\"arcs\":[[-2078,-3925,-3921,-3913,3969,-3960,3970,-2081]]},{\"type\":\"Polygon\",\"id\":\"050202\",\"arcs\":[[-3922,-3924,3971]]},{\"type\":\"Polygon\",\"id\":\"050201\",\"arcs\":[[3972,3973,3974,-3916,-3972,-3923,3975]]},{\"type\":\"Polygon\",\"id\":\"052100\",\"arcs\":[[-3912,3976,3977,-3961,-3970]]},{\"type\":\"Polygon\",\"id\":\"052200\",\"arcs\":[[-3978,3978,3979,3980,3981,-3962]]},{\"type\":\"Polygon\",\"id\":\"050302\",\"arcs\":[[3982,3983,-3975]]},{\"type\":\"Polygon\",\"id\":\"051200\",\"arcs\":[[3984,-3952,-3934,-3928,-3909,-3917,-3984]]},{\"type\":\"Polygon\",\"id\":\"050301\",\"arcs\":[[3985,3986,-3953,-3985,-3983,-3974,3987,3988]]},{\"type\":\"Polygon\",\"id\":\"971100\",\"arcs\":[[3989,-3905,-3886,3990,3991]]},{\"type\":\"Polygon\",\"id\":\"970900\",\"arcs\":[[3992]]},{\"type\":\"Polygon\",\"id\":\"970700\",\"arcs\":[[3993,3994,3995,-112,3996,3997,3998]]},{\"type\":\"Polygon\",\"id\":\"970800\",\"arcs\":[[3999,4000,-3994,4001],[-3993]]},{\"type\":\"Polygon\",\"id\":\"970600\",\"arcs\":[[4002,4003,-3998,4004,4005,4006]]},{\"type\":\"Polygon\",\"id\":\"970200\",\"arcs\":[[4007,4008,-4000,4009]]},{\"type\":\"Polygon\",\"id\":\"971000\",\"arcs\":[[-4009,4010,4011,4012,-3992,4013,-3995,-4001]]},{\"type\":\"Polygon\",\"id\":\"970300\",\"arcs\":[[4014,4015,4016,-4010,-4002,-3999,-4004,4017]]},{\"type\":\"Polygon\",\"id\":\"970500\",\"arcs\":[[4018,-4007,4019,4020,4021,4022,4023]]},{\"type\":\"Polygon\",\"id\":\"970400\",\"arcs\":[[4024,-4018,-4003,-4019,4025,4026]]},{\"type\":\"Polygon\",\"id\":\"970100\",\"arcs\":[[4027,4028,4029,4030,-4011,-4008,-4017,4031]]},{\"type\":\"Polygon\",\"id\":\"971400\",\"arcs\":[[-4006,4032,-257,4033,-4020]]},{\"type\":\"Polygon\",\"id\":\"971300\",\"arcs\":[[-3997,-227,-253,-4033,-4005]]},{\"type\":\"Polygon\",\"id\":\"971200\",\"arcs\":[[-4014,-3991,-3885,-107,-3996]]},{\"type\":\"Polygon\",\"id\":\"062501\",\"arcs\":[[4034,4035,4036,4037,4038,4039]]},{\"type\":\"Polygon\",\"id\":\"061600\",\"arcs\":[[4040,4041,4042,-3829,-3815,4043,4044]]},{\"type\":\"Polygon\",\"id\":\"061800\",\"arcs\":[[4045,4046]]},{\"type\":\"Polygon\",\"id\":\"062601\",\"arcs\":[[4047,-4039,4048,-3825,4049]]},{\"type\":\"Polygon\",\"id\":\"060602\",\"arcs\":[[4050,4051,4052,4053,4054,4055]]},{\"type\":\"Polygon\",\"id\":\"062506\",\"arcs\":[[4056,4057,4058]]},{\"type\":\"Polygon\",\"id\":\"061702\",\"arcs\":[[-4050,-3824,-3827,-4043,4059]]},{\"type\":\"Polygon\",\"id\":\"061701\",\"arcs\":[[4060,-4046,4061,4062,-4048,-4060,-4042,4063]]},{\"type\":\"Polygon\",\"id\":\"061303\",\"arcs\":[[4064,4065]]},{\"type\":\"Polygon\",\"id\":\"062508\",\"arcs\":[[-4037,4066,4067,4068,4069,4070]]},{\"type\":\"Polygon\",\"id\":\"062405\",\"arcs\":[[4071,4072,4073,-4069,4074]]},{\"type\":\"Polygon\",\"id\":\"060501\",\"arcs\":[[4075,4076,4077,4078]]},{\"type\":\"Polygon\",\"id\":\"060300\",\"arcs\":[[-4077,4079,4080,4081,4082,4083,4084,-4056,4085]]},{\"type\":\"Polygon\",\"id\":\"061403\",\"arcs\":[[4086,4087,4088,-4062,-4047,-4061,4089,4090]]},{\"type\":\"Polygon\",\"id\":\"060601\",\"arcs\":[[4091,4092,4093,4094,-4066,4095,4096,-4051,-4085]]},{\"type\":\"Polygon\",\"id\":\"062509\",\"arcs\":[[-4071,4097,4098,-4038]]},{\"type\":\"Polygon\",\"id\":\"062507\",\"arcs\":[[4099,-4058,4100,4101,-3843,4102]]},{\"type\":\"Polygon\",\"id\":\"062406\",\"arcs\":[[4103,-4075,-4068,4104]]},{\"type\":\"Polygon\",\"id\":\"061404\",\"arcs\":[[4105,-4091,4106]]},{\"type\":\"Polygon\",\"id\":\"060502\",\"arcs\":[[-4078,-4086,-4055,4107,4108,4109,4110]]},{\"type\":\"Polygon\",\"id\":\"062800\",\"arcs\":[[4111,4112]]},{\"type\":\"Polygon\",\"id\":\"062700\",\"arcs\":[[4113,4114,4115,-4113,4116,4117,4118,4119,4120]]},{\"type\":\"Polygon\",\"id\":\"062100\",\"arcs\":[[4121,4122,4123]]},{\"type\":\"Polygon\",\"id\":\"062000\",\"arcs\":[[4124,4125,-4124,4126,4127,4128,4129,4130]]},{\"type\":\"Polygon\",\"id\":\"061302\",\"arcs\":[[-4052,-4097,4131,4132,-4087,-4106,4133]]},{\"type\":\"Polygon\",\"id\":\"061301\",\"arcs\":[[4134,4135,4136,4137,4138,-4088,-4133]]},{\"type\":\"Polygon\",\"id\":\"061200\",\"arcs\":[[-4096,-4065,-4095,4139,4140,4141,-4135,-4132]]},{\"type\":\"Polygon\",\"id\":\"061100\",\"arcs\":[[4142,-4140,-4094,4143,-4136,-4142]]},{\"type\":\"Polygon\",\"id\":\"060503\",\"arcs\":[[-4054,4144,4145,4146,-4108]]},{\"type\":\"Polygon\",\"id\":\"061000\",\"arcs\":[[-4143,-4141]]},{\"type\":\"Polygon\",\"id\":\"060902\",\"arcs\":[[4147,4148,4149]]},{\"type\":\"Polygon\",\"id\":\"060901\",\"arcs\":[[-4138,4150,4151,4152,-4150,4153,-4125,4154]]},{\"type\":\"Polygon\",\"id\":\"060800\",\"arcs\":[[4155,4156,-4152,4157,4158]]},{\"type\":\"Polygon\",\"id\":\"060200\",\"arcs\":[[4159,4160,4161]]},{\"type\":\"Polygon\",\"id\":\"060101\",\"arcs\":[[4162,4163,4164,4165,-4159,4166,-4083,4167]]},{\"type\":\"Polygon\",\"id\":\"061401\",\"arcs\":[[-4134,-4107,-4090,-4064,-4041,4168,-4053]]},{\"type\":\"Polygon\",\"id\":\"062300\",\"arcs\":[[4169,4170,4171]]},{\"type\":\"Polygon\",\"id\":\"061903\",\"arcs\":[[-4130,4172,-4035,4173]]},{\"type\":\"Polygon\",\"id\":\"062403\",\"arcs\":[[4174,-4121,4175,4176,-4101,-4057,-4073]]},{\"type\":\"Polygon\",\"id\":\"062404\",\"arcs\":[[4177,-4171,4178,4179,4180,-4114,-4175,-4072,-4104]]},{\"type\":\"Polygon\",\"id\":\"062200\",\"arcs\":[[-4128,4181,-4179,-4170,4182]]},{\"type\":\"Polygon\",\"id\":\"060102\",\"arcs\":[[4183,-4161,4184,4185,4186,4187,-4165,4188]]},{\"type\":\"Polygon\",\"id\":\"060701\",\"arcs\":[[-4167,-4158,-4151,-4137,4189,-4092,-4084]]},{\"type\":\"Polygon\",\"id\":\"062505\",\"arcs\":[[-4129,-4183,-4172,-4178,-4105,-4067,-4036,-4173]]},{\"type\":\"Polygon\",\"id\":\"061500\",\"arcs\":[[-4169,-4045,4190,4191,4192,-4145]]},{\"type\":\"Polygon\",\"id\":\"060702\",\"arcs\":[[-4144,-4093,-4190]]},{\"type\":\"Polygon\",\"id\":\"060400\",\"arcs\":[[4193,-4081]]},{\"type\":\"Polygon\",\"id\":\"061901\",\"arcs\":[[-4155,-4131,-4174,-4040,-4063,-4089,-4139]]},{\"type\":\"Polygon\",\"id\":\"062602\",\"arcs\":[[-4099,4194,-4103,-3842,-3753,-3746,-3809,-3826,-4049]]},{\"type\":\"Polygon\",\"id\":\"062503\",\"arcs\":[[-4070,-4074,-4059,-4100,-4195,-4098]]},{\"type\":\"Polygon\",\"id\":\"951300\",\"arcs\":[[4195,4196,4197,4198,4199,4200]]},{\"type\":\"Polygon\",\"id\":\"940200\",\"arcs\":[[-1458,4201]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[4202,4203,-1527,-1463,-4202,-1462,4204]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[4205,-4201,4206,-1479,4207]]},{\"type\":\"Polygon\",\"id\":\"951200\",\"arcs\":[[4208,4209,4210,-1503,-4204]]},{\"type\":\"Polygon\",\"id\":\"950700\",\"arcs\":[[4211,4212,4213,4214,4215]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[4216,-4216,4217,-4209,-4203,-4199]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[-4207,-4200,-4205,-1461,-1510,-1480]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[4218,4219,4220,4221,-4197,4222]]},{\"type\":\"Polygon\",\"id\":\"951100\",\"arcs\":[[-4218,-4215,4223,4224,-4210]]},{\"type\":\"Polygon\",\"id\":\"951000\",\"arcs\":[[-4214,4225,4226,4227,-4224]]},{\"type\":\"Polygon\",\"id\":\"950900\",\"arcs\":[[4228,4229,-4226,-4213]]},{\"type\":\"Polygon\",\"id\":\"950800\",\"arcs\":[[-4198,-4222,4230,4231,-4229,-4212,-4217]]},{\"type\":\"Polygon\",\"id\":\"000502\",\"arcs\":[[4232,4233,4234,4235,4236]]},{\"type\":\"Polygon\",\"id\":\"000501\",\"arcs\":[[4237,4238,-4233,4239]]},{\"type\":\"Polygon\",\"id\":\"013505\",\"arcs\":[[4240,4241,4242,4243]]},{\"type\":\"Polygon\",\"id\":\"013703\",\"arcs\":[[4244,4245,4246,4247,4248,4249,4250]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,-4238,4261,4262]]},{\"type\":\"Polygon\",\"id\":\"014503\",\"arcs\":[[4263]]},{\"type\":\"Polygon\",\"id\":\"014301\",\"arcs\":[[4264,4265,4266,4267,4268,4269,4270,4271]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-4258,4272,4273,4274,4275,4276]]},{\"type\":\"Polygon\",\"id\":\"014613\",\"arcs\":[[-3799,4277,4278,4279,4280,-3819],[4281],[4282]]},{\"type\":\"Polygon\",\"id\":\"014607\",\"arcs\":[[-3774,4283,4284,4285,-4252,4286,4287,4288,4289,4290,4291]]},{\"type\":\"Polygon\",\"id\":\"013707\",\"arcs\":[[4292,4293,4294,4295,-4247]]},{\"type\":\"Polygon\",\"id\":\"014611\",\"arcs\":[[-4291,4296,4297,4298,4299,-4279,4300]]},{\"type\":\"Polygon\",\"id\":\"014201\",\"arcs\":[[4301,4302,-4265,4303,4304,4305,4306]]},{\"type\":\"Polygon\",\"id\":\"001802\",\"arcs\":[[4307,4308,4309,4310,4311]]},{\"type\":\"Polygon\",\"id\":\"014203\",\"arcs\":[[-4305,4312,4313]]},{\"type\":\"Polygon\",\"id\":\"014302\",\"arcs\":[[-4313,-4304,-4272,4314,4315,4316]]},{\"type\":\"Polygon\",\"id\":\"014501\",\"arcs\":[[-4300,4317,4318,4319,4320,4321,4322,-4280],[-4264]]},{\"type\":\"Polygon\",\"id\":\"013602\",\"arcs\":[[4323,4324,-4273,4325]]},{\"type\":\"Polygon\",\"id\":\"014803\",\"arcs\":[[4326,4327,4328,-3872,-3889,4329]]},{\"type\":\"Polygon\",\"id\":\"014502\",\"arcs\":[[4330,-4316,4331,-4328,4332,-4321]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[4333,4334,4335,4336,4337,4338,4339]]},{\"type\":\"Polygon\",\"id\":\"013506\",\"arcs\":[[4340,4341,4342,-4334,4343,4344,-4241,4345]]},{\"type\":\"Polygon\",\"id\":\"014609\",\"arcs\":[[4346,4347,-4312,4348,-4318,-4299]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[-4340,4349,4350,-4344]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[-4349,-4311,4351,4352,-4307,4353,-4319]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[-4339,4354,4355,4356,-4350]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[4357,-4276,4358,4359,4360,4361,4362,4363,4364]]},{\"type\":\"Polygon\",\"id\":\"002600\",\"arcs\":[[4365,4366,4367,4368,-4266,-4303,4369]]},{\"type\":\"Polygon\",\"id\":\"014801\",\"arcs\":[[4370,4371,-4322,-4333,-4327,4372,4373]]},{\"type\":\"Polygon\",\"id\":\"013508\",\"arcs\":[[-3844,-4102,-4177,4374,-4346,-4244,4375,-4245,4376]]},{\"type\":\"Polygon\",\"id\":\"014615\",\"arcs\":[[-4290,4377,-4297]]},{\"type\":\"Polygon\",\"id\":\"014614\",\"arcs\":[[4378,-4347,-4298,-4378]]},{\"type\":\"Polygon\",\"id\":\"013507\",\"arcs\":[[-4243,-4293,-4246,-4376]]},{\"type\":\"MultiPolygon\",\"id\":\"014612\",\"arcs\":[[[-4282]],[[-4283]]]},{\"type\":\"Polygon\",\"id\":\"013802\",\"arcs\":[[-3757,-3845,-4377,-4251,4379]]},{\"type\":\"Polygon\",\"id\":\"013601\",\"arcs\":[[-4345,-4351,-4357,4380,-4326,-4257,4381,-4294,-4242]]},{\"type\":\"Polygon\",\"id\":\"013503\",\"arcs\":[[-4176,-4120,4382,4383,4384,-4341,-4375]]},{\"type\":\"Polygon\",\"id\":\"013902\",\"arcs\":[[-4249,4385,4386,4387]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-4259,-4277,-4358,4388,4389]]},{\"type\":\"Polygon\",\"id\":\"002500\",\"arcs\":[[4390,-4361,4391,-4367]]},{\"type\":\"Polygon\",\"id\":\"002200\",\"arcs\":[[4392,-4363,4393,4394]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[4395,-4395,4396,4397,4398,4399,4400]]},{\"type\":\"Polygon\",\"id\":\"001801\",\"arcs\":[[-4310,4401,4402,4403,4404,-4352]]},{\"type\":\"Polygon\",\"id\":\"013901\",\"arcs\":[[-4387,4405,-4285,4406]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[-4281,-4323,-4372,4407,-3820]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[4408,4409,4410,4411,-4335,-4343,4412]]},{\"type\":\"Polygon\",\"id\":\"000404\",\"arcs\":[[-4287,-4263,4413,-4308,4414,4415]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[4416,-4413,-4342,-4385,4417,4418]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[-4118,4419,4420,4421,-4409,-4417,4422]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[-4119,-4423,-4419,4423,-4383]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[4424,-4389,-4365,4425,4426]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[-4394,-4362,-4391,-4366,-4397]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[-4424,-4418,-4384]]},{\"type\":\"Polygon\",\"id\":\"013801\",\"arcs\":[[-3847,-3758,-4380,-4250,-4388,-4407,-4284,-3785]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[4427,-4398,-4370,-4302,-4353,-4405]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[4428,4429,-4401,4430,4431]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-4261,4432,-4427,4433,-4429,-4234,-4239]]},{\"type\":\"Polygon\",\"id\":\"001901\",\"arcs\":[[4434,-4431,-4400,4435,4436]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[4437,-4236,4438,-4437,-4403]]},{\"type\":\"Polygon\",\"id\":\"001902\",\"arcs\":[[-4436,-4399,-4428,-4404]]},{\"type\":\"Polygon\",\"id\":\"014802\",\"arcs\":[[-4330,-3892,4439,-4373]]},{\"type\":\"Polygon\",\"id\":\"000403\",\"arcs\":[[-4262,-4240,-4237,-4438,-4402,-4309,-4414]]},{\"type\":\"Polygon\",\"id\":\"014608\",\"arcs\":[[4440,-4415,-4348,-4379,-4289]]},{\"type\":\"Polygon\",\"id\":\"001400\",\"arcs\":[[-4434,-4426,-4364,-4393,-4396,-4430]]},{\"type\":\"Polygon\",\"id\":\"000401\",\"arcs\":[[-4416,-4441,-4288]]},{\"type\":\"Polygon\",\"id\":\"014606\",\"arcs\":[[-3787,-3775,-4292,-4301,-4278,-3798]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-4390,-4425,-4433,-4260]]},{\"type\":\"Polygon\",\"id\":\"014402\",\"arcs\":[[-3893,4441]]},{\"type\":\"Polygon\",\"id\":\"013706\",\"arcs\":[[-4382,-4256,4442,-4295]]},{\"type\":\"Polygon\",\"id\":\"013705\",\"arcs\":[[-4296,-4443,-4255,4443,4444,-4248]]},{\"type\":\"Polygon\",\"id\":\"014002\",\"arcs\":[[-4444,-4254,4445]]},{\"type\":\"Polygon\",\"id\":\"014001\",\"arcs\":[[-4386,-4445,-4446,-4253,-4286,-4406]]},{\"type\":\"Polygon\",\"id\":\"014401\",\"arcs\":[[-4315,-4271,4446,-3894,-4442,-3897,-3867,-4329,-4332]]},{\"type\":\"Polygon\",\"id\":\"014202\",\"arcs\":[[-4320,-4354,-4306,-4314,-4317,-4331]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[-4235,-4432,-4435,-4439]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[4447,4448,4449,4450,4451,4452]]},{\"type\":\"Polygon\",\"id\":\"019900\",\"arcs\":[[4453,4454,4455,4456,4457]]},{\"type\":\"Polygon\",\"id\":\"032400\",\"arcs\":[[4458,4459,4460,4461]]},{\"type\":\"Polygon\",\"id\":\"038500\",\"arcs\":[[4462,4463,4464,4465,4466]]},{\"type\":\"Polygon\",\"id\":\"025500\",\"arcs\":[[4467,4468,4469,4470,4471]]},{\"type\":\"Polygon\",\"id\":\"022901\",\"arcs\":[[4472,4473,4474,4475,4476]]},{\"type\":\"Polygon\",\"id\":\"002702\",\"arcs\":[[4477,4478,4479,4480]]},{\"type\":\"Polygon\",\"id\":\"016200\",\"arcs\":[[4481,4482,4483,4484]]},{\"type\":\"Polygon\",\"id\":\"025400\",\"arcs\":[[4485,4486,4487,4488]]},{\"type\":\"Polygon\",\"id\":\"019300\",\"arcs\":[[4489,-4458,4490,4491,-920,-1113]]},{\"type\":\"Polygon\",\"id\":\"018400\",\"arcs\":[[4492,4493,4494,4495]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[4496,4497,-4481,4498,4499]]},{\"type\":\"Polygon\",\"id\":\"024700\",\"arcs\":[[-1109,-1007,4500,4501,4502,4503,4504]]},{\"type\":\"Polygon\",\"id\":\"023100\",\"arcs\":[[4505,4506,4507,-4475,4508]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[4509,4510,4511,4512]]},{\"type\":\"Polygon\",\"id\":\"022401\",\"arcs\":[[4513,4514,4515,4516,4517]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[4518,4519,4520,4521]]},{\"type\":\"Polygon\",\"id\":\"008700\",\"arcs\":[[4522,4523,4524,4525,4526]]},{\"type\":\"Polygon\",\"id\":\"008400\",\"arcs\":[[4527,4528,4529,4530]]},{\"type\":\"Polygon\",\"id\":\"020601\",\"arcs\":[[-4512,4531,4532,4533,4534]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[4535,4536,4537,4538,4539,4540]]},{\"type\":\"Polygon\",\"id\":\"006800\",\"arcs\":[[4541,4542,4543,4544,4545]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[4546,4547,4548,4549,4550,4551]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[4552,4553,4554,4555,4556]]},{\"type\":\"Polygon\",\"id\":\"039901\",\"arcs\":[[4557,4558,4559,4560,4561,4562,4563]]},{\"type\":\"Polygon\",\"id\":\"026300\",\"arcs\":[[4564,4565,4566,-4468,4567,4568]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[4569,4570,4571]]},{\"type\":\"Polygon\",\"id\":\"022300\",\"arcs\":[[4572,4573,4574,4575,4576]]},{\"type\":\"Polygon\",\"id\":\"026400\",\"arcs\":[[4577,4578,4579,-4496,4580,4581]]},{\"type\":\"Polygon\",\"id\":\"021602\",\"arcs\":[[4582,4583,-4572,4584,4585,4586,4587,4588]]},{\"type\":\"Polygon\",\"id\":\"038000\",\"arcs\":[[4589,4590,4591,4592,4593,4594]]},{\"type\":\"Polygon\",\"id\":\"017500\",\"arcs\":[[4595,4596,4597,4598,4599]]},{\"type\":\"Polygon\",\"id\":\"035900\",\"arcs\":[[4600,4601,4602,4603,4604]]},{\"type\":\"Polygon\",\"id\":\"016700\",\"arcs\":[[4605,4606,4607,4608,4609,4610]]},{\"type\":\"Polygon\",\"id\":\"004300\",\"arcs\":[[4611,4612,4613,4614,4615]]},{\"type\":\"Polygon\",\"id\":\"018900\",\"arcs\":[[4616,-921,-4492]]},{\"type\":\"Polygon\",\"id\":\"006500\",\"arcs\":[[4617,4618,4619,-4612,4620]]},{\"type\":\"Polygon\",\"id\":\"017300\",\"arcs\":[[4621,4622,-4599,4623,4624,4625,4626]]},{\"type\":\"Polygon\",\"id\":\"025300\",\"arcs\":[[-4567,4627,4628,4629,-4469]]},{\"type\":\"Polygon\",\"id\":\"028900\",\"arcs\":[[4630,4631,4632,4633,-871,4634]]},{\"type\":\"Polygon\",\"id\":\"025000\",\"arcs\":[[4635,4636,-4486,4637,4638]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[4639,4640,4641]]},{\"type\":\"Polygon\",\"id\":\"021601\",\"arcs\":[[-4588,4642,4643,4644]]},{\"type\":\"Polygon\",\"id\":\"008900\",\"arcs\":[[4645,-4540,4646,4647,-4525]]},{\"type\":\"Polygon\",\"id\":\"007900\",\"arcs\":[[4648,4649,-4527,4650,4651,4652,4653,4654]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[-4505,4655,4656,-1110]]},{\"type\":\"Polygon\",\"id\":\"005002\",\"arcs\":[[4657,4658,4659,4660]]},{\"type\":\"Polygon\",\"id\":\"005001\",\"arcs\":[[4661,4662,4663,-4659]]},{\"type\":\"Polygon\",\"id\":\"044902\",\"arcs\":[[4664,4665,4666,4667,4668]]},{\"type\":\"Polygon\",\"id\":\"046202\",\"arcs\":[[4669,4670,4671,4672,4673,4674]]},{\"type\":\"Polygon\",\"id\":\"030200\",\"arcs\":[[4675,4676,4677]]},{\"type\":\"Polygon\",\"id\":\"036100\",\"arcs\":[[4678,4679,4680,4681,-4601]]},{\"type\":\"Polygon\",\"id\":\"015700\",\"arcs\":[[4682,4683,4684,4685,4686,4687]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[4688,4689,4690,4691,4692]]},{\"type\":\"Polygon\",\"id\":\"034500\",\"arcs\":[[4693,4694,4695,4696]]},{\"type\":\"Polygon\",\"id\":\"036501\",\"arcs\":[[4697,4698,4699,4700]]},{\"type\":\"Polygon\",\"id\":\"036700\",\"arcs\":[[4701,4702,4703,4704]]},{\"type\":\"Polygon\",\"id\":\"036400\",\"arcs\":[[4705,4706,4707,4708,4709,4710]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[-4692,4711,-4552,4712,4713]]},{\"type\":\"Polygon\",\"id\":\"023000\",\"arcs\":[[4714,4715,4716,4717,4718,4719,4720,-4517]]},{\"type\":\"Polygon\",\"id\":\"019400\",\"arcs\":[[4721,-4581,-4495,4722,4723,4724,4725]]},{\"type\":\"Polygon\",\"id\":\"023301\",\"arcs\":[[4726,4727,4728,4729,4730,4731]]},{\"type\":\"Polygon\",\"id\":\"037600\",\"arcs\":[[4732,4733,4734,4735]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[4736,4737,4738,4739,-4519,4740]]},{\"type\":\"Polygon\",\"id\":\"024800\",\"arcs\":[[4741,4742,-4636,4743,4744,-4460]]},{\"type\":\"Polygon\",\"id\":\"045600\",\"arcs\":[[4745,4746,4747,-4671,4748,4749]]},{\"type\":\"Polygon\",\"id\":\"037504\",\"arcs\":[[-4466,4750,4751,4752,4753]]},{\"type\":\"Polygon\",\"id\":\"023800\",\"arcs\":[[4754,4755,4756,4757,4758,4759]]},{\"type\":\"Polygon\",\"id\":\"022200\",\"arcs\":[[4760,4761,4762,-4534,4763,4764,-4585,-4571]]},{\"type\":\"Polygon\",\"id\":\"020900\",\"arcs\":[[4765,4766,4767,-4574,4768,4769]]},{\"type\":\"Polygon\",\"id\":\"018500\",\"arcs\":[[-4556,4770,-4522,4771,4772,4773,4774]]},{\"type\":\"Polygon\",\"id\":\"015900\",\"arcs\":[[4775,-4541,-4646,-4524,4776]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[4777,-4451,4778,4779]]},{\"type\":\"Polygon\",\"id\":\"038600\",\"arcs\":[[4780,4781,4782,4783,4784,-4707,4785,4786]]},{\"type\":\"Polygon\",\"id\":\"019700\",\"arcs\":[[4787,4788,4789,4790,4791,4792,4793]]},{\"type\":\"Polygon\",\"id\":\"014900\",\"arcs\":[[4794,4795,4796,-4741,-4771,-4555]]},{\"type\":\"Polygon\",\"id\":\"045101\",\"arcs\":[[4797,4798,-4667,4799]]},{\"type\":\"Polygon\",\"id\":\"030100\",\"arcs\":[[4800,4801,4802,4803]]},{\"type\":\"Polygon\",\"id\":\"032300\",\"arcs\":[[4804,4805,4806,4807]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[-4687,4808,4809,4810,-4661,4811,4812]]},{\"type\":\"Polygon\",\"id\":\"012300\",\"arcs\":[[4813,-4688,-4813,4814,4815,-4538,4816,4817,4818,4819]]},{\"type\":\"Polygon\",\"id\":\"042500\",\"arcs\":[[4820,4821,4822,4823,4824,4825]]},{\"type\":\"Polygon\",\"id\":\"048400\",\"arcs\":[[-4749,-4670,4826,4827,4828]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[4829,-4774,4830,4831,-4625]]},{\"type\":\"Polygon\",\"id\":\"009600\",\"arcs\":[[-4511,4832,4833,-4726,4834,4835,4836,4837,-4532]]},{\"type\":\"Polygon\",\"id\":\"009300\",\"arcs\":[[4838,-4647,4839,-4779,4840,4841,4842,4843]]},{\"type\":\"Polygon\",\"id\":\"009000\",\"arcs\":[[-4835,-4725,4844,4845,4846,4847,-4530,4848,4849]]},{\"type\":\"Polygon\",\"id\":\"007600\",\"arcs\":[[4850,-4643,-4587,4851,4852,-4542,4853]]},{\"type\":\"Polygon\",\"id\":\"006300\",\"arcs\":[[-4491,-4457,-4794,4854,4855,4856,4857,-975,-876,-4617]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[4858,-4621,-4616,4859,-4497,4860,4861,-1034,-976,-4858]]},{\"type\":\"Polygon\",\"id\":\"004200\",\"arcs\":[[4862,4863,4864,-4640,4865,4866]]},{\"type\":\"Polygon\",\"id\":\"030000\",\"arcs\":[[4867,4868,4869,4870]]},{\"type\":\"Polygon\",\"id\":\"042902\",\"arcs\":[[4871,4872,4873]]},{\"type\":\"Polygon\",\"id\":\"043100\",\"arcs\":[[4874,-4873,4875,4876,4877]]},{\"type\":\"Polygon\",\"id\":\"036300\",\"arcs\":[[4878,-4679,-4605,-4700]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[4879,-4547,-4712,-4691]]},{\"type\":\"Polygon\",\"id\":\"006400\",\"arcs\":[[4880,-4854,-4546,4881]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[-4740,4882,4883,4884,-4520]]},{\"type\":\"Polygon\",\"id\":\"006200\",\"arcs\":[[4885,-4882,4886,-4810,4887,4888]]},{\"type\":\"Polygon\",\"id\":\"016500\",\"arcs\":[[4889,4890,4891,-4606,4892,-4508]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[-4819,4893,4894,-4883,-4739,4895]]},{\"type\":\"Polygon\",\"id\":\"016600\",\"arcs\":[[4896,4897,4898,-4723]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[4899,4900,4901,-4479,4902,4903,-4843,4904,4905,-1095,-1079,-1035,-4862]]},{\"type\":\"Polygon\",\"id\":\"044400\",\"arcs\":[[4906,4907,4908,4909,4910,4911]]},{\"type\":\"Polygon\",\"id\":\"043400\",\"arcs\":[[4912,4913,4914,-4912,4915,4916,4917,4918]]},{\"type\":\"Polygon\",\"id\":\"040302\",\"arcs\":[[4919,4920,4921,4922,-4558]]},{\"type\":\"Polygon\",\"id\":\"039500\",\"arcs\":[[4923,-4467,-4754,4924,4925,-4890,-4507]]},{\"type\":\"Polygon\",\"id\":\"036000\",\"arcs\":[[4926,4927,4928,4929,4930,4931]]},{\"type\":\"Polygon\",\"id\":\"034800\",\"arcs\":[[-4710,4932,4933,4934,4935,4936,4937]]},{\"type\":\"Polygon\",\"id\":\"033700\",\"arcs\":[[-4806,4938,4939,4940,-4697,4941]]},{\"type\":\"Polygon\",\"id\":\"037900\",\"arcs\":[[4942,4943,-4924,-4506,4944]]},{\"type\":\"Polygon\",\"id\":\"051600\",\"arcs\":[[4945,-2919,4946]]},{\"type\":\"Polygon\",\"id\":\"002500\",\"arcs\":[[-4499,4947,-4901,4948]]},{\"type\":\"Polygon\",\"id\":\"004800\",\"arcs\":[[-4887,-4545,4949,4950,4951,-4662,-4658,-4811]]},{\"type\":\"Polygon\",\"id\":\"009200\",\"arcs\":[[-4764,-4533,-4838,4952,4953]]},{\"type\":\"Polygon\",\"id\":\"037300\",\"arcs\":[[4954,4955,4956,-4925,-4753]]},{\"type\":\"Polygon\",\"id\":\"016000\",\"arcs\":[[4957,4958,-4947,-2918,4959,-4483,4960,4961]]},{\"type\":\"Polygon\",\"id\":\"016100\",\"arcs\":[[4962,4963,-4703,-4603,4964,-4684]]},{\"type\":\"Polygon\",\"id\":\"011502\",\"arcs\":[[-4816,4965,-4780,-4840,-4539]]},{\"type\":\"Polygon\",\"id\":\"023502\",\"arcs\":[[4966,4967,4968,4969,-4730]]},{\"type\":\"Polygon\",\"id\":\"021501\",\"arcs\":[[4970,4971,4972,4973]]},{\"type\":\"Polygon\",\"id\":\"006100\",\"arcs\":[[-4857,4974,4975,-4622,-4618,-4859]]},{\"type\":\"Polygon\",\"id\":\"033500\",\"arcs\":[[-4942,4976,4977,4978,4979,4980]]},{\"type\":\"Polygon\",\"id\":\"032600\",\"arcs\":[[4981,-4935,4982,4983,-4459,4984]]},{\"type\":\"Polygon\",\"id\":\"023702\",\"arcs\":[[-4563,4985,4986,4987]]},{\"type\":\"Polygon\",\"id\":\"021700\",\"arcs\":[[4988,-4727,4989,4990,-4766,4991,4992]]},{\"type\":\"Polygon\",\"id\":\"020000\",\"arcs\":[[4993,4994,4995,4996,-4833,-4510,4997]]},{\"type\":\"Polygon\",\"id\":\"040502\",\"arcs\":[[4998,4999,5000,-4560]]},{\"type\":\"Polygon\",\"id\":\"040501\",\"arcs\":[[5001,-4999,-4559,-4923]]},{\"type\":\"Polygon\",\"id\":\"040303\",\"arcs\":[[5002,-4921,5003,5004]]},{\"type\":\"Polygon\",\"id\":\"038302\",\"arcs\":[[5005,5006,5007,-4463,-4944]]},{\"type\":\"Polygon\",\"id\":\"038301\",\"arcs\":[[5008,5009,-4987,5010,-5006,-4943,5011]]},{\"type\":\"Polygon\",\"id\":\"033202\",\"arcs\":[[5012,5013,5014,5015]]},{\"type\":\"Polygon\",\"id\":\"007800\",\"arcs\":[[-4837,5016,5017,5018,-4953]]},{\"type\":\"Polygon\",\"id\":\"019500\",\"arcs\":[[-4793,5019,5020,-4855]]},{\"type\":\"Polygon\",\"id\":\"022800\",\"arcs\":[[5021,-4716,5022,5023]]},{\"type\":\"Polygon\",\"id\":\"015300\",\"arcs\":[[5024,5025,-4820,-4896,-4738]]},{\"type\":\"Polygon\",\"id\":\"022000\",\"arcs\":[[5026,-4720,5027,5028,5029,-4681]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[-4521,5030,5031,5032,-4772]]},{\"type\":\"Polygon\",\"id\":\"006000\",\"arcs\":[[-4602,-4682,-5030,5033,5034,-4889,5035,-4685,-4965]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[-5032,5036,-4650,5037]]},{\"type\":\"Polygon\",\"id\":\"042100\",\"arcs\":[[-4877,5038,5039,5040,5041,5042,5043]]},{\"type\":\"Polygon\",\"id\":\"039800\",\"arcs\":[[5044,-4781,5045,5046]]},{\"type\":\"Polygon\",\"id\":\"037400\",\"arcs\":[[-4595,5047,5048,5049,-4734,5050]]},{\"type\":\"Polygon\",\"id\":\"033201\",\"arcs\":[[5051,-4514,5052,-5015]]},{\"type\":\"Polygon\",\"id\":\"030900\",\"arcs\":[[5053,-4808,5054,-4801,5055,5056]]},{\"type\":\"Polygon\",\"id\":\"029302\",\"arcs\":[[-4803,5057,5058,-4635,-870,-846,5059]]},{\"type\":\"Polygon\",\"id\":\"029301\",\"arcs\":[[-5056,-4804,-5060,-845,5060]]},{\"type\":\"Polygon\",\"id\":\"027402\",\"arcs\":[[5061,-4958,5062,5063]]},{\"type\":\"Polygon\",\"id\":\"027401\",\"arcs\":[[-5063,-4962,5064,-4493,-4580,5065]]},{\"type\":\"Polygon\",\"id\":\"026702\",\"arcs\":[[5066,5067,5068]]},{\"type\":\"Polygon\",\"id\":\"026701\",\"arcs\":[[-5068,5069,-4565,5070,5071]]},{\"type\":\"Polygon\",\"id\":\"024502\",\"arcs\":[[5072,5073,5074,5075]]},{\"type\":\"Polygon\",\"id\":\"024501\",\"arcs\":[[-4503,5076,-5075,5077,-4972,5078]]},{\"type\":\"Polygon\",\"id\":\"031900\",\"arcs\":[[5079,-4939,-4805,-5054,5080]]},{\"type\":\"Polygon\",\"id\":\"042200\",\"arcs\":[[5081,-4918,5082,5083,5084]]},{\"type\":\"Polygon\",\"id\":\"043600\",\"arcs\":[[-4911,5085,5086,-4916]]},{\"type\":\"Polygon\",\"id\":\"045800\",\"arcs\":[[5087,5088,5089,-4828,5090,-4783]]},{\"type\":\"Polygon\",\"id\":\"034000\",\"arcs\":[[5091,5092,5093,5094]]},{\"type\":\"Polygon\",\"id\":\"032800\",\"arcs\":[[-4461,5095,5096,-5093]]},{\"type\":\"Polygon\",\"id\":\"037800\",\"arcs\":[[5097,5098,5099,-4590,-5051,-4733]]},{\"type\":\"Polygon\",\"id\":\"027300\",\"arcs\":[[5100,5101,-5069,-5072,5102,5103]]},{\"type\":\"Polygon\",\"id\":\"015800\",\"arcs\":[[-4484,5104,5105]]},{\"type\":\"Polygon\",\"id\":\"037000\",\"arcs\":[[5106,-4937,5107,5108,5109]]},{\"type\":\"Polygon\",\"id\":\"022703\",\"arcs\":[[-4477,5110,5111,5112]]},{\"type\":\"Polygon\",\"id\":\"026900\",\"arcs\":[[-1005,-873,5113,-5103,5114,-4568,5115]]},{\"type\":\"Polygon\",\"id\":\"023703\",\"arcs\":[[5116,-4988,-5010,5117,5118]]},{\"type\":\"Polygon\",\"id\":\"022403\",\"arcs\":[[5119,-5096,-4745,-5024,5120,-4515]]},{\"type\":\"Polygon\",\"id\":\"022102\",\"arcs\":[[-4576,5121,5122,-4790,5123]]},{\"type\":\"Polygon\",\"id\":\"022101\",\"arcs\":[[5124,-4577,-5124,-4789]]},{\"type\":\"Polygon\",\"id\":\"021002\",\"arcs\":[[-4761,-4570,-4584,5125]]},{\"type\":\"Polygon\",\"id\":\"021001\",\"arcs\":[[5126,-4762,-5126,-4583,-4757]]},{\"type\":\"Polygon\",\"id\":\"020502\",\"arcs\":[[-4504,-5079,-4971,5127,-4656]]},{\"type\":\"Polygon\",\"id\":\"020501\",\"arcs\":[[-1111,-4657,-5128,-4974,5128,5129,5130,5131]]},{\"type\":\"Polygon\",\"id\":\"018302\",\"arcs\":[[5132,5133,5134,-4623,-4976]]},{\"type\":\"Polygon\",\"id\":\"018301\",\"arcs\":[[5135,-5133,5136,-5021]]},{\"type\":\"Polygon\",\"id\":\"018102\",\"arcs\":[[-4792,5137,5138,-5134,-5136,-5020]]},{\"type\":\"Polygon\",\"id\":\"018101\",\"arcs\":[[-5139,5139,-4600,-5135]]},{\"type\":\"Polygon\",\"id\":\"017902\",\"arcs\":[[-5122,5140,5141,5142]]},{\"type\":\"Polygon\",\"id\":\"031200\",\"arcs\":[[-4930,5143,5144,5145]]},{\"type\":\"Polygon\",\"id\":\"031400\",\"arcs\":[[-5146,5146,5147,-4931]]},{\"type\":\"Polygon\",\"id\":\"033800\",\"arcs\":[[5148,-5094,5149,5150,-5049]]},{\"type\":\"Polygon\",\"id\":\"041400\",\"arcs\":[[5151,5152,5153,5154,-4914,5155,5156,5157]]},{\"type\":\"Polygon\",\"id\":\"040400\",\"arcs\":[[5158,-5088,-4782,-5045,5159]]},{\"type\":\"Polygon\",\"id\":\"027600\",\"arcs\":[[5160,-4677,5161,-5064,-5066,-4579,5162,-4868,5163]]},{\"type\":\"Polygon\",\"id\":\"031600\",\"arcs\":[[5164,-5148,5165,5166]]},{\"type\":\"Polygon\",\"id\":\"033000\",\"arcs\":[[-5150,-5097,-5120,-5052,-5014]]},{\"type\":\"Polygon\",\"id\":\"027700\",\"arcs\":[[5167,5168,-5101,5169]]},{\"type\":\"Polygon\",\"id\":\"017901\",\"arcs\":[[-5123,-5143,5170,-4596,-5140,-5138,-4791]]},{\"type\":\"Polygon\",\"id\":\"017702\",\"arcs\":[[5171,5172,-4609,5173,5174,5175,5176,-5142]]},{\"type\":\"Polygon\",\"id\":\"017701\",\"arcs\":[[-5177,-4553,5177,-4597,-5171]]},{\"type\":\"Polygon\",\"id\":\"014702\",\"arcs\":[[5178,-4796,5179,-5175]]},{\"type\":\"Polygon\",\"id\":\"014701\",\"arcs\":[[-5180,-4795,-4554,-5176]]},{\"type\":\"Polygon\",\"id\":\"015200\",\"arcs\":[[-4485,-5106,-4689,5180,-4898]]},{\"type\":\"Polygon\",\"id\":\"012901\",\"arcs\":[[-4885,5181,-4777,-4523,-5037,-5031]]},{\"type\":\"Polygon\",\"id\":\"026100\",\"arcs\":[[-5071,-4569,-5115]]},{\"type\":\"Polygon\",\"id\":\"025700\",\"arcs\":[[-1006,-5116,-4472,5182,-4501]]},{\"type\":\"Polygon\",\"id\":\"037200\",\"arcs\":[[-4594,-5110,-5095,-5149,-5048]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[-4500,-4949,-4900,-4861]]},{\"type\":\"Polygon\",\"id\":\"002701\",\"arcs\":[[-4948,-4480,-4902]]},{\"type\":\"Polygon\",\"id\":\"006700\",\"arcs\":[[-4627,5183,5184,-4619]]},{\"type\":\"Polygon\",\"id\":\"042600\",\"arcs\":[[5185,5186,5187,-4750,-4829,-5090,5188,5189]]},{\"type\":\"Polygon\",\"id\":\"042800\",\"arcs\":[[-4910,5190,-5186,5191,-5086]]},{\"type\":\"Polygon\",\"id\":\"040702\",\"arcs\":[[5192,5193,5194,5195,-5000,-5002,-4922]]},{\"type\":\"Polygon\",\"id\":\"025200\",\"arcs\":[[-4638,-4489,5196,5197]]},{\"type\":\"Polygon\",\"id\":\"016300\",\"arcs\":[[-4607,-4892,5198,-4704,-4964,5199,-5025,-4737,-4797,5200]]},{\"type\":\"Polygon\",\"id\":\"028800\",\"arcs\":[[5201,-4637,-4743,5202]]},{\"type\":\"Polygon\",\"id\":\"031000\",\"arcs\":[[5203,-5161,5204,5205,-5144,-4929]]},{\"type\":\"Polygon\",\"id\":\"035600\",\"arcs\":[[-4673,5206,-5204,-4928,5207]]},{\"type\":\"Polygon\",\"id\":\"029600\",\"arcs\":[[5208,-5166,-5147,-5145,-5206,5209,-4996,5210,-5203,-4742,-4984]]},{\"type\":\"Polygon\",\"id\":\"002800\",\"arcs\":[[-4663,-4952,5211,-4966,5212]]},{\"type\":\"Polygon\",\"id\":\"031800\",\"arcs\":[[5213,-5167,-5209,-4983,-4934]]},{\"type\":\"Polygon\",\"id\":\"044200\",\"arcs\":[[5214,5215,-4907,-4915,-5155]]},{\"type\":\"Polygon\",\"id\":\"016400\",\"arcs\":[[-5065,-4961,-4482,-4897,-4494]]},{\"type\":\"Polygon\",\"id\":\"004600\",\"arcs\":[[-4866,5216,5217,5218]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[-4614,5219,5220,5221,5222]]},{\"type\":\"Polygon\",\"id\":\"043500\",\"arcs\":[[5223,5224,5225,5226,5227,-4665,5228,-4668,-4799,5229,5230,5231,5232,5233,-5098,5234,-4878,-5044,5235,5236,5237,5238,5239,-4695,5240]]},{\"type\":\"Polygon\",\"id\":\"024900\",\"arcs\":[[-5183,-4471,5241,-5076,-5077,-4502]]},{\"type\":\"Polygon\",\"id\":\"042901\",\"arcs\":[[-4874,-4875,5242,-4822,5243]]},{\"type\":\"Polygon\",\"id\":\"025600\",\"arcs\":[[5244,-5197,-4488,5245,-4994,5246,-4756]]},{\"type\":\"Polygon\",\"id\":\"033600\",\"arcs\":[[-4735,-5050,-5151,-5013,5247]]},{\"type\":\"Polygon\",\"id\":\"028300\",\"arcs\":[[5248,5249,-5238,5250,-5170,-5104,-5114,-872,-4634]]},{\"type\":\"Polygon\",\"id\":\"041800\",\"arcs\":[[5251,-5156,-4913,5252,-5230,-4798]]},{\"type\":\"Polygon\",\"id\":\"045102\",\"arcs\":[[5253,5254,-5157,-5252,-4800,-4666,-5228]]},{\"type\":\"Polygon\",\"id\":\"038700\",\"arcs\":[[5255,5256,5257,-4751,-4465]]},{\"type\":\"Polygon\",\"id\":\"030701\",\"arcs\":[[-4807,-4981,5258,-4802,-5055]]},{\"type\":\"Polygon\",\"id\":\"005902\",\"arcs\":[[-5137,-4975,-4856]]},{\"type\":\"Polygon\",\"id\":\"021502\",\"arcs\":[[-4973,5259,-4993,5260,-5129]]},{\"type\":\"Polygon\",\"id\":\"036902\",\"arcs\":[[-4891,5261,-4705,-5199]]},{\"type\":\"Polygon\",\"id\":\"015500\",\"arcs\":[[-5200,-4963,-4683,-4814,-5026]]},{\"type\":\"Polygon\",\"id\":\"023501\",\"arcs\":[[5262,5263,-4967,-4729]]},{\"type\":\"Polygon\",\"id\":\"004400\",\"arcs\":[[5264,5265,5266,-4867,-5219,5267,-4950,-4544]]},{\"type\":\"Polygon\",\"id\":\"017100\",\"arcs\":[[5268,-4610,-5173,5269]]},{\"type\":\"Polygon\",\"id\":\"020400\",\"arcs\":[[-5247,-4998,-4513,-4535,-4763,-5127]]},{\"type\":\"Polygon\",\"id\":\"040304\",\"arcs\":[[5270,-5004,-4920,5271,5272]]},{\"type\":\"Polygon\",\"id\":\"042400\",\"arcs\":[[-5084,5273,-5189,-5089,-5159]]},{\"type\":\"Polygon\",\"id\":\"050400\",\"arcs\":[[-4748,5274,5275,5276,-2920,-4946,-4959,-5062,-5162,-4676,5277]]},{\"type\":\"Polygon\",\"id\":\"043000\",\"arcs\":[[-4917,-5087,-5192,-5190,-5274,-5083]]},{\"type\":\"Polygon\",\"id\":\"023704\",\"arcs\":[[-5118,-5009,5278,-4968,-5264,5279,5280]]},{\"type\":\"Polygon\",\"id\":\"005200\",\"arcs\":[[-4812,-4660,-4664,-5213,-4815]]},{\"type\":\"Polygon\",\"id\":\"042300\",\"arcs\":[[-5039,-4876,-4872,-5244,-4821,5281]]},{\"type\":\"Polygon\",\"id\":\"021301\",\"arcs\":[[-5261,-4992,5282,-5130]]},{\"type\":\"Polygon\",\"id\":\"028700\",\"arcs\":[[-5249,-4633,5283]]},{\"type\":\"Polygon\",\"id\":\"039600\",\"arcs\":[[5284,5285,5286,-5047,5287]]},{\"type\":\"Polygon\",\"id\":\"024600\",\"arcs\":[[-4639,5288,5289,-4717,-5022,-4744]]},{\"type\":\"Polygon\",\"id\":\"026500\",\"arcs\":[[-5070,5290,-5273,5291,-4628,-4566]]},{\"type\":\"Polygon\",\"id\":\"023600\",\"arcs\":[[-4719,5292,-4759,5293,-5028]]},{\"type\":\"Polygon\",\"id\":\"034400\",\"arcs\":[[-4936,-4982,5294,-5108]]},{\"type\":\"Polygon\",\"id\":\"039902\",\"arcs\":[[-4562,5295,-5007,-5011,-4986]]},{\"type\":\"Polygon\",\"id\":\"023900\",\"arcs\":[[-4629,5296,-5119,-5281,5297,5298]]},{\"type\":\"Polygon\",\"id\":\"008300\",\"arcs\":[[-4652,5299,-4844,5300]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[5301,5302,5303,-4448,5304,-4641,-4865]]},{\"type\":\"Polygon\",\"id\":\"028600\",\"arcs\":[[-5211,-4995,-5246,-4487,-5202]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[-4853,5305,-5265,-4543]]},{\"type\":\"Polygon\",\"id\":\"046201\",\"arcs\":[[-5278,-4678,-5207,-4672]]},{\"type\":\"Polygon\",\"id\":\"040900\",\"arcs\":[[-5169,5306,5307,-5042,5308,5309,-5005,-5271,-5291,-5067,-5102]]},{\"type\":\"Polygon\",\"id\":\"038800\",\"arcs\":[[-5046,-4787,5310,5311]]},{\"type\":\"Polygon\",\"id\":\"044901\",\"arcs\":[[-4669,-5229]]},{\"type\":\"Polygon\",\"id\":\"026601\",\"arcs\":[[-4870,5312,5313]]},{\"type\":\"Polygon\",\"id\":\"040800\",\"arcs\":[[-5232,5314,5315,5316]]},{\"type\":\"Polygon\",\"id\":\"027900\",\"arcs\":[[-5251,-5237,5317,-5307,-5168]]},{\"type\":\"Polygon\",\"id\":\"040701\",\"arcs\":[[5318,-5193,-5003,-5310]]},{\"type\":\"Polygon\",\"id\":\"040100\",\"arcs\":[[-5292,-5272,-4564,-5117,-5297]]},{\"type\":\"Polygon\",\"id\":\"007400\",\"arcs\":[[5319,-4528,5320,-5303,5321]]},{\"type\":\"Polygon\",\"id\":\"002400\",\"arcs\":[[-4951,-5268,-5218,5322,-4452,-4778,-5212]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[-2927,5323,-4548,-4880,-4690,-5105,-4960]]},{\"type\":\"Polygon\",\"id\":\"038900\",\"arcs\":[[-5257,5324,5325,5326]]},{\"type\":\"Polygon\",\"id\":\"022701\",\"arcs\":[[-4732,-4473,5327,-4990]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[-4598,-5178,-4557,-4775,-4830,-4624]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[5328,-5222,5329,5330,-4903,-4478]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[-5217,-4642,-5305,-4453,-5323]]},{\"type\":\"Polygon\",\"id\":\"026602\",\"arcs\":[[-5313,-4869,-5163,-4578,5331]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[-5321,-4531,-4848,5332,5333,-4449,-5304]]},{\"type\":\"Polygon\",\"id\":\"040600\",\"arcs\":[[-5316,-5085,-5160,-5287,5334]]},{\"type\":\"Polygon\",\"id\":\"039200\",\"arcs\":[[-5234,5335,-5285,5336,-5099]]},{\"type\":\"Polygon\",\"id\":\"041300\",\"arcs\":[[5337,5338,5339,-5194]]},{\"type\":\"Polygon\",\"id\":\"041100\",\"arcs\":[[-5041,5340,-5338,-5319,-5309]]},{\"type\":\"Polygon\",\"id\":\"022702\",\"arcs\":[[-5328,-5113,-4767,-4991]]},{\"type\":\"Polygon\",\"id\":\"039700\",\"arcs\":[[-5001,-5196,-4824,5341,5342,-5325,-5256,-4464,-5008,-5296,-4561]]},{\"type\":\"Polygon\",\"id\":\"035100\",\"arcs\":[[-4696,-5240,5343,-4977]]},{\"type\":\"Polygon\",\"id\":\"028500\",\"arcs\":[[-4978,-5344,-5239,-5250,-5284,-4632,5344]]},{\"type\":\"Polygon\",\"id\":\"036901\",\"arcs\":[[-4926,-4957,5345,5346,-5262]]},{\"type\":\"Polygon\",\"id\":\"042000\",\"arcs\":[[-5231,-5253,-4919,-5082,-5315]]},{\"type\":\"Polygon\",\"id\":\"046000\",\"arcs\":[[-5091,-4827,-4675,-4784]]},{\"type\":\"Polygon\",\"id\":\"022404\",\"arcs\":[[-5121,-5023,-4715,-4516]]},{\"type\":\"Polygon\",\"id\":\"023200\",\"arcs\":[[-4718,-5290,5347,-4760,-5293]]},{\"type\":\"Polygon\",\"id\":\"021100\",\"arcs\":[[-5131,5348,5349,-4455,5350]]},{\"type\":\"Polygon\",\"id\":\"012102\",\"arcs\":[[5351,5352,-4817,-4537]]},{\"type\":\"Polygon\",\"id\":\"008500\",\"arcs\":[[-4526,-4648,-4839,-5300,-4651]]},{\"type\":\"Polygon\",\"id\":\"003500\",\"arcs\":[[5353,-4654,5354,-5330,-5221]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[-5355,-4653,-5301,-4904,-5331]]},{\"type\":\"Polygon\",\"id\":\"041500\",\"arcs\":[[-5340,5355,-4825,-5195]]},{\"type\":\"Polygon\",\"id\":\"022500\",\"arcs\":[[-4768,-5112,-5270,-5172,-5141,-4575]]},{\"type\":\"Polygon\",\"id\":\"036800\",\"arcs\":[[-4593,5356,-4711,-4938,-5107]]},{\"type\":\"Polygon\",\"id\":\"021800\",\"arcs\":[[5357,-4644,-4851,-4881,-4886,-5035]]},{\"type\":\"Polygon\",\"id\":\"039400\",\"arcs\":[[-5317,-5335,-5286,-5336,-5233]]},{\"type\":\"Polygon\",\"id\":\"044800\",\"arcs\":[[5358,-5187,-5191,-4909]]},{\"type\":\"Polygon\",\"id\":\"016900\",\"arcs\":[[-5174,-4608,-5201,-5179]]},{\"type\":\"Polygon\",\"id\":\"005600\",\"arcs\":[[-4686,-5036,-4888,-4809]]},{\"type\":\"Polygon\",\"id\":\"039300\",\"arcs\":[[5359,-5326,-5343,5360,-4699,5361]]},{\"type\":\"Polygon\",\"id\":\"025100\",\"arcs\":[[-5242,-4470,-4630,-5299,5362,5363,-5073]]},{\"type\":\"Polygon\",\"id\":\"039000\",\"arcs\":[[-5100,-5337,-5288,-5312,-4591]]},{\"type\":\"Polygon\",\"id\":\"034300\",\"arcs\":[[5364,-5241,-4694,-4941]]},{\"type\":\"Polygon\",\"id\":\"038100\",\"arcs\":[[-5279,-5012,-4945,5365,-4969]]},{\"type\":\"Polygon\",\"id\":\"037100\",\"arcs\":[[-5362,-4698,-5346,-4956]]},{\"type\":\"Polygon\",\"id\":\"024000\",\"arcs\":[[-5294,-4758,-4589,-4645,-5358,-5034,-5029]]},{\"type\":\"Polygon\",\"id\":\"007200\",\"arcs\":[[-4586,-4765,-4954,-5019,5366,-5266,-5306,-4852]]},{\"type\":\"Polygon\",\"id\":\"022902\",\"arcs\":[[-4476,-4893,-4611,-5269,-5111]]},{\"type\":\"Polygon\",\"id\":\"004100\",\"arcs\":[[-4860,-4615,-5223,-5329,-4498]]},{\"type\":\"Polygon\",\"id\":\"009800\",\"arcs\":[[-5017,-4836,-4850,5367,-5322,-5302,-4864,5368]]},{\"type\":\"Polygon\",\"id\":\"038200\",\"arcs\":[[-4592,-5311,-4786,-4706,-5357]]},{\"type\":\"Polygon\",\"id\":\"024100\",\"arcs\":[[5369,-5363,-5298,-5280,-5263,-4728]]},{\"type\":\"Polygon\",\"id\":\"033400\",\"arcs\":[[-4823,-5243,-5235,-4736,-5248,-5016,-5053,-4518,-4721,-5027,-4680,-4879,-5361,-5342]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-4899,-5181,-4693,-4714,5370,5371,-4845,-4724]]},{\"type\":\"Polygon\",\"id\":\"034200\",\"arcs\":[[-5295,-4985,-4462,-5092,-5109]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-4842,5372,5373,5374,-4905]]},{\"type\":\"Polygon\",\"id\":\"012701\",\"arcs\":[[5375,-5352,-4536,-4776,-5182,-4884,-4895]]},{\"type\":\"Polygon\",\"id\":\"028100\",\"arcs\":[[-5236,-5043,-5308,-5318]]},{\"type\":\"Polygon\",\"id\":\"036502\",\"arcs\":[[-4701,-4604,-4702,-5347]]},{\"type\":\"Polygon\",\"id\":\"024300\",\"arcs\":[[-5074,-5364,-5370,-4989,-5260,-5078]]},{\"type\":\"Polygon\",\"id\":\"008600\",\"arcs\":[[-5368,-4849,-4529,-5320]]},{\"type\":\"Polygon\",\"id\":\"024400\",\"arcs\":[[-5198,-5245,-4755,-5348,-5289]]},{\"type\":\"Polygon\",\"id\":\"035000\",\"arcs\":[[-4709,5376,-4932,-5165,-5214,-4933]]},{\"type\":\"Polygon\",\"id\":\"029500\",\"arcs\":[[5377,-4979,-5345,-4631,-5059]]},{\"type\":\"Polygon\",\"id\":\"004001\",\"arcs\":[[-5018,-5369,-4863,-5267,-5367]]},{\"type\":\"Polygon\",\"id\":\"028400\",\"arcs\":[[-5205,-5164,-4871,-5314,-5332,-4582,-4722,-4834,-4997,-5210]]},{\"type\":\"Polygon\",\"id\":\"029700\",\"arcs\":[[-5259,-4980,-5378,-5058]]},{\"type\":\"Polygon\",\"id\":\"020100\",\"arcs\":[[-5132,-5351,-4454,-4490,-1112]]},{\"type\":\"Polygon\",\"id\":\"035800\",\"arcs\":[[-4785,-4674,-5208,-4927,-5377,-4708]]},{\"type\":\"Polygon\",\"id\":\"041900\",\"arcs\":[[-5282,-4826,-5356,-5339,-5341,-5040]]},{\"type\":\"Polygon\",\"id\":\"007300\",\"arcs\":[[5378,5379,-4655,-5354,-5220]]},{\"type\":\"Polygon\",\"id\":\"021900\",\"arcs\":[[-5350,5380,-4769,-4573,-5125,-4788,-4456]]},{\"type\":\"Polygon\",\"id\":\"012101\",\"arcs\":[[-5353,-5376,-4894,-4818]]},{\"type\":\"Polygon\",\"id\":\"006900\",\"arcs\":[[-4626,-4832,5381,-5184]]},{\"type\":\"Polygon\",\"id\":\"021302\",\"arcs\":[[-5283,-4770,-5381,-5349]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[-4773,-5033,-5038,-4649,-5380,5382]]},{\"type\":\"Polygon\",\"id\":\"039100\",\"arcs\":[[-5258,-5327,-5360,-4955,-4752]]},{\"type\":\"Polygon\",\"id\":\"007100\",\"arcs\":[[-4620,-5185,-5382,-4831,-5383,-5379,-4613]]},{\"type\":\"Polygon\",\"id\":\"023302\",\"arcs\":[[-4970,-5366,-4509,-4474,-4731]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[5383,5384,5385,5386,5387,5388,5389,5390,5391]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[5392,5393,5394,5395,-5384,5396,5397]]},{\"type\":\"Polygon\",\"id\":\"011901\",\"arcs\":[[5398,5399,5400,5401,5402]]},{\"type\":\"Polygon\",\"id\":\"012400\",\"arcs\":[[5403,-4022,5404,5405,5406]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[5407,5408,5409,5410]]},{\"type\":\"Polygon\",\"id\":\"011903\",\"arcs\":[[5411,5412,-5402,-5408,5413]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[5414,5415,5416,5417,5418,5419,5420,5421]]},{\"type\":\"Polygon\",\"id\":\"012202\",\"arcs\":[[5422,5423,5424,-5415,5425,5426,5427]]},{\"type\":\"Polygon\",\"id\":\"012201\",\"arcs\":[[5428,5429,-5426,-5422,5430]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[5431,-5431,-5421,5432,5433,5434,5435,5436,5437,5438,-5395]]},{\"type\":\"Polygon\",\"id\":\"012701\",\"arcs\":[[5439,5440,-5419,5441,5442]]},{\"type\":\"Polygon\",\"id\":\"012300\",\"arcs\":[[5443,5444,-5407,5445,-5416,-5425]]},{\"type\":\"Polygon\",\"id\":\"014302\",\"arcs\":[[5446,5447,5448,5449]]},{\"type\":\"Polygon\",\"id\":\"012103\",\"arcs\":[[5450,5451,5452,-5429,-5432,-5394,5453]]},{\"type\":\"Polygon\",\"id\":\"012102\",\"arcs\":[[5454,-5427,-5430,-5453]]},{\"type\":\"Polygon\",\"id\":\"012101\",\"arcs\":[[-5428,-5455,-5452,5455]]},{\"type\":\"Polygon\",\"id\":\"012702\",\"arcs\":[[-5448,5456,5457,5458,5459,-5443,5460,5461]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[5462,-5459,5463]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[5464,-5464,-5458,5465,5466]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[5467,5468,-5466,-5457,-5447,5469,5470]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[5471,5472,-5471,5473]]},{\"type\":\"Polygon\",\"id\":\"001400\",\"arcs\":[[5474,5475,-5468,-5473,5476]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[5477,5478,-5475,5479,5480]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[5481,5482,-5479]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[-5483,5483,5484,5485,-5467,-5469,-5476]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[5486,5487,-5440,-5460,-5463,-5465,-5486]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-5433,-5420,-5441,-5488,5488]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[-5446,-5406,5489,-5417]]},{\"type\":\"Polygon\",\"id\":\"014600\",\"arcs\":[[5490,5491,-5449,-5462,5492,5493,5494]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[5495,5496,-5495,5497,5498,5499]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[5500,5501,5502,-5491,-5497]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[-5410,5503,-5454,-5393,5504,5505,5506]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-5489,-5487,-5485,5507,5508,-5434]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[5509,-5508,-5484,-5482,5510]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[-5435,-5509,-5510,5511]]},{\"type\":\"Polygon\",\"id\":\"014301\",\"arcs\":[[5512,-5388,5513,-5470,-5450,-5492,-5503]]},{\"type\":\"Polygon\",\"id\":\"014200\",\"arcs\":[[-5439,5514,5515,-5385,-5396]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[5516,5517,-5474,-5514,-5387]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[5518,-5517,5519]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[5520,5521,-5520,-5386,-5516]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[-5512,-5511,-5478,5522,-5436]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-5523,-5481,5523,5524,-5437]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-5522,-5524,-5480,-5477,-5472,-5518,-5519]]},{\"type\":\"Polygon\",\"id\":\"011902\",\"arcs\":[[5525,-5423,-5456,-5451,-5504,-5409,-5401]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[-5438,-5525,-5521,-5515]]},{\"type\":\"Polygon\",\"id\":\"013202\",\"arcs\":[[-5391,5526,5527]]},{\"type\":\"Polygon\",\"id\":\"013201\",\"arcs\":[[-5527,-5390,5528,5529,5530]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[-5529,-5389,-5513,-5502,5531,5532,5533]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[5534,5535,5536,5537,5538]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[5539,-5533,5540,-5537]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[-5530,-5534,-5540,-5536,5541]]},{\"type\":\"Polygon\",\"id\":\"013700\",\"arcs\":[[-5538,-5541,-5532,-5501,-5496,5542]]},{\"type\":\"Polygon\",\"id\":\"013304\",\"arcs\":[[-5397,-5392,-5528,-5531,-5542,-5535,5543,5544]]},{\"type\":\"Polygon\",\"id\":\"013303\",\"arcs\":[[-5505,-5398,-5545,5545,5546]]},{\"type\":\"Polygon\",\"id\":\"013301\",\"arcs\":[[-5544,-5539,-5543,-5500,5547,5548,-5546]]},{\"type\":\"Polygon\",\"id\":\"102100\",\"arcs\":[[5549,5550,5551,5552,5553,5554,5555]]},{\"type\":\"Polygon\",\"id\":\"102200\",\"arcs\":[[5556,5557,5558,-5550,5559]]},{\"type\":\"Polygon\",\"id\":\"101600\",\"arcs\":[[5560,5561,-5556,5562,5563]]},{\"type\":\"Polygon\",\"id\":\"100700\",\"arcs\":[[5564,5565,-5564,5566,5567,5568]]},{\"type\":\"Polygon\",\"id\":\"101400\",\"arcs\":[[5569,5570,-5551,-5559,5571]]},{\"type\":\"Polygon\",\"id\":\"101300\",\"arcs\":[[5572,-5572,-5558,5573,5574]]},{\"type\":\"Polygon\",\"id\":\"101100\",\"arcs\":[[-5574,-5557,5575]]},{\"type\":\"Polygon\",\"id\":\"101000\",\"arcs\":[[5576,-5575,-5576,-5560,-5562,5577]]},{\"type\":\"Polygon\",\"id\":\"100900\",\"arcs\":[[-5570,-5573,-5577,5578]]},{\"type\":\"Polygon\",\"id\":\"100800\",\"arcs\":[[5579,-5552,-5571,-5579,-5578,-5561,-5566,5580]]},{\"type\":\"Polygon\",\"id\":\"101700\",\"arcs\":[[-5563,-5555,5581,5582,-5567]]},{\"type\":\"Polygon\",\"id\":\"100400\",\"arcs\":[[5583,5584,-5569,5585,5586,5587,5588]]},{\"type\":\"Polygon\",\"id\":\"100200\",\"arcs\":[[5589,5590,5591,5592]]},{\"type\":\"Polygon\",\"id\":\"100100\",\"arcs\":[[-5590,5593,5594]]},{\"type\":\"Polygon\",\"id\":\"101800\",\"arcs\":[[-5568,-5583,5595,5596,-20,-32,5597,5598,-5586]]},{\"type\":\"Polygon\",\"id\":\"102000\",\"arcs\":[[5599,-45,-21,-5597,5600]]},{\"type\":\"Polygon\",\"id\":\"101900\",\"arcs\":[[-5582,-5554,5601,-5601,-5596]]},{\"type\":\"Polygon\",\"id\":\"100300\",\"arcs\":[[-5594,-5593,5602,-5584,5603]]},{\"type\":\"Polygon\",\"id\":\"100600\",\"arcs\":[[-5592,5604,-5581,-5565,-5585,-5603]]},{\"type\":\"Polygon\",\"id\":\"010808\",\"arcs\":[[5605,5606,5607,5608,5609,5610]]},{\"type\":\"Polygon\",\"id\":\"014206\",\"arcs\":[[5611,5612,5613,5614,5615,5616,5617]]},{\"type\":\"Polygon\",\"id\":\"010700\",\"arcs\":[[5618,5619,5620,5621,5622,5623,5624,5625,5626,5627]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[5628,-5621,5629,5630]]},{\"type\":\"Polygon\",\"id\":\"010103\",\"arcs\":[[5631,5632,5633,5634]]},{\"type\":\"Polygon\",\"id\":\"010101\",\"arcs\":[[5635,-5634,5636,5637,5638]]},{\"type\":\"Polygon\",\"id\":\"014204\",\"arcs\":[[5639,-5613,5640,5641,5642]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[5643,5644,5645,5646,5647]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[5648,5649,5650,5651]]},{\"type\":\"Polygon\",\"id\":\"013002\",\"arcs\":[[5652,5653,5654,5655]]},{\"type\":\"Polygon\",\"id\":\"009104\",\"arcs\":[[5656,5657,5658,5659]]},{\"type\":\"Polygon\",\"id\":\"009008\",\"arcs\":[[5660,5661,5662,5663]]},{\"type\":\"Polygon\",\"id\":\"009007\",\"arcs\":[[5664,5665,-5664,5666,5667]]},{\"type\":\"Polygon\",\"id\":\"012502\",\"arcs\":[[5668,5669,5670,5671,5672]]},{\"type\":\"Polygon\",\"id\":\"009006\",\"arcs\":[[-5662,5673,5674,-5658]]},{\"type\":\"Polygon\",\"id\":\"014208\",\"arcs\":[[5675,5676,-5643,5677,5678,5679,5680,5681,5682]]},{\"type\":\"Polygon\",\"id\":\"014604\",\"arcs\":[[5683,5684,-5665,5685,5686,5687]]},{\"type\":\"Polygon\",\"id\":\"014603\",\"arcs\":[[5688,5689,-5674,-5661,-5666,-5685]]},{\"type\":\"Polygon\",\"id\":\"010002\",\"arcs\":[[5690,-5680,5691,5692,5693,5694]]},{\"type\":\"Polygon\",\"id\":\"012001\",\"arcs\":[[5695,5696,5697,-5669,5698,5699,5700]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[5701,5702,5703,5704]]},{\"type\":\"Polygon\",\"id\":\"007202\",\"arcs\":[[5705,5706,5707,5708,5709,5710]]},{\"type\":\"Polygon\",\"id\":\"004001\",\"arcs\":[[5711,5712,5713,5714,5715]]},{\"type\":\"Polygon\",\"id\":\"012002\",\"arcs\":[[5716,5717,5718,-5697,5719]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[-5703,5720,5721,5722,5723,-5720,-5696,5724]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[5725,5726,5727,-5722,5728]]},{\"type\":\"Polygon\",\"id\":\"009004\",\"arcs\":[[5729,-5687,5730,5731]]},{\"type\":\"Polygon\",\"id\":\"940100\",\"arcs\":[[5732,5733,5734]]},{\"type\":\"Polygon\",\"id\":\"008900\",\"arcs\":[[5735,5736,5737,5738]]},{\"type\":\"Polygon\",\"id\":\"015504\",\"arcs\":[[5739,5740,5741]]},{\"type\":\"Polygon\",\"id\":\"017501\",\"arcs\":[[-1513,5742,5743,5744,5745]]},{\"type\":\"Polygon\",\"id\":\"007101\",\"arcs\":[[5746,5747,5748,-5706,5749]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[5750,5751,5752,-5750,-5711,5753,5754]]},{\"type\":\"Polygon\",\"id\":\"012003\",\"arcs\":[[-5718,5755,5756,5757]]},{\"type\":\"Polygon\",\"id\":\"006800\",\"arcs\":[[5758,5759,5760,5761,5762,5763,-5748,5764]]},{\"type\":\"Polygon\",\"id\":\"006702\",\"arcs\":[[5765,5766,-5760,5767,5768]]},{\"type\":\"Polygon\",\"id\":\"006701\",\"arcs\":[[5769,-5768,-5759,5770,5771]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[-5610,5772,5773,5774,5775,-5727,5776,5777]]},{\"type\":\"Polygon\",\"id\":\"015002\",\"arcs\":[[5778,5779,5780,5781,5782]]},{\"type\":\"Polygon\",\"id\":\"008300\",\"arcs\":[[5783,5784,5785,5786,5787]]},{\"type\":\"Polygon\",\"id\":\"014901\",\"arcs\":[[5788]]},{\"type\":\"Polygon\",\"id\":\"014903\",\"arcs\":[[5789,5790,5791,-5614,-5640,-5677,5792],[5793],[-5789]]},{\"type\":\"Polygon\",\"id\":\"013102\",\"arcs\":[[5794,5795,5796,5797,5798]]},{\"type\":\"Polygon\",\"id\":\"015503\",\"arcs\":[[5799,5800,5801,-5740,5802],[5803]]},{\"type\":\"Polygon\",\"id\":\"012902\",\"arcs\":[[5804,5805,5806,5807,-5654]]},{\"type\":\"Polygon\",\"id\":\"006601\",\"arcs\":[[5808,5809,-5770,5810,5811]]},{\"type\":\"Polygon\",\"id\":\"006501\",\"arcs\":[[5812,5813,-5809,5814]]},{\"type\":\"Polygon\",\"id\":\"006302\",\"arcs\":[[5815,5816,5817,5818,5819,5820]]},{\"type\":\"Polygon\",\"id\":\"006301\",\"arcs\":[[-5819,-5813,5821,5822]]},{\"type\":\"Polygon\",\"id\":\"006201\",\"arcs\":[[-5821,5823,5824]]},{\"type\":\"Polygon\",\"id\":\"005202\",\"arcs\":[[5825,5826,-5715,5827,5828,5829]]},{\"type\":\"Polygon\",\"id\":\"008202\",\"arcs\":[[5830,5831,5832,5833,5834,-5787]]},{\"type\":\"Polygon\",\"id\":\"008201\",\"arcs\":[[5835,5836,-5831,-5786]]},{\"type\":\"Polygon\",\"id\":\"008102\",\"arcs\":[[5837,5838,-5832,5839]]},{\"type\":\"Polygon\",\"id\":\"008101\",\"arcs\":[[5840,5841,5842,-5840,-5837,5843]]},{\"type\":\"Polygon\",\"id\":\"008003\",\"arcs\":[[5844,5845,5846,5847]]},{\"type\":\"Polygon\",\"id\":\"990000\",\"arcs\":[[-5754,-5710,5848,5849,5850,5851,5852,-5799,5853,-5803,-5742,5854,5855,5856,5857,5858]]},{\"type\":\"Polygon\",\"id\":\"002502\",\"arcs\":[[5859,5860,5861,5862,-5762]]},{\"type\":\"Polygon\",\"id\":\"001402\",\"arcs\":[[-5862,5863,5864,5865]]},{\"type\":\"Polygon\",\"id\":\"014904\",\"arcs\":[[-5794]]},{\"type\":\"Polygon\",\"id\":\"012901\",\"arcs\":[[-5671,5866,-5805,5867,5868,5869]]},{\"type\":\"Polygon\",\"id\":\"012300\",\"arcs\":[[5870,5871,5872,5873]]},{\"type\":\"Polygon\",\"id\":\"015003\",\"arcs\":[[5874,5875,5876,-5781]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[5877,5878,5879,-5869,5880]]},{\"type\":\"Polygon\",\"id\":\"005201\",\"arcs\":[[5881,5882,-5716,-5827,5883,5884]]},{\"type\":\"Polygon\",\"id\":\"004800\",\"arcs\":[[5885,5886,-5882,5887,5888]]},{\"type\":\"Polygon\",\"id\":\"004700\",\"arcs\":[[5889,5890,5891,5892,5893]]},{\"type\":\"Polygon\",\"id\":\"006602\",\"arcs\":[[5894,5895,-5769,-5810]]},{\"type\":\"Polygon\",\"id\":\"006100\",\"arcs\":[[-5822,-5815,-5812,5896,-5751,5897,5898]]},{\"type\":\"Polygon\",\"id\":\"008002\",\"arcs\":[[5899,5900,-5848,5901,5902,5903,5904,5905,-5838,-5843]]},{\"type\":\"Polygon\",\"id\":\"008001\",\"arcs\":[[5906,5907,-5845,-5901,5908]]},{\"type\":\"Polygon\",\"id\":\"007904\",\"arcs\":[[5909,5910,-5907,5911]]},{\"type\":\"Polygon\",\"id\":\"007903\",\"arcs\":[[-5912,-5909,-5900,-5842,5912]]},{\"type\":\"Polygon\",\"id\":\"007902\",\"arcs\":[[5913,5914,-5910,-5913,-5841,5915]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[5916,5917,5918,5919]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[5920,-5918]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[5921,5922,5923,5924,5925,5926,5927]]},{\"type\":\"Polygon\",\"id\":\"005700\",\"arcs\":[[5928,-5922,5929]]},{\"type\":\"Polygon\",\"id\":\"005600\",\"arcs\":[[5930,5931,5932,5933,5934,5935,5936,-5923,-5929]]},{\"type\":\"Polygon\",\"id\":\"005500\",\"arcs\":[[-5937,5937,-5825,5938,-5924]]},{\"type\":\"Polygon\",\"id\":\"007905\",\"arcs\":[[5939,5940,5941,5942,-5914,5943]]},{\"type\":\"Polygon\",\"id\":\"007901\",\"arcs\":[[5944,5945,5946,5947,-5940,5948]]},{\"type\":\"Polygon\",\"id\":\"008600\",\"arcs\":[[-5906,5949,5950,-5839]]},{\"type\":\"Polygon\",\"id\":\"008500\",\"arcs\":[[-5905,5951,5952,-5950]]},{\"type\":\"Polygon\",\"id\":\"013101\",\"arcs\":[[5953,-5656,5954,-5795,-5853]]},{\"type\":\"Polygon\",\"id\":\"013001\",\"arcs\":[[-5881,-5868,-5653,-5954,-5852,5955]]},{\"type\":\"Polygon\",\"id\":\"008400\",\"arcs\":[[-5788,-5835,5956,-5933,5957,5958,-5927,5959,5960]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[5961,5962,-5888,-5885,5963,-5816,-5938]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[-5964,-5884,-5826,5964,-5817]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[-5952,-5904,5965,-5886,5966,5967,5968]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[5969,-5968,5970,-5962,-5936]]},{\"type\":\"Polygon\",\"id\":\"007800\",\"arcs\":[[5971,-5785,5972]]},{\"type\":\"Polygon\",\"id\":\"013502\",\"arcs\":[[5973,5974,5975,5976,5977]]},{\"type\":\"Polygon\",\"id\":\"015401\",\"arcs\":[[5978]]},{\"type\":\"Polygon\",\"id\":\"007304\",\"arcs\":[[5979,5980,5981,5982,5983,-5973,-5784,5984,5985]]},{\"type\":\"Polygon\",\"id\":\"007303\",\"arcs\":[[5986,-5986,5987,5988]]},{\"type\":\"Polygon\",\"id\":\"015501\",\"arcs\":[[-5804]]},{\"type\":\"Polygon\",\"id\":\"015402\",\"arcs\":[[-5798,5989,-5800,-5854],[-5979]]},{\"type\":\"Polygon\",\"id\":\"014102\",\"arcs\":[[5990,-5617,5991,5992,5993,5994,-5774]]},{\"type\":\"Polygon\",\"id\":\"004900\",\"arcs\":[[-5967,-5889,-5963,-5971]]},{\"type\":\"Polygon\",\"id\":\"004602\",\"arcs\":[[5995,5996,5997,5998,-5890,5999]]},{\"type\":\"Polygon\",\"id\":\"004601\",\"arcs\":[[-5847,6000,-6000,-5894,6001,-5902]]},{\"type\":\"Polygon\",\"id\":\"004402\",\"arcs\":[[6002,6003,6004,6005]]},{\"type\":\"Polygon\",\"id\":\"004401\",\"arcs\":[[6006,6007,-6006,6008,6009]]},{\"type\":\"Polygon\",\"id\":\"004300\",\"arcs\":[[6010,6011,-6010,6012,-5891,-5999]]},{\"type\":\"Polygon\",\"id\":\"015001\",\"arcs\":[[6013,-5783,6014,6015,-5615,-5792]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[6016,-5678,-5642,6017,6018,6019]]},{\"type\":\"Polygon\",\"id\":\"012501\",\"arcs\":[[6020,6021,-5699,-5673,6022,6023]]},{\"type\":\"Polygon\",\"id\":\"012400\",\"arcs\":[[-5873,6024,-5879,6025]]},{\"type\":\"Polygon\",\"id\":\"017200\",\"arcs\":[[6026,6027,-5945,6028,6029]]},{\"type\":\"Polygon\",\"id\":\"017100\",\"arcs\":[[-5939,-5824,-5820,-5823,-5899,6030,-5925]]},{\"type\":\"Polygon\",\"id\":\"017300\",\"arcs\":[[-5775,-5995,6031,-5756,-5717,-5724,6032]]},{\"type\":\"Polygon\",\"id\":\"017000\",\"arcs\":[[-5714,6033,6034,6035,6036,-5828]]},{\"type\":\"Polygon\",\"id\":\"014101\",\"arcs\":[[-6016,6037,6038,6039,-5992,-5616]]},{\"type\":\"Polygon\",\"id\":\"013201\",\"arcs\":[[-5796,-5955,-5655,-5808,6040,-5920,6041,6042,6043]]},{\"type\":\"Polygon\",\"id\":\"015900\",\"arcs\":[[6044]]},{\"type\":\"Polygon\",\"id\":\"015800\",\"arcs\":[[6045,6046,6047,-1520,6048,6049,6050],[-6045]]},{\"type\":\"Polygon\",\"id\":\"015102\",\"arcs\":[[-5876,6051,-1497,-1521,-6048,6052]]},{\"type\":\"Polygon\",\"id\":\"016100\",\"arcs\":[[6053,-5744]]},{\"type\":\"Polygon\",\"id\":\"004200\",\"arcs\":[[-6013,-6009,-6005,6054,6055,-5892]]},{\"type\":\"Polygon\",\"id\":\"004100\",\"arcs\":[[-6004,6056,6057,-5644,6058,-6035,-6055]]},{\"type\":\"Polygon\",\"id\":\"004500\",\"arcs\":[[-6002,-5893,6059,-5712,-5883,-5887,-5966,-5903]]},{\"type\":\"Polygon\",\"id\":\"003901\",\"arcs\":[[-6060,-6056,-6034,-5713]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[-6058,6060,6061,6062,-5645]]},{\"type\":\"Polygon\",\"id\":\"003600\",\"arcs\":[[-6059,-5648,6063,6064,6065,-6036]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[6066,6067,6068,6069]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[6070,6071,6072,6073,6074,-6067,6075,6076]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[-6076,-6070,6077,-5864,6078]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[-5651,6079,6080,6081,6082,6083]]},{\"type\":\"Polygon\",\"id\":\"016900\",\"arcs\":[[-5965,6084,-5895,-5814,-5818]]},{\"type\":\"Polygon\",\"id\":\"016800\",\"arcs\":[[-5896,-6085,-5830,6085,6086,6087,-5766]]},{\"type\":\"Polygon\",\"id\":\"016600\",\"arcs\":[[6088,6089,6090,-6077,-6079,-5861]]},{\"type\":\"Polygon\",\"id\":\"016500\",\"arcs\":[[-5763,-5863,-5866,6091,6092,-5708,6093]]},{\"type\":\"Polygon\",\"id\":\"017502\",\"arcs\":[[-6049,-1519,-1514,-5746,6094,6095]]},{\"type\":\"Polygon\",\"id\":\"005801\",\"arcs\":[[-5958,-5932,6096]]},{\"type\":\"Polygon\",\"id\":\"014702\",\"arcs\":[[6097,-5676,6098,-5689,-5684,6099]]},{\"type\":\"Polygon\",\"id\":\"014701\",\"arcs\":[[6100,6101,6102,-6100,-5688,-5730,6103,6104]]},{\"type\":\"Polygon\",\"id\":\"014601\",\"arcs\":[[-6099,-5683,6105,-5690]]},{\"type\":\"Polygon\",\"id\":\"009900\",\"arcs\":[[6106,6107,6108,6109,-5626]]},{\"type\":\"Polygon\",\"id\":\"009800\",\"arcs\":[[6110,6111,6112,6113,6114,6115]]},{\"type\":\"Polygon\",\"id\":\"003500\",\"arcs\":[[6116,-6065,6117,6118,-6090,6119,6120]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[-6066,-6117,6121,-6037]]},{\"type\":\"Polygon\",\"id\":\"003302\",\"arcs\":[[-6121,6122,-6087,6123]]},{\"type\":\"Polygon\",\"id\":\"003301\",\"arcs\":[[-6122,-6124,-6086,-5829]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[-5767,-6088,-6123,-6120,-6089,-5860,-5761]]},{\"type\":\"Polygon\",\"id\":\"002900\",\"arcs\":[[-6064,-5647,6124,6125,-6118]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[6126,-5704,-5725,-5701,6127,6128,6129,-6081]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[-6082,-6130,6130,6131]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[-6129,6132,6133,6134,6135,-6131]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-6128,-5700,-6022,6136,-6133]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-6137,-6021,6137,-6134]]},{\"type\":\"Polygon\",\"id\":\"014209\",\"arcs\":[[-6017,6138,6139,-5692,-5679]]},{\"type\":\"Polygon\",\"id\":\"006901\",\"arcs\":[[-5811,-5772,6140,-5752,-5897]]},{\"type\":\"Polygon\",\"id\":\"009116\",\"arcs\":[[6141,6142,-5941,-5948,6143]]},{\"type\":\"Polygon\",\"id\":\"009702\",\"arcs\":[[-5693,-6140,6144,-6111,6145]]},{\"type\":\"Polygon\",\"id\":\"009701\",\"arcs\":[[-6146,-6116,6146,6147,-5694]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[-6108,6148,6149]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[6150,6151,6152,6153,-6149]]},{\"type\":\"Polygon\",\"id\":\"002800\",\"arcs\":[[6154,6155,-6072,6156,-6126]]},{\"type\":\"Polygon\",\"id\":\"002702\",\"arcs\":[[-6157,-6071,-6091,-6119]]},{\"type\":\"Polygon\",\"id\":\"002400\",\"arcs\":[[6157,-6110,6158,-6073,-6156]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[-6109,6159,6160,-6074,-6159]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[-6033,-5723,-5728,-5776]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[-6093,6161,6162,6163,-5849,-5709]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[6164,-6083,-6132,-6136,6165]]},{\"type\":\"Polygon\",\"id\":\"015600\",\"arcs\":[[-5741,-5802,6166,6167,-5855]]},{\"type\":\"Polygon\",\"id\":\"015202\",\"arcs\":[[6168,-5977,6169,-6046,6170,6171]]},{\"type\":\"Polygon\",\"id\":\"015201\",\"arcs\":[[-6171,-6051,6172,6173,6174]]},{\"type\":\"Polygon\",\"id\":\"013202\",\"arcs\":[[-6042,-5919,-5921,-5917,-6041,-5807,6175,-6172,-6175,6176]]},{\"type\":\"Polygon\",\"id\":\"009009\",\"arcs\":[[-6104,-5732,6177,6178,6179,6180,6181]]},{\"type\":\"Polygon\",\"id\":\"016700\",\"arcs\":[[-6160,-6150,-6154,-5649,6182]]},{\"type\":\"Polygon\",\"id\":\"014207\",\"arcs\":[[6183,-5618,-5991,6184,6185,6186,6187]]},{\"type\":\"Polygon\",\"id\":\"010902\",\"arcs\":[[-6152,6188,-5624,6189,-5611,-5778,6190]]},{\"type\":\"Polygon\",\"id\":\"010901\",\"arcs\":[[-6189,-6151,-6107,-5625]]},{\"type\":\"Polygon\",\"id\":\"010807\",\"arcs\":[[6191,-6185,-5773,-5609]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[-5729,-5721,-5702,6192]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[-6191,-5777,-5726,-6193,-5705,-6127,-6080,-5650,-6153]]},{\"type\":\"Polygon\",\"id\":\"003000\",\"arcs\":[[-6125,-5646,-6063,6193,-5627,-6158,-6155]]},{\"type\":\"Polygon\",\"id\":\"010003\",\"arcs\":[[-5695,-6148,6194,-5622,-5629,6195]]},{\"type\":\"Polygon\",\"id\":\"008800\",\"arcs\":[[-5834,6196,-5934,-5957]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[-6039,6197,6198,6199]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[-6199,6200]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[-6040,-6200,-6201,-6198,-6038,-6015,-5782,6201,-5976,6202,-5993]]},{\"type\":\"Polygon\",\"id\":\"009600\",\"arcs\":[[-5659,-5675,-6106,-5682,6203,-5739,6204,6205]]},{\"type\":\"Polygon\",\"id\":\"016400\",\"arcs\":[[-5865,-6078,-6069,6206,-6162,-6092]]},{\"type\":\"Polygon\",\"id\":\"016200\",\"arcs\":[[-5672,-5870,-5880,-6025,-5872,6207,-6023]]},{\"type\":\"Polygon\",\"id\":\"017400\",\"arcs\":[[6208,-5874,-6026,-5878,-5956,-5851]]},{\"type\":\"Polygon\",\"id\":\"010805\",\"arcs\":[[6209,-6186,-6192,-5608,6210]]},{\"type\":\"Polygon\",\"id\":\"010804\",\"arcs\":[[-6114,6211,-6187,-6210,6212,-5606,6213]]},{\"type\":\"Polygon\",\"id\":\"008700\",\"arcs\":[[-5951,-5953,-5969,-5970,-5935,-6197,-5833]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[6214,-6030,6215,-5836,-5972,-5984]]},{\"type\":\"Polygon\",\"id\":\"007600\",\"arcs\":[[-6029,-5949,-5944,-5916,-5844,-6216]]},{\"type\":\"Polygon\",\"id\":\"013702\",\"arcs\":[[-6032,-5994,-6203,-5975,6216,6217,-5757]]},{\"type\":\"Polygon\",\"id\":\"009502\",\"arcs\":[[-5737,6218,-5635,-5636,6219,6220,6221]]},{\"type\":\"Polygon\",\"id\":\"009501\",\"arcs\":[[6222,-6221,6223,-6011,-5998]]},{\"type\":\"Polygon\",\"id\":\"009402\",\"arcs\":[[6224,6225,-6205,-5738,-6222,6226]]},{\"type\":\"Polygon\",\"id\":\"009401\",\"arcs\":[[6227,-6227,-6223,-5997,6228,6229]]},{\"type\":\"Polygon\",\"id\":\"016300\",\"arcs\":[[-6207,-6068,-6075,-6161,-6183,-5652,-6084,-6165,6230,-6163]]},{\"type\":\"Polygon\",\"id\":\"000110\",\"arcs\":[[-6231,-6166,-6135,-6138,-6024,-6208,-5871,-6209,-5850,-6164]]},{\"type\":\"Polygon\",\"id\":\"010803\",\"arcs\":[[-6147,-6115,-6214,-6190,-5623,-6195]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[6231,6232,-5630,-5620,6233,6234]]},{\"type\":\"Polygon\",\"id\":\"015302\",\"arcs\":[[-6177,-6174,6235,6236,-6043]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[-5619,6237,-6234]]},{\"type\":\"Polygon\",\"id\":\"013701\",\"arcs\":[[-5698,-5719,-5758,-6218,6238,6239,-5867,-5670]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[-6239,-6217,-5974,6240]]},{\"type\":\"Polygon\",\"id\":\"009302\",\"arcs\":[[6241,-6230,6242]]},{\"type\":\"Polygon\",\"id\":\"940000\",\"arcs\":[[-6168,6243,-6095,-5745,-6054,-5743,-1512,-1472,-1511,-1476,6244,6245,-5856]]},{\"type\":\"Polygon\",\"id\":\"009301\",\"arcs\":[[-6243,-6229,-5996,-6001,-5846,-5908,6246]]},{\"type\":\"Polygon\",\"id\":\"009200\",\"arcs\":[[6247,6248,-6225,-6228,-6242,-6247,-5911,-5915,-5943,6249]]},{\"type\":\"Polygon\",\"id\":\"009114\",\"arcs\":[[6250,-5663,-5657,6251,6252,6253]]},{\"type\":\"Polygon\",\"id\":\"010809\",\"arcs\":[[-6213,-6211,-5607]]},{\"type\":\"Polygon\",\"id\":\"009010\",\"arcs\":[[-5731,-5686,-5668,6254,-6178]]},{\"type\":\"Polygon\",\"id\":\"009115\",\"arcs\":[[6255,6256,6257,-6250,-5942,-6143]]},{\"type\":\"Polygon\",\"id\":\"006902\",\"arcs\":[[-6141,-5771,-5765,-5747,-5753]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[6258,-6235,-6238,-5628,-6194,-6062]]},{\"type\":\"Polygon\",\"id\":\"010102\",\"arcs\":[[-5633,6259,-5631,-6233,6260,-5637]]},{\"type\":\"Polygon\",\"id\":\"010001\",\"arcs\":[[-5736,-6204,-5681,-5691,-6196,-6260,-5632,-6219]]},{\"type\":\"Polygon\",\"id\":\"007102\",\"arcs\":[[-5764,-6094,-5707,-5749]]},{\"type\":\"Polygon\",\"id\":\"013501\",\"arcs\":[[-6241,-5978,-6169,-6176,-5806,-6240]]},{\"type\":\"Polygon\",\"id\":\"015700\",\"arcs\":[[-6236,-6173,-6050,-6096,-6244,-6167,6261]]},{\"type\":\"Polygon\",\"id\":\"014803\",\"arcs\":[[-5734,6262,-5793,-6098,-6103,6263],[6264]]},{\"type\":\"Polygon\",\"id\":\"009113\",\"arcs\":[[-6255,-5667,-6251,6265,-6179]]},{\"type\":\"Polygon\",\"id\":\"009112\",\"arcs\":[[-6180,-6266,-6254,6266,-6257,6267]]},{\"type\":\"Polygon\",\"id\":\"009110\",\"arcs\":[[-6267,-6253,6268,-6248,-6258]]},{\"type\":\"Polygon\",\"id\":\"010201\",\"arcs\":[[-6224,-6220,-5639,6269,-6007,-6012]]},{\"type\":\"Polygon\",\"id\":\"005802\",\"arcs\":[[-6097,-5931,-5930,-5928,-5959]]},{\"type\":\"Polygon\",\"id\":\"010202\",\"arcs\":[[-5638,-6261,-6232,-6259,-6061,-6057,-6003,-6008,-6270]]},{\"type\":\"Polygon\",\"id\":\"007302\",\"arcs\":[[-5988,-5985,-5961,6270,6271]]},{\"type\":\"Polygon\",\"id\":\"015301\",\"arcs\":[[-5797,-6044,-6237,-6262,-5801,-5990]]},{\"type\":\"Polygon\",\"id\":\"015101\",\"arcs\":[[-5877,-6053,-6047,-6170,-6202]]},{\"type\":\"Polygon\",\"id\":\"014801\",\"arcs\":[[-6265]]},{\"type\":\"Polygon\",\"id\":\"014502\",\"arcs\":[[6272,-6019,6273,-6188,-6212,-6113]]},{\"type\":\"Polygon\",\"id\":\"014501\",\"arcs\":[[-6020,-6273,-6112,-6145,-6139]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[-6274,-6018,-5641,-5612,-6184]]},{\"type\":\"Polygon\",\"id\":\"009109\",\"arcs\":[[-6252,-5660,-6206,-6226,-6249,-6269]]},{\"type\":\"Polygon\",\"id\":\"009107\",\"arcs\":[[6274,6275,6276,-6144,-5947,6277,6278]]},{\"type\":\"Polygon\",\"id\":\"009106\",\"arcs\":[[-6181,-6268,-6256,-6142,-6277,6279]]},{\"type\":\"Polygon\",\"id\":\"971100\",\"arcs\":[[6280,6281,6282,6283]]},{\"type\":\"Polygon\",\"id\":\"971000\",\"arcs\":[[6284,-6281,6285]]},{\"type\":\"Polygon\",\"id\":\"970600\",\"arcs\":[[6286,6287,6288,6289,6290,6291],[6292,6293,6294,-6286,-6284,6295,6296,6297,6298]]},{\"type\":\"Polygon\",\"id\":\"970400\",\"arcs\":[[6299,6300,6301,-6292,6302]]},{\"type\":\"Polygon\",\"id\":\"970500\",\"arcs\":[[-2977,6303,-6303,-6291,6304,6305,-2979,-3011]]},{\"type\":\"Polygon\",\"id\":\"971500\",\"arcs\":[[-4146,-4193,6306,6307,6308,6309]]},{\"type\":\"Polygon\",\"id\":\"970700\",\"arcs\":[[-6283,6310,6311,-6296]]},{\"type\":\"Polygon\",\"id\":\"970100\",\"arcs\":[[-4109,-4147,-6310,6312,6313]]},{\"type\":\"Polygon\",\"id\":\"970300\",\"arcs\":[[-6308,6314,-6288,6315]]},{\"type\":\"Polygon\",\"id\":\"970200\",\"arcs\":[[-6313,-6309,-6316,-6287,-6302,6316]]},{\"type\":\"Polygon\",\"id\":\"970900\",\"arcs\":[[-6282,-6285,-6295,6317,-6311]]},{\"type\":\"Polygon\",\"id\":\"970800\",\"arcs\":[[-6312,-6318,-6294,6318,-6297]]},{\"type\":\"Polygon\",\"id\":\"971400\",\"arcs\":[[-6307,-4192,6319,-6289,-6315]]},{\"type\":\"Polygon\",\"id\":\"971300\",\"arcs\":[[6320,-6299]]},{\"type\":\"Polygon\",\"id\":\"971200\",\"arcs\":[[-6319,-6293,-6321,-6298]]},{\"type\":\"Polygon\",\"id\":\"030403\",\"arcs\":[[6321]]},{\"type\":\"Polygon\",\"id\":\"030402\",\"arcs\":[[6322,6323,6324,-3386,6325],[-6322]]},{\"type\":\"Polygon\",\"id\":\"030401\",\"arcs\":[[6326,6327,-6326,-3385,-3326,-3418,6328]]},{\"type\":\"Polygon\",\"id\":\"030103\",\"arcs\":[[6329,6330,6331,6332,6333,6334,6335,6336,6337]]},{\"type\":\"Polygon\",\"id\":\"030102\",\"arcs\":[[6338,-6331]]},{\"type\":\"Polygon\",\"id\":\"030101\",\"arcs\":[[6339,6340,-6332,-6339,-6330]]},{\"type\":\"Polygon\",\"id\":\"030300\",\"arcs\":[[6341]]},{\"type\":\"Polygon\",\"id\":\"030200\",\"arcs\":[[6342,-6337,6343,-6323,-6328,6344],[-6342]]},{\"type\":\"Polygon\",\"id\":\"031000\",\"arcs\":[[6345,6346,6347,6348,6349,6350,6351,6352]]},{\"type\":\"Polygon\",\"id\":\"030900\",\"arcs\":[[6353,-6351]]},{\"type\":\"Polygon\",\"id\":\"030700\",\"arcs\":[[-6352,6354,6355,6356]]},{\"type\":\"Polygon\",\"id\":\"030800\",\"arcs\":[[-6355,-6354,-6350,6357,6358,6359,-3265,6360]]},{\"type\":\"Polygon\",\"id\":\"030600\",\"arcs\":[[-6324,-6344,-6336,6361,6362,-6353,-6357,6363]]},{\"type\":\"Polygon\",\"id\":\"030502\",\"arcs\":[[-6364,-6356,-6361,-3264,-3424,-3387,-6325],[6364]]},{\"type\":\"Polygon\",\"id\":\"030501\",\"arcs\":[[-6365]]},{\"type\":\"Polygon\",\"id\":\"031100\",\"arcs\":[[6365,6366,6367,6368,-6348,6369]]},{\"type\":\"Polygon\",\"id\":\"980000\",\"arcs\":[[6370,6371,6372,6373,6374,6375,6376,6377]]},{\"type\":\"Polygon\",\"id\":\"060803\",\"arcs\":[[6378,-6377,6379,6380,6381]]},{\"type\":\"Polygon\",\"id\":\"990001\",\"arcs\":[[6382,6383,6384,6385,6386,6387,6388,6389,6390],[6391],[6392],[6393],[6394],[6395],[6396],[6397],[6398],[6399],[6400],[6401],[6402]]},{\"type\":\"Polygon\",\"id\":\"060804\",\"arcs\":[[-6376,6403,6404,6405,-6380]]},{\"type\":\"Polygon\",\"id\":\"062200\",\"arcs\":[[6406,6407,6408,6409,6410]]},{\"type\":\"Polygon\",\"id\":\"061900\",\"arcs\":[[6411,6412,-6410,6413]]},{\"type\":\"Polygon\",\"id\":\"061500\",\"arcs\":[[6414,6415,-6412,6416]]},{\"type\":\"Polygon\",\"id\":\"061400\",\"arcs\":[[6417,6418,6419,6420,-6415]]},{\"type\":\"Polygon\",\"id\":\"061300\",\"arcs\":[[6421,6422,6423,-6420,6424]]},{\"type\":\"Polygon\",\"id\":\"061200\",\"arcs\":[[-6423,6425,-6407,6426]]},{\"type\":\"Polygon\",\"id\":\"062100\",\"arcs\":[[-6416,-6421,-6424,-6427,-6411,-6413]]},{\"type\":\"Polygon\",\"id\":\"060600\",\"arcs\":[[6427,-6378,-6379,6428]]},{\"type\":\"Polygon\",\"id\":\"061100\",\"arcs\":[[-6381,-6406,6429,6430,-6408,-6426,-6422,6431]]},{\"type\":\"Polygon\",\"id\":\"061000\",\"arcs\":[[6432,6433,6434,-6430,-6405]]},{\"type\":\"Polygon\",\"id\":\"060900\",\"arcs\":[[-6375,6435,6436,-6433,-6404]]},{\"type\":\"MultiPolygon\",\"id\":\"060300\",\"arcs\":[[[-6398]],[[-6399]],[[-6394]],[[-6400]],[[-6401]],[[6437,6438,-6384]]]},{\"type\":\"Polygon\",\"id\":\"060500\",\"arcs\":[[6439,6440,-6429,-6382,-6432,-6425,-6419,6441,6442,6443]]},{\"type\":\"Polygon\",\"id\":\"060700\",\"arcs\":[[6444,-6371,-6428,-6441,6445]]},{\"type\":\"Polygon\",\"id\":\"060200\",\"arcs\":[[6446,6447,-6444,6448,-6438,-6383]]},{\"type\":\"Polygon\",\"id\":\"060100\",\"arcs\":[[6449,6450,-6446,-6440,-6448]]},{\"type\":\"Polygon\",\"id\":\"062400\",\"arcs\":[[6451,-6409,-6431,-6435,6452,6453,6454]]},{\"type\":\"Polygon\",\"id\":\"061800\",\"arcs\":[[6455,-6414,-6452,6456,6457,6458]]},{\"type\":\"MultiPolygon\",\"id\":\"060400\",\"arcs\":[[[-6393]],[[-6392]],[[-6439,-6449,-6443,6459,-6459,6460,-6385]],[[-6402]],[[-6396]],[[-6397]],[[-6403]]]},{\"type\":\"Polygon\",\"id\":\"062500\",\"arcs\":[[-6457,-6455,6461,6462,6463,-6387,6464]]},{\"type\":\"MultiPolygon\",\"id\":\"061700\",\"arcs\":[[[-6395]],[[-6461,-6458,-6465,-6386]]]},{\"type\":\"Polygon\",\"id\":\"061600\",\"arcs\":[[-6442,-6418,-6417,-6456,-6460]]},{\"type\":\"Polygon\",\"id\":\"072600\",\"arcs\":[[6465,6466,6467,6468,6469,6470,6471,6472,6473]]},{\"type\":\"Polygon\",\"id\":\"120200\",\"arcs\":[[6474,6475,6476,6477,6478,6479]]},{\"type\":\"Polygon\",\"id\":\"054600\",\"arcs\":[[6480,6481,6482,6483,6484]]},{\"type\":\"Polygon\",\"id\":\"122000\",\"arcs\":[[6485,6486,6487,6488,6489,6490,6491,6492]]},{\"type\":\"Polygon\",\"id\":\"121400\",\"arcs\":[[-6487,6493]]},{\"type\":\"Polygon\",\"id\":\"121000\",\"arcs\":[[6494,-6493,6495,6496,6497,6498]]},{\"type\":\"Polygon\",\"id\":\"120800\",\"arcs\":[[6499,6500,-6478,6501,-6488,-6494,-6486,-6495]]},{\"type\":\"Polygon\",\"id\":\"120000\",\"arcs\":[[-6479,-6501,6502,6503]]},{\"type\":\"Polygon\",\"id\":\"119600\",\"arcs\":[[6504,-6503,-6500,-6499,6505,6506]]},{\"type\":\"Polygon\",\"id\":\"119400\",\"arcs\":[[6507,-6506,-6498,6508,6509,6510]]},{\"type\":\"Polygon\",\"id\":\"021600\",\"arcs\":[[6511,6512,6513,6514,6515]]},{\"type\":\"Polygon\",\"id\":\"021500\",\"arcs\":[[6516,6517,6518,6519,6520,6521]]},{\"type\":\"Polygon\",\"id\":\"021400\",\"arcs\":[[6522,-6515,6523,6524,6525]]},{\"type\":\"Polygon\",\"id\":\"021300\",\"arcs\":[[6526,6527,6528,6529,-6520]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[6530,-6525,6531,6532,6533]]},{\"type\":\"Polygon\",\"id\":\"021000\",\"arcs\":[[6534,-6534,6535,6536,6537]]},{\"type\":\"Polygon\",\"id\":\"020800\",\"arcs\":[[6538,-6538,6539,6540,6541,6542]]},{\"type\":\"Polygon\",\"id\":\"020700\",\"arcs\":[[6543,6544,-6522,6545,6546]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[6547,-6543,6548,6549,6550]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[6551,6552,6553,-6517,-6545]]},{\"type\":\"Polygon\",\"id\":\"020400\",\"arcs\":[[-6549,-6542,6554,6555]]},{\"type\":\"Polygon\",\"id\":\"020300\",\"arcs\":[[6556,6557,6558,6559,-6553]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[-6541,6560,6561,-6555]]},{\"type\":\"Polygon\",\"id\":\"045000\",\"arcs\":[[6562,6563,6564]]},{\"type\":\"Polygon\",\"id\":\"044800\",\"arcs\":[[6565,6566,-6564,6567,6568,6569]]},{\"type\":\"Polygon\",\"id\":\"044700\",\"arcs\":[[6570,6571,6572,6573,6574]]},{\"type\":\"Polygon\",\"id\":\"044600\",\"arcs\":[[-6570,6575,6576,6577,6578]]},{\"type\":\"Polygon\",\"id\":\"044500\",\"arcs\":[[-6573,6579,6580,6581]]},{\"type\":\"Polygon\",\"id\":\"044400\",\"arcs\":[[6582,6583,6584,6585,-6576,-6569]]},{\"type\":\"Polygon\",\"id\":\"044300\",\"arcs\":[[6586,6587,6588,6589,-6581]]},{\"type\":\"Polygon\",\"id\":\"044200\",\"arcs\":[[-6585,6590,6591,6592,6593,6594]]},{\"type\":\"Polygon\",\"id\":\"044100\",\"arcs\":[[6595,6596,6597,6598,6599,-6589]]},{\"type\":\"Polygon\",\"id\":\"044000\",\"arcs\":[[-6586,-6595,6600,6601,-6577]]},{\"type\":\"Polygon\",\"id\":\"043900\",\"arcs\":[[6602,6603,6604,6605,6606,6607,6608,-6598]]},{\"type\":\"Polygon\",\"id\":\"043800\",\"arcs\":[[-6601,-6594,6609,6610,6611,6612]]},{\"type\":\"Polygon\",\"id\":\"036501\",\"arcs\":[[6613,6614,6615,6616,6617]]},{\"type\":\"Polygon\",\"id\":\"036400\",\"arcs\":[[6618,6619,6620,6621]]},{\"type\":\"Polygon\",\"id\":\"036300\",\"arcs\":[[6622,-6617,6623,6624,6625,6626,6627,6628]]},{\"type\":\"Polygon\",\"id\":\"036200\",\"arcs\":[[6629,6630,6631,6632,6633,-6620]]},{\"type\":\"Polygon\",\"id\":\"036100\",\"arcs\":[[6634,6635,6636,-6628]]},{\"type\":\"Polygon\",\"id\":\"036002\",\"arcs\":[[6637,6638,6639,-6632]]},{\"type\":\"Polygon\",\"id\":\"036001\",\"arcs\":[[-6640,6640,6641,-6633]]},{\"type\":\"Polygon\",\"id\":\"035900\",\"arcs\":[[-6629,-6637,6642,6643,6644,6645]]},{\"type\":\"Polygon\",\"id\":\"035700\",\"arcs\":[[-6644,6646,6647,6648,6649,6650,6651,6652]]},{\"type\":\"Polygon\",\"id\":\"035500\",\"arcs\":[[6653,6654,-6651,6655,6656,6657,6658,6659,6660]]},{\"type\":\"Polygon\",\"id\":\"035400\",\"arcs\":[[6661,6662,6663,6664,6665,6666,6667,6668]]},{\"type\":\"Polygon\",\"id\":\"119200\",\"arcs\":[[6669,6670,6671,-6507,-6508,6672,6673]]},{\"type\":\"Polygon\",\"id\":\"118800\",\"arcs\":[[6674,6675,6676,-6475,6677]]},{\"type\":\"Polygon\",\"id\":\"118600\",\"arcs\":[[6678,6679,-6675,6680,6681,6682]]},{\"type\":\"Polygon\",\"id\":\"118400\",\"arcs\":[[6683,6684,6685,-6683,6686,6687]]},{\"type\":\"Polygon\",\"id\":\"118202\",\"arcs\":[[6688,-6685,6689,6690]]},{\"type\":\"Polygon\",\"id\":\"118201\",\"arcs\":[[-6690,-6684,6691,6692]]},{\"type\":\"Polygon\",\"id\":\"118000\",\"arcs\":[[6693,6694,-6691,-6693,6695,6696,6697,6698,6699,6700,6701]]},{\"type\":\"Polygon\",\"id\":\"117800\",\"arcs\":[[6702,6703,-6687,-6682,6704,-6671,6705]]},{\"type\":\"Polygon\",\"id\":\"117602\",\"arcs\":[[-6692,-6688,-6704,6706,-6696]]},{\"type\":\"Polygon\",\"id\":\"117601\",\"arcs\":[[-6707,-6703,6707,-6697]]},{\"type\":\"Polygon\",\"id\":\"117400\",\"arcs\":[[-6708,-6706,-6670,6708,6709,-6698]]},{\"type\":\"Polygon\",\"id\":\"117202\",\"arcs\":[[-6710,6710,6711,-6699]]},{\"type\":\"Polygon\",\"id\":\"020100\",\"arcs\":[[6712,6713,6714,-6559,6715]]},{\"type\":\"Polygon\",\"id\":\"020000\",\"arcs\":[[-6561,6716,6717,6718]]},{\"type\":\"Polygon\",\"id\":\"019900\",\"arcs\":[[-6716,-6558,6719,6720,6721]]},{\"type\":\"Polygon\",\"id\":\"019800\",\"arcs\":[[6722,6723,6724,6725,6726,-6718]]},{\"type\":\"Polygon\",\"id\":\"019700\",\"arcs\":[[6727,6728,6729,6730,-6713,-6722,6731]]},{\"type\":\"Polygon\",\"id\":\"019600\",\"arcs\":[[-6540,-6537,6732,6733,-6723,-6717]]},{\"type\":\"Polygon\",\"id\":\"019500\",\"arcs\":[[6734,6735,6736,-6729,6737]]},{\"type\":\"Polygon\",\"id\":\"019400\",\"arcs\":[[-6533,6738,6739,6740,-6733,-6536]]},{\"type\":\"Polygon\",\"id\":\"019300\",\"arcs\":[[6741,6742,6743,6744,-6730,-6737]]},{\"type\":\"Polygon\",\"id\":\"019200\",\"arcs\":[[-6524,-6514,6745,6746,6747,-6739,-6532]]},{\"type\":\"Polygon\",\"id\":\"019100\",\"arcs\":[[6748,6749,-6742,-6736,6750,6751]]},{\"type\":\"Polygon\",\"id\":\"019000\",\"arcs\":[[-6734,-6741,6752,6753,6754,-6724]]},{\"type\":\"Polygon\",\"id\":\"018800\",\"arcs\":[[-6755,6755,6756,6757,-6725]]},{\"type\":\"Polygon\",\"id\":\"043700\",\"arcs\":[[-6607,6758,6759,6760,6761,6762]]},{\"type\":\"Polygon\",\"id\":\"043600\",\"arcs\":[[6763,-6578,-6602,-6613,6764,6765]]},{\"type\":\"Polygon\",\"id\":\"043500\",\"arcs\":[[-6608,-6763,6766,6767,6768]]},{\"type\":\"Polygon\",\"id\":\"043400\",\"arcs\":[[-6765,-6612,6769,6770]]},{\"type\":\"Polygon\",\"id\":\"043300\",\"arcs\":[[6771,-6599,-6609,-6769,6772,6773]]},{\"type\":\"Polygon\",\"id\":\"043200\",\"arcs\":[[6774,-6766,-6771,6775,6776]]},{\"type\":\"Polygon\",\"id\":\"043100\",\"arcs\":[[-6590,-6600,-6772,6777,6778,6779]]},{\"type\":\"Polygon\",\"id\":\"043000\",\"arcs\":[[6780,6781,6782,6783,-6777,6784,6785,6786]]},{\"type\":\"Polygon\",\"id\":\"042900\",\"arcs\":[[-6574,-6582,-6780,6787,6788,6789]]},{\"type\":\"Polygon\",\"id\":\"042800\",\"arcs\":[[6790,-6786,6791,6792,6793,6794]]},{\"type\":\"Polygon\",\"id\":\"042700\",\"arcs\":[[6795,-6575,-6790,6796,6797]]},{\"type\":\"Polygon\",\"id\":\"042600\",\"arcs\":[[-6776,6798,6799,-6792,-6785]]},{\"type\":\"Polygon\",\"id\":\"042500\",\"arcs\":[[6800,6801,-6798,6802,6803]]},{\"type\":\"Polygon\",\"id\":\"035300\",\"arcs\":[[6804,-6661,6805,6806,6807,6808,6809]]},{\"type\":\"Polygon\",\"id\":\"035200\",\"arcs\":[[6810,6811,6812,-6667,6813,-6641,-6639,6814,6815,6816,6817]]},{\"type\":\"Polygon\",\"id\":\"035100\",\"arcs\":[[6818,6819,-6654,-6805]]},{\"type\":\"Polygon\",\"id\":\"035000\",\"arcs\":[[-6668,-6813,6820]]},{\"type\":\"Polygon\",\"id\":\"034900\",\"arcs\":[[6821,-6652,-6655,-6820]]},{\"type\":\"Polygon\",\"id\":\"034700\",\"arcs\":[[-6645,-6653,-6822,6822,6823]]},{\"type\":\"Polygon\",\"id\":\"034500\",\"arcs\":[[-6823,-6819,-6810,6824,6825]]},{\"type\":\"Polygon\",\"id\":\"034300\",\"arcs\":[[6826,-6825,6827,6828]]},{\"type\":\"Polygon\",\"id\":\"034200\",\"arcs\":[[6829,6830,6831,6832]]},{\"type\":\"Polygon\",\"id\":\"034100\",\"arcs\":[[-6829,6833,6834,6835]]},{\"type\":\"Polygon\",\"id\":\"034000\",\"arcs\":[[-6818,6836,-6831]]},{\"type\":\"Polygon\",\"id\":\"033900\",\"arcs\":[[-6828,-6809,6837,6838,-6834]]},{\"type\":\"Polygon\",\"id\":\"033700\",\"arcs\":[[-6808,6839,6840,6841,-6838]]},{\"type\":\"Polygon\",\"id\":\"117201\",\"arcs\":[[-6700,-6712,6842,6843,6844,6845]]},{\"type\":\"Polygon\",\"id\":\"117000\",\"arcs\":[[-6844,6846,6847,6848,6849]]},{\"type\":\"Polygon\",\"id\":\"116800\",\"arcs\":[[-6711,-6709,-6674,6850,-6847,-6843]]},{\"type\":\"Polygon\",\"id\":\"116600\",\"arcs\":[[-6851,-6673,-6511,6851,6852,-6848]]},{\"type\":\"Polygon\",\"id\":\"116400\",\"arcs\":[[-6852,-6510,6853,6854,6855]]},{\"type\":\"Polygon\",\"id\":\"116200\",\"arcs\":[[-6856,6856,6857,6858,6859]]},{\"type\":\"Polygon\",\"id\":\"116000\",\"arcs\":[[6860,-6859,6861,6862,6863]]},{\"type\":\"Polygon\",\"id\":\"115800\",\"arcs\":[[6864,-6863,6865,6866,6867,6868]]},{\"type\":\"Polygon\",\"id\":\"115600\",\"arcs\":[[6869,-6868,6870,6871,6872]]},{\"type\":\"Polygon\",\"id\":\"115200\",\"arcs\":[[6873,6874,-6864,-6865,6875]]},{\"type\":\"Polygon\",\"id\":\"115000\",\"arcs\":[[-6849,-6853,-6860,-6861,-6875,6876]]},{\"type\":\"Polygon\",\"id\":\"114600\",\"arcs\":[[6877,6878,-6845,6879]]},{\"type\":\"Polygon\",\"id\":\"114202\",\"arcs\":[[6880,-6701,-6846,-6879,6881]]},{\"type\":\"Polygon\",\"id\":\"018700\",\"arcs\":[[6882,-6751,-6735,6883,6884]]},{\"type\":\"Polygon\",\"id\":\"018600\",\"arcs\":[[6885,-6726,-6758,6886,6887]]},{\"type\":\"Polygon\",\"id\":\"018501\",\"arcs\":[[6888,-6885,6889,6890,6891]]},{\"type\":\"Polygon\",\"id\":\"018400\",\"arcs\":[[-6888,6892,6893,6894,6895]]},{\"type\":\"Polygon\",\"id\":\"018300\",\"arcs\":[[-6884,-6738,-6728,6896,6897,-6890]]},{\"type\":\"Polygon\",\"id\":\"018200\",\"arcs\":[[-6893,-6887,-6757,6898,6899,6900,6901]]},{\"type\":\"Polygon\",\"id\":\"018100\",\"arcs\":[[6902,-6897,-6732,6903,6904,6905]]},{\"type\":\"Polygon\",\"id\":\"018000\",\"arcs\":[[-6902,6906,6907,6908]]},{\"type\":\"Polygon\",\"id\":\"017900\",\"arcs\":[[-6721,6909,6910,6911,-6904]]},{\"type\":\"Polygon\",\"id\":\"017800\",\"arcs\":[[-6901,6912,6913,6914,6915,-6907]]},{\"type\":\"Polygon\",\"id\":\"017700\",\"arcs\":[[6916,6917,6918,-6546,-6521,-6530,6919,6920,6921,6922,6923,6924,6925,6926]]},{\"type\":\"Polygon\",\"id\":\"042400\",\"arcs\":[[-6611,6927,6928,6929,-6799,-6770]]},{\"type\":\"Polygon\",\"id\":\"042300\",\"arcs\":[[-6803,-6797,-6789,6930,6931,6932]]},{\"type\":\"Polygon\",\"id\":\"042200\",\"arcs\":[[6933,6934,6935,6936,6937,-6928,-6610]]},{\"type\":\"Polygon\",\"id\":\"042100\",\"arcs\":[[-6788,-6779,6938,6939,6940,-6931]]},{\"type\":\"Polygon\",\"id\":\"042000\",\"arcs\":[[6941,6942,6943,-6934,-6593]]},{\"type\":\"Polygon\",\"id\":\"067000\",\"arcs\":[[6944,6945,6946,6947,6948,6949,6950]]},{\"type\":\"Polygon\",\"id\":\"066200\",\"arcs\":[[6951,-6948,6952,6953,6954]]},{\"type\":\"Polygon\",\"id\":\"066000\",\"arcs\":[[-6955,6955,6956,6957]]},{\"type\":\"Polygon\",\"id\":\"065800\",\"arcs\":[[6958,6959,-6957,6960,6961]]},{\"type\":\"Polygon\",\"id\":\"065600\",\"arcs\":[[6962,6963,6964,-6959,6965,6966]]},{\"type\":\"Polygon\",\"id\":\"065400\",\"arcs\":[[6967,6968,-6958,-6960,-6965]]},{\"type\":\"Polygon\",\"id\":\"065200\",\"arcs\":[[6969,6970,6971,-6949,-6952,-6969,6972]]},{\"type\":\"Polygon\",\"id\":\"065000\",\"arcs\":[[6973,6974,6975,6976,6977,-6970,6978]]},{\"type\":\"Polygon\",\"id\":\"033600\",\"arcs\":[[6979,6980,6981,6982,-6832,-6837,-6817,6983]]},{\"type\":\"Polygon\",\"id\":\"033500\",\"arcs\":[[-6807,6984,6985,-6840]]},{\"type\":\"Polygon\",\"id\":\"033300\",\"arcs\":[[-6806,-6660,6986,6987,-6985]]},{\"type\":\"Polygon\",\"id\":\"033100\",\"arcs\":[[-6659,6988,6989,6990,6991,-6987]]},{\"type\":\"Polygon\",\"id\":\"033000\",\"arcs\":[[6992,6993,6994,-6982,6995]]},{\"type\":\"Polygon\",\"id\":\"032900\",\"arcs\":[[6996,-6991,6997,6998,6999,7000,7001]]},{\"type\":\"Polygon\",\"id\":\"032800\",\"arcs\":[[7002,-6833,-6983,-6995]]},{\"type\":\"Polygon\",\"id\":\"032700\",\"arcs\":[[-6529,7003,7004,-7001,7005,7006,7007,-6920]]},{\"type\":\"Polygon\",\"id\":\"032600\",\"arcs\":[[7008,-6811,-6830,-7003,-6994]]},{\"type\":\"Polygon\",\"id\":\"032500\",\"arcs\":[[7009,7010,-7004,-6528]]},{\"type\":\"Polygon\",\"id\":\"032300\",\"arcs\":[[7011,7012,-7005,-7011]]},{\"type\":\"Polygon\",\"id\":\"032100\",\"arcs\":[[7013,-7002,-7013,7014]]},{\"type\":\"Polygon\",\"id\":\"114201\",\"arcs\":[[7015,7016,7017,-6882,-6878,7018,7019]]},{\"type\":\"Polygon\",\"id\":\"113400\",\"arcs\":[[7020,-6873,7021,7022,7023,7024]]},{\"type\":\"Polygon\",\"id\":\"113200\",\"arcs\":[[-7023,7025,7026,7027,7028,7029,7030]]},{\"type\":\"Polygon\",\"id\":\"113000\",\"arcs\":[[-6872,7031,7032,7033,-7026,-7022]]},{\"type\":\"Polygon\",\"id\":\"112800\",\"arcs\":[[7034,7035,-7033,7036]]},{\"type\":\"Polygon\",\"id\":\"112600\",\"arcs\":[[-6867,7037,-7037,-7032,-6871]]},{\"type\":\"Polygon\",\"id\":\"112400\",\"arcs\":[[-6862,-6858,7038,7039,-7038,-6866]]},{\"type\":\"Polygon\",\"id\":\"112200\",\"arcs\":[[7040,7041,-7035,-7040]]},{\"type\":\"Polygon\",\"id\":\"112000\",\"arcs\":[[-6855,7042,7043,-7041,-7039,-6857]]},{\"type\":\"Polygon\",\"id\":\"111800\",\"arcs\":[[-6509,-6497,7044,-7043,-6854]]},{\"type\":\"Polygon\",\"id\":\"111000\",\"arcs\":[[7045,7046,7047,7048]]},{\"type\":\"Polygon\",\"id\":\"110600\",\"arcs\":[[-7048,7049,7050]]},{\"type\":\"Polygon\",\"id\":\"017600\",\"arcs\":[[7051,-6916,7052,7053]]},{\"type\":\"Polygon\",\"id\":\"017500\",\"arcs\":[[7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064]]},{\"type\":\"Polygon\",\"id\":\"017400\",\"arcs\":[[7065,7066,-6908,-7052,7067]]},{\"type\":\"Polygon\",\"id\":\"017200\",\"arcs\":[[-6894,-6909,-7067,7068,7069]]},{\"type\":\"Polygon\",\"id\":\"017100\",\"arcs\":[[-6926,7070,7071,7072]]},{\"type\":\"Polygon\",\"id\":\"017000\",\"arcs\":[[7073,-6895,-7070,7074,7075]]},{\"type\":\"Polygon\",\"id\":\"016900\",\"arcs\":[[7076,7077,-6927,-7073,7078]]},{\"type\":\"Polygon\",\"id\":\"016800\",\"arcs\":[[7079,-7075,-7069,-7066,7080,7081]]},{\"type\":\"Polygon\",\"id\":\"016700\",\"arcs\":[[7082,7083,7084,7085,-6917,-7078]]},{\"type\":\"Polygon\",\"id\":\"016500\",\"arcs\":[[7086,7087,7088,-6918,-7086,7089]]},{\"type\":\"Polygon\",\"id\":\"016400\",\"arcs\":[[7090,7091,7092,7093,-7082,7094,7095]]},{\"type\":\"Polygon\",\"id\":\"064800\",\"arcs\":[[7096,-6979,-6973,-6968,-6964,7097]]},{\"type\":\"Polygon\",\"id\":\"064600\",\"arcs\":[[-7098,-6963,7098,7099,7100]]},{\"type\":\"Polygon\",\"id\":\"064400\",\"arcs\":[[7101,-7100,7102,7103]]},{\"type\":\"Polygon\",\"id\":\"064200\",\"arcs\":[[7104,-7104,7105,7106,7107,7108]]},{\"type\":\"Polygon\",\"id\":\"064000\",\"arcs\":[[-7103,-7099,-6967,7109,7110,7111,-7106]]},{\"type\":\"Polygon\",\"id\":\"063800\",\"arcs\":[[-7111,7112,7113,7114,7115,7116]]},{\"type\":\"Polygon\",\"id\":\"063600\",\"arcs\":[[-6966,-6962,7117,-7113,-7110]]},{\"type\":\"Polygon\",\"id\":\"063200\",\"arcs\":[[-7115,7118,7119,7120,7121]]},{\"type\":\"Polygon\",\"id\":\"062600\",\"arcs\":[[7122,7123,7124,7125,7126]]},{\"type\":\"Polygon\",\"id\":\"062200\",\"arcs\":[[7127,7128,7129,7130,7131]]},{\"type\":\"Polygon\",\"id\":\"061200\",\"arcs\":[[7132,7133,7134]]},{\"type\":\"Polygon\",\"id\":\"031900\",\"arcs\":[[-6841,-6986,-6988,-6992,-6997,-7014,7135]]},{\"type\":\"Polygon\",\"id\":\"031702\",\"arcs\":[[7136,-6839,-6842,-7136,-7015,7137]]},{\"type\":\"Polygon\",\"id\":\"031701\",\"arcs\":[[7138,-6835,-7137,7139,7140]]},{\"type\":\"Polygon\",\"id\":\"031500\",\"arcs\":[[7141,-7139,7142,7143]]},{\"type\":\"Polygon\",\"id\":\"031400\",\"arcs\":[[7144,7145,7146,-6996,-6981,7147]]},{\"type\":\"Polygon\",\"id\":\"031300\",\"arcs\":[[7148,7149,-6836,-7142,7150]]},{\"type\":\"Polygon\",\"id\":\"031100\",\"arcs\":[[7151,-6827,-7150,7152]]},{\"type\":\"Polygon\",\"id\":\"030900\",\"arcs\":[[7153,-6826,-7152,7154]]},{\"type\":\"Polygon\",\"id\":\"030800\",\"arcs\":[[7155,7156,7157,7158,7159,-7146]]},{\"type\":\"Polygon\",\"id\":\"030700\",\"arcs\":[[7160,-6646,-6824,-7154,7161]]},{\"type\":\"Polygon\",\"id\":\"030600\",\"arcs\":[[7162,7163,7164,7165,-7156,-7145,7166]]},{\"type\":\"Polygon\",\"id\":\"030400\",\"arcs\":[[7167,7168,-7167,-7148,-6980,7169]]},{\"type\":\"Polygon\",\"id\":\"109800\",\"arcs\":[[7170,7171,-7028,7172,7173,7174,7175,7176,7177]]},{\"type\":\"Polygon\",\"id\":\"107800\",\"arcs\":[[-7047,7178,-6491,7179,7180,7181,-7050]]},{\"type\":\"Polygon\",\"id\":\"107000\",\"arcs\":[[-6490,7182,7183,7184,7185,7186,7187,-7180]]},{\"type\":\"Polygon\",\"id\":\"103400\",\"arcs\":[[7188,7189,7190,-7186,7191,7192,7193]]},{\"type\":\"Polygon\",\"id\":\"102800\",\"arcs\":[[7194,7195,-7193,7196,7197,7198,7199]]},{\"type\":\"Polygon\",\"id\":\"102600\",\"arcs\":[[7200,7201,7202,-7195,7203,7204]]},{\"type\":\"Polygon\",\"id\":\"102400\",\"arcs\":[[7205,7206,7207,-7196,-7203]]},{\"type\":\"Polygon\",\"id\":\"102200\",\"arcs\":[[7208,-7194,-7208,7209,7210]]},{\"type\":\"Polygon\",\"id\":\"102000\",\"arcs\":[[7211,-7189,-7209,7212]]},{\"type\":\"Polygon\",\"id\":\"101800\",\"arcs\":[[7213,-7190,-7212,7214,7215,7216]]},{\"type\":\"Polygon\",\"id\":\"016300\",\"arcs\":[[-6910,-6720,-6557,-6552,-6544,7217,7218]]},{\"type\":\"Polygon\",\"id\":\"016200\",\"arcs\":[[7219,7220,7221,-7091,7222]]},{\"type\":\"Polygon\",\"id\":\"016100\",\"arcs\":[[-6911,-7219,7223,7224]]},{\"type\":\"Polygon\",\"id\":\"016000\",\"arcs\":[[7225,7226,7227,7228,-7092,-7222,7229]]},{\"type\":\"Polygon\",\"id\":\"015900\",\"arcs\":[[7230,-7224,-7218,-6547,-6919,-7089,7231]]},{\"type\":\"Polygon\",\"id\":\"015700\",\"arcs\":[[-7232,-7088,7232,7233]]},{\"type\":\"Polygon\",\"id\":\"015500\",\"arcs\":[[-7233,-7087,7234,7235]]},{\"type\":\"Polygon\",\"id\":\"015400\",\"arcs\":[[7236,7237,7238,7239,-7076,-7080,-7094,7240]]},{\"type\":\"Polygon\",\"id\":\"015300\",\"arcs\":[[7241,-7235,-7090,-7085,7242]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[7243,-7243,-7084,7244]]},{\"type\":\"Polygon\",\"id\":\"015000\",\"arcs\":[[7245,-6727,-6886,-6896,-7074,-7240]]},{\"type\":\"Polygon\",\"id\":\"014900\",\"arcs\":[[7246,-7245,-7083,-7077,7247,7248,7249]]},{\"type\":\"Polygon\",\"id\":\"062800\",\"arcs\":[[7250,-7120,7251,7252,-7124]]},{\"type\":\"Polygon\",\"id\":\"060800\",\"arcs\":[[7253,-7132,7254,-7133,7255,7256,7257,7258]]},{\"type\":\"Polygon\",\"id\":\"060000\",\"arcs\":[[7259,7260,7261,7262,-7254,7263]]},{\"type\":\"Polygon\",\"id\":\"119000\",\"arcs\":[[-6705,-6681,-6678,-6480,-6504,-6505,-6672]]},{\"type\":\"Polygon\",\"id\":\"059800\",\"arcs\":[[-7125,-7253,-7128,-7263,7264]]},{\"type\":\"Polygon\",\"id\":\"059600\",\"arcs\":[[7265,-7126,-7265,-7262,7266,7267]]},{\"type\":\"Polygon\",\"id\":\"059402\",\"arcs\":[[7268,7269,7270,7271,-7268,7272]]},{\"type\":\"Polygon\",\"id\":\"059401\",\"arcs\":[[7273,7274,-7273,-7267,-7261,7275]]},{\"type\":\"Polygon\",\"id\":\"059300\",\"arcs\":[[7276,7277,7278]]},{\"type\":\"Polygon\",\"id\":\"030300\",\"arcs\":[[7279,-6618,-6623,-7161]]},{\"type\":\"Polygon\",\"id\":\"030200\",\"arcs\":[[7280,-7163,-7169,7281]]},{\"type\":\"Polygon\",\"id\":\"030100\",\"arcs\":[[7282,7283,-6614,-7280,7284,7285]]},{\"type\":\"Polygon\",\"id\":\"030000\",\"arcs\":[[7286,7287,-7164,-7281,7288]]},{\"type\":\"Polygon\",\"id\":\"029900\",\"arcs\":[[7289,-7285,-7162,7290]]},{\"type\":\"Polygon\",\"id\":\"029800\",\"arcs\":[[7291,7292,7293,-7287,7294]]},{\"type\":\"Polygon\",\"id\":\"029700\",\"arcs\":[[7295,7296,7297,7298,7299]]},{\"type\":\"Polygon\",\"id\":\"029600\",\"arcs\":[[7300,7301,-7295,-7289,-7282,7302,7303]]},{\"type\":\"Polygon\",\"id\":\"029500\",\"arcs\":[[7304,7305,-7296,7306,7307]]},{\"type\":\"Polygon\",\"id\":\"029400\",\"arcs\":[[-7303,-7168,7308,7309]]},{\"type\":\"Polygon\",\"id\":\"029300\",\"arcs\":[[7310,7311,-7308,7312,7313]]},{\"type\":\"Polygon\",\"id\":\"029200\",\"arcs\":[[7314,7315,-7304,-7310,7316]]},{\"type\":\"Polygon\",\"id\":\"101600\",\"arcs\":[[-7215,7317,7318]]},{\"type\":\"Polygon\",\"id\":\"101400\",\"arcs\":[[-7318,-7213,7319,7320]]},{\"type\":\"Polygon\",\"id\":\"101200\",\"arcs\":[[7321,-7320,-7211,7322,7323]]},{\"type\":\"Polygon\",\"id\":\"101000\",\"arcs\":[[7324,-7323,-7210,-7207,7325]]},{\"type\":\"Polygon\",\"id\":\"100800\",\"arcs\":[[7326,-7326,-7206,-7202,7327]]},{\"type\":\"Polygon\",\"id\":\"100600\",\"arcs\":[[7328,-7328,-7201,7329]]},{\"type\":\"Polygon\",\"id\":\"100400\",\"arcs\":[[-7330,-7205,7330,7331]]},{\"type\":\"Polygon\",\"id\":\"099800\",\"arcs\":[[7332,7333,-7331,-7204,-7200,7334,7335,7336]]},{\"type\":\"Polygon\",\"id\":\"099600\",\"arcs\":[[7337,-7332,-7334,7338]]},{\"type\":\"Polygon\",\"id\":\"099400\",\"arcs\":[[7339,7340,-7329,-7338,7341]]},{\"type\":\"Polygon\",\"id\":\"099200\",\"arcs\":[[7342,7343,-7327,-7341]]},{\"type\":\"Polygon\",\"id\":\"099000\",\"arcs\":[[7344,-7324,-7325,-7344,7345]]},{\"type\":\"Polygon\",\"id\":\"098800\",\"arcs\":[[7346,-7322,-7345,7347,7348]]},{\"type\":\"Polygon\",\"id\":\"014800\",\"arcs\":[[7349,-6719,-7246,-7239]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[7350,-7249,7351,-7057,7352]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[7353,7354,-7353,-7056,7355]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[7356,7357,-7250,-7351,-7355,7358]]},{\"type\":\"Polygon\",\"id\":\"014200\",\"arcs\":[[7359,-6551,7360,-7228,7361]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[7362,7363,-7247,-7358]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[-7361,-6550,7364,-7237,7365]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[7366,7367,-7244,-7364,7368]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[7369,7370,7371,-7362,-7227,7372]]},{\"type\":\"Polygon\",\"id\":\"013700\",\"arcs\":[[7373,7374,7375,-7242,-7368]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[7376,7377,-7360,-7372,7378]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[7379,-7236,-7376,7380]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[7381,7382,7383,7384,-7377]]},{\"type\":\"Polygon\",\"id\":\"059200\",\"arcs\":[[7385,-7276,-7260,7386,7387]]},{\"type\":\"Polygon\",\"id\":\"059100\",\"arcs\":[[-7278,7388,7389,7390,7391,7392]]},{\"type\":\"Polygon\",\"id\":\"059000\",\"arcs\":[[7393,7394,-7387,7395,7396]]},{\"type\":\"Polygon\",\"id\":\"058900\",\"arcs\":[[7397,7398,-7279,-7393,7399,7400,7401]]},{\"type\":\"Polygon\",\"id\":\"058800\",\"arcs\":[[-7397,7402,7403,7404]]},{\"type\":\"Polygon\",\"id\":\"058600\",\"arcs\":[[7405,-7388,-7395,7406]]},{\"type\":\"Polygon\",\"id\":\"058400\",\"arcs\":[[7407,-7407,-7394,-7405,7408,7409]]},{\"type\":\"Polygon\",\"id\":\"058200\",\"arcs\":[[7410,-7408,7411,7412,7413]]},{\"type\":\"Polygon\",\"id\":\"058000\",\"arcs\":[[7414,7415,7416,-7406,-7411]]},{\"type\":\"Polygon\",\"id\":\"057900\",\"arcs\":[[7417,7418,-7402,7419,7420,7421]]},{\"type\":\"Polygon\",\"id\":\"057800\",\"arcs\":[[7422,7423,-7274,-7386,-7417,7424]]},{\"type\":\"Polygon\",\"id\":\"057600\",\"arcs\":[[7425,7426,-7269,-7275,-7424,7427]]},{\"type\":\"Polygon\",\"id\":\"029100\",\"arcs\":[[7428,7429,-7314,7430]]},{\"type\":\"Polygon\",\"id\":\"029000\",\"arcs\":[[7431,7432,-7301,-7316]]},{\"type\":\"Polygon\",\"id\":\"028900\",\"arcs\":[[7433,7434,7435,7436,-7429,7437]]},{\"type\":\"Polygon\",\"id\":\"028800\",\"arcs\":[[7438,7439,-7432,7440]]},{\"type\":\"Polygon\",\"id\":\"028700\",\"arcs\":[[7441,-7434,7442,7443,7444,7445]]},{\"type\":\"Polygon\",\"id\":\"028600\",\"arcs\":[[7446,-7441,-7315,7447,7448]]},{\"type\":\"Polygon\",\"id\":\"028502\",\"arcs\":[[7449,-7445,7450,7451,7452]]},{\"type\":\"Polygon\",\"id\":\"028501\",\"arcs\":[[7453,7454,-7453,7455]]},{\"type\":\"Polygon\",\"id\":\"028400\",\"arcs\":[[7456,-7439,-7447,7457,7458]]},{\"type\":\"Polygon\",\"id\":\"028300\",\"arcs\":[[-7451,-7444,7459,7460,7461]]},{\"type\":\"Polygon\",\"id\":\"028200\",\"arcs\":[[7462,-7458,-7449,7463]]},{\"type\":\"Polygon\",\"id\":\"990100\",\"arcs\":[[-7095,-7081,-7068,-7054,7464,-7464,-7448,-7317,-7309,-7170,-6984,-6816,7465,7466,7467,7468,-1320,7469]]},{\"type\":\"Polygon\",\"id\":\"105801\",\"arcs\":[[-7181,-7188,7470,7471]]},{\"type\":\"Polygon\",\"id\":\"079802\",\"arcs\":[[7472,7473,7474,-6921,-7008]]},{\"type\":\"Polygon\",\"id\":\"098600\",\"arcs\":[[7475,7476,-7321,-7347,7477]]},{\"type\":\"Polygon\",\"id\":\"098400\",\"arcs\":[[-7216,-7319,-7477,7478]]},{\"type\":\"Polygon\",\"id\":\"098200\",\"arcs\":[[7479,7480,-7217,-7479,-7476,7481,-7174]]},{\"type\":\"Polygon\",\"id\":\"097400\",\"arcs\":[[-7482,-7478,-7349,7482,-7175]]},{\"type\":\"Polygon\",\"id\":\"097000\",\"arcs\":[[-7176,7483,7484,7485]]},{\"type\":\"Polygon\",\"id\":\"096800\",\"arcs\":[[-7483,7486,7487,-7484]]},{\"type\":\"Polygon\",\"id\":\"096600\",\"arcs\":[[-7487,-7348,-7346,-7343,-7340,7488,7489]]},{\"type\":\"Polygon\",\"id\":\"096400\",\"arcs\":[[-7488,-7490,7490,7491]]},{\"type\":\"Polygon\",\"id\":\"096200\",\"arcs\":[[-7485,-7492,7492,7493]]},{\"type\":\"Polygon\",\"id\":\"096000\",\"arcs\":[[7494,7495,-7177,-7486,-7494,7496,7497,7498,7499,7500,7501]]},{\"type\":\"Polygon\",\"id\":\"095800\",\"arcs\":[[-7497,-7493,-7491,7502,7503]]},{\"type\":\"Polygon\",\"id\":\"095600\",\"arcs\":[[7504,-7503,-7489,-7342,-7339,-7333,7505]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[7506,-7234,-7380,7507]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[-7385,7508,-6539,-6548,-7378]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[7509,7510,7511,-7231,-7507,7512]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[7513,7514,7515,-7383]]},{\"type\":\"Polygon\",\"id\":\"012902\",\"arcs\":[[7516,-7225,-7512,7517]]},{\"type\":\"Polygon\",\"id\":\"012901\",\"arcs\":[[7518,7519,-7518,-7511,7520]]},{\"type\":\"Polygon\",\"id\":\"012801\",\"arcs\":[[7521,7522,-6535,-7509]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[7523,7524,-7521,-7510,7525]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[7526,7527,7528,7529,7530,7531]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[-7374,-7367,7532,7533]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[-7530,7534,-6531,-7523,7535]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[7536,7537,7538,-6526,-7535,-7529]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[-7533,-7369,-7363,-7357,7539,7540]]},{\"type\":\"Polygon\",\"id\":\"057500\",\"arcs\":[[7541,7542,7543,7544,-7421]]},{\"type\":\"Polygon\",\"id\":\"057400\",\"arcs\":[[7545,7546,7547,-7270,-7427,7548]]},{\"type\":\"Polygon\",\"id\":\"057300\",\"arcs\":[[-7542,-7420,-7401,7549,7550]]},{\"type\":\"Polygon\",\"id\":\"057200\",\"arcs\":[[-7127,-7266,-7272,7551]]},{\"type\":\"Polygon\",\"id\":\"057100\",\"arcs\":[[-7400,-7392,7552,7553,-7550]]},{\"type\":\"Polygon\",\"id\":\"057000\",\"arcs\":[[7554,7555,-7121,-7251,-7123,-7552,-7271,-7548]]},{\"type\":\"Polygon\",\"id\":\"056900\",\"arcs\":[[-7554,7556,7557,7558,7559]]},{\"type\":\"Polygon\",\"id\":\"056800\",\"arcs\":[[-7116,-7122,-7556,7560,7561]]},{\"type\":\"Polygon\",\"id\":\"056600\",\"arcs\":[[7562,-7561,-7555,-7547]]},{\"type\":\"Polygon\",\"id\":\"056500\",\"arcs\":[[-7544,7563,-830,-840,7564]]},{\"type\":\"Polygon\",\"id\":\"056400\",\"arcs\":[[-7107,-7112,-7117,-7562,-7563,-7546,7565,7566]]},{\"type\":\"Polygon\",\"id\":\"056300\",\"arcs\":[[-7422,-7545,-7565,-839,7567]]},{\"type\":\"Polygon\",\"id\":\"079801\",\"arcs\":[[7568,7569,7570,-7473,-7007]]},{\"type\":\"Polygon\",\"id\":\"079602\",\"arcs\":[[7571,7572,7573,7574,7575]]},{\"type\":\"Polygon\",\"id\":\"079601\",\"arcs\":[[7576,7577,-7576,7578,-7474,-7571]]},{\"type\":\"Polygon\",\"id\":\"069602\",\"arcs\":[[-7335,-7199,7579,7580,7581,7582,7583,7584,7585]]},{\"type\":\"Polygon\",\"id\":\"069601\",\"arcs\":[[-7336,-7586,7586,7587,7588]]},{\"type\":\"Polygon\",\"id\":\"061004\",\"arcs\":[[-7256,-7135,7589,7590,-6631,7591]]},{\"type\":\"Polygon\",\"id\":\"061003\",\"arcs\":[[-7592,-6630,-6619,7592,-7257]]},{\"type\":\"Polygon\",\"id\":\"051602\",\"arcs\":[[7593,7594,7595,7596,7597]]},{\"type\":\"Polygon\",\"id\":\"051601\",\"arcs\":[[7598,7599,7600,-7596]]},{\"type\":\"Polygon\",\"id\":\"051002\",\"arcs\":[[7601,7602,7603,7604,7605]]},{\"type\":\"Polygon\",\"id\":\"051001\",\"arcs\":[[-7604,7606,7607,7608,7609]]},{\"type\":\"Polygon\",\"id\":\"050804\",\"arcs\":[[7610,7611,7612,-6922]]},{\"type\":\"Polygon\",\"id\":\"050803\",\"arcs\":[[-7579,-7575,7613,-7611,-7475]]},{\"type\":\"Polygon\",\"id\":\"095400\",\"arcs\":[[-7498,-7504,-7505,7614]]},{\"type\":\"Polygon\",\"id\":\"095000\",\"arcs\":[[-7615,-7506,-7337,7615,7616,7617,-7499]]},{\"type\":\"Polygon\",\"id\":\"094402\",\"arcs\":[[-7617,7618,7619,7620]]},{\"type\":\"Polygon\",\"id\":\"094401\",\"arcs\":[[7621,7622,-7500,-7618,-7621,7623,7624]]},{\"type\":\"Polygon\",\"id\":\"093800\",\"arcs\":[[7625,7626,7627,7628,7629]]},{\"type\":\"Polygon\",\"id\":\"093600\",\"arcs\":[[7630,7631,7632,-7627]]},{\"type\":\"Polygon\",\"id\":\"093400\",\"arcs\":[[7633,7634,-7502,7635,-7632]]},{\"type\":\"Polygon\",\"id\":\"093000\",\"arcs\":[[7636,7637,-7495,-7635]]},{\"type\":\"Polygon\",\"id\":\"092800\",\"arcs\":[[7638,7639,-7178,-7496,-7638,7640]]},{\"type\":\"Polygon\",\"id\":\"092200\",\"arcs\":[[7641,7642,-7171,-7640,7643]]},{\"type\":\"Polygon\",\"id\":\"092000\",\"arcs\":[[7644,-7029,-7172,-7643,7645]]},{\"type\":\"Polygon\",\"id\":\"091800\",\"arcs\":[[7646,7647,-7030,-7645,7648]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[7649,7650,7651,7652,-6516,-6523,-7539]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[7653,7654,7655,7656,-7652,7657]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[7658,7659,7660,7661,-7655,7662]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-7062,7663,7664,-7660,7665]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[7666,7667,-7658,7668]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[-7669,-7651,7669,7670]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[7671,-7670,-7650,-7538]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[7672,7673,-7672,-7537,-7528]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[-7356,-7055,7674,7675]]},{\"type\":\"Polygon\",\"id\":\"010000\",\"arcs\":[[7676,-7671,-7674,7677]]},{\"type\":\"Polygon\",\"id\":\"009800\",\"arcs\":[[7678,7679,-7667,-7677]]},{\"type\":\"Polygon\",\"id\":\"009600\",\"arcs\":[[7680,7681,7682,-7680]]},{\"type\":\"Polygon\",\"id\":\"009400\",\"arcs\":[[7683,-7663,-7654,-7668,-7683]]},{\"type\":\"Polygon\",\"id\":\"009200\",\"arcs\":[[7684,7685,-7659,-7684]]},{\"type\":\"Polygon\",\"id\":\"056200\",\"arcs\":[[-7566,-7549,-7426,7686,7687]]},{\"type\":\"Polygon\",\"id\":\"056000\",\"arcs\":[[-7687,-7428,-7423,7688,7689]]},{\"type\":\"Polygon\",\"id\":\"055800\",\"arcs\":[[7690,-7689,-7425,-7416,7691]]},{\"type\":\"Polygon\",\"id\":\"055700\",\"arcs\":[[-982,7692,-7559,7693,7694,7695,-612]]},{\"type\":\"Polygon\",\"id\":\"055600\",\"arcs\":[[-7692,-7415,-7414,7696,7697]]},{\"type\":\"Polygon\",\"id\":\"055500\",\"arcs\":[[-613,-7696,7698,7699,-772]]},{\"type\":\"Polygon\",\"id\":\"055400\",\"arcs\":[[7700,-7698,7701,-6943,7702]]},{\"type\":\"Polygon\",\"id\":\"055300\",\"arcs\":[[-7695,7703,7704,7705,-7699]]},{\"type\":\"Polygon\",\"id\":\"055200\",\"arcs\":[[7706,7707,-7691,-7701]]},{\"type\":\"Polygon\",\"id\":\"055100\",\"arcs\":[[-773,-7700,-7706,7708,7709,-431]]},{\"type\":\"Polygon\",\"id\":\"055000\",\"arcs\":[[-6483,7710,-7690,-7708]]},{\"type\":\"Polygon\",\"id\":\"054900\",\"arcs\":[[-7710,7711,7712,7713,-742,-432]]},{\"type\":\"Polygon\",\"id\":\"054800\",\"arcs\":[[-7108,-7567,-7688,-7711,-6482,7714]]},{\"type\":\"Polygon\",\"id\":\"050801\",\"arcs\":[[-7614,-7574,-7602,7715,-7612]]},{\"type\":\"Polygon\",\"id\":\"037402\",\"arcs\":[[7716,7717,-6662,-7159,7718]]},{\"type\":\"Polygon\",\"id\":\"037401\",\"arcs\":[[7719,7720,-6663,-7718,7721]]},{\"type\":\"Polygon\",\"id\":\"035602\",\"arcs\":[[7722,-6621,-6634,-6642,-6814,-6666]]},{\"type\":\"Polygon\",\"id\":\"035601\",\"arcs\":[[7723,-7723,-6665]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[7724,7725,7726,7727,7728,7729,7730,7731]]},{\"type\":\"Polygon\",\"id\":\"000502\",\"arcs\":[[7732,7733,7734,7735,7736,7737]]},{\"type\":\"Polygon\",\"id\":\"000501\",\"arcs\":[[7738,7739,-7738,7740]]},{\"type\":\"Polygon\",\"id\":\"152200\",\"arcs\":[[7741,7742,7743,7744,7745,7746]]},{\"type\":\"Polygon\",\"id\":\"119800\",\"arcs\":[[-7019,-6880,-6850,-6877,-6874,7747]]},{\"type\":\"Polygon\",\"id\":\"105804\",\"arcs\":[[7748,-7471,-7187,-7191,-7214,-7481]]},{\"type\":\"Polygon\",\"id\":\"091600\",\"arcs\":[[-7649,-7646,-7642,7749,7750,7751]]},{\"type\":\"Polygon\",\"id\":\"091200\",\"arcs\":[[7752,-7647,7753,7754]]},{\"type\":\"Polygon\",\"id\":\"091000\",\"arcs\":[[-7024,-7031,-7648,-7753,7755]]},{\"type\":\"Polygon\",\"id\":\"090800\",\"arcs\":[[7756,-7025,-7756,7757,7758]]},{\"type\":\"Polygon\",\"id\":\"090600\",\"arcs\":[[7759,-7758,-7755,7760,-6625]]},{\"type\":\"Polygon\",\"id\":\"090200\",\"arcs\":[[-6635,-6627,7761,7762,7763]]},{\"type\":\"Polygon\",\"id\":\"090000\",\"arcs\":[[-6643,-6636,-7764,7764,7765,-6647]]},{\"type\":\"Polygon\",\"id\":\"089800\",\"arcs\":[[7766,-7751,7767,7768,-7763]]},{\"type\":\"Polygon\",\"id\":\"089600\",\"arcs\":[[7769,-7768,-7750,7770]]},{\"type\":\"Polygon\",\"id\":\"089400\",\"arcs\":[[-7765,-7769,-7770,7771,7772]]},{\"type\":\"Polygon\",\"id\":\"089200\",\"arcs\":[[-6648,-7766,-7773,7773,7774,7775]]},{\"type\":\"Polygon\",\"id\":\"089000\",\"arcs\":[[-7772,-7771,-7644,-7639,7776,7777,-7774]]},{\"type\":\"Polygon\",\"id\":\"009000\",\"arcs\":[[-7063,-7666,-7686,7778]]},{\"type\":\"Polygon\",\"id\":\"008800\",\"arcs\":[[7779,-7064,-7779,7780,7781]]},{\"type\":\"Polygon\",\"id\":\"008600\",\"arcs\":[[-7781,-7685,-7682,7782]]},{\"type\":\"Polygon\",\"id\":\"008500\",\"arcs\":[[7783,7784]]},{\"type\":\"Polygon\",\"id\":\"008400\",\"arcs\":[[7785,-7675,-7065,-7780,7786,7787]]},{\"type\":\"Polygon\",\"id\":\"008200\",\"arcs\":[[-7787,-7782,-7783,7788,7789]]},{\"type\":\"Polygon\",\"id\":\"008000\",\"arcs\":[[7790,-7789,-7681,7791,7792]]},{\"type\":\"Polygon\",\"id\":\"007800\",\"arcs\":[[7793,-7792,-7679,7794]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[7795,7796,7797,7798]]},{\"type\":\"Polygon\",\"id\":\"007600\",\"arcs\":[[7799,-7795,-7678,7800,7801]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[7802,7803,7804,7805,-7796,7806]]},{\"type\":\"Polygon\",\"id\":\"007400\",\"arcs\":[[-7801,-7673,-7527,7807,7808]]},{\"type\":\"Polygon\",\"id\":\"007200\",\"arcs\":[[7809,-7808,-7532,7810]]},{\"type\":\"Polygon\",\"id\":\"054700\",\"arcs\":[[-7714,7811,7812,7813,7814,-743]]},{\"type\":\"Polygon\",\"id\":\"054500\",\"arcs\":[[-7814,7815,7816,7817]]},{\"type\":\"Polygon\",\"id\":\"054400\",\"arcs\":[[7818,7819,-6484,-7707,7820]]},{\"type\":\"Polygon\",\"id\":\"054300\",\"arcs\":[[-758,-744,-7815,-7818,7821,7822,-6752,7823,7824,7825]]},{\"type\":\"Polygon\",\"id\":\"054200\",\"arcs\":[[7826,-7821,-7703,-6942,-6592]]},{\"type\":\"Polygon\",\"id\":\"053900\",\"arcs\":[[7827,7828,-7822,-7817]]},{\"type\":\"Polygon\",\"id\":\"053800\",\"arcs\":[[7829,7830,-6485,-7820,7831]]},{\"type\":\"Polygon\",\"id\":\"053700\",\"arcs\":[[-7829,7832,7833,7834,-6749,-7823]]},{\"type\":\"Polygon\",\"id\":\"053500\",\"arcs\":[[-7813,7835,7836,-7828,-7816]]},{\"type\":\"Polygon\",\"id\":\"053400\",\"arcs\":[[7837,7838,7839,7840,7841]]},{\"type\":\"Polygon\",\"id\":\"053300\",\"arcs\":[[7842,7843,-7833,-7837]]},{\"type\":\"Polygon\",\"id\":\"053200\",\"arcs\":[[7844,7845,7846,-7839,7847]]},{\"type\":\"Polygon\",\"id\":\"094600\",\"arcs\":[[-7633,-7636,-7501,-7623,7848,7849,-7628]]},{\"type\":\"Polygon\",\"id\":\"076800\",\"arcs\":[[-7840,-7847,7850,-7832,-7819,-7827,7851]]},{\"type\":\"Polygon\",\"id\":\"046000\",\"arcs\":[[7852,7853,7854,7855,7856,7857,7858,7859,7860]]},{\"type\":\"Polygon\",\"id\":\"044900\",\"arcs\":[[-7389,-7277,-7399,7861,7862,7863,7864,7865,7866,7867,7868]]},{\"type\":\"Polygon\",\"id\":\"034800\",\"arcs\":[[-7160,-6669,-6821,-6812,-7009,-6993,-7147]]},{\"type\":\"Polygon\",\"id\":\"030500\",\"arcs\":[[-6560,7869,7870,7871,-6518,-6554]]},{\"type\":\"Polygon\",\"id\":\"027100\",\"arcs\":[[7872,-7299,-7291,-7155,-7153,-7149,7873,7874]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[7875,-7531,-7536,-7522,-7384,-7516,7876]]},{\"type\":\"Polygon\",\"id\":\"088800\",\"arcs\":[[7877,-7777,-7641,-7637,-7634,7878]]},{\"type\":\"Polygon\",\"id\":\"088600\",\"arcs\":[[7879,-7775,-7778,-7878,7880,7881]]},{\"type\":\"Polygon\",\"id\":\"088400\",\"arcs\":[[-7776,-7880,7882,-6649]]},{\"type\":\"Polygon\",\"id\":\"088200\",\"arcs\":[[-6656,-6650,-7883,-7882,7883,7884,7885]]},{\"type\":\"Polygon\",\"id\":\"088000\",\"arcs\":[[-7886,7886,7887,7888,-6657]]},{\"type\":\"Polygon\",\"id\":\"087800\",\"arcs\":[[-7888,7889,7890,7891,7892]]},{\"type\":\"Polygon\",\"id\":\"087600\",\"arcs\":[[-6658,-7889,-7893,7893,7894]]},{\"type\":\"Polygon\",\"id\":\"087401\",\"arcs\":[[-6989,-7895,7895,7896,7897]]},{\"type\":\"Polygon\",\"id\":\"087200\",\"arcs\":[[7898,7899,7900,7901,7902]]},{\"type\":\"Polygon\",\"id\":\"087000\",\"arcs\":[[7903,7904,-7899,7905]]},{\"type\":\"Polygon\",\"id\":\"086800\",\"arcs\":[[7906,-7891,7907,7908,7909,-7904]]},{\"type\":\"Polygon\",\"id\":\"086600\",\"arcs\":[[-7885,7910,-7630,7911,-7908,-7890,-7887]]},{\"type\":\"Polygon\",\"id\":\"086400\",\"arcs\":[[-7884,-7881,-7879,-7631,-7626,-7911]]},{\"type\":\"Polygon\",\"id\":\"007100\",\"arcs\":[[7912,-7524,7913,-7805,7914]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[7915,-7811,-7876,7916,7917]]},{\"type\":\"Polygon\",\"id\":\"006900\",\"arcs\":[[7918,7919,-7915,-7804,7920]]},{\"type\":\"Polygon\",\"id\":\"006800\",\"arcs\":[[7921,-7917,-7877,-7515,7922,7923]]},{\"type\":\"Polygon\",\"id\":\"006700\",\"arcs\":[[7924,7925,7926,-7921,-7803,7927]]},{\"type\":\"Polygon\",\"id\":\"006600\",\"arcs\":[[7928,-7923,-7514,-7382,7929,7930]]},{\"type\":\"Polygon\",\"id\":\"006500\",\"arcs\":[[-7928,-7807,-7799,7931,7932,7933]]},{\"type\":\"Polygon\",\"id\":\"006400\",\"arcs\":[[-7930,-7379,-7371,7934,7935]]},{\"type\":\"Polygon\",\"id\":\"006300\",\"arcs\":[[7936,-7925,-7934,7937,7938]]},{\"type\":\"Polygon\",\"id\":\"006200\",\"arcs\":[[7939,-7373,7940,7941]]},{\"type\":\"Polygon\",\"id\":\"006000\",\"arcs\":[[7942,-7941,-7226,7943,7944]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[7945,-7938,-7933,7946,-7784,7947]]},{\"type\":\"Polygon\",\"id\":\"053100\",\"arcs\":[[-7844,7948,7949,7950,7951,-7834]]},{\"type\":\"Polygon\",\"id\":\"053000\",\"arcs\":[[7952,-7848,-7838,7953]]},{\"type\":\"Polygon\",\"id\":\"052900\",\"arcs\":[[7954,7955,-7843,7956]]},{\"type\":\"Polygon\",\"id\":\"052800\",\"arcs\":[[7957,-7845,-7953,-7857]]},{\"type\":\"Polygon\",\"id\":\"052700\",\"arcs\":[[7958,7959,-7955,7960]]},{\"type\":\"Polygon\",\"id\":\"052600\",\"arcs\":[[-7746,7961,-7853,7962,7963]]},{\"type\":\"Polygon\",\"id\":\"052500\",\"arcs\":[[7964,-7961,-7957,-7836,-7812,-7713]]},{\"type\":\"Polygon\",\"id\":\"052300\",\"arcs\":[[-7712,-7709,7965,7966,-7965]]},{\"type\":\"Polygon\",\"id\":\"052000\",\"arcs\":[[-7745,7967,7968,-7854,-7962]]},{\"type\":\"Polygon\",\"id\":\"051900\",\"arcs\":[[-7705,7969,7970,7971,7972,-7966]]},{\"type\":\"Polygon\",\"id\":\"051800\",\"arcs\":[[7973,-7597,-7601,7974,-7855,-7969]]},{\"type\":\"Polygon\",\"id\":\"051700\",\"arcs\":[[-7558,7975,-7970,-7704,-7694]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[-766,7976,7977,-7948,-7785,-7947,-7932,-7798,7978,7979]]},{\"type\":\"Polygon\",\"id\":\"004400\",\"arcs\":[[7980,-7931,-7936,7981,-1234,7982]]},{\"type\":\"Polygon\",\"id\":\"150200\",\"arcs\":[[-7248,-7079,-7072,7983,7984,-7058,-7352]]},{\"type\":\"Polygon\",\"id\":\"123700\",\"arcs\":[[-7835,-7952,7985,7986,7987,-6750]]},{\"type\":\"Polygon\",\"id\":\"111600\",\"arcs\":[[-7045,-6496,-6492,-7179,-7046,7988,-7044]]},{\"type\":\"Polygon\",\"id\":\"110400\",\"arcs\":[[-7036,-7042,-7989,-7049,-7051,-7182,-7472,-7749,-7480,-7173,-7027,-7034]]},{\"type\":\"Polygon\",\"id\":\"093200\",\"arcs\":[[7989,7990,-7625,7991,-6466,7992]]},{\"type\":\"Polygon\",\"id\":\"092400\",\"arcs\":[[-7761,-7754,-7752,-7767,-7762,-6626]]},{\"type\":\"Polygon\",\"id\":\"080800\",\"arcs\":[[7993,-7896,-7894,-7892,-7907,-7906,-7903,7994,7995,7996]]},{\"type\":\"Polygon\",\"id\":\"086200\",\"arcs\":[[-7912,-7629,7997,7998,-7909]]},{\"type\":\"Polygon\",\"id\":\"086000\",\"arcs\":[[-7905,-7910,-7999,7999,8000,8001,-7900]]},{\"type\":\"Polygon\",\"id\":\"085800\",\"arcs\":[[8002,-7901,-8002,8003,8004,8005]]},{\"type\":\"Polygon\",\"id\":\"085600\",\"arcs\":[[8006,8007,-8005,8008,8009,8010,8011]]},{\"type\":\"Polygon\",\"id\":\"085400\",\"arcs\":[[8012,8013,8014,8015,8016,8017,-8010]]},{\"type\":\"Polygon\",\"id\":\"085200\",\"arcs\":[[-8004,-8001,8018,-8013,-8009]]},{\"type\":\"Polygon\",\"id\":\"085000\",\"arcs\":[[-8019,-8000,8019,8020,8021,-8014]]},{\"type\":\"Polygon\",\"id\":\"084800\",\"arcs\":[[-7850,8022,-8020,-7998]]},{\"type\":\"Polygon\",\"id\":\"084600\",\"arcs\":[[-8023,-7849,-7622,-7991,8023]]},{\"type\":\"Polygon\",\"id\":\"084000\",\"arcs\":[[-8024,-7990,8024,-8021]]},{\"type\":\"Polygon\",\"id\":\"083800\",\"arcs\":[[-8025,8025,8026,-8022]]},{\"type\":\"Polygon\",\"id\":\"083600\",\"arcs\":[[-8026,-7993,-6474,8027,8028,8029]]},{\"type\":\"Polygon\",\"id\":\"083400\",\"arcs\":[[-8015,-8027,-8030,8030,8031]]},{\"type\":\"Polygon\",\"id\":\"005800\",\"arcs\":[[8032,-7944,-7230,8033,8034]]},{\"type\":\"Polygon\",\"id\":\"005602\",\"arcs\":[[-7223,-7096,-7470,-1258,8035]]},{\"type\":\"Polygon\",\"id\":\"005601\",\"arcs\":[[-7220,-8036,-1257,-1265,8036]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[-8034,-7221,-8037,-1264,8037]]},{\"type\":\"Polygon\",\"id\":\"005202\",\"arcs\":[[8038,-8035,-8038,-1263]]},{\"type\":\"Polygon\",\"id\":\"005201\",\"arcs\":[[-7945,-8033,-8039,-1262,8039]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[-7978,8040,-7939,-7946]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[8041,-7942,-7943,-8040,-1261,-1236]]},{\"type\":\"Polygon\",\"id\":\"004900\",\"arcs\":[[8042,8043,-7926,-7937,8044]]},{\"type\":\"Polygon\",\"id\":\"060600\",\"arcs\":[[-7396,-7264,-7259,8045,-7403]]},{\"type\":\"Polygon\",\"id\":\"004700\",\"arcs\":[[8046,-8045,-8041,-7977,-765]]},{\"type\":\"Polygon\",\"id\":\"051500\",\"arcs\":[[-7976,-7557,8047,8048,-7971]]},{\"type\":\"Polygon\",\"id\":\"051400\",\"arcs\":[[-7609,8049,-7598,-7974,-7968,-7744,8050]]},{\"type\":\"Polygon\",\"id\":\"051300\",\"arcs\":[[-7967,-7973,8051,8052,8053,-7959]]},{\"type\":\"Polygon\",\"id\":\"051200\",\"arcs\":[[8054,-7605,-7610,-8051,-7743]]},{\"type\":\"Polygon\",\"id\":\"051100\",\"arcs\":[[8055,8056,8057,8058,-7960,-8054]]},{\"type\":\"Polygon\",\"id\":\"050900\",\"arcs\":[[-8059,8059,8060,-7949,-7956]]},{\"type\":\"Polygon\",\"id\":\"050700\",\"arcs\":[[8061,-7454,8062,-7950,-8061]]},{\"type\":\"Polygon\",\"id\":\"050600\",\"arcs\":[[-6923,-7613,-7716,-7606,-8055,-7742,8063]]},{\"type\":\"Polygon\",\"id\":\"050500\",\"arcs\":[[8064,8065,8066,-8057,8067]]},{\"type\":\"Polygon\",\"id\":\"050400\",\"arcs\":[[-6924,-8064,8068,8069,8070,8071,8072]]},{\"type\":\"Polygon\",\"id\":\"050300\",\"arcs\":[[8073,8074,-8068,-8056,-8053,8075]]},{\"type\":\"Polygon\",\"id\":\"050202\",\"arcs\":[[-6925,-8073,-7984,-7071]]},{\"type\":\"Polygon\",\"id\":\"062000\",\"arcs\":[[-7255,-7131,8076,-7590,-7134]]},{\"type\":\"Polygon\",\"id\":\"056100\",\"arcs\":[[-7543,-7551,-7560,-7693,-981,-831,-7564]]},{\"type\":\"Polygon\",\"id\":\"048500\",\"arcs\":[[8077,-7867,8078,-6801,8079,8080,8081,8082]]},{\"type\":\"Polygon\",\"id\":\"021100\",\"arcs\":[[-6883,-6889,8083,-7725,8084,-7824]]},{\"type\":\"Polygon\",\"id\":\"016600\",\"arcs\":[[-6556,-6562,-7350,-7238,-7365]]},{\"type\":\"Polygon\",\"id\":\"015200\",\"arcs\":[[-7229,-7366,-7241,-7093]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[-7806,-7914,-7526,-7513,-7508,-7381,-7375,-7534,-7541,8085,-7797]]},{\"type\":\"Polygon\",\"id\":\"114400\",\"arcs\":[[8086,8087,-7748,-6876,-6869,-6870,-7021,-7757]]},{\"type\":\"Polygon\",\"id\":\"081800\",\"arcs\":[[8088,-8007,8089,8090,8091]]},{\"type\":\"Polygon\",\"id\":\"081600\",\"arcs\":[[8092,-8006,-8008,-8089,-7996]]},{\"type\":\"Polygon\",\"id\":\"083200\",\"arcs\":[[-8016,-8032,8093,8094]]},{\"type\":\"Polygon\",\"id\":\"083000\",\"arcs\":[[-8017,-8095,8095,8096,8097,8098]]},{\"type\":\"Polygon\",\"id\":\"082800\",\"arcs\":[[-8098,8099,8100,8101]]},{\"type\":\"Polygon\",\"id\":\"082600\",\"arcs\":[[-8011,-8018,-8099,-8102,8102,8103]]},{\"type\":\"Polygon\",\"id\":\"082400\",\"arcs\":[[-8090,-8012,-8104,8104,8105]]},{\"type\":\"Polygon\",\"id\":\"082200\",\"arcs\":[[8106,8107,-7572,-7578,8108]]},{\"type\":\"Polygon\",\"id\":\"082000\",\"arcs\":[[8109,8110,-8091,-8106,-8107]]},{\"type\":\"Polygon\",\"id\":\"028100\",\"arcs\":[[-7443,-7438,8111,8112,-7460]]},{\"type\":\"Polygon\",\"id\":\"028000\",\"arcs\":[[-6915,8113,-7463,-7465,-7053]]},{\"type\":\"Polygon\",\"id\":\"027900\",\"arcs\":[[-7431,8114,8115,8116,-8112]]},{\"type\":\"Polygon\",\"id\":\"027800\",\"arcs\":[[8117,-7459,-8114,-6914]]},{\"type\":\"Polygon\",\"id\":\"027700\",\"arcs\":[[-8115,-7313,8118,8119,8120]]},{\"type\":\"Polygon\",\"id\":\"027600\",\"arcs\":[[8121,8122,8123,-8118,-6913,-6900]]},{\"type\":\"Polygon\",\"id\":\"004500\",\"arcs\":[[8124,8125,8126,-7919,-7927,-8044]]},{\"type\":\"Polygon\",\"id\":\"004300\",\"arcs\":[[8127,8128,8129,-7920,-8127]]},{\"type\":\"Polygon\",\"id\":\"004100\",\"arcs\":[[8130,8131,-7913,-8130]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[8132,8133,-7519,-7525,-8132]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[8134,-7983,-1233,-1254,8135]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[8136,-7729,8137,-8133,-8131,-8129,8138]]},{\"type\":\"Polygon\",\"id\":\"003600\",\"arcs\":[[8139,8140,-7924,-7929,-7981,-8135]]},{\"type\":\"Polygon\",\"id\":\"003500\",\"arcs\":[[-6905,-6912,-7517,-7520,-8134,8141]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[8142,8143,-8140,-8136,-1253,8144]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[8145,-6906,-8142,-8138,-7728]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[8146,-6891,-6898,-6903,-8146,-7727]]},{\"type\":\"Polygon\",\"id\":\"003000\",\"arcs\":[[-8144,8147,8148,-7918,-7922,-8141]]},{\"type\":\"Polygon\",\"id\":\"050100\",\"arcs\":[[-8049,8149,8150,8151,-8076,-8052,-7972]]},{\"type\":\"Polygon\",\"id\":\"050000\",\"arcs\":[[-8072,8152,8153,-7059,-7985]]},{\"type\":\"Polygon\",\"id\":\"049900\",\"arcs\":[[-7553,-7391,8154,-8150,-8048]]},{\"type\":\"Polygon\",\"id\":\"049800\",\"arcs\":[[-7060,-8154,8155,8156]]},{\"type\":\"Polygon\",\"id\":\"049700\",\"arcs\":[[8157,8158,-8074,-8152,8159]]},{\"type\":\"Polygon\",\"id\":\"049600\",\"arcs\":[[-8156,-8153,-8071,8160,8161,8162,8163,8164]]},{\"type\":\"Polygon\",\"id\":\"049500\",\"arcs\":[[-8159,8165,-8083,8166,-8065,-8075]]},{\"type\":\"Polygon\",\"id\":\"049400\",\"arcs\":[[-8070,8167,8168,8169,-8161]]},{\"type\":\"Polygon\",\"id\":\"049300\",\"arcs\":[[-8082,8170,8171,-8066,-8167]]},{\"type\":\"Polygon\",\"id\":\"041900\",\"arcs\":[[-6939,-6778,-6774,8172,8173]]},{\"type\":\"Polygon\",\"id\":\"041800\",\"arcs\":[[-6944,-7702,8174,8175,-6935]]},{\"type\":\"Polygon\",\"id\":\"041700\",\"arcs\":[[-6773,-6768,8176,8177,-8173]]},{\"type\":\"Polygon\",\"id\":\"081400\",\"arcs\":[[-7995,-7902,-8003,-8093]]},{\"type\":\"Polygon\",\"id\":\"081000\",\"arcs\":[[8178,-7897,-7994,8179]]},{\"type\":\"Polygon\",\"id\":\"080600\",\"arcs\":[[-6998,-6990,-7898,-8179,8180]]},{\"type\":\"Polygon\",\"id\":\"080400\",\"arcs\":[[-8181,-8180,-7997,-8092,-8111,8181,8182,-6999]]},{\"type\":\"Polygon\",\"id\":\"080200\",\"arcs\":[[-8182,-8110,-8109,-7577,-7570,8183]]},{\"type\":\"Polygon\",\"id\":\"080000\",\"arcs\":[[-7006,-7000,-8183,-8184,-7569]]},{\"type\":\"Polygon\",\"id\":\"079400\",\"arcs\":[[-8108,-8105,8184,-7607,-7603,-7573]]},{\"type\":\"Polygon\",\"id\":\"079200\",\"arcs\":[[-8103,8185,-7594,-8050,-7608,-8185]]},{\"type\":\"Polygon\",\"id\":\"079000\",\"arcs\":[[-8101,8186,8187,-7599,-7595,-8186]]},{\"type\":\"Polygon\",\"id\":\"078800\",\"arcs\":[[-8100,-8097,8188,8189,8190,-8187]]},{\"type\":\"Polygon\",\"id\":\"078600\",\"arcs\":[[8191,8192,8193,8194,-8190]]},{\"type\":\"Polygon\",\"id\":\"078400\",\"arcs\":[[8195,8196,-8192,8197]]},{\"type\":\"Polygon\",\"id\":\"078200\",\"arcs\":[[-8096,-8094,-8031,-8029,8198,-8198,-8189]]},{\"type\":\"Polygon\",\"id\":\"027500\",\"arcs\":[[-8119,-7307,8199,8200,8201]]},{\"type\":\"Polygon\",\"id\":\"027400\",\"arcs\":[[8202,8203,8204,8205,-8123]]},{\"type\":\"Polygon\",\"id\":\"027300\",\"arcs\":[[-7300,-7873,8206,-8200]]},{\"type\":\"Polygon\",\"id\":\"027200\",\"arcs\":[[-8206,8207,-6787,-6791,8208,-7440,-7457,-8124]]},{\"type\":\"Polygon\",\"id\":\"027000\",\"arcs\":[[-6795,8209,-7292,-7302,-7433,-8209]]},{\"type\":\"Polygon\",\"id\":\"026900\",\"arcs\":[[8210,-8201,-8207,-7875,8211,8212]]},{\"type\":\"Polygon\",\"id\":\"026800\",\"arcs\":[[8213,-6781,-8208,-8205]]},{\"type\":\"Polygon\",\"id\":\"026700\",\"arcs\":[[8214,-8120,-8202,-8211,8215]]},{\"type\":\"Polygon\",\"id\":\"026600\",\"arcs\":[[8216,8217,-6782,-8214,-8204,8218]]},{\"type\":\"Polygon\",\"id\":\"026500\",\"arcs\":[[-8116,-8121,-8215,8219,8220,8221]]},{\"type\":\"Polygon\",\"id\":\"026400\",\"arcs\":[[-6756,8222,8223,-8219,-8203,-8122,-6899]]},{\"type\":\"Polygon\",\"id\":\"026300\",\"arcs\":[[-8117,-8222,8224,8225]]},{\"type\":\"Polygon\",\"id\":\"026200\",\"arcs\":[[8226,8227,8228,-8223,-6754]]},{\"type\":\"Polygon\",\"id\":\"026100\",\"arcs\":[[-7461,-8113,-8226,8229,8230]]},{\"type\":\"Polygon\",\"id\":\"002901\",\"arcs\":[[-6892,-8147,-7726,-8084]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[8231,-7825,-8085,-7732,8232]]},{\"type\":\"Polygon\",\"id\":\"002200\",\"arcs\":[[8233,8234,-7802,-7809,-7810,-7916,-8149]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[-836,-753,-529,-1017,-759,-7826,-8232,8235,8236,-783]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[8237,-7793,-7794,-7800,-8235,8238]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[-7979,-8086,-7540,-7359,-7354,-7676,-7786,8239,-8239,-8234,-8148,-8143,8240]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[-8233,-7731,8241,-7734,8242,-8236]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[-7730,-8137,8243,-7735,-8242]]},{\"type\":\"Polygon\",\"id\":\"041600\",\"arcs\":[[-7697,8244,8245,-8175]]},{\"type\":\"Polygon\",\"id\":\"041500\",\"arcs\":[[-8177,-6767,-6762,8246,8247]]},{\"type\":\"Polygon\",\"id\":\"041402\",\"arcs\":[[-6936,-8176,-8246,8248,8249,8250]]},{\"type\":\"Polygon\",\"id\":\"041401\",\"arcs\":[[-6937,-8251,8251,8252,8253,8254]]},{\"type\":\"Polygon\",\"id\":\"041300\",\"arcs\":[[-6761,8255,8256,8257,8258,-8247]]},{\"type\":\"Polygon\",\"id\":\"041200\",\"arcs\":[[-6938,-8255,8259,-6929]]},{\"type\":\"Polygon\",\"id\":\"041100\",\"arcs\":[[-8257,8260,8261,8262,8263]]},{\"type\":\"Polygon\",\"id\":\"041000\",\"arcs\":[[-6930,-8260,-8254,8264,8265]]},{\"type\":\"Polygon\",\"id\":\"040900\",\"arcs\":[[-6760,8266,8267,8268,-8261,-8256]]},{\"type\":\"Polygon\",\"id\":\"040800\",\"arcs\":[[-6800,-8266,8269,8270]]},{\"type\":\"Polygon\",\"id\":\"040700\",\"arcs\":[[-8262,-8269,8271,-7017,8272,8273]]},{\"type\":\"Polygon\",\"id\":\"040600\",\"arcs\":[[-6793,-8271,8274,8275,8276]]},{\"type\":\"Polygon\",\"id\":\"040500\",\"arcs\":[[-8273,-7016,8277,8278,8279]]},{\"type\":\"Polygon\",\"id\":\"078000\",\"arcs\":[[-8028,-6473,8280,-8196,-8199]]},{\"type\":\"Polygon\",\"id\":\"077600\",\"arcs\":[[-8197,-8281,-6472,8281,8282,8283,8284,-8193]]},{\"type\":\"Polygon\",\"id\":\"077400\",\"arcs\":[[8285,-8194,-8285,8286,8287,8288]]},{\"type\":\"Polygon\",\"id\":\"077200\",\"arcs\":[[-8289,8289,8290,8291,8292,8293,8294]]},{\"type\":\"Polygon\",\"id\":\"077000\",\"arcs\":[[-8188,-8191,-8195,-8286,-8295,8295,8296,-7600]]},{\"type\":\"Polygon\",\"id\":\"076600\",\"arcs\":[[-8296,-8294,8297]]},{\"type\":\"Polygon\",\"id\":\"076400\",\"arcs\":[[-7975,-8297,-8298,-8293,8298,-7958,-7856]]},{\"type\":\"Polygon\",\"id\":\"076200\",\"arcs\":[[-8299,-8292,8299,8300,-7846]]},{\"type\":\"Polygon\",\"id\":\"076000\",\"arcs\":[[8301,8302,8303,-7830,-7851,-8301]]},{\"type\":\"Polygon\",\"id\":\"075600\",\"arcs\":[[8304,8305,8306,-7109,8307]]},{\"type\":\"Polygon\",\"id\":\"075400\",\"arcs\":[[8308,8309,8310,-8305,8311,-8303]]},{\"type\":\"Polygon\",\"id\":\"075200\",\"arcs\":[[-8291,8312,-8309,-8302,-8300]]},{\"type\":\"Polygon\",\"id\":\"026000\",\"arcs\":[[-8229,8313,8314,8315,-8217,-8224]]},{\"type\":\"Polygon\",\"id\":\"025902\",\"arcs\":[[-7452,8316,8317]]},{\"type\":\"Polygon\",\"id\":\"025901\",\"arcs\":[[-8317,-7462,-8231,8318,8319]]},{\"type\":\"Polygon\",\"id\":\"025800\",\"arcs\":[[-8316,8320,-6783,-8218]]},{\"type\":\"Polygon\",\"id\":\"025700\",\"arcs\":[[-7456,-8318,-8320,8321,-8063]]},{\"type\":\"Polygon\",\"id\":\"025600\",\"arcs\":[[-8315,8322,8323,-6775,-6784,-8321]]},{\"type\":\"Polygon\",\"id\":\"025500\",\"arcs\":[[-8322,8324,-7986,-7951]]},{\"type\":\"Polygon\",\"id\":\"025400\",\"arcs\":[[8325,8326,-6764,-8324,8327]]},{\"type\":\"Polygon\",\"id\":\"025300\",\"arcs\":[[-8325,-8319,-8230,8328,8329]]},{\"type\":\"Polygon\",\"id\":\"025200\",\"arcs\":[[8330,-8328,-8323,-8314,-8228,8331]]},{\"type\":\"Polygon\",\"id\":\"025100\",\"arcs\":[[-8225,-8221,8332,8333,-8329]]},{\"type\":\"Polygon\",\"id\":\"025000\",\"arcs\":[[-6753,-6740,-6748,8334,8335,-8332,-8227]]},{\"type\":\"Polygon\",\"id\":\"024900\",\"arcs\":[[-8220,-8216,-8213,8336,8337,-8333]]},{\"type\":\"Polygon\",\"id\":\"024800\",\"arcs\":[[8338,8339,8340,-8326,-8331,-8336]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[-7736,-8244,-8139,-8128,-8126,8341]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-375,8342,-7741,-7737,-8342,-8125,-8043,-8047,-764]]},{\"type\":\"Polygon\",\"id\":\"000301\",\"arcs\":[[-549,8343,-7739,-8343,-374]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-7788,-7790,-7791,-8238,-8240]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-688,-784,-8237,-8243,-7733,-7740,-8344,-548]]},{\"type\":\"Polygon\",\"id\":\"075800\",\"arcs\":[[-8312,-8308,-7715,-6481,-7831,-8304]]},{\"type\":\"Polygon\",\"id\":\"066600\",\"arcs\":[[-7118,-6961,-6956,-6954,8344,8345,8346,8347,-7468,8348,-7129,-7252,-7119,-7114]]},{\"type\":\"Polygon\",\"id\":\"049200\",\"arcs\":[[-7747,-7964,8349,8350,-8168,-8069]]},{\"type\":\"Polygon\",\"id\":\"040400\",\"arcs\":[[-8277,8351,-7293,-8210,-6794]]},{\"type\":\"Polygon\",\"id\":\"040300\",\"arcs\":[[-8263,-8274,-8280,8352,8353,8354]]},{\"type\":\"Polygon\",\"id\":\"040200\",\"arcs\":[[-8276,8355,8356,8357,8358,-7165,-7288,-7294,-8352]]},{\"type\":\"Polygon\",\"id\":\"040100\",\"arcs\":[[8359,-8258,-8264,-8355,8360,8361]]},{\"type\":\"Polygon\",\"id\":\"040000\",\"arcs\":[[-8275,-8270,-8265,-8253,8362,8363,-8356]]},{\"type\":\"Polygon\",\"id\":\"039900\",\"arcs\":[[-8178,-8248,-8259,-8360,8364,8365]]},{\"type\":\"Polygon\",\"id\":\"039800\",\"arcs\":[[8366,8367,8368,-8357,-8364]]},{\"type\":\"Polygon\",\"id\":\"039700\",\"arcs\":[[-8365,-8362,8369,8370,8371]]},{\"type\":\"Polygon\",\"id\":\"039600\",\"arcs\":[[-8252,-8250,8372,8373,-8367,-8363]]},{\"type\":\"Polygon\",\"id\":\"039500\",\"arcs\":[[-6940,-8174,-8366,-8372,8374,8375,-7436,8376]]},{\"type\":\"Polygon\",\"id\":\"039400\",\"arcs\":[[-8249,-8245,-7413,8377,8378,-8373]]},{\"type\":\"Polygon\",\"id\":\"075000\",\"arcs\":[[-8290,-8288,8379,8380,-8310,-8313]]},{\"type\":\"Polygon\",\"id\":\"074800\",\"arcs\":[[8381,8382,8383,-8306,-8311,-8381]]},{\"type\":\"Polygon\",\"id\":\"074600\",\"arcs\":[[-8384,8384,8385,-6974,-7097,-7101,-7102,-7105,-8307]]},{\"type\":\"Polygon\",\"id\":\"074400\",\"arcs\":[[8386,8387,8388,-8385,-8383]]},{\"type\":\"Polygon\",\"id\":\"074200\",\"arcs\":[[-8287,-8284,8389,-8387,-8382,-8380]]},{\"type\":\"Polygon\",\"id\":\"074000\",\"arcs\":[[8390,8391,8392,-8388,-8390,-8283]]},{\"type\":\"Polygon\",\"id\":\"073800\",\"arcs\":[[-8393,8393,-6975,-8386,-8389]]},{\"type\":\"Polygon\",\"id\":\"073600\",\"arcs\":[[8394,8395,8396,-6976,-8394,-8392]]},{\"type\":\"Polygon\",\"id\":\"073400\",\"arcs\":[[-8282,-6471,8397,-8395,-8391]]},{\"type\":\"Polygon\",\"id\":\"073200\",\"arcs\":[[8398,8399,-8396,-8398,-6470]]},{\"type\":\"Polygon\",\"id\":\"073000\",\"arcs\":[[8400,8401,8402,-6977,-8397,-8400]]},{\"type\":\"Polygon\",\"id\":\"072800\",\"arcs\":[[8403,8404,-8401,-8399,-6469]]},{\"type\":\"Polygon\",\"id\":\"024700\",\"arcs\":[[8405,-8337,-8212,-7874,-7151,-7144,8406,8407]]},{\"type\":\"Polygon\",\"id\":\"024600\",\"arcs\":[[8408,8409,-6566,-6579,-8327,-8341]]},{\"type\":\"Polygon\",\"id\":\"024500\",\"arcs\":[[8410,-8338,-8406,8411,8412]]},{\"type\":\"Polygon\",\"id\":\"024400\",\"arcs\":[[8413,8414,-8409,-8340,8415]]},{\"type\":\"Polygon\",\"id\":\"024300\",\"arcs\":[[-8334,-8411,8416,8417,8418]]},{\"type\":\"Polygon\",\"id\":\"024200\",\"arcs\":[[-6747,8419,8420,-8416,-8339,-8335]]},{\"type\":\"Polygon\",\"id\":\"024100\",\"arcs\":[[-8330,-8419,8421,8422,-7987]]},{\"type\":\"Polygon\",\"id\":\"024000\",\"arcs\":[[-6513,8423,8424,-8420,-6746]]},{\"type\":\"Polygon\",\"id\":\"023800\",\"arcs\":[[8425,8426,8427,8428,-8424]]},{\"type\":\"Polygon\",\"id\":\"023600\",\"arcs\":[[8429,8430,8431,-8427,8432]]},{\"type\":\"Polygon\",\"id\":\"023500\",\"arcs\":[[-7988,-8423,8433,-6743]]},{\"type\":\"Polygon\",\"id\":\"023400\",\"arcs\":[[8434,8435,8436,8437,8438,-8430]]},{\"type\":\"Polygon\",\"id\":\"023300\",\"arcs\":[[-8434,-8422,-8418,8439,8440,-6744]]},{\"type\":\"Polygon\",\"id\":\"023200\",\"arcs\":[[8441,8442,8443,8444,-8437,8445]]},{\"type\":\"Polygon\",\"id\":\"049100\",\"arcs\":[[-8067,-8172,8446,8447,-8062,-8060,-8058]]},{\"type\":\"Polygon\",\"id\":\"049000\",\"arcs\":[[-8169,-8351,8448,8449,8450]]},{\"type\":\"Polygon\",\"id\":\"048900\",\"arcs\":[[-8081,8451,-8447,-8171]]},{\"type\":\"Polygon\",\"id\":\"048800\",\"arcs\":[[-8170,-8451,8452,-8162]]},{\"type\":\"Polygon\",\"id\":\"048600\",\"arcs\":[[-8163,-8453,-8450,8453,8454,8455]]},{\"type\":\"Polygon\",\"id\":\"048400\",\"arcs\":[[-8449,8456,8457,8458,-8454]]},{\"type\":\"Polygon\",\"id\":\"048200\",\"arcs\":[[-8350,-7963,-7861,8459,-8457]]},{\"type\":\"Polygon\",\"id\":\"048100\",\"arcs\":[[8460,-7868,-8078,-8166,-8158]]},{\"type\":\"Polygon\",\"id\":\"048000\",\"arcs\":[[8461,-8458,-8460,8462,8463]]},{\"type\":\"Polygon\",\"id\":\"047800\",\"arcs\":[[8464,8465,-8455,-8459,-8462,8466,-8444]]},{\"type\":\"Polygon\",\"id\":\"047700\",\"arcs\":[[-7390,-7869,-8461,-8160,-8151,-8155]]},{\"type\":\"Polygon\",\"id\":\"047600\",\"arcs\":[[-8438,-8445,-8467,-8464,8467,8468]]},{\"type\":\"Polygon\",\"id\":\"039300\",\"arcs\":[[8469,8470,-6932,-6941,-8377,-7435,-7442]]},{\"type\":\"Polygon\",\"id\":\"039200\",\"arcs\":[[-7412,-7410,8471,-8378]]},{\"type\":\"Polygon\",\"id\":\"039100\",\"arcs\":[[-6804,-6933,-8471,8472,-8080]]},{\"type\":\"Polygon\",\"id\":\"039000\",\"arcs\":[[-8379,-8472,-7409,8473,-7720,8474]]},{\"type\":\"Polygon\",\"id\":\"038900\",\"arcs\":[[-8452,-8473,-8470,-7446,-7450,-7455,-8448]]},{\"type\":\"Polygon\",\"id\":\"038800\",\"arcs\":[[-8374,-8475,-7722,-7717,8475,-8368]]},{\"type\":\"Polygon\",\"id\":\"038700\",\"arcs\":[[-8376,8476,8477,-7311,-7430,-7437]]},{\"type\":\"Polygon\",\"id\":\"038600\",\"arcs\":[[-8358,-8369,-8476,-7719,-7158,8478]]},{\"type\":\"Polygon\",\"id\":\"038500\",\"arcs\":[[8479,8480,-7305,-7312,-8478]]},{\"type\":\"Polygon\",\"id\":\"038300\",\"arcs\":[[8481,8482,8483,-7297,-7306,-8481]]},{\"type\":\"Polygon\",\"id\":\"038200\",\"arcs\":[[-8479,-7157,-7166,-8359]]},{\"type\":\"Polygon\",\"id\":\"072400\",\"arcs\":[[-7992,-7624,-7620,8484,-6467]]},{\"type\":\"Polygon\",\"id\":\"072200\",\"arcs\":[[-8485,-7619,-7616,8485,-8404,-6468]]},{\"type\":\"Polygon\",\"id\":\"072000\",\"arcs\":[[-8486,-7589,8486,8487,-8405]]},{\"type\":\"Polygon\",\"id\":\"070600\",\"arcs\":[[-7582,8488,-7580,-7198,8489,8490,8491]]},{\"type\":\"Polygon\",\"id\":\"070203\",\"arcs\":[[-7192,-7185,8492,8493,8494,8495,8496,8497,-8490,-7197]]},{\"type\":\"Polygon\",\"id\":\"070202\",\"arcs\":[[8498,-8491,-8498,8499,-8346,8500]]},{\"type\":\"Polygon\",\"id\":\"070201\",\"arcs\":[[8501,-7583,-8492,-8499]]},{\"type\":\"Polygon\",\"id\":\"070000\",\"arcs\":[[-8489,-7581]]},{\"type\":\"Polygon\",\"id\":\"069800\",\"arcs\":[[-6947,8502,8503,-7584,-8502,-8501,-8345,-6953]]},{\"type\":\"Polygon\",\"id\":\"069200\",\"arcs\":[[-8487,-7588,8504,8505,8506]]},{\"type\":\"Polygon\",\"id\":\"023100\",\"arcs\":[[-6745,-8441,8507,8508,-6714,-6731]]},{\"type\":\"Polygon\",\"id\":\"023000\",\"arcs\":[[8509,8510,-8465,-8443,8511]]},{\"type\":\"Polygon\",\"id\":\"022900\",\"arcs\":[[-8417,-8413,8512,-8508,-8440]]},{\"type\":\"Polygon\",\"id\":\"022800\",\"arcs\":[[8513,-8164,-8456,-8466,-8511]]},{\"type\":\"Polygon\",\"id\":\"022700\",\"arcs\":[[-8513,-8412,-8408,-7870,-6715,-8509]]},{\"type\":\"Polygon\",\"id\":\"022600\",\"arcs\":[[-7664,-7061,-8157,-8165,-8514,-8510,8514]]},{\"type\":\"Polygon\",\"id\":\"022400\",\"arcs\":[[-7665,-8515,-8512,-8442,8515,-7661]]},{\"type\":\"Polygon\",\"id\":\"022200\",\"arcs\":[[-7662,-8516,-8446,-8436,8516,-7656]]},{\"type\":\"Polygon\",\"id\":\"022100\",\"arcs\":[[-8407,-7143,-7141,8517,-7871]]},{\"type\":\"Polygon\",\"id\":\"022000\",\"arcs\":[[-8517,-8435,-8433,8518,-7657]]},{\"type\":\"Polygon\",\"id\":\"021900\",\"arcs\":[[-8518,-7140,-7138,-7012,-7010,8519]]},{\"type\":\"Polygon\",\"id\":\"021800\",\"arcs\":[[-8519,-8426,-6512,-7653]]},{\"type\":\"Polygon\",\"id\":\"021700\",\"arcs\":[[-7872,-8520,-6527,-6519]]},{\"type\":\"Polygon\",\"id\":\"047400\",\"arcs\":[[-8439,-8469,8520,8521,-8431]]},{\"type\":\"Polygon\",\"id\":\"047200\",\"arcs\":[[-8428,-8432,-8522,8522,8523]]},{\"type\":\"Polygon\",\"id\":\"047000\",\"arcs\":[[-8429,-8524,8524,-8414,-8421,-8425]]},{\"type\":\"Polygon\",\"id\":\"046800\",\"arcs\":[[-8525,8525,8526,-6567,-8410,-8415]]},{\"type\":\"Polygon\",\"id\":\"046400\",\"arcs\":[[-8521,-8468,8527,8528,-8526,-8523]]},{\"type\":\"Polygon\",\"id\":\"046202\",\"arcs\":[[8529,8530,-6565,-8527,-8529]]},{\"type\":\"Polygon\",\"id\":\"046201\",\"arcs\":[[-8463,-7860,8531,-8530,-8528]]},{\"type\":\"Polygon\",\"id\":\"045800\",\"arcs\":[[-7859,8532,8533,-8531,-8532]]},{\"type\":\"Polygon\",\"id\":\"045600\",\"arcs\":[[-7954,-7842,8534,-8533,-7858]]},{\"type\":\"Polygon\",\"id\":\"045400\",\"arcs\":[[-7841,-7852,-6591,-6584,8535,-8535]]},{\"type\":\"Polygon\",\"id\":\"045300\",\"arcs\":[[-7866,-6571,-6796,-6802,-8079]]},{\"type\":\"Polygon\",\"id\":\"045200\",\"arcs\":[[-8536,-6583,-6568,-6563,-8534]]},{\"type\":\"Polygon\",\"id\":\"038100\",\"arcs\":[[8536,8537,-7290,-7298,-8484]]},{\"type\":\"Polygon\",\"id\":\"037900\",\"arcs\":[[8538,8539,8540,-7286,-8538]]},{\"type\":\"Polygon\",\"id\":\"037700\",\"arcs\":[[8541,-8539,-8537,-8483,8542]]},{\"type\":\"Polygon\",\"id\":\"037500\",\"arcs\":[[-8371,8543,-8543,-8482,-8480,-8477,-8375]]},{\"type\":\"Polygon\",\"id\":\"037300\",\"arcs\":[[-8361,-8354,8544,8545,-8540,-8542,-8544,-8370]]},{\"type\":\"Polygon\",\"id\":\"037100\",\"arcs\":[[8546,-7283,-8541,-8546]]},{\"type\":\"Polygon\",\"id\":\"037000\",\"arcs\":[[-8474,-7404,-8046,8547,-7721]]},{\"type\":\"Polygon\",\"id\":\"036900\",\"arcs\":[[-8353,-8279,8548,-6615,-7284,-8547,-8545]]},{\"type\":\"Polygon\",\"id\":\"036700\",\"arcs\":[[-8278,-7020,-8088,8549,-8549]]},{\"type\":\"Polygon\",\"id\":\"036600\",\"arcs\":[[-8548,-7258,-7593,-6622,-7724,-6664]]},{\"type\":\"Polygon\",\"id\":\"036502\",\"arcs\":[[-8550,-8087,-7759,-7760,-6624,-6616]]},{\"type\":\"Polygon\",\"id\":\"069000\",\"arcs\":[[-8505,-7587,-7585,8550,8551,8552]]},{\"type\":\"Polygon\",\"id\":\"068800\",\"arcs\":[[-8504,8553,-6945,8554,-8551]]},{\"type\":\"Polygon\",\"id\":\"068600\",\"arcs\":[[-8554,-8503,-6946]]},{\"type\":\"Polygon\",\"id\":\"068200\",\"arcs\":[[-8552,-8555,-6951,8555,8556]]},{\"type\":\"Polygon\",\"id\":\"068000\",\"arcs\":[[8557,-8506,-8553,-8557,8558,8559]]},{\"type\":\"Polygon\",\"id\":\"067800\",\"arcs\":[[-8488,-8507,-8558,8560,-8402]]},{\"type\":\"Polygon\",\"id\":\"067600\",\"arcs\":[[-8561,-8560,8561,8562,-8403]]},{\"type\":\"Polygon\",\"id\":\"067400\",\"arcs\":[[8563,-6971,-6978,-8563]]},{\"type\":\"Polygon\",\"id\":\"067200\",\"arcs\":[[-8562,-8559,-8556,-6950,-6972,-8564]]},{\"type\":\"Polygon\",\"id\":\"061600\",\"arcs\":[[-7130,-8349,-7467,8564,-8077]]},{\"type\":\"Polygon\",\"id\":\"061002\",\"arcs\":[[-8565,-7466,-6815,-6638,-7591]]},{\"type\":\"Polygon\",\"id\":\"004600\",\"arcs\":[[-7982,-7935,-7370,-7940,-8042,-1235]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[8565,8566,8567]]},{\"type\":\"Polygon\",\"id\":\"950800\",\"arcs\":[[8568,8569,8570,8571,8572]]},{\"type\":\"Polygon\",\"id\":\"950900\",\"arcs\":[[8573,8574,-8570]]},{\"type\":\"Polygon\",\"id\":\"951200\",\"arcs\":[[8575]]},{\"type\":\"Polygon\",\"id\":\"950700\",\"arcs\":[[-8567,8576,-8572,8577,8578]]},{\"type\":\"Polygon\",\"id\":\"951400\",\"arcs\":[[8579,8580,8581,8582,-5790,8583]]},{\"type\":\"Polygon\",\"id\":\"951100\",\"arcs\":[[8584,-2058,-1535,8585,8586,8587,8588],[-8576]]},{\"type\":\"Polygon\",\"id\":\"950700\",\"arcs\":[[8589,8590,8591,8592,8593,8594]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[8595,8596,-8595,8597,-6462,-6454,8598]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[-8597,8599,-2945,8600,8601,-8590]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[8602,8603,-2946,-8600,-8596,8604]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[-6434,-6437,8605,-8605,-8599,-6453]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[8606,8607,-8603,-8606,-6436,-6374]]},{\"type\":\"Polygon\",\"id\":\"951300\",\"arcs\":[[-8587,8608,8609,8610,-8581,8611]]},{\"type\":\"Polygon\",\"id\":\"940100\",\"arcs\":[[-5733,8612,8613]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[-8573,-8577,-8566,8614]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[8615,8616,-2947,-8604,-8608]]},{\"type\":\"Polygon\",\"id\":\"951000\",\"arcs\":[[-8571,-8575,8617,-8578]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[-8588,-8612,-8580,8618,8619],[-8579,-8618,-8574,-8569,-8615,-8568]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[8620,-8619,-8584,-6263,-8614,8621,8622]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[8623,8624,8625,-8589,-8620,-8621,8626]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[-2072,-2050,-2056,-8585,-8626,8627]]},{\"type\":\"Polygon\",\"id\":\"950501\",\"arcs\":[[8628,8629]]},{\"type\":\"Polygon\",\"id\":\"950502\",\"arcs\":[[8630,8631,-8630,8632,8633,8634,8635]]},{\"type\":\"Polygon\",\"id\":\"940000\",\"arcs\":[[8636,8637,8638,8639]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[8640,-8633,-8629,-8632,8641]]},{\"type\":\"Polygon\",\"id\":\"951000\",\"arcs\":[[8642,8643,8644]]},{\"type\":\"Polygon\",\"id\":\"950700\",\"arcs\":[[8645,8646,-8645,8647,8648,8649,8650]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[-5588,8651,-8642,-8631,8652,8653]]},{\"type\":\"Polygon\",\"id\":\"950800\",\"arcs\":[[-5598,-35,8654,-8643,-8647,8655]]},{\"type\":\"Polygon\",\"id\":\"951100\",\"arcs\":[[8656,8657,8658,8659,-8649]]},{\"type\":\"Polygon\",\"id\":\"950900\",\"arcs\":[[-8644,-8655,-34,-30,-28,-41,8660,8661,-8657,-8648]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[8662,-8653,-8636,8663,8664,-8637]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[-8641,-8652,-5587,-5599,-8656,-8646,-8634]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[-8635,-8651,8665,8666,-8664]]},{\"type\":\"Polygon\",\"id\":\"951200\",\"arcs\":[[-8662,8667,8668,-8658]]},{\"type\":\"Polygon\",\"id\":\"072500\",\"arcs\":[[8669,8670,8671,-2997,8672]]},{\"type\":\"Polygon\",\"id\":\"072300\",\"arcs\":[[-6305,8673,8674,8675,-8670,8676]]},{\"type\":\"Polygon\",\"id\":\"072400\",\"arcs\":[[-8677,-8673,-2996,-2980,-6306]]},{\"type\":\"Polygon\",\"id\":\"072200\",\"arcs\":[[-6290,8677,8678,8679,-8674]]},{\"type\":\"Polygon\",\"id\":\"072700\",\"arcs\":[[-8675,-8680,8680,8681,8682]]},{\"type\":\"Polygon\",\"id\":\"072600\",\"arcs\":[[-8676,-8683,8683,8684,-8671]]},{\"type\":\"Polygon\",\"id\":\"070800\",\"arcs\":[[8685,8686,8687,8688]]},{\"type\":\"Polygon\",\"id\":\"070700\",\"arcs\":[[8689,-8687,8690]]},{\"type\":\"Polygon\",\"id\":\"072100\",\"arcs\":[[-4191,-4044,-3814,8691,8692,-8688,-8690,8693,8694,8695,8696,-8678,-6320]]},{\"type\":\"Polygon\",\"id\":\"070600\",\"arcs\":[[-8691,-8686,8697,8698,8699,-8694]]},{\"type\":\"Polygon\",\"id\":\"070500\",\"arcs\":[[-8700,8700,8701,-8695]]},{\"type\":\"Polygon\",\"id\":\"070400\",\"arcs\":[[-8702,8702,8703,8704,-8696]]},{\"type\":\"Polygon\",\"id\":\"070300\",\"arcs\":[[-8701,-8699,8705,8706,-8703]]},{\"type\":\"Polygon\",\"id\":\"070900\",\"arcs\":[[-8706,-8698,-8689,-8693,8707,8708]]},{\"type\":\"Polygon\",\"id\":\"072800\",\"arcs\":[[-8679,-8697,-8705,8709,-8708,-8692,-3807,-3801,-3818,8710,8711,-8681]]},{\"type\":\"Polygon\",\"id\":\"070200\",\"arcs\":[[-8707,-8709,-8710,-8704]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[8712,8713,8714,8715,8716,8717]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[8718,8719,8720,8721,8722,8723]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[8724,8725,8726,8727,-8718,8728,8729]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[8730,8731,8732,8733,8734,8735,-8714]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[-3679,8736,8737,8738,8739]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[-8739,8740,-8732,8741,8742]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-8713,-8728,8743,-8742,-8731]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[8744,-3680,-8740,-8743,-8744,-8727]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[-3629,-3539,-3681,-8745,-8726,8745]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[8746,-263,-233,8747,8748,8749,8750]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[8751,-8729,-8717,8752,8753]]},{\"type\":\"Polygon\",\"id\":\"014202\",\"arcs\":[[8754,8755,8756,8757,8758,8759,8760]]},{\"type\":\"Polygon\",\"id\":\"014201\",\"arcs\":[[8761,-8755,8762,8763]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[8764,8765,8766,8767,8768,8769,8770,8771,8772,8773]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[8774,-8769,8775,8776,8777,8778]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[8779,8780,8781,8782]]},{\"type\":\"Polygon\",\"id\":\"011101\",\"arcs\":[[8783,-8766,8784]]},{\"type\":\"Polygon\",\"id\":\"000501\",\"arcs\":[[-8738,8785,-8733,-8741]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[8786,8787,-8779,8788,-8781]]},{\"type\":\"Polygon\",\"id\":\"010700\",\"arcs\":[[8789,8790]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[8791,8792,-8772]]},{\"type\":\"Polygon\",\"id\":\"013202\",\"arcs\":[[8793,8794,8795,8796]]},{\"type\":\"Polygon\",\"id\":\"015200\",\"arcs\":[[8797,8798,-8753,-8716,8799,8800,8801,8802,-8794,8803]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[-8773,-8793,8804,8805,-8787,-8780,8806]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[-8771,8807,-8805,-8792]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[-8808,-8770,-8775,-8788,-8806]]},{\"type\":\"Polygon\",\"id\":\"013700\",\"arcs\":[[8808,8809]]},{\"type\":\"Polygon\",\"id\":\"012300\",\"arcs\":[[8810,-8804,-8797,8811,8812,8813]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[8814,8815,8816,8817]]},{\"type\":\"Polygon\",\"id\":\"013201\",\"arcs\":[[-8803,8818,8819,-8795]]},{\"type\":\"Polygon\",\"id\":\"010901\",\"arcs\":[[8820,8821,-86]]},{\"type\":\"Polygon\",\"id\":\"011601\",\"arcs\":[[-8751,8822,8823,8824,8825,8826,8827]]},{\"type\":\"Polygon\",\"id\":\"015004\",\"arcs\":[[8828,8829,8830,8831]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[-8817,8832,8833]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[-8809,8834,8835,8836,8837,8838]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[8839,-8777,8840,-8813,8841,-8818,-8834,8842,-8719,8843,8844]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[8845,8846,-8838,8847,8848,-8758,8849,8850,8851]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[8852,8853,-8835,-8810,-8839,-8847]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[8854,8855,-3675,8856,-8853,-8846,8857,8858,-8819,-8802]]},{\"type\":\"Polygon\",\"id\":\"015003\",\"arcs\":[[-8851,8859,-8831,8860,8861]]},{\"type\":\"Polygon\",\"id\":\"014101\",\"arcs\":[[8862,8863,-8832,8864,-8756,-8762]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[8865,8866,8867,-8855]]},{\"type\":\"Polygon\",\"id\":\"014102\",\"arcs\":[[-8860,-8850,-8757,-8865]]},{\"type\":\"Polygon\",\"id\":\"015006\",\"arcs\":[[8868,-8861,-8830,8869]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[8870,-3676,-8856,-8868]]},{\"type\":\"Polygon\",\"id\":\"014302\",\"arcs\":[[8871,8872,-8763,-8761,8873,8874,-8720,-8843]]},{\"type\":\"Polygon\",\"id\":\"015005\",\"arcs\":[[8875,8876,-8870,-8829,-8864,8877]]},{\"type\":\"Polygon\",\"id\":\"014501\",\"arcs\":[[8878,-8844,-8724,8879,8880,8881]]},{\"type\":\"Polygon\",\"id\":\"014502\",\"arcs\":[[-8723,8882,8883,8884,8885,-8880]]},{\"type\":\"Polygon\",\"id\":\"011701\",\"arcs\":[[-8750,8886,8887,8888,-8823]]},{\"type\":\"Polygon\",\"id\":\"014301\",\"arcs\":[[-8816,8889,-8872,-8833]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[-8821,-85,-116,8890,-8754,-8799,8891,8892,-8791,8893,8894,8895,8896]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[-8796,-8820,-8859,8897,8898,-8878,-8863,-8764,-8873,-8890,-8815,-8842,-8812]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[8899,-8876,-8899]]},{\"type\":\"Polygon\",\"id\":\"011102\",\"arcs\":[[-8784,8900,-8767]]},{\"type\":\"Polygon\",\"id\":\"010902\",\"arcs\":[[-87,-8822,-8897,8901,-230]]},{\"type\":\"Polygon\",\"id\":\"010802\",\"arcs\":[[-8790,-8893,8902,-8894]]},{\"type\":\"Polygon\",\"id\":\"010801\",\"arcs\":[[-8903,-8892,-8798,-8811,8903,-8895]]},{\"type\":\"Polygon\",\"id\":\"010101\",\"arcs\":[[8904,-8730,-8752,-8891,-115,-199]]},{\"type\":\"Polygon\",\"id\":\"011602\",\"arcs\":[[-261,-264,-8747,-8828,8905,8906,8907,-237]]},{\"type\":\"Polygon\",\"id\":\"011801\",\"arcs\":[[-8749,8908,-8782,-8789,-8778,-8840,8909,8910,-8887]]},{\"type\":\"Polygon\",\"id\":\"011702\",\"arcs\":[[-8911,8911,-8882,8912,-8888]]},{\"type\":\"Polygon\",\"id\":\"011802\",\"arcs\":[[-8845,-8879,-8912,-8910]]},{\"type\":\"Polygon\",\"id\":\"012601\",\"arcs\":[[-8736,8913,8914,-8800,-8715]]},{\"type\":\"Polygon\",\"id\":\"012602\",\"arcs\":[[8915,-8866,-8801,-8915]]},{\"type\":\"Polygon\",\"id\":\"000502\",\"arcs\":[[-8786,-8737,-3678,8916,8917,-8734]]},{\"type\":\"Polygon\",\"id\":\"010102\",\"arcs\":[[-198,-188,-51,-127,-3715,-3625,-8746,-8725,-8905]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[-8898,-8858,-8852,-8862,-8869,-8877,-8900]]},{\"type\":\"Polygon\",\"id\":\"014800\",\"arcs\":[[8918,-8874,-8760,8919,8920,-8885]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[-8875,-8919,-8884,8921,-8721]]},{\"type\":\"Polygon\",\"id\":\"014600\",\"arcs\":[[-8722,-8922,-8883]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[-8748,-232,8922,-8774,-8807,-8783,-8909]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-8902,-8896,-8904,-8814,-8841,-8776,-8768,-8901,-8785,-8765,-8923,-231]]},{\"type\":\"Polygon\",\"id\":\"014900\",\"arcs\":[[-8849,8923,8924,8925,8926,8927,8928,-8920,-8759]]},{\"type\":\"Polygon\",\"id\":\"150400\",\"arcs\":[[8929,8930,8931,8932,8933]]},{\"type\":\"Polygon\",\"id\":\"150300\",\"arcs\":[[-3911,-3931,8934,-8934,8935,8936,-3979,-3977]]},{\"type\":\"Polygon\",\"id\":\"150200\",\"arcs\":[[-3930,-3933,-3969,8937,8938,-8930,-8935]]},{\"type\":\"Polygon\",\"id\":\"150100\",\"arcs\":[[8939,8940,8941,8942,8943,8944,-8938,-3968]]},{\"type\":\"Polygon\",\"id\":\"150500\",\"arcs\":[[-8939,-8945,8945,8946,-8931]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[8947,-8825,8948,-8907]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[-8827,8949,-8906]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[-8735,-8918,8950,-8914]]},{\"type\":\"Polygon\",\"id\":\"002200\",\"arcs\":[[-8826,-8948,-8950]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[-8951,-8917,-3677,-8871,-8867,-8916]]},{\"type\":\"Polygon\",\"id\":\"023100\",\"arcs\":[[8951,8952,8953,8954]]},{\"type\":\"Polygon\",\"id\":\"023401\",\"arcs\":[[8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966]]},{\"type\":\"Polygon\",\"id\":\"020400\",\"arcs\":[[8967,8968,8969,8970,8971]]},{\"type\":\"Polygon\",\"id\":\"020700\",\"arcs\":[[8972,8973,8974,-8969]]},{\"type\":\"Polygon\",\"id\":\"024303\",\"arcs\":[[-8966,8975,8976,8977,8978,8979]]},{\"type\":\"Polygon\",\"id\":\"020900\",\"arcs\":[[8980,8981,8982,8983,8984]]},{\"type\":\"Polygon\",\"id\":\"024302\",\"arcs\":[[8985,8986,8987,8988,-8980,8989,8990,8991]]},{\"type\":\"Polygon\",\"id\":\"024102\",\"arcs\":[[8992,8993,8994,8995,8996,8997]]},{\"type\":\"Polygon\",\"id\":\"022803\",\"arcs\":[[8998,8999,9000]]},{\"type\":\"Polygon\",\"id\":\"023500\",\"arcs\":[[9001,9002,9003,9004,-8959]]},{\"type\":\"Polygon\",\"id\":\"023901\",\"arcs\":[[9005,9006,9007,9008,-8961]]},{\"type\":\"Polygon\",\"id\":\"022401\",\"arcs\":[[9009,9010,9011,9012]]},{\"type\":\"Polygon\",\"id\":\"022500\",\"arcs\":[[9013,9014,-9010,9015]]},{\"type\":\"Polygon\",\"id\":\"024201\",\"arcs\":[[-8996,9016,-8967,-8989,9017]]},{\"type\":\"Polygon\",\"id\":\"023001\",\"arcs\":[[9018,-8955,9019,-5982,9020]]},{\"type\":\"Polygon\",\"id\":\"022300\",\"arcs\":[[9021,-9016,-9013,9022,9023]]},{\"type\":\"Polygon\",\"id\":\"022200\",\"arcs\":[[9024,-9023,-9012,9025,-5987,9026]]},{\"type\":\"Polygon\",\"id\":\"024401\",\"arcs\":[[9027,9028,9029]]},{\"type\":\"Polygon\",\"id\":\"022804\",\"arcs\":[[9030,-6279,9031,-9001,9032,9033]]},{\"type\":\"Polygon\",\"id\":\"022702\",\"arcs\":[[-8965,9034,9035,-6182,-6280,-6276,9036,-8976]]},{\"type\":\"Polygon\",\"id\":\"023600\",\"arcs\":[[-9005,9037,-9006,-8960]]},{\"type\":\"Polygon\",\"id\":\"024404\",\"arcs\":[[9038,9039,9040,9041,-9029]]},{\"type\":\"Polygon\",\"id\":\"021300\",\"arcs\":[[9042,9043,9044,9045,-8983]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[-8975,-8981,9046,-8970]]},{\"type\":\"Polygon\",\"id\":\"020300\",\"arcs\":[[9047,9048,9049,9050,-8973,-8968,9051,9052]]},{\"type\":\"Polygon\",\"id\":\"024405\",\"arcs\":[[9053,9054,-8990,-8979,9055,9056,-9039,-9028,9057]]},{\"type\":\"Polygon\",\"id\":\"024502\",\"arcs\":[[-8991,-9055,9058,9059,9060]]},{\"type\":\"Polygon\",\"id\":\"023700\",\"arcs\":[[-9004,9061,-9007,-9038]]},{\"type\":\"Polygon\",\"id\":\"024001\",\"arcs\":[[9062,9063,9064,-8622,9065,-6264,-6102,9066,-8957,9067]]},{\"type\":\"Polygon\",\"id\":\"022712\",\"arcs\":[[-9015,9068,9069,-9034,9070,9071,9072,-5980,-9026,-9011]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[9073,9074,9075,-8971,-9047,-8985,9076]]},{\"type\":\"Polygon\",\"id\":\"024406\",\"arcs\":[[9077,-9041,9078,-9056,-8978,9079,9080,9081,9082,9083]]},{\"type\":\"Polygon\",\"id\":\"022902\",\"arcs\":[[9084,9085,-9072]]},{\"type\":\"Polygon\",\"id\":\"022901\",\"arcs\":[[-9086,9086,-9021,-5981,-9073]]},{\"type\":\"Polygon\",\"id\":\"024600\",\"arcs\":[[-9033,-9000,9087,-8952,-9019,-9087,-9085,-9071]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[-8984,-9046,9088,9089,9090]]},{\"type\":\"Polygon\",\"id\":\"024202\",\"arcs\":[[-8997,-9018,-8988,9091]]},{\"type\":\"Polygon\",\"id\":\"023402\",\"arcs\":[[-8958,-9067,-6101,9092,9093,9094,-9002]]},{\"type\":\"Polygon\",\"id\":\"023200\",\"arcs\":[[-8954,9095,-6027,-6215,-5983,-9020]]},{\"type\":\"Polygon\",\"id\":\"023404\",\"arcs\":[[-8963,9096,-9093,-6105,-9036,9097]]},{\"type\":\"Polygon\",\"id\":\"023405\",\"arcs\":[[-8964,-9098,-9035]]},{\"type\":\"Polygon\",\"id\":\"940100\",\"arcs\":[[-8613,-5735,-9066]]},{\"type\":\"Polygon\",\"id\":\"990000\",\"arcs\":[[9098,-8998,-9092,-8987,9099,-8992,-9061,9100]]},{\"type\":\"Polygon\",\"id\":\"023300\",\"arcs\":[[-9032,-6278,-5946,-6028,-9096,-8953,-9088,-8999]]},{\"type\":\"Polygon\",\"id\":\"022601\",\"arcs\":[[9101,-9053,9102,-9082]]},{\"type\":\"Polygon\",\"id\":\"022100\",\"arcs\":[[9103,-9024,-9025,9104]]},{\"type\":\"Polygon\",\"id\":\"024002\",\"arcs\":[[-9063,9105]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[-9083,-9103,-9052,-8972,-9076,9106]]},{\"type\":\"Polygon\",\"id\":\"022602\",\"arcs\":[[-9081,9107,-9069,-9014,-9022,-9104,9108,-9048,-9102]]},{\"type\":\"Polygon\",\"id\":\"940001\",\"arcs\":[[-9079,-9040,-9057]]},{\"type\":\"Polygon\",\"id\":\"024501\",\"arcs\":[[-9059,-9054,9109]]},{\"type\":\"Polygon\",\"id\":\"021400\",\"arcs\":[[9110,-9044,9111]]},{\"type\":\"Polygon\",\"id\":\"021100\",\"arcs\":[[-9077,-9091,9112]]},{\"type\":\"Polygon\",\"id\":\"021000\",\"arcs\":[[-9051,-9112,-9043,-8982,-8974]]},{\"type\":\"Polygon\",\"id\":\"024301\",\"arcs\":[[-9100,-8986]]},{\"type\":\"Polygon\",\"id\":\"022000\",\"arcs\":[[-9049,-9109,-9105,-9027,-5989,9113]]},{\"type\":\"Polygon\",\"id\":\"022711\",\"arcs\":[[-8977,-9037,-6275,-9031,-9070,-9108,-9080]]},{\"type\":\"Polygon\",\"id\":\"024101\",\"arcs\":[[9114,-9064,-9106,-9068,-8956,-9017,-8995]]},{\"type\":\"Polygon\",\"id\":\"021700\",\"arcs\":[[-9045,-9111,-9050,-9114,-6272,9115,-9089]]},{\"type\":\"Polygon\",\"id\":\"023902\",\"arcs\":[[-9094,-9097,-8962,-9009,9116]]},{\"type\":\"Polygon\",\"id\":\"020100\",\"arcs\":[[-9084,-9107,-9075,9117]]},{\"type\":\"Polygon\",\"id\":\"023800\",\"arcs\":[[-9095,-9117,-9008,-9062,-9003]]},{\"type\":\"Polygon\",\"id\":\"970300\",\"arcs\":[[9118,9119]]},{\"type\":\"Polygon\",\"id\":\"970601\",\"arcs\":[[9120,9121,9122,-9120,9123,9124,9125,9126]]},{\"type\":\"Polygon\",\"id\":\"970602\",\"arcs\":[[9127,-9125,9128,9129,9130,9131,9132]]},{\"type\":\"Polygon\",\"id\":\"970700\",\"arcs\":[[-9126,-9128,9133,9134,9135]]},{\"type\":\"Polygon\",\"id\":\"970200\",\"arcs\":[[9136,-9127,-9136,9137,9138,-6359]]},{\"type\":\"Polygon\",\"id\":\"971000\",\"arcs\":[[9139,9140,-5444,-5424,-5526,-5400,9141]]},{\"type\":\"Polygon\",\"id\":\"970500\",\"arcs\":[[9142,9143,9144,-9129,-9124,9145,-9122]]},{\"type\":\"Polygon\",\"id\":\"970100\",\"arcs\":[[-6358,-6349,-6369,9146,-9143,-9121,-9137]]},{\"type\":\"Polygon\",\"id\":\"970900\",\"arcs\":[[-4023,-5404,-5445,-9141,9147]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[9148,9149,-6300,-6304,-2976,-2950,-2941,9150]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[9151,-43,9152,9153,-9149]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[-9154,9154,9155,-4110,-6314,-6317,-6301,-9150]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[9156,9157,9158,9159,9160]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[9161,9162,9163,9164,9165,9166,9167]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[9168,9169,9170,9171,9172,9173,-8836,-8854,-8857,-3674]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[-8668,-8661,-44,-9152,-9151,-2940,9174]]},{\"type\":\"Polygon\",\"id\":\"010700\",\"arcs\":[[9175,-9170]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[-3699,-3600,9176,-9168,-9171,-9176,-9169,-3673]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[9177,-9158,9178]]},{\"type\":\"Polygon\",\"id\":\"010900\",\"arcs\":[[9179,9180,9181,-9172,-9167]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[9182,9183,9184,9185]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[-9161,9186,9187,9188]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[-9160,9189,9190,9191,9192,9193,-9187]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[-3688,9194,-9179,-9157,-9189,9195,9196,-3728]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[9197,9198,9199]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-9196,9200,-9198,9201]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[-3581,-3729,-9197,-9202,-9200,9202,9203,9204,-9162,-9177,-3599]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[-9199,-9201,-9188,-9194,9205,9206,-9203]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[-9206,-9193,9207,9208,-9184,9209]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[-9204,-9207,-9210,-9183,9210,9211]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[-9211,-9186,9212,9213,9214,-9164,9215]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[-9205,-9212,-9216,-9163]]},{\"type\":\"Polygon\",\"id\":\"970801\",\"arcs\":[[-9132,9216,-4026,-4024,-9148,-9140,9217]]},{\"type\":\"Polygon\",\"id\":\"970802\",\"arcs\":[[-9133,-9218,-9142,-5399,9218,-9134]]},{\"type\":\"Polygon\",\"id\":\"970400\",\"arcs\":[[-9123,-9146,-9119]]},{\"type\":\"Polygon\",\"id\":\"030900\",\"arcs\":[[9219]]},{\"type\":\"Polygon\",\"id\":\"031400\",\"arcs\":[[9220]]},{\"type\":\"Polygon\",\"id\":\"031000\",\"arcs\":[[9221,9222]]},{\"type\":\"Polygon\",\"id\":\"031100\",\"arcs\":[[-3963,-3982,9223,9224,9225,9226,9227,9228]]},{\"type\":\"Polygon\",\"id\":\"030400\",\"arcs\":[[9229,9230,9231]]},{\"type\":\"Polygon\",\"id\":\"030500\",\"arcs\":[[9232,-9230,9233]]},{\"type\":\"Polygon\",\"id\":\"030202\",\"arcs\":[[9234,-9234,-9232,9235,9236,9237,-2096,9238,9239,-9228,9240]]},{\"type\":\"Polygon\",\"id\":\"031200\",\"arcs\":[[9241,9242,9243,-4223,-4196,-4206,9244]]},{\"type\":\"Polygon\",\"id\":\"030600\",\"arcs\":[[-2095,-2082,-3971,-3959,9245,-9239]]},{\"type\":\"Polygon\",\"id\":\"030700\",\"arcs\":[[-9246,-3964,-9229,-9240]]},{\"type\":\"Polygon\",\"id\":\"030300\",\"arcs\":[[9246,-9237,9247]]},{\"type\":\"Polygon\",\"id\":\"030800\",\"arcs\":[[9248,9249,9250,-9241,-9227,9251,-9223,9252,-9243,9253],[-9220]]},{\"type\":\"Polygon\",\"id\":\"031300\",\"arcs\":[[-9252,-9226,9254,9255,-4219,-9244,-9253,-9222],[-9221]]},{\"type\":\"Polygon\",\"id\":\"030201\",\"arcs\":[[9256,-9248,-9236,-9231,-9233,-9235,-9251,9257,-8610]]},{\"type\":\"Polygon\",\"id\":\"030100\",\"arcs\":[[-1534,-2097,-9238,-9247,-9257,-8609,-8586]]},{\"type\":\"Polygon\",\"id\":\"158709\",\"arcs\":[[9258,9259,9260,9261,9262]]},{\"type\":\"Polygon\",\"id\":\"158708\",\"arcs\":[[9263,9264,-9263,9265,9266,9267]]},{\"type\":\"Polygon\",\"id\":\"158710\",\"arcs\":[[9268,9269,9270,9271,9272,9273,9274,-9259,-9265]]},{\"type\":\"Polygon\",\"id\":\"158605\",\"arcs\":[[9275,9276,9277,9278,9279,9280,9281]]},{\"type\":\"Polygon\",\"id\":\"158606\",\"arcs\":[[9282,9283,9284,-9277,9285]]},{\"type\":\"Polygon\",\"id\":\"158607\",\"arcs\":[[9286,9287,9288,-9278,-9285]]},{\"type\":\"Polygon\",\"id\":\"158608\",\"arcs\":[[9289,9290,9291,9292,9293,9294]]},{\"type\":\"Polygon\",\"id\":\"158711\",\"arcs\":[[9295,9296,9297,9298,9299]]},{\"type\":\"Polygon\",\"id\":\"159102\",\"arcs\":[[9300,9301,9302,9303,9304,9305]]},{\"type\":\"Polygon\",\"id\":\"052203\",\"arcs\":[[9306,9307,9308,9309,9310]]},{\"type\":\"Polygon\",\"id\":\"052204\",\"arcs\":[[9311,9312,-9310,9313,9314,9315]]},{\"type\":\"Polygon\",\"id\":\"041400\",\"arcs\":[[9316,9317,9318,9319,9320,9321,9322,9323]]},{\"type\":\"Polygon\",\"id\":\"740700\",\"arcs\":[[9324,-3821,-4408,-4371,9325,9326,9327]]},{\"type\":\"Polygon\",\"id\":\"740100\",\"arcs\":[[9328,-8711,-3822,-9325,9329]]},{\"type\":\"Polygon\",\"id\":\"041300\",\"arcs\":[[-9322,9330,9331,9332,9333]]},{\"type\":\"Polygon\",\"id\":\"041200\",\"arcs\":[[-9332,9334,9335,9336]]},{\"type\":\"Polygon\",\"id\":\"740500\",\"arcs\":[[9337,9338,9339,9340,9341,9342,-4030,9343]]},{\"type\":\"Polygon\",\"id\":\"740300\",\"arcs\":[[9344,-9341]]},{\"type\":\"Polygon\",\"id\":\"158803\",\"arcs\":[[9345,9346,9347,9348,-9288]]},{\"type\":\"Polygon\",\"id\":\"158804\",\"arcs\":[[9349,-9305,9350,9351,9352,-9348]]},{\"type\":\"Polygon\",\"id\":\"158319\",\"arcs\":[[9353,9354,9355,9356]]},{\"type\":\"Polygon\",\"id\":\"041000\",\"arcs\":[[9357,9358,9359,-4324,-4381,-4356]]},{\"type\":\"Polygon\",\"id\":\"040900\",\"arcs\":[[-4338,9360,9361,9362,-9358,-4355]]},{\"type\":\"Polygon\",\"id\":\"040800\",\"arcs\":[[-4337,9363,-9361]]},{\"type\":\"Polygon\",\"id\":\"040700\",\"arcs\":[[-4412,9364,9365,-9333,-9337,9366,-9362,-9364,-4336]]},{\"type\":\"Polygon\",\"id\":\"740200\",\"arcs\":[[-9330,-9328,9367,-9342,-9345,-9340,9368]]},{\"type\":\"Polygon\",\"id\":\"740400\",\"arcs\":[[-8684,-8682,-8712,-9329,-9369,-9339,9369,9370]]},{\"type\":\"Polygon\",\"id\":\"740800\",\"arcs\":[[-9326,-4374,-4440,-3891,-3904,-3990,-4013,9371]]},{\"type\":\"Polygon\",\"id\":\"740600\",\"arcs\":[[-9368,-9327,-9372,-4012,-4031,-9343]]},{\"type\":\"Polygon\",\"id\":\"158320\",\"arcs\":[[9372,9373,9374,-9354,9375]]},{\"type\":\"Polygon\",\"id\":\"158116\",\"arcs\":[[9376,9377,9378,9379,9380]]},{\"type\":\"Polygon\",\"id\":\"158318\",\"arcs\":[[9381,9382,9383]]},{\"type\":\"Polygon\",\"id\":\"159000\",\"arcs\":[[9384,9385,9386,9387]]},{\"type\":\"Polygon\",\"id\":\"158511\",\"arcs\":[[9388,9389,9390,-9282,9391,9392,9393]]},{\"type\":\"Polygon\",\"id\":\"158512\",\"arcs\":[[-9393,9394,9395]]},{\"type\":\"Polygon\",\"id\":\"158712\",\"arcs\":[[9396,9397,9398,-9346,-9287,-9284,-9299]]},{\"type\":\"Polygon\",\"id\":\"158403\",\"arcs\":[[9399,9400,-9269,-9264,9401]]},{\"type\":\"Polygon\",\"id\":\"124101\",\"arcs\":[[9402,9403,9404,9405,9406]]},{\"type\":\"Polygon\",\"id\":\"122602\",\"arcs\":[[9407,9408,9409,9410]]},{\"type\":\"Polygon\",\"id\":\"122601\",\"arcs\":[[9411,9412,9413,-9411,9414,9415]]},{\"type\":\"Polygon\",\"id\":\"040600\",\"arcs\":[[9416,-9334,-9366]]},{\"type\":\"Polygon\",\"id\":\"040500\",\"arcs\":[[-9323,-9417,9417]]},{\"type\":\"Polygon\",\"id\":\"040400\",\"arcs\":[[-9324,-9418,-9365,-4411,9418]]},{\"type\":\"Polygon\",\"id\":\"040300\",\"arcs\":[[9419,-9317,-9419,-4410,-4422]]},{\"type\":\"Polygon\",\"id\":\"040200\",\"arcs\":[[9420,-9318,-9420,-4421]]},{\"type\":\"Polygon\",\"id\":\"040100\",\"arcs\":[[-4117,-4112,-4116,9421,-9319,-9421,-4420]]},{\"type\":\"Polygon\",\"id\":\"123802\",\"arcs\":[[-9404,9422,9423,9424,9425,9426]]},{\"type\":\"Polygon\",\"id\":\"124602\",\"arcs\":[[9427,9428,9429,9430,9431]]},{\"type\":\"Polygon\",\"id\":\"124601\",\"arcs\":[[9432,-9431,9433,9434]]},{\"type\":\"Polygon\",\"id\":\"158205\",\"arcs\":[[9435,9436,9437,9438]]},{\"type\":\"Polygon\",\"id\":\"158310\",\"arcs\":[[9439,-9402,-9268,9440,9441,9442]]},{\"type\":\"Polygon\",\"id\":\"158315\",\"arcs\":[[9443,9444,9445,-9374]]},{\"type\":\"Polygon\",\"id\":\"158317\",\"arcs\":[[9446,-9384,9447,9448,9449,9450]]},{\"type\":\"Polygon\",\"id\":\"158402\",\"arcs\":[[9451,9452,9453,9454,9455]]},{\"type\":\"Polygon\",\"id\":\"052603\",\"arcs\":[[9456,9457,-3449,9458]]},{\"type\":\"Polygon\",\"id\":\"052503\",\"arcs\":[[-4269,9459]]},{\"type\":\"Polygon\",\"id\":\"052502\",\"arcs\":[[9460,-9315,9461,9462,9463,-3494,-3436,9464,9465]]},{\"type\":\"Polygon\",\"id\":\"158604\",\"arcs\":[[-9281,9466,9467,9468,9469]]},{\"type\":\"Polygon\",\"id\":\"158802\",\"arcs\":[[9470,-9387,9471,9472,9473,-9352]]},{\"type\":\"Polygon\",\"id\":\"158900\",\"arcs\":[[-9351,-9304,-9388,-9471]]},{\"type\":\"Polygon\",\"id\":\"159103\",\"arcs\":[[9474,9475,9476,-9301]]},{\"type\":\"Polygon\",\"id\":\"052303\",\"arcs\":[[9477,-9311,-9313,9478,9479]]},{\"type\":\"Polygon\",\"id\":\"051702\",\"arcs\":[[9480]]},{\"type\":\"Polygon\",\"id\":\"051800\",\"arcs\":[[9481,9482,9483,9484,9485,9486,9487]]},{\"type\":\"Polygon\",\"id\":\"052101\",\"arcs\":[[-9486,9488,9489,9490,9491,9492]]},{\"type\":\"Polygon\",\"id\":\"052501\",\"arcs\":[[-4270,-9460,-4268,9493,-9465,-3435,-3443,-4447]]},{\"type\":\"Polygon\",\"id\":\"052004\",\"arcs\":[[9494,9495,9496,9497,-9335,-9331,9498]]},{\"type\":\"Polygon\",\"id\":\"052003\",\"arcs\":[[9499,-9488,9500,-9499,-9321]]},{\"type\":\"Polygon\",\"id\":\"051902\",\"arcs\":[[9501,-9482,-9500,-9320,-9422,-4115,-4181]]},{\"type\":\"Polygon\",\"id\":\"051901\",\"arcs\":[[-4127,-4123,9502,9503,-9483,-9502,-4180,-4182]]},{\"type\":\"Polygon\",\"id\":\"051600\",\"arcs\":[[-4275,9504,9505,9506,-4359]]},{\"type\":\"Polygon\",\"id\":\"051500\",\"arcs\":[[-4392,-4360,-9507,9507,9508,-4368]]},{\"type\":\"Polygon\",\"id\":\"052201\",\"arcs\":[[9509,-9496,9510,-9492,9511,-9307,-9478]]},{\"type\":\"Polygon\",\"id\":\"052301\",\"arcs\":[[-4325,-9360,9512,-9479,-9312,9513,9514,-9505,-4274]]},{\"type\":\"Polygon\",\"id\":\"158007\",\"arcs\":[[9515,9516,9517,9518,9519]]},{\"type\":\"Polygon\",\"id\":\"158202\",\"arcs\":[[9520,9521,9522,-9438,9523,9524,9525,9526]]},{\"type\":\"Polygon\",\"id\":\"041100\",\"arcs\":[[-9367,-9336,-9498,9527,-9359,-9363]]},{\"type\":\"Polygon\",\"id\":\"052602\",\"arcs\":[[9528,-9463]]},{\"type\":\"Polygon\",\"id\":\"052601\",\"arcs\":[[-9529,-9462,-9314,-9309,-9459,-3453,-3491,-9464]]},{\"type\":\"Polygon\",\"id\":\"052304\",\"arcs\":[[-9497,-9510,-9480,-9513,-9528]]},{\"type\":\"Polygon\",\"id\":\"051701\",\"arcs\":[[9529,9530,9531,-9489,-9485,9532],[-9481]]},{\"type\":\"Polygon\",\"id\":\"158009\",\"arcs\":[[9533,9534,9535,-9518]]},{\"type\":\"Polygon\",\"id\":\"158203\",\"arcs\":[[9536,-9521,9537]]},{\"type\":\"Polygon\",\"id\":\"158206\",\"arcs\":[[9538,9539,-9522,-9537]]},{\"type\":\"Polygon\",\"id\":\"158207\",\"arcs\":[[9540,-9439,-9523,-9540,9541,9542]]},{\"type\":\"Polygon\",\"id\":\"158304\",\"arcs\":[[-9450,9543,9544,9545,-9436,-9541,9546]]},{\"type\":\"Polygon\",\"id\":\"158306\",\"arcs\":[[-9437,-9546,9547,9548,-9444,-9373,9549,-9524]]},{\"type\":\"Polygon\",\"id\":\"052404\",\"arcs\":[[-4369,-9509,9550,9551,-9466,-9494,-4267]]},{\"type\":\"Polygon\",\"id\":\"052403\",\"arcs\":[[-9506,-9515,9552,-9551,-9508]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[-8944,9553,9554,-328,9555,9556,9557,-8946]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[9558,9559,-329,-9555,9560]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[9561,-9561,-9554,-8943]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[9562,9563,-292,-325,-9560,9564]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[9565,9566,9567,-9565,-9559,-9562,-8942,9568]]},{\"type\":\"Polygon\",\"id\":\"158308\",\"arcs\":[[-9550,-9376,-9357,9569,9570,-9525]]},{\"type\":\"Polygon\",\"id\":\"158309\",\"arcs\":[[-9445,9571,-9442,9572,9573,9574]]},{\"type\":\"Polygon\",\"id\":\"158321\",\"arcs\":[[-9375,-9446,-9575,9575,-9377,9576,-9355]]},{\"type\":\"Polygon\",\"id\":\"158401\",\"arcs\":[[-9383,9577,9578,-9454,9579,9580,-9400,-9440,9581,-9448]]},{\"type\":\"Polygon\",\"id\":\"052402\",\"arcs\":[[-9514,-9316,-9461,-9552,-9553]]},{\"type\":\"Polygon\",\"id\":\"052002\",\"arcs\":[[-9487,-9493,-9511,-9495,-9501]]},{\"type\":\"Polygon\",\"id\":\"052103\",\"arcs\":[[-9512,-9491,9582,9583,-9457,-9308]]},{\"type\":\"Polygon\",\"id\":\"052102\",\"arcs\":[[-9532,9584,-9583,-9490]]},{\"type\":\"Polygon\",\"id\":\"158405\",\"arcs\":[[9585,-9271,9586,9587,-9580,-9453]]},{\"type\":\"Polygon\",\"id\":\"158407\",\"arcs\":[[9588,-9578,-9382,-9447,9589]]},{\"type\":\"Polygon\",\"id\":\"158408\",\"arcs\":[[-9455,-9579,-9589,9590]]},{\"type\":\"Polygon\",\"id\":\"158502\",\"arcs\":[[9591,-9395,-9392,-9470,9592,-9295,9593,9594,9595]]},{\"type\":\"Polygon\",\"id\":\"158505\",\"arcs\":[[9596,-9394,-9396,-9592,9597,9598,9599,9600]]},{\"type\":\"Polygon\",\"id\":\"158507\",\"arcs\":[[9601,9602,9603,9604,9605,9606]]},{\"type\":\"Polygon\",\"id\":\"158508\",\"arcs\":[[-9606,9607,9608,-9286,-9276,-9391,9609]]},{\"type\":\"Polygon\",\"id\":\"158609\",\"arcs\":[[-9593,-9469,9610,-9290]]},{\"type\":\"Polygon\",\"id\":\"158704\",\"arcs\":[[-9576,-9574,9611,-9296,9612,9613,-9378]]},{\"type\":\"Polygon\",\"id\":\"158705\",\"arcs\":[[-9441,-9267,9614,-9297,-9612,-9573]]},{\"type\":\"Polygon\",\"id\":\"158509\",\"arcs\":[[-9379,-9614,9615,-9608,-9605,9616]]},{\"type\":\"Polygon\",\"id\":\"158510\",\"arcs\":[[-9613,-9300,-9283,-9609,-9616]]},{\"type\":\"Polygon\",\"id\":\"158707\",\"arcs\":[[-9266,-9262,9617,-9397,-9298,-9615]]},{\"type\":\"Polygon\",\"id\":\"020102\",\"arcs\":[[9618,9619,9620,9621,9622,9623,9624]]},{\"type\":\"Polygon\",\"id\":\"020705\",\"arcs\":[[9625,9626,9627,9628]]},{\"type\":\"Polygon\",\"id\":\"980002\",\"arcs\":[[9629,9630,9631,-3015,-3002,9632,9633,-9619,9634,9635]]},{\"type\":\"Polygon\",\"id\":\"022400\",\"arcs\":[[9636,9637,9638,9639]]},{\"type\":\"Polygon\",\"id\":\"025200\",\"arcs\":[[9640,9641,9642,9643,9644,9645]]},{\"type\":\"Polygon\",\"id\":\"025002\",\"arcs\":[[9646,9647,9648]]},{\"type\":\"Polygon\",\"id\":\"023300\",\"arcs\":[[9649,9650,9651]]},{\"type\":\"Polygon\",\"id\":\"023502\",\"arcs\":[[9652,9653,9654,9655,-9641,9656,9657]]},{\"type\":\"Polygon\",\"id\":\"023501\",\"arcs\":[[9658,9659,-9642,-9656]]},{\"type\":\"Polygon\",\"id\":\"025001\",\"arcs\":[[-9657,-9646,9660,9661,9662,-9647,9663,9664]]},{\"type\":\"Polygon\",\"id\":\"024400\",\"arcs\":[[-8593,9665,9666,9667,9668,9669,9670]]},{\"type\":\"Polygon\",\"id\":\"022800\",\"arcs\":[[9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682]]},{\"type\":\"Polygon\",\"id\":\"023000\",\"arcs\":[[9683,-9679,9684,-9658,-9665,9685,9686,9687,-9681]]},{\"type\":\"Polygon\",\"id\":\"024700\",\"arcs\":[[-9682,-9688,9688,-6340,-6338,-6343,9689]]},{\"type\":\"Polygon\",\"id\":\"024900\",\"arcs\":[[-9689,-9687,9690,9691,-6362,-6335,9692,-6333,-6341]]},{\"type\":\"Polygon\",\"id\":\"021702\",\"arcs\":[[-9644,9693,9694,9695,9696,9697]]},{\"type\":\"Polygon\",\"id\":\"021701\",\"arcs\":[[9698,-9628,9699,9700,9701,-9696]]},{\"type\":\"Polygon\",\"id\":\"023200\",\"arcs\":[[9702,-9636,9703,-9652,9704,-9659,-9655]]},{\"type\":\"Polygon\",\"id\":\"021602\",\"arcs\":[[9705,9706,-9631,9707]]},{\"type\":\"Polygon\",\"id\":\"021500\",\"arcs\":[[9708,9709,9710,9711,9712]]},{\"type\":\"Polygon\",\"id\":\"026500\",\"arcs\":[[9713,-9624,9714,9715,9716,9717]]},{\"type\":\"Polygon\",\"id\":\"021402\",\"arcs\":[[-9704,-9635,-9625,-9714,9718,-9650]]},{\"type\":\"Polygon\",\"id\":\"021601\",\"arcs\":[[9719,-3012,-9632,-9707]]},{\"type\":\"Polygon\",\"id\":\"021303\",\"arcs\":[[9720,9721,9722,9723,9724]]},{\"type\":\"Polygon\",\"id\":\"021302\",\"arcs\":[[9725,9726,9727,9728,-9723,9729]]},{\"type\":\"Polygon\",\"id\":\"021301\",\"arcs\":[[-9724,-9729,9730,-3000,9731]]},{\"type\":\"Polygon\",\"id\":\"021401\",\"arcs\":[[9732,9733,9734,-9716]]},{\"type\":\"Polygon\",\"id\":\"021202\",\"arcs\":[[9735,-9721,9736,-9712]]},{\"type\":\"Polygon\",\"id\":\"021201\",\"arcs\":[[9737,9738,-9730,-9722,-9736,-9711]]},{\"type\":\"Polygon\",\"id\":\"021102\",\"arcs\":[[-9734,9739,9740,9741,9742]]},{\"type\":\"Polygon\",\"id\":\"021101\",\"arcs\":[[9743,9744,-9741,9745]]},{\"type\":\"Polygon\",\"id\":\"021000\",\"arcs\":[[-9621,9746,-9726,-9739,9747]]},{\"type\":\"Polygon\",\"id\":\"021103\",\"arcs\":[[-9717,-9735,-9743,-9629,-9699,-9695,9748]]},{\"type\":\"Polygon\",\"id\":\"020900\",\"arcs\":[[-9715,-9623,9749,-9746,-9740,-9733]]},{\"type\":\"Polygon\",\"id\":\"020803\",\"arcs\":[[-9634,9750,-9727,-9747,-9620]]},{\"type\":\"Polygon\",\"id\":\"020802\",\"arcs\":[[-9633,-3001,-9731,-9728,-9751]]},{\"type\":\"Polygon\",\"id\":\"024000\",\"arcs\":[[9751,-2954,9752,9753,9754]]},{\"type\":\"Polygon\",\"id\":\"024800\",\"arcs\":[[-6334,-9693]]},{\"type\":\"Polygon\",\"id\":\"025700\",\"arcs\":[[9755,-6370,-6347,9756]]},{\"type\":\"Polygon\",\"id\":\"020300\",\"arcs\":[[-9622,-9748,-9738,-9710,9757,-9744,-9750]]},{\"type\":\"Polygon\",\"id\":\"022702\",\"arcs\":[[-9668,9758,9759,9760,9761,9762,9763,9764,9765,-9672,9766]]},{\"type\":\"Polygon\",\"id\":\"022701\",\"arcs\":[[9767,9768,-9638,9769,9770,-9764]]},{\"type\":\"Polygon\",\"id\":\"022500\",\"arcs\":[[-9639,-9769,9771,-9675,9772,9773]]},{\"type\":\"Polygon\",\"id\":\"025900\",\"arcs\":[[-9684,-9680]]},{\"type\":\"Polygon\",\"id\":\"022200\",\"arcs\":[[-9637,9774,9775,-9770]]},{\"type\":\"Polygon\",\"id\":\"022100\",\"arcs\":[[-9765,-9771,-9776,9776,9777]]},{\"type\":\"Polygon\",\"id\":\"022000\",\"arcs\":[[-9778,9778,9779,-9673,-9766]]},{\"type\":\"Polygon\",\"id\":\"021900\",\"arcs\":[[-9780,9780,-9773,-9674]]},{\"type\":\"Polygon\",\"id\":\"025500\",\"arcs\":[[9781,9782,-2975,9783,9784,-9662]]},{\"type\":\"Polygon\",\"id\":\"025100\",\"arcs\":[[-9697,-9702,9785,9786]]},{\"type\":\"Polygon\",\"id\":\"025400\",\"arcs\":[[9787,-9725,-9732,-3006,-9783,9788,-9786,-9701]]},{\"type\":\"Polygon\",\"id\":\"025300\",\"arcs\":[[-9698,-9787,-9789,-9782,-9661,-9645]]},{\"type\":\"Polygon\",\"id\":\"024301\",\"arcs\":[[9789,-9760,9790]]},{\"type\":\"Polygon\",\"id\":\"025003\",\"arcs\":[[-9664,-9649,9791,-9691,-9686]]},{\"type\":\"Polygon\",\"id\":\"023702\",\"arcs\":[[9792,-9755,9793,9794,-9677,9795,-9762,9796]]},{\"type\":\"Polygon\",\"id\":\"980100\",\"arcs\":[[-9796,-9676,-9772,-9768,-9763]]},{\"type\":\"Polygon\",\"id\":\"023902\",\"arcs\":[[-9753,-2953,-2994,-3014,9797,9798]]},{\"type\":\"Polygon\",\"id\":\"023901\",\"arcs\":[[-9798,-3013,-9720,-9706,9799]]},{\"type\":\"Polygon\",\"id\":\"024500\",\"arcs\":[[-9670,9800,9801,9802]]},{\"type\":\"Polygon\",\"id\":\"025800\",\"arcs\":[[9803,-9784,-2974,9804,-6366,-9756]]},{\"type\":\"Polygon\",\"id\":\"023400\",\"arcs\":[[-9660,-9705,-9651,-9719,-9718,-9749,-9694,-9643]]},{\"type\":\"Polygon\",\"id\":\"024302\",\"arcs\":[[9805,-9791,-9759,-9667]]},{\"type\":\"Polygon\",\"id\":\"024200\",\"arcs\":[[-8602,9806,9807,9808,-8591]]},{\"type\":\"Polygon\",\"id\":\"024303\",\"arcs\":[[-9809,9809,-9797,-9761,-9790,-9806,-9666,-8592]]},{\"type\":\"Polygon\",\"id\":\"025600\",\"arcs\":[[-9792,-9648,-9663,-9785,-9804,-9757,-6346,-6363,-9692]]},{\"type\":\"Polygon\",\"id\":\"026200\",\"arcs\":[[-9794,-9754,-9799,-9800,-9708,-9630,-9703,-9654,9810],[9811]]},{\"type\":\"Polygon\",\"id\":\"026700\",\"arcs\":[[-9669,-9767,-9683,-9690,-6345,-6327,9812,-9801]]},{\"type\":\"Polygon\",\"id\":\"026100\",\"arcs\":[[-9795,-9811,-9653,-9685,-9678]]},{\"type\":\"Polygon\",\"id\":\"026300\",\"arcs\":[[-9777,-9775,-9640,-9774,-9781,-9779]]},{\"type\":\"Polygon\",\"id\":\"026400\",\"arcs\":[[-9745,-9758,-9709,9813,-9626,-9742]]},{\"type\":\"Polygon\",\"id\":\"024101\",\"arcs\":[[-2944,9814,-9807,-8601]]},{\"type\":\"Polygon\",\"id\":\"024102\",\"arcs\":[[-9815,-2943,-2949,-9752,-9793,-9810,-9808]]},{\"type\":\"Polygon\",\"id\":\"980003\",\"arcs\":[[-9627,-9814,-9713,-9737,-9788,-9700]]},{\"type\":\"Polygon\",\"id\":\"026600\",\"arcs\":[[-9812]]},{\"type\":\"Polygon\",\"id\":\"020201\",\"arcs\":[[9815,9816,9817,9818,9819]]},{\"type\":\"Polygon\",\"id\":\"020302\",\"arcs\":[[-9819,9820,9821,9822,-3988,-3973,9823,9824]]},{\"type\":\"Polygon\",\"id\":\"020202\",\"arcs\":[[-9820,-9825,9825,-1896,-2027,-1990,9826]]},{\"type\":\"Polygon\",\"id\":\"020402\",\"arcs\":[[9827,9828,9829,9830,-9817,9831]]},{\"type\":\"Polygon\",\"id\":\"020900\",\"arcs\":[[9832,9833,9834,9835,-9830,9836]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[9837,-3986,9838,-9822,9839]]},{\"type\":\"Polygon\",\"id\":\"020101\",\"arcs\":[[9840,9841,-1847,9842]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[-9836,9843,-9840,-9821,-9818,-9831]]},{\"type\":\"Polygon\",\"id\":\"020700\",\"arcs\":[[-3989,-9823,-9839]]},{\"type\":\"Polygon\",\"id\":\"021400\",\"arcs\":[[9844]]},{\"type\":\"Polygon\",\"id\":\"021800\",\"arcs\":[[9845]]},{\"type\":\"Polygon\",\"id\":\"021700\",\"arcs\":[[9846,9847,9848,9849,9850],[-9846]]},{\"type\":\"Polygon\",\"id\":\"021600\",\"arcs\":[[9851,9852,9853,-9851,9854,-9834,9855]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[-3947,9856,9857,9858]]},{\"type\":\"Polygon\",\"id\":\"021100\",\"arcs\":[[-9858,9859]]},{\"type\":\"Polygon\",\"id\":\"021000\",\"arcs\":[[-9855,-9850,-3948,-9859,-9860,-9857,-3954,-3987,-9838,-9844,-9835],[-9845]]},{\"type\":\"Polygon\",\"id\":\"021502\",\"arcs\":[[9860,-9852,9861,9862]]},{\"type\":\"Polygon\",\"id\":\"021501\",\"arcs\":[[-9862,-9856,-9833,9863,9864]]},{\"type\":\"Polygon\",\"id\":\"020800\",\"arcs\":[[-9864,-9837,-9829,9865,9866]]},{\"type\":\"Polygon\",\"id\":\"020401\",\"arcs\":[[-9866,-9828,-9841,9867]]},{\"type\":\"Polygon\",\"id\":\"990100\",\"arcs\":[[9868,9869,-9863,-9865,-9867,-9868,-9843,-1846,-1557,9870]]},{\"type\":\"Polygon\",\"id\":\"020102\",\"arcs\":[[-9832,-9816,-9827,-1989,-9842]]},{\"type\":\"Polygon\",\"id\":\"020301\",\"arcs\":[[-9824,-3976,-1785,-2070,-2065,-1897,-9826]]},{\"type\":\"Polygon\",\"id\":\"146615\",\"arcs\":[[9871,-9353,9872,9873,9874,9875]]},{\"type\":\"Polygon\",\"id\":\"145807\",\"arcs\":[[9876,9877,-9293,9878,9879]]},{\"type\":\"Polygon\",\"id\":\"145701\",\"arcs\":[[9880,9881,9882,9883,9884,9885,9886]]},{\"type\":\"Polygon\",\"id\":\"158107\",\"arcs\":[[9887,9888,-9601,9889,9890]]},{\"type\":\"Polygon\",\"id\":\"158006\",\"arcs\":[[-9519,-9536,-9891,9891,9892,9893]]},{\"type\":\"Polygon\",\"id\":\"110402\",\"arcs\":[[9894,9895,9896]]},{\"type\":\"Polygon\",\"id\":\"124002\",\"arcs\":[[9897,9898,9899,9900,9901]]},{\"type\":\"Polygon\",\"id\":\"124001\",\"arcs\":[[-9902,9902,9903,9904]]},{\"type\":\"Polygon\",\"id\":\"123900\",\"arcs\":[[9905,-9903,-9901,9906,-9407,9907,9908]]},{\"type\":\"Polygon\",\"id\":\"123401\",\"arcs\":[[9909,-9904,-9906,9910,9911]]},{\"type\":\"Polygon\",\"id\":\"020100\",\"arcs\":[[9912,-5414,-5411,-5507,9913,9914,9915]]},{\"type\":\"Polygon\",\"id\":\"135208\",\"arcs\":[[9916,9917,9918,9919]]},{\"type\":\"Polygon\",\"id\":\"159510\",\"arcs\":[[9920,9921,9922,9923,-9472,-9386,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938]]},{\"type\":\"Polygon\",\"id\":\"147004\",\"arcs\":[[9939,9940,9941,9942,9943,9944,9945,9946,9947,-9938,9948,9949,9950]]},{\"type\":\"Polygon\",\"id\":\"159105\",\"arcs\":[[9951,9952,-9306,-9350,9953]]},{\"type\":\"Polygon\",\"id\":\"134703\",\"arcs\":[[9954,9955,9956,9957,9958,9959]]},{\"type\":\"MultiPolygon\",\"id\":\"170202\",\"arcs\":[[[9960,9961]],[[9962,9963,9964,9965,9966]]]},{\"type\":\"Polygon\",\"id\":\"201100\",\"arcs\":[[9967,9968,9969,9970,9971,9972,9973]]},{\"type\":\"Polygon\",\"id\":\"146404\",\"arcs\":[[9974,9975,9976,9977,9978,9979,9980,9981]]},{\"type\":\"Polygon\",\"id\":\"146403\",\"arcs\":[[9982,9983,-9981]]},{\"type\":\"Polygon\",\"id\":\"146202\",\"arcs\":[[9984,9985,9986,9987,9988,9989]]},{\"type\":\"Polygon\",\"id\":\"145704\",\"arcs\":[[9990,-9975,9991,9992,-9884]]},{\"type\":\"Polygon\",\"id\":\"112104\",\"arcs\":[[9993,9994,9995,9996,9997,9998]]},{\"type\":\"Polygon\",\"id\":\"110801\",\"arcs\":[[9999,10000,10001,10002,10003,10004]]},{\"type\":\"Polygon\",\"id\":\"110101\",\"arcs\":[[10005,-10004,10006,10007,10008,-2881,-2876]]},{\"type\":\"Polygon\",\"id\":\"123202\",\"arcs\":[[10009,-9911,-9909,10010,10011,10012,10013]]},{\"type\":\"Polygon\",\"id\":\"123201\",\"arcs\":[[-10014,10014,-2567,-2308,10015]]},{\"type\":\"Polygon\",\"id\":\"122801\",\"arcs\":[[10016,10017,10018,10019,-9413,10020]]},{\"type\":\"Polygon\",\"id\":\"122707\",\"arcs\":[[10021,-10021,10022,10023]]},{\"type\":\"Polygon\",\"id\":\"124500\",\"arcs\":[[10024,10025,10026,10027,-9432,10028]]},{\"type\":\"Polygon\",\"id\":\"020703\",\"arcs\":[[10029,10030]]},{\"type\":\"Polygon\",\"id\":\"020701\",\"arcs\":[[10031,10032,10033,10034,-287,10035]]},{\"type\":\"Polygon\",\"id\":\"020402\",\"arcs\":[[10036,-5548,-5499,10037]]},{\"type\":\"Polygon\",\"id\":\"020702\",\"arcs\":[[-10035,10038,10039,-10031,10040,-330,-288]]},{\"type\":\"Polygon\",\"id\":\"159106\",\"arcs\":[[10041,-9475,-9953,10042,-9618]]},{\"type\":\"Polygon\",\"id\":\"159107\",\"arcs\":[[10043,-9954,-9347,-9399]]},{\"type\":\"Polygon\",\"id\":\"159108\",\"arcs\":[[-9398,-10043,-9952,-10044]]},{\"type\":\"Polygon\",\"id\":\"159201\",\"arcs\":[[10044,-9925,-9385,-9303]]},{\"type\":\"Polygon\",\"id\":\"122300\",\"arcs\":[[10045,10046,-9912,-10010,-10016,-2307,-2607,10047]]},{\"type\":\"Polygon\",\"id\":\"135303\",\"arcs\":[[10048,10049,10050,10051,10052]]},{\"type\":\"Polygon\",\"id\":\"145703\",\"arcs\":[[-9885,-9993,10053,-9990,10054]]},{\"type\":\"Polygon\",\"id\":\"146201\",\"arcs\":[[-9989,10055,10056,10057]]},{\"type\":\"Polygon\",\"id\":\"146105\",\"arcs\":[[10058,10059,-10057,10060,10061,10062,10063,10064]]},{\"type\":\"Polygon\",\"id\":\"134907\",\"arcs\":[[10065,10066,10067,10068,10069]]},{\"type\":\"Polygon\",\"id\":\"145901\",\"arcs\":[[10070,10071,10072,10073,-10017,10074]]},{\"type\":\"Polygon\",\"id\":\"145804\",\"arcs\":[[10075,-9880,10076,10077,-9976,-9991,-9883]]},{\"type\":\"Polygon\",\"id\":\"135005\",\"arcs\":[[10078,-9893,10079,10080]]},{\"type\":\"Polygon\",\"id\":\"158104\",\"arcs\":[[10081,10082,-9607,-9610,-9390,10083,10084]]},{\"type\":\"Polygon\",\"id\":\"158108\",\"arcs\":[[-9535,10085,10086,-10085,10087,-9888]]},{\"type\":\"Polygon\",\"id\":\"123600\",\"arcs\":[[10088,10089,-2932,-2654,10090]]},{\"type\":\"Polygon\",\"id\":\"020401\",\"arcs\":[[10091,10092,-10038,-5498,-5494,10093,10094]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[-10092,10095,10096]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[10097,10098,-10096,-10095,10099,-10039,-10034]]},{\"type\":\"Polygon\",\"id\":\"020300\",\"arcs\":[[10100,-9914,-5506,-5547,-5549,-10037,-10093,-10097,-10099]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[-9915,-10101,-10098,-10033,10101]]},{\"type\":\"Polygon\",\"id\":\"159203\",\"arcs\":[[-9302,10102,10103,-9926,-10045]]},{\"type\":\"Polygon\",\"id\":\"159204\",\"arcs\":[[10104,-9928,10105,-10103,-9477]]},{\"type\":\"Polygon\",\"id\":\"135104\",\"arcs\":[[10106,10107,10108,10109,10110]]},{\"type\":\"Polygon\",\"id\":\"134904\",\"arcs\":[[10111,10112,10113,-10053,10114,10115]]},{\"type\":\"Polygon\",\"id\":\"146204\",\"arcs\":[[-9988,10116,10117,-10061,-10056]]},{\"type\":\"Polygon\",\"id\":\"146001\",\"arcs\":[[-10065,10118,10119,10120,10121,10122]]},{\"type\":\"Polygon\",\"id\":\"145605\",\"arcs\":[[10123,-10059,10124,10125,-9969,10126]]},{\"type\":\"Polygon\",\"id\":\"145604\",\"arcs\":[[-10125,-10123,10127,10128]]},{\"type\":\"Polygon\",\"id\":\"146607\",\"arcs\":[[10129,10130,10131,10132,10133]]},{\"type\":\"Polygon\",\"id\":\"112001\",\"arcs\":[[10134,10135,10136,10137,10138]]},{\"type\":\"Polygon\",\"id\":\"123001\",\"arcs\":[[10139,10140,10141,10142,10143]]},{\"type\":\"Polygon\",\"id\":\"122902\",\"arcs\":[[-10142,10144,10145,10146]]},{\"type\":\"Polygon\",\"id\":\"111401\",\"arcs\":[[10147,10148,10149,10150]]},{\"type\":\"Polygon\",\"id\":\"158114\",\"arcs\":[[10151,-9571,10152,10153]]},{\"type\":\"Polygon\",\"id\":\"158001\",\"arcs\":[[-9542,-9539,-9538,10154,10155,10156]]},{\"type\":\"Polygon\",\"id\":\"158115\",\"arcs\":[[-10154,10157,10158,10159,-10082,-10087,10160]]},{\"type\":\"Polygon\",\"id\":\"159404\",\"arcs\":[[10161,10162,10163,10164,10165,10166,10167]]},{\"type\":\"Polygon\",\"id\":\"159406\",\"arcs\":[[10168,10169,10170,10171,10172,10173,-10164]]},{\"type\":\"Polygon\",\"id\":\"135402\",\"arcs\":[[-9600,10174,10175,10176]]},{\"type\":\"Polygon\",\"id\":\"135401\",\"arcs\":[[10177,-10176,10178,10179,10180,-10049,-10114]]},{\"type\":\"Polygon\",\"id\":\"134906\",\"arcs\":[[10181,10182,-10107,10183,-10068]]},{\"type\":\"Polygon\",\"id\":\"146606\",\"arcs\":[[10184,10185,-10133,10186,10187,10188,10189,-9978]]},{\"type\":\"Polygon\",\"id\":\"146703\",\"arcs\":[[-10018,-10074,10190]]},{\"type\":\"Polygon\",\"id\":\"147300\",\"arcs\":[[10191,10192,10193,-9944,10194,10195]]},{\"type\":\"Polygon\",\"id\":\"147200\",\"arcs\":[[10196,-10195,-9943,10197,10198]]},{\"type\":\"Polygon\",\"id\":\"123402\",\"arcs\":[[10199,-10146,10200,-9898,-9905,-9910,10201]]},{\"type\":\"Polygon\",\"id\":\"123102\",\"arcs\":[[10202,10203,10204,-10027,10205]]},{\"type\":\"Polygon\",\"id\":\"122802\",\"arcs\":[[10206,-10203,10207,-10019]]},{\"type\":\"Polygon\",\"id\":\"124102\",\"arcs\":[[10208,-9423,-9403,-9907]]},{\"type\":\"Polygon\",\"id\":\"124402\",\"arcs\":[[10209,-9425,10210,10211,-9434,-9430,10212,-9950,10213,-2933,-10090]]},{\"type\":\"Polygon\",\"id\":\"158110\",\"arcs\":[[10214,-9602,-10083,-10160]]},{\"type\":\"Polygon\",\"id\":\"158111\",\"arcs\":[[-10159,10215,-9603,-10215]]},{\"type\":\"Polygon\",\"id\":\"158112\",\"arcs\":[[-9380,-9617,-9604,-10216,10216]]},{\"type\":\"Polygon\",\"id\":\"159408\",\"arcs\":[[10217,10218,-10168,10219,10220,-9476,-10042,-9261]]},{\"type\":\"Polygon\",\"id\":\"159410\",\"arcs\":[[10221,10222,-10170,10223,-9273]]},{\"type\":\"Polygon\",\"id\":\"134704\",\"arcs\":[[10224,10225,-10070,10226,-9955]]},{\"type\":\"Polygon\",\"id\":\"134702\",\"arcs\":[[-10227,-10069,-10184,-10111,10227,10228,-9956]]},{\"type\":\"Polygon\",\"id\":\"135304\",\"arcs\":[[-10181,10229,10230,-10050]]},{\"type\":\"Polygon\",\"id\":\"147100\",\"arcs\":[[-10198,-9942,10231,10232,10233]]},{\"type\":\"Polygon\",\"id\":\"146003\",\"arcs\":[[10234,10235,-10196,-10197,10236,10237]]},{\"type\":\"Polygon\",\"id\":\"145903\",\"arcs\":[[10238,-10237,-10199,-10234,10239,-10072]]},{\"type\":\"Polygon\",\"id\":\"147902\",\"arcs\":[[10240,-9473,-9924,10241,10242]]},{\"type\":\"Polygon\",\"id\":\"145702\",\"arcs\":[[-9886,-10055,-10058,-10060,-10124,10243]]},{\"type\":\"Polygon\",\"id\":\"158506\",\"arcs\":[[-9598,-9596,10244]]},{\"type\":\"Polygon\",\"id\":\"146300\",\"arcs\":[[-9983,-9980,10245,10246,10247,-9986,10248]]},{\"type\":\"Polygon\",\"id\":\"146203\",\"arcs\":[[-9992,-9982,-9984,-10249,-9985,-10054]]},{\"type\":\"Polygon\",\"id\":\"124401\",\"arcs\":[[-9435,-10212,10249,10250]]},{\"type\":\"Polygon\",\"id\":\"124300\",\"arcs\":[[-10145,-10141,10251,-10029,-9433,-10251,-9899,-10201]]},{\"type\":\"Polygon\",\"id\":\"124200\",\"arcs\":[[-10250,-10211,-9424,-10209,-9900]]},{\"type\":\"Polygon\",\"id\":\"123500\",\"arcs\":[[10252,10253,-10091,-2653,10254]]},{\"type\":\"Polygon\",\"id\":\"122706\",\"arcs\":[[-10023,-9412,10255,10256,10257]]},{\"type\":\"Polygon\",\"id\":\"159505\",\"arcs\":[[-10221,10258,-9929,-10105]]},{\"type\":\"Polygon\",\"id\":\"159506\",\"arcs\":[[-10167,10259,10260,10261,10262,-9930,-10259,-10220]]},{\"type\":\"Polygon\",\"id\":\"135301\",\"arcs\":[[-10051,-10231,10263,-9881,10264,10265,10266]]},{\"type\":\"Polygon\",\"id\":\"135205\",\"arcs\":[[10267,-9920,10268,-9974,10269,10270,-9996,10271,10272]]},{\"type\":\"Polygon\",\"id\":\"135201\",\"arcs\":[[10273,10274,10275,-9917,-10268]]},{\"type\":\"Polygon\",\"id\":\"147503\",\"arcs\":[[10276,10277,10278,10279,-9939,-9948,10280]]},{\"type\":\"Polygon\",\"id\":\"112002\",\"arcs\":[[10281,-9998,10282,10283,10284,-10136]]},{\"type\":\"Polygon\",\"id\":\"145803\",\"arcs\":[[-10230,-10180,10285,-9877,-10076,-9882,-10264]]},{\"type\":\"Polygon\",\"id\":\"111900\",\"arcs\":[[10286,-10138,10287,10288,-2228,-2848,-2845,10289]]},{\"type\":\"Polygon\",\"id\":\"122705\",\"arcs\":[[-10256,-9416,10290]]},{\"type\":\"Polygon\",\"id\":\"122704\",\"arcs\":[[10291,10292,-10257,-10291,10293,10294]]},{\"type\":\"Polygon\",\"id\":\"158002\",\"arcs\":[[10295,-9520,-9894,-10079,10296,10297,-10156]]},{\"type\":\"Polygon\",\"id\":\"123801\",\"arcs\":[[-9426,-10210,-10089,10298]]},{\"type\":\"Polygon\",\"id\":\"159601\",\"arcs\":[[-10174,10299,-9933,10300,10301,10302,-10165]]},{\"type\":\"Polygon\",\"id\":\"159602\",\"arcs\":[[10303,-9934,-10300,-10173]]},{\"type\":\"Polygon\",\"id\":\"135103\",\"arcs\":[[-10228,-10110,10304,-10275,10305]]},{\"type\":\"Polygon\",\"id\":\"135102\",\"arcs\":[[-10229,-10306,-10274,10306]]},{\"type\":\"Polygon\",\"id\":\"135101\",\"arcs\":[[10307,-9957,-10307,-10273,10308,10309,10310]]},{\"type\":\"Polygon\",\"id\":\"112206\",\"arcs\":[[10311,10312,-10048,-2606,-2229,-10289]]},{\"type\":\"Polygon\",\"id\":\"110600\",\"arcs\":[[10313,10314,10315,-10001]]},{\"type\":\"Polygon\",\"id\":\"111402\",\"arcs\":[[-10149,10316,-10282,10317,10318]]},{\"type\":\"Polygon\",\"id\":\"111202\",\"arcs\":[[-10318,-10135,10319,10320]]},{\"type\":\"Polygon\",\"id\":\"111201\",\"arcs\":[[-10150,-10319,-10321,10321,10322]]},{\"type\":\"Polygon\",\"id\":\"111100\",\"arcs\":[[-10322,-10320,-10139,-10287,10323]]},{\"type\":\"Polygon\",\"id\":\"123702\",\"arcs\":[[-9405,-9427,-10299,-10254,10324]]},{\"type\":\"Polygon\",\"id\":\"123701\",\"arcs\":[[10325,10326,-10011,-9908,-9406,-10325,-10253]]},{\"type\":\"Polygon\",\"id\":\"158102\",\"arcs\":[[-9356,-9577,-9381,-10217,-10158,-10153,-9570]]},{\"type\":\"Polygon\",\"id\":\"158103\",\"arcs\":[[-10088,-10084,-9389,-9597,-9889]]},{\"type\":\"Polygon\",\"id\":\"170001\",\"arcs\":[[10327,10328,10329,10330,10331]]},{\"type\":\"Polygon\",\"id\":\"170002\",\"arcs\":[[10332,10333,10334,-10328,10335]]},{\"type\":\"Polygon\",\"id\":\"135004\",\"arcs\":[[-10297,-10081,10336,10337,-10112,10338,-10066,-10226,10339]]},{\"type\":\"Polygon\",\"id\":\"147001\",\"arcs\":[[10340,-9940,10341,10342,10343,10344]]},{\"type\":\"Polygon\",\"id\":\"146902\",\"arcs\":[[10345,-10342,-9951,-10213,-9429]]},{\"type\":\"Polygon\",\"id\":\"112204\",\"arcs\":[[-10137,-10285,10346,-10312,-10288]]},{\"type\":\"Polygon\",\"id\":\"110902\",\"arcs\":[[10347,10348,-10324,10349]]},{\"type\":\"Polygon\",\"id\":\"111001\",\"arcs\":[[10350,10351,10352,10353]]},{\"type\":\"Polygon\",\"id\":\"110901\",\"arcs\":[[10354,10355,-10353,10356,-10348,10357]]},{\"type\":\"Polygon\",\"id\":\"111002\",\"arcs\":[[10358,-10151,-10323,-10349,-10357,-10352]]},{\"type\":\"Polygon\",\"id\":\"110200\",\"arcs\":[[-10008,10359,-10355,10360]]},{\"type\":\"Polygon\",\"id\":\"111505\",\"arcs\":[[10361,10362,-10317,-10148,10363]]},{\"type\":\"Polygon\",\"id\":\"146106\",\"arcs\":[[10364,-10119,-10064]]},{\"type\":\"Polygon\",\"id\":\"990100\",\"arcs\":[[-9961,10365,-2908,-10214,-9949,-9937,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,-9967,10381,-10336,-10332,10382,10383,10384,10385,-9456,-9591,-9590,-9451,-9547,-9543,-10157,-10298,-10340,-10225,-9960,10386,-10005,-10006,-2912,10387]]},{\"type\":\"Polygon\",\"id\":\"159511\",\"arcs\":[[-10303,10388,-10260,-10166]]},{\"type\":\"Polygon\",\"id\":\"170101\",\"arcs\":[[10389,-9964]]},{\"type\":\"Polygon\",\"id\":\"170201\",\"arcs\":[[-9966,10390,10391,-10333,-10382]]},{\"type\":\"Polygon\",\"id\":\"159300\",\"arcs\":[[-9927,-10104,-10106]]},{\"type\":\"Polygon\",\"id\":\"146901\",\"arcs\":[[10392,-10343,-10346,-9428]]},{\"type\":\"Polygon\",\"id\":\"146800\",\"arcs\":[[10393,10394,-10344,-10393,-10028,-10205]]},{\"type\":\"Polygon\",\"id\":\"146704\",\"arcs\":[[-10191,-10073,10395,10396,-10207]]},{\"type\":\"Polygon\",\"id\":\"147804\",\"arcs\":[[10397,-10243,10398,10399,10400]]},{\"type\":\"Polygon\",\"id\":\"111300\",\"arcs\":[[10401,-9896,10402,10403,-10364,-10359,-10351,10404]]},{\"type\":\"Polygon\",\"id\":\"110401\",\"arcs\":[[10405,-9897,-10402,10406]]},{\"type\":\"Polygon\",\"id\":\"111506\",\"arcs\":[[10407,10408,10409,-9999,-10363]]},{\"type\":\"Polygon\",\"id\":\"111504\",\"arcs\":[[10410,10411,-10409,10412]]},{\"type\":\"Polygon\",\"id\":\"111704\",\"arcs\":[[10413,10414,10415]]},{\"type\":\"Polygon\",\"id\":\"159411\",\"arcs\":[[-10162,-10219,10416,10417]]},{\"type\":\"Polygon\",\"id\":\"135209\",\"arcs\":[[-9919,10418,-10265,-9887,-10244,-10127,-9968,-10269]]},{\"type\":\"Polygon\",\"id\":\"159509\",\"arcs\":[[10419,-9931,-10263]]},{\"type\":\"Polygon\",\"id\":\"158322\",\"arcs\":[[10420,-9548,-9545]]},{\"type\":\"Polygon\",\"id\":\"159407\",\"arcs\":[[-9275,10421,-10417,-10218,-9260]]},{\"type\":\"Polygon\",\"id\":\"159508\",\"arcs\":[[10422,-10301,-9932,-10420,-10262]]},{\"type\":\"Polygon\",\"id\":\"169701\",\"arcs\":[[10423,10424,-9586,-9452,-10386]]},{\"type\":\"Polygon\",\"id\":\"147701\",\"arcs\":[[10425,10426,10427,10428,-10187]]},{\"type\":\"Polygon\",\"id\":\"146605\",\"arcs\":[[-9291,-9611,-9468,10429,-10134,-10186,10430,10431]]},{\"type\":\"Polygon\",\"id\":\"146614\",\"arcs\":[[10432,-9876,10433,-9279]]},{\"type\":\"Polygon\",\"id\":\"146613\",\"arcs\":[[-10434,-9875,10434,10435,-9280]]},{\"type\":\"Polygon\",\"id\":\"110300\",\"arcs\":[[-10003,10436,-10407,-10405,-10354,-10356,-10360,-10007]]},{\"type\":\"Polygon\",\"id\":\"110502\",\"arcs\":[[10437,10438,-10404]]},{\"type\":\"Polygon\",\"id\":\"111703\",\"arcs\":[[10439,-9958,-10308,10440,-10416,10441,10442]]},{\"type\":\"Polygon\",\"id\":\"111701\",\"arcs\":[[10443,10444,-10442,-10415,10445,-10411,10446]]},{\"type\":\"Polygon\",\"id\":\"111602\",\"arcs\":[[-10443,10447,10448]]},{\"type\":\"Polygon\",\"id\":\"112103\",\"arcs\":[[-10272,-9995,10449,10450]]},{\"type\":\"Polygon\",\"id\":\"111804\",\"arcs\":[[10451,-10309,-10451,10452]]},{\"type\":\"Polygon\",\"id\":\"200901\",\"arcs\":[[10453,-10375,10454]]},{\"type\":\"Polygon\",\"id\":\"200902\",\"arcs\":[[10455,-10380,10456,10457,-10455,-10374,10458,10459]]},{\"type\":\"Polygon\",\"id\":\"190603\",\"arcs\":[[10460,10461,10462,10463]]},{\"type\":\"Polygon\",\"id\":\"169800\",\"arcs\":[[10464,10465,10466]]},{\"type\":\"Polygon\",\"id\":\"180300\",\"arcs\":[[-10390,-9963,-10381,-10456,10467,10468,-10391,-9965]]},{\"type\":\"Polygon\",\"id\":\"190401\",\"arcs\":[[10469,-10466,10470,10471,10472,10473,-10223]]},{\"type\":\"Polygon\",\"id\":\"190402\",\"arcs\":[[-10474,10474,-10464,10475,10476,10477,10478,-10171]]},{\"type\":\"Polygon\",\"id\":\"146612\",\"arcs\":[[-9467,-10436,10479,-10130,-10430]]},{\"type\":\"Polygon\",\"id\":\"146608\",\"arcs\":[[-10435,-9874,10480,-10401,-10131,-10480]]},{\"type\":\"Polygon\",\"id\":\"147702\",\"arcs\":[[-10428,10481,-9922,10482]]},{\"type\":\"Polygon\",\"id\":\"145805\",\"arcs\":[[10483,-9594,-9294,-9878,-10286]]},{\"type\":\"Polygon\",\"id\":\"111801\",\"arcs\":[[10484,10485,-10453,-10450,-9994,-10410,-10412,-10446]]},{\"type\":\"Polygon\",\"id\":\"111601\",\"arcs\":[[-10448,-10445,10486,-10315]]},{\"type\":\"Polygon\",\"id\":\"111503\",\"arcs\":[[-10447,-10413,-10408,-10362,-10439]]},{\"type\":\"Polygon\",\"id\":\"111803\",\"arcs\":[[10487,-10310,-10452,-10486]]},{\"type\":\"Polygon\",\"id\":\"111802\",\"arcs\":[[-10441,-10311,-10488,-10485,-10414]]},{\"type\":\"Polygon\",\"id\":\"112214\",\"arcs\":[[-10347,-10284,10488,10489,10490,-10313]]},{\"type\":\"Polygon\",\"id\":\"190604\",\"arcs\":[[-10462,10491,10492,-10370,10493]]},{\"type\":\"Polygon\",\"id\":\"169902\",\"arcs\":[[-10331,10494,-10472,10495,-10383]]},{\"type\":\"Polygon\",\"id\":\"190504\",\"arcs\":[[-10478,10496,-10367,-9936,10497]]},{\"type\":\"Polygon\",\"id\":\"159512\",\"arcs\":[[-10302,-10423,-10261,-10389]]},{\"type\":\"Polygon\",\"id\":\"190403\",\"arcs\":[[10498,-10492,-10461,-10475,-10473,-10495]]},{\"type\":\"Polygon\",\"id\":\"190502\",\"arcs\":[[-10477,10499,-10368,-10497]]},{\"type\":\"Polygon\",\"id\":\"147502\",\"arcs\":[[-10281,-9947,10500]]},{\"type\":\"Polygon\",\"id\":\"147501\",\"arcs\":[[-10277,-10501,-9946,10501,10502,10503]]},{\"type\":\"Polygon\",\"id\":\"134903\",\"arcs\":[[-10108,-10183,10504,-10115,-10052,-10267,10505]]},{\"type\":\"Polygon\",\"id\":\"112213\",\"arcs\":[[10506,-10293,10507,-10490,10508]]},{\"type\":\"Polygon\",\"id\":\"112212\",\"arcs\":[[10509,10510,-10509,-10489]]},{\"type\":\"Polygon\",\"id\":\"112211\",\"arcs\":[[-10270,-9973,10511,10512]]},{\"type\":\"Polygon\",\"id\":\"110501\",\"arcs\":[[-10002,-10316,-10487,-10444,-10438,-10403,-9895,-10406,-10437]]},{\"type\":\"Polygon\",\"id\":\"135403\",\"arcs\":[[-10175,-9599,-10245,-9595,-10484,-10179]]},{\"type\":\"Polygon\",\"id\":\"135003\",\"arcs\":[[-9892,-9890,-10177,10513,-10337,-10080]]},{\"type\":\"Polygon\",\"id\":\"169901\",\"arcs\":[[-10496,-10471,-10465,10514,10515,-10384]]},{\"type\":\"Polygon\",\"id\":\"158409\",\"arcs\":[[-9587,-9270,-9401,10516]]},{\"type\":\"Polygon\",\"id\":\"190601\",\"arcs\":[[-10476,-10463,-10494,-10369,-10500]]},{\"type\":\"Polygon\",\"id\":\"190704\",\"arcs\":[[10517,10518,-10459,-10373,10519,10520]]},{\"type\":\"Polygon\",\"id\":\"190705\",\"arcs\":[[10521,10522,-10371,-10493,-10499,-10330]]},{\"type\":\"Polygon\",\"id\":\"190706\",\"arcs\":[[-10335,10523,-10521,10524,-10522,-10329]]},{\"type\":\"Polygon\",\"id\":\"190707\",\"arcs\":[[-10392,-10469,10525,-10518,-10524,-10334]]},{\"type\":\"Polygon\",\"id\":\"146706\",\"arcs\":[[-10396,-10240,-10233,10526,-10345,-10395,10527]]},{\"type\":\"Polygon\",\"id\":\"146705\",\"arcs\":[[-10397,-10528,-10394,-10204]]},{\"type\":\"Polygon\",\"id\":\"147803\",\"arcs\":[[-10400,10528,-10426,-10132]]},{\"type\":\"Polygon\",\"id\":\"147802\",\"arcs\":[[-10529,-10399,-10242,-9923,-10482,-10427]]},{\"type\":\"Polygon\",\"id\":\"146604\",\"arcs\":[[-10078,10529,-10431,-10185,-9977]]},{\"type\":\"Polygon\",\"id\":\"145603\",\"arcs\":[[10530,-10128,10531,-10075,-10022,10532,-9971]]},{\"type\":\"Polygon\",\"id\":\"145602\",\"arcs\":[[-10126,-10129,-10531,-9970]]},{\"type\":\"Polygon\",\"id\":\"112210\",\"arcs\":[[-10512,-9972,-10533,-10024,-10258,-10507,-10511,10533]]},{\"type\":\"Polygon\",\"id\":\"122501\",\"arcs\":[[-10294,-9415,-9410,10534,10535]]},{\"type\":\"Polygon\",\"id\":\"122406\",\"arcs\":[[10536,-10295,-10536,10537,10538]]},{\"type\":\"Polygon\",\"id\":\"122405\",\"arcs\":[[-10292,-10537,10539,-10508]]},{\"type\":\"Polygon\",\"id\":\"122403\",\"arcs\":[[-10540,-10539,10540,10541,-10046,-10491]]},{\"type\":\"Polygon\",\"id\":\"159412\",\"arcs\":[[-10224,-10169,-10163,-10418,-10422,-9274]]},{\"type\":\"Polygon\",\"id\":\"158410\",\"arcs\":[[-9588,-10517,-9581]]},{\"type\":\"Polygon\",\"id\":\"169703\",\"arcs\":[[-10385,-10516,10542,-10424]]},{\"type\":\"Polygon\",\"id\":\"169704\",\"arcs\":[[-10543,-10515,-10467,-10470,-10222,-9272,-10425]]},{\"type\":\"Polygon\",\"id\":\"190708\",\"arcs\":[[-10468,-10460,-10519,-10526]]},{\"type\":\"Polygon\",\"id\":\"190800\",\"arcs\":[[-10525,-10520,-10372,-10523]]},{\"type\":\"Polygon\",\"id\":\"145808\",\"arcs\":[[-9879,-9292,-10432,-10530,-10077]]},{\"type\":\"Polygon\",\"id\":\"147602\",\"arcs\":[[-10429,-10483,-9921,-10280,10543,-10188]]},{\"type\":\"Polygon\",\"id\":\"147601\",\"arcs\":[[-10189,-10544,-10279]]},{\"type\":\"Polygon\",\"id\":\"146402\",\"arcs\":[[-10190,-10278,10544,-10246,-9979]]},{\"type\":\"Polygon\",\"id\":\"110803\",\"arcs\":[[-10387,-9959,-10440,-10449,-10314,-10000]]},{\"type\":\"Polygon\",\"id\":\"112102\",\"arcs\":[[-10283,-9997,-10271,-10513,-10534,-10510]]},{\"type\":\"Polygon\",\"id\":\"123002\",\"arcs\":[[10545,-10025,-10252,-10140,10546]]},{\"type\":\"Polygon\",\"id\":\"122901\",\"arcs\":[[10547,-10143,-10147,-10200,10548]]},{\"type\":\"Polygon\",\"id\":\"122502\",\"arcs\":[[-10541,-10538,-10535,-9409,10549,-10547,-10144,-10548,10550]]},{\"type\":\"Polygon\",\"id\":\"122404\",\"arcs\":[[-10551,-10549,-10202,-10047,-10542]]},{\"type\":\"Polygon\",\"id\":\"158323\",\"arcs\":[[-9449,-9582,-9443,-9572,-9549,-10421,-9544]]},{\"type\":\"Polygon\",\"id\":\"158010\",\"arcs\":[[-10155,-9527,10551,-9516,-10296]]},{\"type\":\"Polygon\",\"id\":\"201003\",\"arcs\":[[10552,-10378,10553,-10376,-10454,-10458]]},{\"type\":\"Polygon\",\"id\":\"201001\",\"arcs\":[[-10553,-10457,-10379]]},{\"type\":\"Polygon\",\"id\":\"201004\",\"arcs\":[[-10554,-10377]]},{\"type\":\"Polygon\",\"id\":\"146102\",\"arcs\":[[-10063,10554,-10235,10555,-10120,-10365]]},{\"type\":\"Polygon\",\"id\":\"146002\",\"arcs\":[[-10121,-10556,-10238,10556]]},{\"type\":\"Polygon\",\"id\":\"145902\",\"arcs\":[[-10122,-10557,-10239,-10071,-10532]]},{\"type\":\"Polygon\",\"id\":\"146500\",\"arcs\":[[-10545,-10504,10557,-10247]]},{\"type\":\"Polygon\",\"id\":\"147402\",\"arcs\":[[10558,-10502,-9945,-10194]]},{\"type\":\"Polygon\",\"id\":\"147901\",\"arcs\":[[-9873,-9474,-10241,-10398,-10481]]},{\"type\":\"Polygon\",\"id\":\"110102\",\"arcs\":[[-10361,-10358,-10350,-10290,-2844,-2882,-10009]]},{\"type\":\"Polygon\",\"id\":\"123101\",\"arcs\":[[-10206,-10026,-10546,10559]]},{\"type\":\"Polygon\",\"id\":\"122603\",\"arcs\":[[-9414,-10020,-10208,-10560,-10550,-9408]]},{\"type\":\"Polygon\",\"id\":\"123302\",\"arcs\":[[-10012,-10327,10560]]},{\"type\":\"Polygon\",\"id\":\"123301\",\"arcs\":[[-10013,-10561,-10326,-10255,-2652,-10015]]},{\"type\":\"Polygon\",\"id\":\"158011\",\"arcs\":[[-9526,-10152,-10161,-10086,-9534,-9517,-10552]]},{\"type\":\"Polygon\",\"id\":\"190503\",\"arcs\":[[-10479,-10498,-9935,-10304,-10172]]},{\"type\":\"Polygon\",\"id\":\"147003\",\"arcs\":[[-10232,-9941,-10341,-10527]]},{\"type\":\"Polygon\",\"id\":\"134902\",\"arcs\":[[-10339,-10116,-10505,-10182,-10067]]},{\"type\":\"Polygon\",\"id\":\"135002\",\"arcs\":[[-10338,-10514,-10178,-10113]]},{\"type\":\"Polygon\",\"id\":\"135204\",\"arcs\":[[-10305,-10109,-10506,-10266,-10419,-9918,-10276]]},{\"type\":\"Polygon\",\"id\":\"147401\",\"arcs\":[[10561,10562,-10503,-10559,-10193,10563]]},{\"type\":\"Polygon\",\"id\":\"146206\",\"arcs\":[[-10248,-10558,-10563,10564,-10117,-9987]]},{\"type\":\"Polygon\",\"id\":\"146205\",\"arcs\":[[-10565,-10562,10565,-10118]]},{\"type\":\"Polygon\",\"id\":\"146103\",\"arcs\":[[-10062,-10566,-10564,-10192,-10236,-10555]]},{\"type\":\"Polygon\",\"id\":\"146611\",\"arcs\":[[-9349,-9872,-10433,-9289]]},{\"type\":\"Polygon\",\"id\":\"970400\",\"arcs\":[[10566,10567,10568,10569,10570,10571,10572,10573]]},{\"type\":\"Polygon\",\"id\":\"970700\",\"arcs\":[[10574,10575,10576,10577,10578]]},{\"type\":\"Polygon\",\"id\":\"971100\",\"arcs\":[[10579,-9138,-9135,-9219,-5403,-5413,10580,-10572]]},{\"type\":\"Polygon\",\"id\":\"970600\",\"arcs\":[[10581,-10576,10582]]},{\"type\":\"Polygon\",\"id\":\"970500\",\"arcs\":[[10583,-10568,10584,-10583,-10575]]},{\"type\":\"Polygon\",\"id\":\"971000\",\"arcs\":[[10585,-10569,-10584,-10579,10586,10587,-10574,10588,10589,10590,10591,10592]]},{\"type\":\"Polygon\",\"id\":\"970100\",\"arcs\":[[-6360,-9139,-10580,-10571,10593,-3022,-3266]]},{\"type\":\"Polygon\",\"id\":\"970300\",\"arcs\":[[-10586,10594]]},{\"type\":\"Polygon\",\"id\":\"970900\",\"arcs\":[[-10577,-10582,-10585,-10567,-10588,10595]]},{\"type\":\"Polygon\",\"id\":\"970800\",\"arcs\":[[-10596,-10587,-10578]]},{\"type\":\"Polygon\",\"id\":\"970200\",\"arcs\":[[-3023,-10594,-10570,-10595,-10593,10596,-3332]]},{\"type\":\"Polygon\",\"id\":\"971200\",\"arcs\":[[-10573,-10581,-5412,-9913,10597,10598,10599,-10589]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[10600,10601,10602,10603,10604]]},{\"type\":\"Polygon\",\"id\":\"012101\",\"arcs\":[[10605,10606,10607,10608,10609,10610,10611,10612,10613]]},{\"type\":\"Polygon\",\"id\":\"012102\",\"arcs\":[[10614,10615,10616,10617,10618,10619,-10610]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[10620,10621,10622,10623]]},{\"type\":\"Polygon\",\"id\":\"013001\",\"arcs\":[[10624,10625,10626]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[-8927,10627]]},{\"type\":\"Polygon\",\"id\":\"013300\",\"arcs\":[[10628,10629]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[10630,10631,10632,-10627,10633,10634,10635,10636]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[-10636,10637,10638]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[10639,10640,-10637,-10639,10641,10642]]},{\"type\":\"Polygon\",\"id\":\"013002\",\"arcs\":[[-10633,10643,10644,10645,10646,10647,-10625]]},{\"type\":\"Polygon\",\"id\":\"012202\",\"arcs\":[[10648,10649,-10617,10650,10651]]},{\"type\":\"Polygon\",\"id\":\"011601\",\"arcs\":[[-10628,-8926,10652,10653,10654,10655,-10624,10656,-8928]]},{\"type\":\"Polygon\",\"id\":\"011602\",\"arcs\":[[-10655,10657,-10614,10658,10659,-10602,10660]]},{\"type\":\"Polygon\",\"id\":\"011502\",\"arcs\":[[10661,10662,10663,10664,10665,-10652,10666,-10607,10667]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[10668,10669,10670,10671,10672]]},{\"type\":\"Polygon\",\"id\":\"012502\",\"arcs\":[[10673,10674,-10643,10675,10676]]},{\"type\":\"Polygon\",\"id\":\"010703\",\"arcs\":[[10677,10678,10679,10680,10681,10682]]},{\"type\":\"Polygon\",\"id\":\"011101\",\"arcs\":[[10683,10684,10685,10686]]},{\"type\":\"Polygon\",\"id\":\"010502\",\"arcs\":[[10687,10688,-10662,10689]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[10690,10691,10692,10693,10694]]},{\"type\":\"Polygon\",\"id\":\"012501\",\"arcs\":[[-10613,10695,-10677,10696,10697,-10659]]},{\"type\":\"Polygon\",\"id\":\"010701\",\"arcs\":[[10698,10699,-10682,10700,-10680,10701,10702]]},{\"type\":\"Polygon\",\"id\":\"010602\",\"arcs\":[[10703,-10693,10704,10705,10706,-10683,-10700,10707]]},{\"type\":\"Polygon\",\"id\":\"011501\",\"arcs\":[[10708,-10668,-10606,-10658,-10654]]},{\"type\":\"Polygon\",\"id\":\"010503\",\"arcs\":[[10709,10710,-10690,-10709,-10653,-8925]]},{\"type\":\"Polygon\",\"id\":\"010501\",\"arcs\":[[10711,10712,10713,-10703,10714,10715,-10688,-10711]]},{\"type\":\"Polygon\",\"id\":\"010101\",\"arcs\":[[-8848,-8837,-9174,10716,10717,10718,10719,-10695,10720,-10712,-10710,-8924]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-10685,10721,10722,10723,10724,10725,10726]]},{\"type\":\"Polygon\",\"id\":\"011901\",\"arcs\":[[10727,-10605,10728,-10622]]},{\"type\":\"Polygon\",\"id\":\"011404\",\"arcs\":[[10729,10730,10731]]},{\"type\":\"Polygon\",\"id\":\"012401\",\"arcs\":[[10732,10733,10734]]},{\"type\":\"Polygon\",\"id\":\"012300\",\"arcs\":[[-10650,10735,10736,10737,10738,-10618]]},{\"type\":\"Polygon\",\"id\":\"011603\",\"arcs\":[[-10698,10739,-10603,-10660]]},{\"type\":\"Polygon\",\"id\":\"013401\",\"arcs\":[[-10648,10740,10741,-10634,-10626]]},{\"type\":\"Polygon\",\"id\":\"013402\",\"arcs\":[[-10630,10742,10743,10744,10745,10746,-10741,-10647,10747]]},{\"type\":\"Polygon\",\"id\":\"012203\",\"arcs\":[[10748,-10615,-10609]]},{\"type\":\"Polygon\",\"id\":\"010902\",\"arcs\":[[10749,-10679,10750,10751,10752,10753,10754,-10722,-10684,10755]]},{\"type\":\"Polygon\",\"id\":\"010803\",\"arcs\":[[10756,10757,10758]]},{\"type\":\"Polygon\",\"id\":\"012204\",\"arcs\":[[-10667,-10651,-10616,-10749,-10608]]},{\"type\":\"Polygon\",\"id\":\"011902\",\"arcs\":[[-10656,-10661,-10601,-10728,-10621]]},{\"type\":\"Polygon\",\"id\":\"011505\",\"arcs\":[[-10665,10759,10760]]},{\"type\":\"Polygon\",\"id\":\"012105\",\"arcs\":[[-10739,-10735,10761,10762,-10619]]},{\"type\":\"Polygon\",\"id\":\"010801\",\"arcs\":[[-10716,10763,-10759,10764,-10663,-10689]]},{\"type\":\"Polygon\",\"id\":\"011302\",\"arcs\":[[10765,-10640,-10675,10766]]},{\"type\":\"Polygon\",\"id\":\"011506\",\"arcs\":[[10767,10768,10769,-10760,-10664]]},{\"type\":\"Polygon\",\"id\":\"012106\",\"arcs\":[[10770,-10762,-10734,10771,10772,-10674,-10696,-10612]]},{\"type\":\"Polygon\",\"id\":\"011301\",\"arcs\":[[10773,-10731,10774,10775,-10767,-10773,10776,-10737]]},{\"type\":\"Polygon\",\"id\":\"011102\",\"arcs\":[[10777,-10686,-10727,10778,-10673,10779,-10645,10780]]},{\"type\":\"Polygon\",\"id\":\"011405\",\"arcs\":[[10781,10782,-10775,-10730,10783,-10769,10784]]},{\"type\":\"Polygon\",\"id\":\"012402\",\"arcs\":[[-10777,-10772,-10733,-10738]]},{\"type\":\"Polygon\",\"id\":\"012103\",\"arcs\":[[-10620,-10763,-10771,-10611]]},{\"type\":\"Polygon\",\"id\":\"010702\",\"arcs\":[[-10681,-10701]]},{\"type\":\"Polygon\",\"id\":\"011303\",\"arcs\":[[-10783,10785,-10631,-10641,-10766,-10776]]},{\"type\":\"Polygon\",\"id\":\"010901\",\"arcs\":[[-10756,-10687,-10778,10786,10787]]},{\"type\":\"Polygon\",\"id\":\"010802\",\"arcs\":[[-10715,-10702,-10750,-10788,10788,10789,10790,-10757,-10764]]},{\"type\":\"Polygon\",\"id\":\"013003\",\"arcs\":[[-10780,-10672,10791,10792,10793,-10743,-10629,-10748,-10646]]},{\"type\":\"Polygon\",\"id\":\"011403\",\"arcs\":[[10794,-10790,10795,-10782,10796]]},{\"type\":\"Polygon\",\"id\":\"011401\",\"arcs\":[[10797,-10797,-10785,-10768,-10765]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[-10789,-10787,-10781,-10644,-10632,-10786,-10796]]},{\"type\":\"Polygon\",\"id\":\"010804\",\"arcs\":[[-10791,-10795,-10798,-10758]]},{\"type\":\"Polygon\",\"id\":\"013100\",\"arcs\":[[-10726,10798,-10669,-10779]]},{\"type\":\"Polygon\",\"id\":\"011504\",\"arcs\":[[-10761,-10770,-10784,-10732,-10774,-10736,-10649,-10666]]},{\"type\":\"Polygon\",\"id\":\"010102\",\"arcs\":[[-10694,-10704,10799,-10713,-10721]]},{\"type\":\"Polygon\",\"id\":\"010601\",\"arcs\":[[-10800,-10708,-10699,-10714]]},{\"type\":\"Polygon\",\"id\":\"971100\",\"arcs\":[[10800,-9245,-4208,10801,10802]]},{\"type\":\"Polygon\",\"id\":\"970900\",\"arcs\":[[10803,10804,10805,-5875]]},{\"type\":\"Polygon\",\"id\":\"970100\",\"arcs\":[[-9258,-9250,10806,10807,10808,-8611]]},{\"type\":\"Polygon\",\"id\":\"970200\",\"arcs\":[[-10809,10809,10810,-8582]]},{\"type\":\"Polygon\",\"id\":\"970800\",\"arcs\":[[10811,10812,-10803,-10805,10813]]},{\"type\":\"Polygon\",\"id\":\"970400\",\"arcs\":[[-10810,10814,-10814,-10804,-5780,10815]]},{\"type\":\"Polygon\",\"id\":\"971000\",\"arcs\":[[-10802,-1483,-1498,-6052,-10806]]},{\"type\":\"Polygon\",\"id\":\"970700\",\"arcs\":[[-9254,-9242,-10801,-10813,10816,10817]]},{\"type\":\"Polygon\",\"id\":\"970500\",\"arcs\":[[10818,-10817,-10812,-10815,-10808]]},{\"type\":\"Polygon\",\"id\":\"970600\",\"arcs\":[[-9249,-10818,-10819,-10807]]},{\"type\":\"Polygon\",\"id\":\"970300\",\"arcs\":[[-8583,-10811,-10816,-5779,-6014,-5791]]},{\"type\":\"Polygon\",\"id\":\"020701\",\"arcs\":[[10819,10820,10821,-3351,10822]]},{\"type\":\"Polygon\",\"id\":\"021000\",\"arcs\":[[10823,10824,10825,10826,10827,10828,10829,10830,10831]]},{\"type\":\"Polygon\",\"id\":\"020902\",\"arcs\":[[10832,10833,10834,-3404,-3416,10835,-3237,10836,-10826]]},{\"type\":\"Polygon\",\"id\":\"020901\",\"arcs\":[[-3415,-3238,-10836]]},{\"type\":\"Polygon\",\"id\":\"020301\",\"arcs\":[[10837]]},{\"type\":\"Polygon\",\"id\":\"020302\",\"arcs\":[[10838,10839,10840,10841,10842],[-10838]]},{\"type\":\"Polygon\",\"id\":\"020800\",\"arcs\":[[10843,10844,10845,-10833,-10825]]},{\"type\":\"Polygon\",\"id\":\"021605\",\"arcs\":[[10846,10847,10848,10849]]},{\"type\":\"Polygon\",\"id\":\"021604\",\"arcs\":[[10850,10851,10852,10853,-10849]]},{\"type\":\"Polygon\",\"id\":\"021603\",\"arcs\":[[10854,-10853,10855,10856,10857]]},{\"type\":\"Polygon\",\"id\":\"021602\",\"arcs\":[[10858,-10858,10859,10860]]},{\"type\":\"Polygon\",\"id\":\"021601\",\"arcs\":[[-10850,-10854,-10855,-10859,10861]]},{\"type\":\"Polygon\",\"id\":\"021502\",\"arcs\":[[10862,-10832,10863,-10851,-10848,10864]]},{\"type\":\"Polygon\",\"id\":\"021401\",\"arcs\":[[-10860,-10857,10865,10866,10867,10868,10869,10870]]},{\"type\":\"Polygon\",\"id\":\"021501\",\"arcs\":[[10871,-10844,-10824,-10863,10872]]},{\"type\":\"Polygon\",\"id\":\"021402\",\"arcs\":[[-10852,-10864,-10831,10873,-10866,-10856]]},{\"type\":\"Polygon\",\"id\":\"020400\",\"arcs\":[[-10842,10874,10875,-10845,-10872,10876]]},{\"type\":\"Polygon\",\"id\":\"020703\",\"arcs\":[[-10876,10877,-10820,10878,-10834,-10846]]},{\"type\":\"Polygon\",\"id\":\"020702\",\"arcs\":[[-10823,-3350,-3398,-10835,-10879]]},{\"type\":\"Polygon\",\"id\":\"021300\",\"arcs\":[[10879,10880,10881,-10868]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[-10874,-10830,10882,10883,10884,10885,-10827,-10837,-3242,10886,-10880,-10867]]},{\"type\":\"Polygon\",\"id\":\"021104\",\"arcs\":[[10887,10888,-10884]]},{\"type\":\"Polygon\",\"id\":\"021103\",\"arcs\":[[-10889,10889,-10885]]},{\"type\":\"Polygon\",\"id\":\"021102\",\"arcs\":[[-10828,-10886,-10890,10890]]},{\"type\":\"Polygon\",\"id\":\"021101\",\"arcs\":[[-10829,-10891,-10888,-10883]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[-10822,10891,-9802,-9813,-6329,-3419,-3352]]},{\"type\":\"Polygon\",\"id\":\"020100\",\"arcs\":[[-8598,-8594,-9671,10892,-10840,10893,-6463]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[-10841,-10893,-9803,-10892,-10821,-10878,-10875]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[-6464,-10894,-10839,10894,-6388]]},{\"type\":\"Polygon\",\"id\":\"990000\",\"arcs\":[[-10895,-10843,-10877,-10873,-10865,-10847,-10862,-10861,-10871,10895,-6389]]},{\"type\":\"Polygon\",\"id\":\"401300\",\"arcs\":[[-1778,10896,10897,10898,10899]]},{\"type\":\"Polygon\",\"id\":\"040802\",\"arcs\":[[-1777,-1950,10900,10901,-10897]]},{\"type\":\"Polygon\",\"id\":\"040801\",\"arcs\":[[-10901,-1949,-2073,-8628,-8625,10902]]},{\"type\":\"Polygon\",\"id\":\"401200\",\"arcs\":[[-10899,10903,10904,-8994,10905]]},{\"type\":\"Polygon\",\"id\":\"040500\",\"arcs\":[[10906,10907,10908]]},{\"type\":\"Polygon\",\"id\":\"040400\",\"arcs\":[[-10908,10909]]},{\"type\":\"Polygon\",\"id\":\"040300\",\"arcs\":[[-10909,10910,10911,-8627,-8623,-9065,10912]]},{\"type\":\"Polygon\",\"id\":\"990000\",\"arcs\":[[-1571,-1779,-10900,-10906,-8993,-9099,10913]]},{\"type\":\"Polygon\",\"id\":\"040200\",\"arcs\":[[10914,-10911,-10910,-10907,-10913,-9115,-10905]]},{\"type\":\"Polygon\",\"id\":\"040700\",\"arcs\":[[10915]]},{\"type\":\"Polygon\",\"id\":\"040600\",\"arcs\":[[-10898,-10902,-10903,-8624,-10912,-10915,-10904],[-10916]]},{\"type\":\"Polygon\",\"id\":\"962400\",\"arcs\":[[10916,10917,10918]]},{\"type\":\"Polygon\",\"id\":\"961800\",\"arcs\":[[10919,10920,10921,10922,10923,10924,10925]]},{\"type\":\"Polygon\",\"id\":\"960900\",\"arcs\":[[10926,10927,10928]]},{\"type\":\"Polygon\",\"id\":\"960800\",\"arcs\":[[10929,-10928,10930]]},{\"type\":\"Polygon\",\"id\":\"960700\",\"arcs\":[[-10929,-10930,10931]]},{\"type\":\"Polygon\",\"id\":\"961700\",\"arcs\":[[10932,-9557,10933,10934,10935,-10922,10936]]},{\"type\":\"Polygon\",\"id\":\"961200\",\"arcs\":[[10937,10938,10939]]},{\"type\":\"Polygon\",\"id\":\"961500\",\"arcs\":[[-8932,-8947,-9558,-10933,10940,10941,10942]]},{\"type\":\"Polygon\",\"id\":\"961300\",\"arcs\":[[-10939,10943,-10941,-10937,-10921,10944]]},{\"type\":\"Polygon\",\"id\":\"961000\",\"arcs\":[[10945,10946,10947,10948,10949,10950]]},{\"type\":\"Polygon\",\"id\":\"960600\",\"arcs\":[[10951,-10950,10952,10953,-4231,-4221],[-10927,-10932,-10931]]},{\"type\":\"Polygon\",\"id\":\"961100\",\"arcs\":[[10954,10955,-10940,-10945,-10920,-10948]]},{\"type\":\"Polygon\",\"id\":\"962300\",\"arcs\":[[10956,10957,10958,10959,10960,-10935]]},{\"type\":\"Polygon\",\"id\":\"082001\",\"arcs\":[[10961,10962,10963,10964]]},{\"type\":\"Polygon\",\"id\":\"082002\",\"arcs\":[[10965,-10,10966,-10965,10967,10968]]},{\"type\":\"Polygon\",\"id\":\"092000\",\"arcs\":[[10969,10970,-9530,10971]]},{\"type\":\"Polygon\",\"id\":\"090000\",\"arcs\":[[10972,10973,10974,10975,10976]]},{\"type\":\"Polygon\",\"id\":\"080200\",\"arcs\":[[10977,10978,10979]]},{\"type\":\"Polygon\",\"id\":\"962200\",\"arcs\":[[-10936,-10961,10980,-10923]]},{\"type\":\"Polygon\",\"id\":\"962900\",\"arcs\":[[10981,10982,10983,-322,10984,-10959,10985]]},{\"type\":\"Polygon\",\"id\":\"962700\",\"arcs\":[[10986,10987,-10983,10988]]},{\"type\":\"Polygon\",\"id\":\"080100\",\"arcs\":[[10989,10990,-4187,10991,-10978]]},{\"type\":\"Polygon\",\"id\":\"091000\",\"arcs\":[[10992,-10974,10993,-10970,10994,10995]]},{\"type\":\"Polygon\",\"id\":\"089000\",\"arcs\":[[10996,10997,-10975,-10993,10998,-4148,-4153,-4157]]},{\"type\":\"Polygon\",\"id\":\"084000\",\"arcs\":[[10999,11000,11001,11002,-10963]]},{\"type\":\"Polygon\",\"id\":\"962600\",\"arcs\":[[11003,-10989,-10982,-10918]]},{\"type\":\"Polygon\",\"id\":\"962500\",\"arcs\":[[11004,-10987,-11004,-10917]]},{\"type\":\"Polygon\",\"id\":\"961900\",\"arcs\":[[-10949,-10926,11005,-10953]]},{\"type\":\"Polygon\",\"id\":\"962800\",\"arcs\":[[11006,-326,-323,-10984,-10988,-11005,-10919,-10986,-10958]]},{\"type\":\"Polygon\",\"id\":\"960500\",\"arcs\":[[11007,11008,-10951,-10952,-4220,-9256]]},{\"type\":\"Polygon\",\"id\":\"960300\",\"arcs\":[[-3981,11009,-10946,-11009,11010,-9224]]},{\"type\":\"Polygon\",\"id\":\"960200\",\"arcs\":[[-8937,11011,11012,-10955,-10947,-11010,-3980]]},{\"type\":\"Polygon\",\"id\":\"085000\",\"arcs\":[[-11002,11013,11014,11015,11016]]},{\"type\":\"Polygon\",\"id\":\"086000\",\"arcs\":[[-11001,11017,-10977,11018,-11014]]},{\"type\":\"Polygon\",\"id\":\"961400\",\"arcs\":[[-11013,11019,-10942,-10944,-10938,-10956]]},{\"type\":\"Polygon\",\"id\":\"960100\",\"arcs\":[[-8933,-10943,-11020,-11012,-8936]]},{\"type\":\"Polygon\",\"id\":\"088000\",\"arcs\":[[-10991,11020,11021,-10997,-4156,-4166,-4188]]},{\"type\":\"Polygon\",\"id\":\"081000\",\"arcs\":[[-10968,-10964,-11003,-11017,11022,11023,11024,11025]]},{\"type\":\"Polygon\",\"id\":\"094000\",\"arcs\":[[-4154,-4149,-10999,-10996,11026,-9503,-4122,-4126]]},{\"type\":\"Polygon\",\"id\":\"963000\",\"arcs\":[[-10985,-321,-308,11027,11028,-10960]]},{\"type\":\"Polygon\",\"id\":\"962100\",\"arcs\":[[-10981,-11029,11029,11030,-10924]]},{\"type\":\"Polygon\",\"id\":\"960400\",\"arcs\":[[-9225,-11011,-11008,-9255]]},{\"type\":\"Polygon\",\"id\":\"962000\",\"arcs\":[[-11006,-10925,-11031,11031,-4227,-4230,-4232,-10954]]},{\"type\":\"Polygon\",\"id\":\"080300\",\"arcs\":[[-11016,11032,-11021,-10990,-10980,11033,-11023]]},{\"type\":\"Polygon\",\"id\":\"093000\",\"arcs\":[[-10995,-10972,-9533,-9484,-9504,-11027]]},{\"type\":\"Polygon\",\"id\":\"087000\",\"arcs\":[[-11015,-11019,-10976,-10998,-11022,-11033]]},{\"type\":\"Polygon\",\"id\":\"961600\",\"arcs\":[[-327,-11007,-10957,-10934,-9556]]},{\"type\":\"Polygon\",\"id\":\"490800\",\"arcs\":[[11034,11035,11036,11037,11038,11039],[11040]]},{\"type\":\"Polygon\",\"id\":\"491000\",\"arcs\":[[11041,11042,11043,11044,-11040,11045,11046,11047,11048]]},{\"type\":\"Polygon\",\"id\":\"491100\",\"arcs\":[[-11045,11049,-11035]]},{\"type\":\"Polygon\",\"id\":\"490900\",\"arcs\":[[11050,-11036,-11050,-11044]]},{\"type\":\"Polygon\",\"id\":\"491700\",\"arcs\":[[11051,11052,11053,11054,11055,11056,11057,11058]]},{\"type\":\"Polygon\",\"id\":\"491600\",\"arcs\":[[11059,-11052,11060]]},{\"type\":\"Polygon\",\"id\":\"491500\",\"arcs\":[[11061,-11053,-11060,11062]]},{\"type\":\"Polygon\",\"id\":\"491400\",\"arcs\":[[11063,11064,-11054,-11062]]},{\"type\":\"Polygon\",\"id\":\"490600\",\"arcs\":[[11065,11066,11067,-11042,11068,11069]]},{\"type\":\"Polygon\",\"id\":\"490300\",\"arcs\":[[11070,-8639,11071,-11067,11072,11073]]},{\"type\":\"Polygon\",\"id\":\"490200\",\"arcs\":[[-11073,-11066,11074,11075]]},{\"type\":\"Polygon\",\"id\":\"490100\",\"arcs\":[[11076,-11074,-11076,11077]]},{\"type\":\"Polygon\",\"id\":\"490500\",\"arcs\":[[11078,-11069,-11049,11079,11080]]},{\"type\":\"Polygon\",\"id\":\"490400\",\"arcs\":[[-11078,-11075,-11070,-11079,11081]]},{\"type\":\"Polygon\",\"id\":\"491200\",\"arcs\":[[-11041]]},{\"type\":\"Polygon\",\"id\":\"491300\",\"arcs\":[[-11080,-11048,11082,-11055,-11065,11083]]},{\"type\":\"Polygon\",\"id\":\"492400\",\"arcs\":[[-8666,-8650,-8660,11084,11085,11086]]},{\"type\":\"Polygon\",\"id\":\"492900\",\"arcs\":[[11087,11088,11089,-6372,-6445,-6451,11090]]},{\"type\":\"Polygon\",\"id\":\"492800\",\"arcs\":[[-11058,11091,11092,-11088,11093]]},{\"type\":\"Polygon\",\"id\":\"492700\",\"arcs\":[[11094,11095,-11089,-11093]]},{\"type\":\"Polygon\",\"id\":\"492600\",\"arcs\":[[11096,11097,11098,11099,-8616,-8607,-6373,-11090,-11096]]},{\"type\":\"Polygon\",\"id\":\"491800\",\"arcs\":[[11100,11101,-11097,-11095,-11092,-11057]]},{\"type\":\"Polygon\",\"id\":\"492300\",\"arcs\":[[-11038,11102,-11086,11103,-11099,11104]]},{\"type\":\"Polygon\",\"id\":\"492500\",\"arcs\":[[-11104,-11085,-8659,-8669,-9175,-2948,-8617,-11100]]},{\"type\":\"Polygon\",\"id\":\"492100\",\"arcs\":[[-11047,11105,-11101,-11056,-11083]]},{\"type\":\"Polygon\",\"id\":\"492000\",\"arcs\":[[-11046,-11039,-11105,-11098,-11102,-11106],[11106]]},{\"type\":\"Polygon\",\"id\":\"491900\",\"arcs\":[[-11107]]},{\"type\":\"Polygon\",\"id\":\"490700\",\"arcs\":[[-11072,-8638,-8665,-8667,-11087,-11103,-11037,-11051,-11043,-11068]]},{\"type\":\"Polygon\",\"id\":\"002800\",\"arcs\":[[11107,11108,-4908,11109]]},{\"type\":\"Polygon\",\"id\":\"002700\",\"arcs\":[[11110,11111,11112,-11108,11113]]},{\"type\":\"Polygon\",\"id\":\"002600\",\"arcs\":[[-11109,-11113,11114,11115,11116,-4746,-5188,-5359]]},{\"type\":\"Polygon\",\"id\":\"012102\",\"arcs\":[[11117,11118,11119,11120]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[11121,11122,11123,11124]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[11125,11126,11127,11128,11129,11130]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[11131,-11131,11132,-10745]]},{\"type\":\"Polygon\",\"id\":\"001402\",\"arcs\":[[11133,11134,11135,11136,11137]]},{\"type\":\"Polygon\",\"id\":\"001401\",\"arcs\":[[11138,11139,11140,-11138,11141,11142]]},{\"type\":\"Polygon\",\"id\":\"000701\",\"arcs\":[[11143,11144,11145,11146,11147,11148,11149]]},{\"type\":\"Polygon\",\"id\":\"009900\",\"arcs\":[[11150,11151,11152,11153,11154]]},{\"type\":\"Polygon\",\"id\":\"009800\",\"arcs\":[[11155,11156,11157,11158,11159,11160,-11153]]},{\"type\":\"Polygon\",\"id\":\"009600\",\"arcs\":[[11161,11162,11163,-11152,11164]]},{\"type\":\"Polygon\",\"id\":\"003000\",\"arcs\":[[11165,11166,11167,-5215,-5154,11168]]},{\"type\":\"Polygon\",\"id\":\"002403\",\"arcs\":[[11169,11170,11171,11172,11173,11174]]},{\"type\":\"Polygon\",\"id\":\"002402\",\"arcs\":[[11175,11176,-11170,11177]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[-11119,11178,11179,11180,11181]]},{\"type\":\"Polygon\",\"id\":\"013202\",\"arcs\":[[11182,11183,11184,11185]]},{\"type\":\"Polygon\",\"id\":\"013104\",\"arcs\":[[11186,11187,11188,11189,11190,11191,11192,11193]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[11194,11195,11196,11197,-10719]]},{\"type\":\"Polygon\",\"id\":\"013900\",\"arcs\":[[11198,11199,11200,-10751,-10678,-10707,11201]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[11202,11203,11204,11205,11206,-11190]]},{\"type\":\"Polygon\",\"id\":\"012700\",\"arcs\":[[11207,11208,11209,11210,11211,-11206,11212]]},{\"type\":\"Polygon\",\"id\":\"012600\",\"arcs\":[[11213,11214,11215,-11208,11216,11217,11218]]},{\"type\":\"Polygon\",\"id\":\"012502\",\"arcs\":[[11219,11220,11221,11222,-11215,11223]]},{\"type\":\"Polygon\",\"id\":\"014810\",\"arcs\":[[11224,11225]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-11148,11226,11227,11228,11229,11230,11231]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[11232,-11230,11233,11234,11235,11236]]},{\"type\":\"Polygon\",\"id\":\"014908\",\"arcs\":[[11237,11238,11239,11240,11241,-9214]]},{\"type\":\"Polygon\",\"id\":\"014907\",\"arcs\":[[-9185,11242,11243,-11238,-9213]]},{\"type\":\"Polygon\",\"id\":\"007600\",\"arcs\":[[11244,11245,11246,-2915,-2916,-2925,11247,11248]]},{\"type\":\"Polygon\",\"id\":\"012400\",\"arcs\":[[11249,11250,11251,-11209,-11216,-11223]]},{\"type\":\"Polygon\",\"id\":\"005500\",\"arcs\":[[11252,11253,11254,-5275,-4747,-11117]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[11255,11256,11257,11258,11259,11260]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[-11192,11261,11262,-11121,11263]]},{\"type\":\"Polygon\",\"id\":\"012101\",\"arcs\":[[11264,11265,11266,11267,-11179,-11118,-11263]]},{\"type\":\"Polygon\",\"id\":\"011902\",\"arcs\":[[-11268,11268,11269,11270,11271,-11180]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[-11184,11272,11273,-11193,-11264,-11120,-11182,11274,11275,11276,11277,-10724,11278]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[-11278,11279,11280,-10725]]},{\"type\":\"Polygon\",\"id\":\"014811\",\"arcs\":[[11281,-11241,11282,11283,-11225]]},{\"type\":\"Polygon\",\"id\":\"014909\",\"arcs\":[[-9208,-9192,11284,11285,11286]]},{\"type\":\"Polygon\",\"id\":\"008901\",\"arcs\":[[11287,11288,11289,11290,11291]]},{\"type\":\"Polygon\",\"id\":\"008800\",\"arcs\":[[11292,11293,11294,11295,-11290]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[11296,11297,-11155,11298,11299,11300,11301]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[11302,-11257,11303,11304]]},{\"type\":\"Polygon\",\"id\":\"013301\",\"arcs\":[[11305,11306,11307,11308,-10753,11309]]},{\"type\":\"Polygon\",\"id\":\"013201\",\"arcs\":[[11310,-11185,-11279,-10723,-10755,11311]]},{\"type\":\"Polygon\",\"id\":\"012900\",\"arcs\":[[11312,-11204]]},{\"type\":\"Polygon\",\"id\":\"007200\",\"arcs\":[[11313,11314,11315,-11248,-2924,11316,11317,11318]]},{\"type\":\"Polygon\",\"id\":\"007100\",\"arcs\":[[11319,-11317,-2923,11320]]},{\"type\":\"Polygon\",\"id\":\"007000\",\"arcs\":[[-11321,-2922,11321,11322,11323,11324]]},{\"type\":\"Polygon\",\"id\":\"006900\",\"arcs\":[[-11158,11325,11326,-11318,-11320,-11325,11327]]},{\"type\":\"Polygon\",\"id\":\"014903\",\"arcs\":[[-9209,-11287,11328,-11243]]},{\"type\":\"Polygon\",\"id\":\"014901\",\"arcs\":[[-11244,-11329,-11286,11329,11330,11331,-11188,11332,-11239]]},{\"type\":\"Polygon\",\"id\":\"012802\",\"arcs\":[[11333,-11219,11334,-11217,-11213,-11205,-11313,-11203,-11189,-11332]]},{\"type\":\"Polygon\",\"id\":\"985000\",\"arcs\":[[11335,11336]]},{\"type\":\"Polygon\",\"id\":\"984000\",\"arcs\":[[11337,-10705,-10692,11338]]},{\"type\":\"Polygon\",\"id\":\"008200\",\"arcs\":[[11339,11340,11341,11342,11343,11344]]},{\"type\":\"Polygon\",\"id\":\"005600\",\"arcs\":[[11345]]},{\"type\":\"Polygon\",\"id\":\"008301\",\"arcs\":[[-11345,11346,11347,11348,11349]]},{\"type\":\"Polygon\",\"id\":\"007900\",\"arcs\":[[11350,11351,11352,-11347,-11344]]},{\"type\":\"Polygon\",\"id\":\"015000\",\"arcs\":[[-11285,-9191,11353,-11220,11354,-11330]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[11355,11356,-11253,11357]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[-11304,-11256,11358,11359]]},{\"type\":\"Polygon\",\"id\":\"006700\",\"arcs\":[[-11159,-11328,-11324,11360,11361,11362]]},{\"type\":\"Polygon\",\"id\":\"012501\",\"arcs\":[[-11355,-11224,-11214,-11334,-11331]]},{\"type\":\"Polygon\",\"id\":\"983000\",\"arcs\":[[-11218,-11335]]},{\"type\":\"Polygon\",\"id\":\"982000\",\"arcs\":[[-11308,11363]]},{\"type\":\"Polygon\",\"id\":\"981000\",\"arcs\":[[-11181,-11272,11364,-11275]]},{\"type\":\"Polygon\",\"id\":\"007402\",\"arcs\":[[11365,11366,-11315,11367]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[11368,11369,-11348,-11353,11370,-11245,11371,11372,11373]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[11374,11375,-11359,-11261,11376,-11195,-10718]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[-11201,11377,11378,11379,11380,-11310,-10752]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[11381,11382,-11380]]},{\"type\":\"Polygon\",\"id\":\"009702\",\"arcs\":[[11383,11384,11385,11386,-11163,11387,11388,-11295]]},{\"type\":\"Polygon\",\"id\":\"007300\",\"arcs\":[[11389,11390,11391,-11319,-11327]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[11392,11393,11394]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[11395,-11394,11396,11397,11398,11399]]},{\"type\":\"Polygon\",\"id\":\"002105\",\"arcs\":[[11400,-11302,11401,11402,11403,11404]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[-11372,-11249,-11316,-11367,11405]]},{\"type\":\"Polygon\",\"id\":\"001403\",\"arcs\":[[11406,-11142,-11137,11407,-5226,11408]]},{\"type\":\"Polygon\",\"id\":\"001303\",\"arcs\":[[11409,-5224,11410,11411,11412]]},{\"type\":\"Polygon\",\"id\":\"001302\",\"arcs\":[[11413,-11409,-5225,-11410]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[-11383,11414,-11186,-11311,11415,-11306,-11381]]},{\"type\":\"Polygon\",\"id\":\"013304\",\"arcs\":[[-11364,-11307,-11416,-11312,-10754,-11309]]},{\"type\":\"Polygon\",\"id\":\"012303\",\"arcs\":[[11416,-11211,11417,11418,11419,11420,11421,-11266]]},{\"type\":\"Polygon\",\"id\":\"008700\",\"arcs\":[[11422,11423,-11384,-11294,11424]]},{\"type\":\"Polygon\",\"id\":\"008602\",\"arcs\":[[-11421,11425,-11337,11426,11427,11428,-11385,-11424,11429]]},{\"type\":\"Polygon\",\"id\":\"008500\",\"arcs\":[[-11428,11430,-11349,-11370,11431,11432]]},{\"type\":\"Polygon\",\"id\":\"008404\",\"arcs\":[[-11373,-11406,-11366,11433,11434]]},{\"type\":\"Polygon\",\"id\":\"008403\",\"arcs\":[[-11374,-11435,11435,-11391,11436]]},{\"type\":\"Polygon\",\"id\":\"002104\",\"arcs\":[[11437,11438,11439,11440,11441,11442]]},{\"type\":\"Polygon\",\"id\":\"002101\",\"arcs\":[[11443,-11405,11444,11445,-11439,11446]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[11447,-11447,-11438,-11397,-11393,11448,11449]]},{\"type\":\"Polygon\",\"id\":\"001301\",\"arcs\":[[11450,-11143,-11407,-11414,-11413,11451,11452,11453]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[11454,11455,-11454,11456,11457]]},{\"type\":\"Polygon\",\"id\":\"001102\",\"arcs\":[[11458,11459,11460,11461,-11139,-11451,-11456]]},{\"type\":\"Polygon\",\"id\":\"012301\",\"arcs\":[[-11267,-11422,-11430,-11423,11462,-11288,11463,11464,-11269]]},{\"type\":\"Polygon\",\"id\":\"006400\",\"arcs\":[[11465,11466,11467,11468,11469]]},{\"type\":\"Polygon\",\"id\":\"006300\",\"arcs\":[[11470,11471,11472,11473,-11468]]},{\"type\":\"Polygon\",\"id\":\"008401\",\"arcs\":[[-11432,-11369,-11437,-11390,-11326,-11157,11474]]},{\"type\":\"Polygon\",\"id\":\"008302\",\"arcs\":[[11475,-11340,-11350,-11431,-11427,-11336,-11426,-11420]]},{\"type\":\"Polygon\",\"id\":\"007401\",\"arcs\":[[-11436,-11434,-11368,-11314,-11392]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[-11449,-11395,-11396,11476,11477,11478]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[-11229,11479,-11477,-11400,11480,-11461,11481,-11234]]},{\"type\":\"Polygon\",\"id\":\"001505\",\"arcs\":[[11482,-5152,11483,11484,-11173]]},{\"type\":\"Polygon\",\"id\":\"001101\",\"arcs\":[[-11236,11485,-11459,-11455,11486]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[-11482,-11460,-11486,-11235]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[11487,11488,-11450,-11479,11489,11490,-11145]]},{\"type\":\"Polygon\",\"id\":\"000803\",\"arcs\":[[-11147,11491,11492,-11227]]},{\"type\":\"Polygon\",\"id\":\"006200\",\"arcs\":[[-11474,11493,11494,-11469]]},{\"type\":\"Polygon\",\"id\":\"006100\",\"arcs\":[[-11473,11495,11496,11497,-11254,-11357,-11494]]},{\"type\":\"Polygon\",\"id\":\"005902\",\"arcs\":[[11498,11499,11500,11501,-11322,-2921,-5277,11502],[-11346]]},{\"type\":\"Polygon\",\"id\":\"012304\",\"arcs\":[[-11252,11503,-11418,-11210]]},{\"type\":\"Polygon\",\"id\":\"006802\",\"arcs\":[[11504,11505,-11160,-11363,11506,11507]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[11508,-10670,-10799,-11281]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[11509,-10792,-10671,-11509]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[-11280,-11277,11510,11511,-10793,-11510]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[11512,11513,11514,-11126,-11132,-10744,-10794,-11512]]},{\"type\":\"Polygon\",\"id\":\"011102\",\"arcs\":[[11515,11516,11517,11518,-11514]]},{\"type\":\"Polygon\",\"id\":\"011101\",\"arcs\":[[-11276,11519,-11125,11520,11521,-11516,-11513,-11511]]},{\"type\":\"Polygon\",\"id\":\"002107\",\"arcs\":[[11522,11523,-11440,-11446]]},{\"type\":\"Polygon\",\"id\":\"014806\",\"arcs\":[[-9165,-9215,-11242,-11282,-11226,-11284,11524,11525,11526]]},{\"type\":\"Polygon\",\"id\":\"014809\",\"arcs\":[[11527,-11333,11528]]},{\"type\":\"Polygon\",\"id\":\"014805\",\"arcs\":[[-11526,11529,-11529,-11187,11530,11531,11532,11533,11534]]},{\"type\":\"Polygon\",\"id\":\"000802\",\"arcs\":[[11535,-11490,-11478,-11480,-11228,-11493]]},{\"type\":\"Polygon\",\"id\":\"000801\",\"arcs\":[[-11491,-11536,-11492,-11146]]},{\"type\":\"Polygon\",\"id\":\"000702\",\"arcs\":[[11536,-11150,11537,11538]]},{\"type\":\"Polygon\",\"id\":\"000402\",\"arcs\":[[-11538,-11149,-11232,11539,11540]]},{\"type\":\"Polygon\",\"id\":\"006801\",\"arcs\":[[11541,-11299,-11154,-11161,-11506,11542]]},{\"type\":\"Polygon\",\"id\":\"006600\",\"arcs\":[[-11362,11543,-11466,11544,11545,11546,-11507]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-11133,-11130,11547,-11144,-11537,11548,-10746]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[-11129,11549,-11488,-11548]]},{\"type\":\"Polygon\",\"id\":\"010804\",\"arcs\":[[11550,11551,11552,11553]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-11365,11554,-11122,-11520]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[11555,11556,11557]]},{\"type\":\"Polygon\",\"id\":\"014804\",\"arcs\":[[-9166,-11527,-11535,11558,11559,-9180]]},{\"type\":\"Polygon\",\"id\":\"002405\",\"arcs\":[[11560,11561,11562,-11134,-11141]]},{\"type\":\"Polygon\",\"id\":\"014808\",\"arcs\":[[-11283,-11240,-11528,-11530,-11525]]},{\"type\":\"Polygon\",\"id\":\"002106\",\"arcs\":[[-11404,11563,-11523,-11445]]},{\"type\":\"Polygon\",\"id\":\"001504\",\"arcs\":[[11564,-11174,-11485,11565,11566,-11135]]},{\"type\":\"Polygon\",\"id\":\"000401\",\"arcs\":[[-11540,-11231,-11233,11567,11568,11569,11570]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[-11568,-11237,-11487,-11458,11571,11572]]},{\"type\":\"Polygon\",\"id\":\"000203\",\"arcs\":[[11573,-11411,-5365,-4940,-5080,11574,11575]]},{\"type\":\"Polygon\",\"id\":\"000202\",\"arcs\":[[11576,11577,11578,11579,-11576]]},{\"type\":\"Polygon\",\"id\":\"000201\",\"arcs\":[[11580,-11452,-11412,-11574,-11580]]},{\"type\":\"Polygon\",\"id\":\"000104\",\"arcs\":[[-11570,11581,-11578,11582]]},{\"type\":\"Polygon\",\"id\":\"006500\",\"arcs\":[[-11323,-11502,11583,-11471,-11467,-11544,-11361]]},{\"type\":\"Polygon\",\"id\":\"006000\",\"arcs\":[[-11584,-11501,11584,-11496,-11472]]},{\"type\":\"Polygon\",\"id\":\"005701\",\"arcs\":[[11585,11586,-11503,-5276,-11255,-11498]]},{\"type\":\"Polygon\",\"id\":\"007800\",\"arcs\":[[11587,11588,-11246,-11371,-11352]]},{\"type\":\"Polygon\",\"id\":\"010801\",\"arcs\":[[-11517,-11522,11589,11590,11591,11592]]},{\"type\":\"Polygon\",\"id\":\"008100\",\"arcs\":[[11593,11594,-11342]]},{\"type\":\"Polygon\",\"id\":\"005002\",\"arcs\":[[11595,11596,-11543,-11505,11597,-11556,11598,11599]]},{\"type\":\"Polygon\",\"id\":\"005001\",\"arcs\":[[11600,-11300,-11542,-11597]]},{\"type\":\"Polygon\",\"id\":\"004900\",\"arcs\":[[-11301,-11601,-11596,-11402]]},{\"type\":\"Polygon\",\"id\":\"070602\",\"arcs\":[[-11025,11601,11602,11603]]},{\"type\":\"Polygon\",\"id\":\"070601\",\"arcs\":[[-11602,-11024,-11034,-10979,-10992,-4186,11604,11605,11606,11607,11608,11609]]},{\"type\":\"Polygon\",\"id\":\"070702\",\"arcs\":[[-11608,11610,11611,11612]]},{\"type\":\"Polygon\",\"id\":\"001503\",\"arcs\":[[-11136,-11567,11613,-5254,-5227,-11408]]},{\"type\":\"Polygon\",\"id\":\"002404\",\"arcs\":[[-11563,11614,11615,-11178,-11175,-11565]]},{\"type\":\"Polygon\",\"id\":\"002401\",\"arcs\":[[11616,-11615,-11562,11617]]},{\"type\":\"Polygon\",\"id\":\"000103\",\"arcs\":[[-11569,-11573,11618,-11579,-11582]]},{\"type\":\"Polygon\",\"id\":\"000101\",\"arcs\":[[-11457,-11453,-11581,-11619,-11572]]},{\"type\":\"Polygon\",\"id\":\"009701\",\"arcs\":[[-11387,11619,-11475,-11156,-11164]]},{\"type\":\"Polygon\",\"id\":\"009500\",\"arcs\":[[11620,-11388,-11162,11621,11622]]},{\"type\":\"Polygon\",\"id\":\"009400\",\"arcs\":[[-11296,-11389,-11621,11623,-11291]]},{\"type\":\"Polygon\",\"id\":\"013103\",\"arcs\":[[-11531,-11194,-11274,11624,11625]]},{\"type\":\"Polygon\",\"id\":\"005800\",\"arcs\":[[11626,11627,-11586,-11497]]},{\"type\":\"Polygon\",\"id\":\"013102\",\"arcs\":[[-11207,-11212,-11417,-11265,-11262,-11191]]},{\"type\":\"Polygon\",\"id\":\"010702\",\"arcs\":[[-11592,-11553,11628,-11297,-11401,11629]]},{\"type\":\"Polygon\",\"id\":\"010903\",\"arcs\":[[-11124,11630,11631,11632,-11590,-11521]]},{\"type\":\"Polygon\",\"id\":\"002103\",\"arcs\":[[-11524,-11564,-11403,-11600,11633,11634,-11441]]},{\"type\":\"Polygon\",\"id\":\"004700\",\"arcs\":[[11635,11636,11637,11638,11639]]},{\"type\":\"Polygon\",\"id\":\"004600\",\"arcs\":[[11640,-11640,11641,11642]]},{\"type\":\"Polygon\",\"id\":\"005200\",\"arcs\":[[-11598,-11508,-11547,11643,11644,-11637,11645,-11557]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[11646,11647,-11378,-11200]]},{\"type\":\"Polygon\",\"id\":\"070701\",\"arcs\":[[11648,11649,11650,-11611,-11607]]},{\"type\":\"Polygon\",\"id\":\"073000\",\"arcs\":[[11651,11652,11653,11654,11655,11656]]},{\"type\":\"Polygon\",\"id\":\"073500\",\"arcs\":[[11657,-11656,-4079,-4111,-9156,11658]]},{\"type\":\"Polygon\",\"id\":\"070900\",\"arcs\":[[-11609,-11613,11659,-4163,11660,11661]]},{\"type\":\"Polygon\",\"id\":\"070800\",\"arcs\":[[-11612,-11651,11662,11663,11664,-4189,-4164,-11660]]},{\"type\":\"Polygon\",\"id\":\"071000\",\"arcs\":[[11665,-11661,-4168,-4082,-4194,-4080,-4076,-11655]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[-11399,11666,11667,-11618,-11561,-11140,-11462,-11481]]},{\"type\":\"Polygon\",\"id\":\"002204\",\"arcs\":[[11668,11669,-11642,11670,11671,-11176,-11616,-11617,-11668]]},{\"type\":\"Polygon\",\"id\":\"002203\",\"arcs\":[[-11398,-11443,11672,-11669,-11667]]},{\"type\":\"Polygon\",\"id\":\"009300\",\"arcs\":[[-11624,-11623,11673,11674,11675]]},{\"type\":\"Polygon\",\"id\":\"009200\",\"arcs\":[[-11674,-11622,-11165,11676,11677]]},{\"type\":\"Polygon\",\"id\":\"009000\",\"arcs\":[[-11464,-11292,-11676,11678,11679]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[11680,-11545,-11470,-11495,-11356,11681]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[11682,11683,11684,-11672]]},{\"type\":\"Polygon\",\"id\":\"005901\",\"arcs\":[[-11585,-11500,11685,-11627]]},{\"type\":\"Polygon\",\"id\":\"005702\",\"arcs\":[[-11628,-11686,-11499,-11587]]},{\"type\":\"Polygon\",\"id\":\"004500\",\"arcs\":[[-11639,11686,-11683,-11671]]},{\"type\":\"Polygon\",\"id\":\"010902\",\"arcs\":[[-11270,-11465,-11680,11687,11688,-11632,11689]]},{\"type\":\"Polygon\",\"id\":\"012503\",\"arcs\":[[11690,-11250,-11222]]},{\"type\":\"Polygon\",\"id\":\"014704\",\"arcs\":[[-11559,-11534,11691,11692,11693]]},{\"type\":\"Polygon\",\"id\":\"014703\",\"arcs\":[[-9181,-11560,-11694,11694]]},{\"type\":\"Polygon\",\"id\":\"014701\",\"arcs\":[[-9182,-11695,-11693,11695,-11258,-11303,11696,-11375,-10717,-9173]]},{\"type\":\"Polygon\",\"id\":\"072000\",\"arcs\":[[11697,-11603,-11610,-11662,-11666,-11654]]},{\"type\":\"Polygon\",\"id\":\"070500\",\"arcs\":[[-11605,-4185,-4160,11698,11699]]},{\"type\":\"Polygon\",\"id\":\"070400\",\"arcs\":[[-11606,-11700,11700,11701,-11649]]},{\"type\":\"Polygon\",\"id\":\"002202\",\"arcs\":[[11702,11703,-11643,-11670,-11673]]},{\"type\":\"Polygon\",\"id\":\"002201\",\"arcs\":[[-11635,11704,-11703,-11442]]},{\"type\":\"Polygon\",\"id\":\"001502\",\"arcs\":[[-11566,-11484,-5158,-5255,-11614]]},{\"type\":\"Polygon\",\"id\":\"008902\",\"arcs\":[[-11425,-11293,-11289,-11463]]},{\"type\":\"Polygon\",\"id\":\"010000\",\"arcs\":[[-11552,11705,-11677,-11151,-11298,-11629]]},{\"type\":\"Polygon\",\"id\":\"004400\",\"arcs\":[[-11638,-11645,11706,11707,11708,-11687]]},{\"type\":\"Polygon\",\"id\":\"004300\",\"arcs\":[[-11707,-11644,-11546,-11681,11709,11710]]},{\"type\":\"Polygon\",\"id\":\"004200\",\"arcs\":[[-11711,11711,11712,11713,-11708]]},{\"type\":\"Polygon\",\"id\":\"008000\",\"arcs\":[[-11595,11714,-11588,-11351,-11343]]},{\"type\":\"Polygon\",\"id\":\"010901\",\"arcs\":[[-11690,-11631,-11123,-11555,-11271]]},{\"type\":\"Polygon\",\"id\":\"010803\",\"arcs\":[[-11633,-11689,11715,-11554,-11591]]},{\"type\":\"Polygon\",\"id\":\"010701\",\"arcs\":[[-11128,11716,-11518,-11593,-11630,-11444,-11448,-11489,-11550]]},{\"type\":\"Polygon\",\"id\":\"014607\",\"arcs\":[[-11696,-11692,-11533,11717,-11259]]},{\"type\":\"Polygon\",\"id\":\"014606\",\"arcs\":[[-11377,-11260,-11718,-11532,-11626,-11647,-11199,11718,-11196]]},{\"type\":\"Polygon\",\"id\":\"014605\",\"arcs\":[[-11338,11719,-11197,-11719,-11202,-10706]]},{\"type\":\"Polygon\",\"id\":\"014604\",\"arcs\":[[-11198,-11720,-11339,-10691,-10720]]},{\"type\":\"Polygon\",\"id\":\"014200\",\"arcs\":[[-11305,-11360,-11376,-11697]]},{\"type\":\"Polygon\",\"id\":\"070300\",\"arcs\":[[-11650,-11702,11720,-11663]]},{\"type\":\"Polygon\",\"id\":\"074000\",\"arcs\":[[11721,-11659,-9155,-9153]]},{\"type\":\"Polygon\",\"id\":\"070100\",\"arcs\":[[11722,-11699,-4162,-4184,-11665]]},{\"type\":\"Polygon\",\"id\":\"076000\",\"arcs\":[[-36,-11,-10966,11723,-11652,11724]]},{\"type\":\"Polygon\",\"id\":\"075000\",\"arcs\":[[-37,-11725,-11657,-11658,-11722,-42]]},{\"type\":\"Polygon\",\"id\":\"070200\",\"arcs\":[[-11701,-11723,-11664,-11721]]},{\"type\":\"Polygon\",\"id\":\"078000\",\"arcs\":[[-11724,-10969,-11026,-11604,-11698,-11653]]},{\"type\":\"Polygon\",\"id\":\"004100\",\"arcs\":[[-11712,-11710,-11682,11725,11726,11727]]},{\"type\":\"Polygon\",\"id\":\"004000\",\"arcs\":[[11728,-11713,-11728,11729,11730,11731,11732]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[-11709,-11714,-11729,11733,11734,-11684]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[-11177,-11685,-11735,11735,11736,-11171]]},{\"type\":\"Polygon\",\"id\":\"003600\",\"arcs\":[[-11734,-11733,11737,-11166,11738,-11736]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[-11515,-11519,-11717,-11127]]},{\"type\":\"Polygon\",\"id\":\"009100\",\"arcs\":[[-11716,-11688,-11679,-11675,-11678,-11706,-11551]]},{\"type\":\"Polygon\",\"id\":\"003500\",\"arcs\":[[-11483,-11172,-11737,-11739,-11169,-5153]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[-11358,-11116,11739,-11726]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[-11727,-11740,-11115,-11112,11740,-11730]]},{\"type\":\"Polygon\",\"id\":\"003200\",\"arcs\":[[-11731,-11741,-11111,11741]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[-11738,-11732,-11742,-11114,11742,-11167]]},{\"type\":\"Polygon\",\"id\":\"002900\",\"arcs\":[[-11743,-11110,-5216,-11168]]},{\"type\":\"Polygon\",\"id\":\"009703\",\"arcs\":[[-11429,-11433,-11620,-11386]]},{\"type\":\"Polygon\",\"id\":\"004800\",\"arcs\":[[-11634,-11599,-11558,-11646,-11636,-11641,-11704,-11705]]},{\"type\":\"Polygon\",\"id\":\"013700\",\"arcs\":[[-11625,-11273,-11183,-11415,-11382,-11379,-11648]]},{\"type\":\"Polygon\",\"id\":\"000500\",\"arcs\":[[11743,11744,11745]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[11746]]},{\"type\":\"Polygon\",\"id\":\"000900\",\"arcs\":[[11747,11748,11749,11750,11751,11752]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[-11750,11753,11754,11755,11756]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[11757,11758,11759,-11753,11760,-9567,11761]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[11762,11763,-11754,-11749,11764]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-11745,11765,-11765,-11748,-11760,11766]]},{\"type\":\"Polygon\",\"id\":\"000300\",\"arcs\":[[11767,11768,11769,11770,-11763]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-11771,11771,11772,-11755,-11764]]},{\"type\":\"Polygon\",\"id\":\"001700\",\"arcs\":[[-11752,11773,11774,-9563,-9568,-11761]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[-11751,-11757,11775,11776,11777,-11774]]},{\"type\":\"Polygon\",\"id\":\"002300\",\"arcs\":[[11778,11779,11780,11781,-11758,11782,11783]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-11773,11784,11785,-11776,-11756]]},{\"type\":\"Polygon\",\"id\":\"002200\",\"arcs\":[[-10591,11786,-11780,11787]]},{\"type\":\"Polygon\",\"id\":\"002100\",\"arcs\":[[-11787,-10590,-10600,11788,11789,11790,-11781]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[-10599,11791,11792,-11789]]},{\"type\":\"Polygon\",\"id\":\"001500\",\"arcs\":[[-11791,11793,11794,-11746,-11767,-11759,-11782]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[-11775,-11778,11795,11796,-10036,-286,-9564]]},{\"type\":\"Polygon\",\"id\":\"001100\",\"arcs\":[[-11786,11797,11798,-11796,-11777],[-11747]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[-11744,-11795,11799,-11768,-11766]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[11800,11801,-11792,-10598,-9916,-10102,-10032,-11797,-11799]]},{\"type\":\"Polygon\",\"id\":\"001400\",\"arcs\":[[-11794,-11790,-11793,-11802,11802,-11769,-11800]]},{\"type\":\"Polygon\",\"id\":\"001300\",\"arcs\":[[-11770,-11803,-11801,-11798,-11785,-11772]]},{\"type\":\"Polygon\",\"id\":\"590201\",\"arcs\":[[11803,11804,11805,11806,11807]]},{\"type\":\"Polygon\",\"id\":\"590202\",\"arcs\":[[11808,-11804,11809,11810]]},{\"type\":\"Polygon\",\"id\":\"591200\",\"arcs\":[[11811,11812,11813,11814]]},{\"type\":\"Polygon\",\"id\":\"590900\",\"arcs\":[[11815,11816,11817]]},{\"type\":\"Polygon\",\"id\":\"591600\",\"arcs\":[[11818,11819,-4027,-9217,-9131]]},{\"type\":\"Polygon\",\"id\":\"591100\",\"arcs\":[[-11814,11820,-11817,11821]]},{\"type\":\"Polygon\",\"id\":\"590600\",\"arcs\":[[11822,-9370,-9338,11823,11824]]},{\"type\":\"Polygon\",\"id\":\"591000\",\"arcs\":[[11825,11826,-11818,-11821,-11813]]},{\"type\":\"Polygon\",\"id\":\"590400\",\"arcs\":[[-9147,-6368,11827,-11810,-11808,11828,11829,-9144]]},{\"type\":\"Polygon\",\"id\":\"591500\",\"arcs\":[[-11830,11830,-11819,-9130,-9145]]},{\"type\":\"Polygon\",\"id\":\"591300\",\"arcs\":[[11831,-11826,-11812]]},{\"type\":\"Polygon\",\"id\":\"590100\",\"arcs\":[[-2972,-2998,-8672,-8685,-9371,-11823,11832,-11805,-11809,11833]]},{\"type\":\"Polygon\",\"id\":\"590500\",\"arcs\":[[-11806,-11833,-11825,11834,-4028,11835,11836]]},{\"type\":\"Polygon\",\"id\":\"590700\",\"arcs\":[[-11835,-11824,-9344,-4029]]},{\"type\":\"Polygon\",\"id\":\"590800\",\"arcs\":[[-11836,-4032,-4016,11837],[-11816,-11827,-11832,-11815,-11822]]},{\"type\":\"Polygon\",\"id\":\"590300\",\"arcs\":[[-2973,-11834,-11811,-11828,-6367,-9805]]},{\"type\":\"Polygon\",\"id\":\"591400\",\"arcs\":[[-11831,-11829,-11807,-11837,-11838,-4015,-4025,-11820]]},{\"type\":\"Polygon\",\"id\":\"036700\",\"arcs\":[[11838,11839,11840,11841,11842]]},{\"type\":\"Polygon\",\"id\":\"036800\",\"arcs\":[[11843,11844,11845,11846,-11841,11847]]},{\"type\":\"Polygon\",\"id\":\"037500\",\"arcs\":[[11848,11849,-1524,11850,11851,11852]]},{\"type\":\"Polygon\",\"id\":\"030700\",\"arcs\":[[11853,11854,11855,-11853,11856,11857]]},{\"type\":\"Polygon\",\"id\":\"036600\",\"arcs\":[[11858,-11843,11859,11860]]},{\"type\":\"Polygon\",\"id\":\"037000\",\"arcs\":[[11861,11862,11863,-11857,-11852,11864,-11846]]},{\"type\":\"Polygon\",\"id\":\"037100\",\"arcs\":[[11865,-11862,-11845,11866]]},{\"type\":\"Polygon\",\"id\":\"990000\",\"arcs\":[[-5858,11867,11868,11869,11870,11871,11872,11873,11874,-11861,11875]]},{\"type\":\"Polygon\",\"id\":\"035400\",\"arcs\":[[11876,11877,11878]]},{\"type\":\"Polygon\",\"id\":\"037300\",\"arcs\":[[11879,-11849,-11856,11880,11881,11882,11883,11884,11885,11886]]},{\"type\":\"Polygon\",\"id\":\"030800\",\"arcs\":[[11887,11888,-11858,-11864,11889]]},{\"type\":\"Polygon\",\"id\":\"037400\",\"arcs\":[[-1528,-1525,-11850,-11880,11890,11891]]},{\"type\":\"Polygon\",\"id\":\"030400\",\"arcs\":[[11892,11893,-11888,11894]]},{\"type\":\"Polygon\",\"id\":\"037200\",\"arcs\":[[11895,-11895,-11890,-11863,-11866,11896,-11885]]},{\"type\":\"Polygon\",\"id\":\"030100\",\"arcs\":[[-11882,11897,11898,11899]]},{\"type\":\"Polygon\",\"id\":\"035100\",\"arcs\":[[-5857,-6246,11900,11901,-11868]]},{\"type\":\"Polygon\",\"id\":\"030200\",\"arcs\":[[-11900,11902,11903,-11883]]},{\"type\":\"Polygon\",\"id\":\"030300\",\"arcs\":[[-11904,11904,-11893,-11896,-11884]]},{\"type\":\"Polygon\",\"id\":\"030500\",\"arcs\":[[-11903,-11899,11905,-11854,-11889,-11894,-11905]]},{\"type\":\"Polygon\",\"id\":\"035600\",\"arcs\":[[11906,11907,11908,-11872]]},{\"type\":\"Polygon\",\"id\":\"035700\",\"arcs\":[[-11908,11909,-11878,11910,11911,11912,11913]]},{\"type\":\"Polygon\",\"id\":\"036000\",\"arcs\":[[-11909,-11914,11914,11915,11916,-11911,-11877,11917,-11870,11918,11919,11920,11921,-11873]]},{\"type\":\"Polygon\",\"id\":\"030600\",\"arcs\":[[-11898,-11881,-11855,-11906]]},{\"type\":\"Polygon\",\"id\":\"036300\",\"arcs\":[[-11922,11922,11923,-11874]]},{\"type\":\"Polygon\",\"id\":\"035300\",\"arcs\":[[-11902,11924,11925,-11919,-11869]]},{\"type\":\"Polygon\",\"id\":\"036100\",\"arcs\":[[11926,-1517,-1529,-11892,11927,11928,-11920,-11926]]},{\"type\":\"Polygon\",\"id\":\"035500\",\"arcs\":[[-11871,-11918,-11879,-11910,-11907]]},{\"type\":\"Polygon\",\"id\":\"035800\",\"arcs\":[[-11917,11929,11930,-11912]]},{\"type\":\"Polygon\",\"id\":\"035902\",\"arcs\":[[-11913,-11931,11931,-11915]]},{\"type\":\"Polygon\",\"id\":\"035901\",\"arcs\":[[-11932,-11930,-11916]]},{\"type\":\"Polygon\",\"id\":\"036500\",\"arcs\":[[-11924,11932,11933,-11839,-11859,-11875]]},{\"type\":\"Polygon\",\"id\":\"036902\",\"arcs\":[[11934,11935,-11886,-11897,-11867,-11844,11936]]},{\"type\":\"Polygon\",\"id\":\"036402\",\"arcs\":[[-11923,-11921,-11929,11937,-11935,11938,-11933]]},{\"type\":\"Polygon\",\"id\":\"036901\",\"arcs\":[[-11928,-11891,-11887,-11936,-11938]]},{\"type\":\"Polygon\",\"id\":\"036401\",\"arcs\":[[-11939,-11937,-11848,-11840,-11934]]},{\"type\":\"Polygon\",\"id\":\"037600\",\"arcs\":[[-11901,-6245,-1475,-1518,-11927,-11925]]},{\"type\":\"Polygon\",\"id\":\"951000\",\"arcs\":[[11939,-11783,-11762,-9566,11940]]},{\"type\":\"Polygon\",\"id\":\"950700\",\"arcs\":[[-3937,11941,11942,11943,11944,11945,11946,-3966,-3944]]},{\"type\":\"Polygon\",\"id\":\"950500\",\"arcs\":[[11947,-11943,11948,11949]]},{\"type\":\"Polygon\",\"id\":\"950100\",\"arcs\":[[11950,11951,11952,11953,-11950,11954,-3949,-9849]]},{\"type\":\"Polygon\",\"id\":\"950900\",\"arcs\":[[11955,-11941,-9569,-8941,11956]]},{\"type\":\"Polygon\",\"id\":\"950800\",\"arcs\":[[-11947,11957,11958,-11957,-8940,-3967]]},{\"type\":\"Polygon\",\"id\":\"950200\",\"arcs\":[[11959,11960,11961,-11953]]},{\"type\":\"Polygon\",\"id\":\"950300\",\"arcs\":[[-11961,11962,-11945,11963]]},{\"type\":\"Polygon\",\"id\":\"950400\",\"arcs\":[[-11962,-11964,-11944,-11948,-11954]]},{\"type\":\"Polygon\",\"id\":\"950600\",\"arcs\":[[-11949,-11942,-3936,-3957,-3965,-3950,-11955]]},{\"type\":\"Polygon\",\"id\":\"040500\",\"arcs\":[[11964,11965,11966,11967,11968,-11951,-9848]]},{\"type\":\"Polygon\",\"id\":\"041200\",\"arcs\":[[-11969,11969,11970,11971,11972,11973,-11958,-11946,-11963,-11960,-11952]]},{\"type\":\"Polygon\",\"id\":\"041300\",\"arcs\":[[11974,11975,11976,-11970,-11968]]},{\"type\":\"Polygon\",\"id\":\"041400\",\"arcs\":[[11977,11978,-11976]]},{\"type\":\"Polygon\",\"id\":\"041500\",\"arcs\":[[11979,11980,11981,11982,-11979]]},{\"type\":\"Polygon\",\"id\":\"041600\",\"arcs\":[[11983,11984,11985,-11981]]},{\"type\":\"Polygon\",\"id\":\"041700\",\"arcs\":[[-11986,11986,11987,11988,11989,-11982]]},{\"type\":\"Polygon\",\"id\":\"041800\",\"arcs\":[[-11989,11990,-11972,11991]]},{\"type\":\"Polygon\",\"id\":\"040400\",\"arcs\":[[11992,-3043,11993,-11966,11994]]},{\"type\":\"Polygon\",\"id\":\"040200\",\"arcs\":[[-10887,-3241,-3044,-11993,11995,11996,-10881]]},{\"type\":\"Polygon\",\"id\":\"040300\",\"arcs\":[[-11996,-11995,-11965,-9847,-9854,11997]]},{\"type\":\"Polygon\",\"id\":\"041100\",\"arcs\":[[-11991,-11988,11998,11999,12000,-11973]]},{\"type\":\"Polygon\",\"id\":\"041000\",\"arcs\":[[-11974,-12001,12001,12002,-11784,-11940,-11956,-11959]]},{\"type\":\"Polygon\",\"id\":\"040900\",\"arcs\":[[-3333,-10597,-10592,-11788,-11779,-12003,12003]]},{\"type\":\"Polygon\",\"id\":\"040800\",\"arcs\":[[-3215,-3334,-12004,-12002,-12000,12004]]},{\"type\":\"Polygon\",\"id\":\"040700\",\"arcs\":[[12005,-3216,-12005,-11999,-11987,-11985]]},{\"type\":\"Polygon\",\"id\":\"040600\",\"arcs\":[[-3042,-3248,-3217,-12006,-11984,-11980,-11978,-11975,-11967,-11994]]},{\"type\":\"Polygon\",\"id\":\"040100\",\"arcs\":[[-10869,-10882,-11997,-11998,-9853,-9861,-9870,12006]]},{\"type\":\"Polygon\",\"id\":\"042100\",\"arcs\":[[-11983,-11990,-11992,-11971,-11977]]},{\"type\":\"Polygon\",\"id\":\"990200\",\"arcs\":[[-6390,-10896,-10870,-12007,-9869,12007]]},{\"type\":\"Polygon\",\"id\":\"076901\",\"arcs\":[[12008,12009,12010,12011,12012]]},{\"type\":\"Polygon\",\"id\":\"097202\",\"arcs\":[[12013,12014,12015,12016]]},{\"type\":\"Polygon\",\"id\":\"162100\",\"arcs\":[[12017,12018,12019,-2214,12020,12021,12022,12023,12024]]},{\"type\":\"Polygon\",\"id\":\"161700\",\"arcs\":[[12025,-2220,-2215,-12020,12026,12027]]},{\"type\":\"Polygon\",\"id\":\"157903\",\"arcs\":[[12028,-2753,-2751,-2277,-12026,12029,12030]]},{\"type\":\"Polygon\",\"id\":\"157902\",\"arcs\":[[12031,12032,-12031,12033]]},{\"type\":\"Polygon\",\"id\":\"157901\",\"arcs\":[[12034,-2754,-12029,-12033]]},{\"type\":\"Polygon\",\"id\":\"157102\",\"arcs\":[[12035,-12027,-12019,12036]]},{\"type\":\"Polygon\",\"id\":\"056100\",\"arcs\":[[-8268,12037,12038,12039,12040,12041,12042,12043,12044,12045,-6702,-6881,-7018,-8272]]},{\"type\":\"Polygon\",\"id\":\"056000\",\"arcs\":[[12046,-12023,12047,12048,12049,12050]]},{\"type\":\"Polygon\",\"id\":\"055900\",\"arcs\":[[12051,12052,12053,-12038,-8267]]},{\"type\":\"Polygon\",\"id\":\"055800\",\"arcs\":[[-12051,12054,12055,12056]]},{\"type\":\"Polygon\",\"id\":\"055700\",\"arcs\":[[12057,12058,12059,12060,12061,12062,-12053,12063]]},{\"type\":\"Polygon\",\"id\":\"055600\",\"arcs\":[[12064,-12057,12065,12066,12067]]},{\"type\":\"Polygon\",\"id\":\"055500\",\"arcs\":[[12068,-12064,-12052,-6759,-6606]]},{\"type\":\"Polygon\",\"id\":\"055400\",\"arcs\":[[12069,12070,-12024,-12047,-12065]]},{\"type\":\"Polygon\",\"id\":\"055300\",\"arcs\":[[12071,12072,-12058,-12069,-6605]]},{\"type\":\"Polygon\",\"id\":\"066701\",\"arcs\":[[12073,12074,12075,12076,12077]]},{\"type\":\"Polygon\",\"id\":\"066501\",\"arcs\":[[12078,12079,12080,12081,12082,12083,-12077]]},{\"type\":\"Polygon\",\"id\":\"126700\",\"arcs\":[[12084,12085,12086,12087,12088,12089,12090,12091]]},{\"type\":\"Polygon\",\"id\":\"066300\",\"arcs\":[[12092,12093,12094,12095,-12081]]},{\"type\":\"Polygon\",\"id\":\"066100\",\"arcs\":[[-12082,-12096,12096]]},{\"type\":\"Polygon\",\"id\":\"066000\",\"arcs\":[[12097,12098,12099]]},{\"type\":\"Polygon\",\"id\":\"065900\",\"arcs\":[[-12097,12100,12101,12102,12103,-12083]]},{\"type\":\"Polygon\",\"id\":\"065702\",\"arcs\":[[-12103,12104,12105,12106,12107]]},{\"type\":\"Polygon\",\"id\":\"065600\",\"arcs\":[[12108,-2811,-2293,12109,-12098,12110]]},{\"type\":\"Polygon\",\"id\":\"040400\",\"arcs\":[[12111,12112,12113,12114,12115]]},{\"type\":\"Polygon\",\"id\":\"040300\",\"arcs\":[[12116,12117,12118,12119,12120,12121]]},{\"type\":\"Polygon\",\"id\":\"040200\",\"arcs\":[[-12115,12122,12123,12124,12125,12126]]},{\"type\":\"Polygon\",\"id\":\"040100\",\"arcs\":[[12127,12128,-12118,12129]]},{\"type\":\"Polygon\",\"id\":\"040000\",\"arcs\":[[-12125,12130,12131,12132]]},{\"type\":\"Polygon\",\"id\":\"039900\",\"arcs\":[[12133,12134,-12128]]},{\"type\":\"Polygon\",\"id\":\"039800\",\"arcs\":[[-12133,12135,12136,12137,12138,-12126]]},{\"type\":\"Polygon\",\"id\":\"039400\",\"arcs\":[[12139,12140,12141]]},{\"type\":\"Polygon\",\"id\":\"038400\",\"arcs\":[[12142,12143,12144,12145,12146,12147]]},{\"type\":\"Polygon\",\"id\":\"038100\",\"arcs\":[[12148,-12134,-12130,-12117,12149,12150]]},{\"type\":\"Polygon\",\"id\":\"037900\",\"arcs\":[[12151,-12150,-12122,12152,12153,12154,12155]]},{\"type\":\"Polygon\",\"id\":\"157101\",\"arcs\":[[12156,-12034,-12030,-12028,-12036,12157]]},{\"type\":\"Polygon\",\"id\":\"156700\",\"arcs\":[[12158,12159,12160,-12158,-12037,-12018,12161,12162]]},{\"type\":\"Polygon\",\"id\":\"152902\",\"arcs\":[[-2538,12163,12164,12165,12166]]},{\"type\":\"Polygon\",\"id\":\"152901\",\"arcs\":[[12167,-12166,12168,-12160,12169]]},{\"type\":\"Polygon\",\"id\":\"150702\",\"arcs\":[[12170,-2526,-2539,-12167,12171]]},{\"type\":\"Polygon\",\"id\":\"150701\",\"arcs\":[[12172,-12172,-12168,12173]]},{\"type\":\"Polygon\",\"id\":\"148300\",\"arcs\":[[-2483,-2528,12174,12175,12176,12177]]},{\"type\":\"Polygon\",\"id\":\"055200\",\"arcs\":[[12178,-12070,-12068,12179,12180,12181]]},{\"type\":\"Polygon\",\"id\":\"055100\",\"arcs\":[[12182,12183,12184,-12059,-12073,12185]]},{\"type\":\"Polygon\",\"id\":\"054900\",\"arcs\":[[12186,12187,-12186,-12072,-6604]]},{\"type\":\"Polygon\",\"id\":\"054800\",\"arcs\":[[-12180,-12067,12188,12189]]},{\"type\":\"Polygon\",\"id\":\"054700\",\"arcs\":[[12190,12191,12192,-12187,-6603,-6597]]},{\"type\":\"Polygon\",\"id\":\"054500\",\"arcs\":[[12193,-12191,-6596,-6588,12194]]},{\"type\":\"Polygon\",\"id\":\"054200\",\"arcs\":[[-12066,-12056,12195,12196,12197,12198,-12189]]},{\"type\":\"Polygon\",\"id\":\"054000\",\"arcs\":[[12199,12200,12201,12202,12203,-12198]]},{\"type\":\"Polygon\",\"id\":\"053900\",\"arcs\":[[12204,12205,12206,-12195,-6587,-6580,-6572,-7865]]},{\"type\":\"Polygon\",\"id\":\"053800\",\"arcs\":[[-12202,12207,12208,12209]]},{\"type\":\"Polygon\",\"id\":\"053601\",\"arcs\":[[-12203,-12210,12210,12211,12212]]},{\"type\":\"Polygon\",\"id\":\"065501\",\"arcs\":[[12213,12214,12215,12216,12217,12218,12219]]},{\"type\":\"Polygon\",\"id\":\"065400\",\"arcs\":[[12220,12221,-12111,-12100,12222,12223,12224]]},{\"type\":\"Polygon\",\"id\":\"065000\",\"arcs\":[[12225,12226,12227,12228,12229,12230]]},{\"type\":\"Polygon\",\"id\":\"064600\",\"arcs\":[[12231,12232,12233,-12227,12234]]},{\"type\":\"Polygon\",\"id\":\"064500\",\"arcs\":[[12235,12236,12237,12238,12239,12240]]},{\"type\":\"Polygon\",\"id\":\"064102\",\"arcs\":[[12241,12242,12243,-12239,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,-6694,-12046]]},{\"type\":\"Polygon\",\"id\":\"064101\",\"arcs\":[[12250,-12255,-12256]]},{\"type\":\"Polygon\",\"id\":\"063900\",\"arcs\":[[12256,-12240,-12244]]},{\"type\":\"Polygon\",\"id\":\"037700\",\"arcs\":[[12257,12258,-12155,12259,12260,12261,12262]]},{\"type\":\"Polygon\",\"id\":\"037600\",\"arcs\":[[12263,12264,-12147,12265,12266,12267,12268,12269,-12140]]},{\"type\":\"Polygon\",\"id\":\"037500\",\"arcs\":[[12270,12271,-12262,12272,12273,12274,12275,12276]]},{\"type\":\"Polygon\",\"id\":\"037300\",\"arcs\":[[12277,12278,-12151,-12152,12279,12280]]},{\"type\":\"Polygon\",\"id\":\"037100\",\"arcs\":[[12281,12282,-12278,12283,12284]]},{\"type\":\"Polygon\",\"id\":\"036800\",\"arcs\":[[12285,12286,12287]]},{\"type\":\"Polygon\",\"id\":\"036700\",\"arcs\":[[-12284,-12281,12288,12289,12290,12291]]},{\"type\":\"Polygon\",\"id\":\"036600\",\"arcs\":[[-12138,-12141,-12270,12292,12293,-12286,12294,12295]]},{\"type\":\"Polygon\",\"id\":\"036500\",\"arcs\":[[-12280,-12156,-12259,12296,-12289]]},{\"type\":\"Polygon\",\"id\":\"036300\",\"arcs\":[[-12290,-12297,-12258,12297]]},{\"type\":\"Polygon\",\"id\":\"036100\",\"arcs\":[[-12291,-12298,-12263,-12272,12298,12299,12300]]},{\"type\":\"Polygon\",\"id\":\"147900\",\"arcs\":[[-2527,-12171,-12173,12301,-12175]]},{\"type\":\"Polygon\",\"id\":\"147100\",\"arcs\":[[12302,12303,12304,12305,12306,12307]]},{\"type\":\"Polygon\",\"id\":\"146700\",\"arcs\":[[12308,12309,-12308,12310,12311,12312]]},{\"type\":\"Polygon\",\"id\":\"146300\",\"arcs\":[[-12312,12313,12314,12315,12316,12317]]},{\"type\":\"Polygon\",\"id\":\"145900\",\"arcs\":[[12318,12319,12320,12321,12322,12323,12324]]},{\"type\":\"Polygon\",\"id\":\"145102\",\"arcs\":[[12325,12326,12327,12328,12329,-12314]]},{\"type\":\"Polygon\",\"id\":\"145101\",\"arcs\":[[-12315,-12330,12330,12331]]},{\"type\":\"Polygon\",\"id\":\"144700\",\"arcs\":[[-12311,-12307,12332,12333,-12326]]},{\"type\":\"Polygon\",\"id\":\"144100\",\"arcs\":[[-12306,12334,12335,12336,-12333]]},{\"type\":\"Polygon\",\"id\":\"053500\",\"arcs\":[[12337,12338,12339,-12205,-7864]]},{\"type\":\"Polygon\",\"id\":\"053401\",\"arcs\":[[-12211,-12209,12340,12341,12342,-12144,12343,12344]]},{\"type\":\"Polygon\",\"id\":\"053200\",\"arcs\":[[12345,12346,-12344,-12143,12347,12348]]},{\"type\":\"Polygon\",\"id\":\"053000\",\"arcs\":[[12349,12350,-12348,-12148,-12265,12351,12352]]},{\"type\":\"Polygon\",\"id\":\"052800\",\"arcs\":[[12353,12354,-12352,-12264,-12142,-12137]]},{\"type\":\"Polygon\",\"id\":\"052600\",\"arcs\":[[12355,12356,-12354,-12136,-12132]]},{\"type\":\"Polygon\",\"id\":\"052500\",\"arcs\":[[12357,12358,12359,-12339,12360]]},{\"type\":\"Polygon\",\"id\":\"052400\",\"arcs\":[[12361,12362,-12356,-12131,-12124,12363]]},{\"type\":\"Polygon\",\"id\":\"052200\",\"arcs\":[[12364,12365,-12353,-12355,-12357,-12363]]},{\"type\":\"Polygon\",\"id\":\"052100\",\"arcs\":[[12366,12367,12368,-12358,12369]]},{\"type\":\"Polygon\",\"id\":\"052000\",\"arcs\":[[12370,12371,-12350,-12366,12372]]},{\"type\":\"Polygon\",\"id\":\"063800\",\"arcs\":[[-12228,-12234,12373,12374,-2812,-12109,-12222,12375]]},{\"type\":\"Polygon\",\"id\":\"063700\",\"arcs\":[[-12217,12376,-12241,-12257,-12243,12377,12378]]},{\"type\":\"Polygon\",\"id\":\"008300\",\"arcs\":[[12379,12380,12381,12382,12383,12384]]},{\"type\":\"Polygon\",\"id\":\"008100\",\"arcs\":[[12385,-12384,12386,12387,12388,12389]]},{\"type\":\"Polygon\",\"id\":\"007900\",\"arcs\":[[-12383,12390,12391,12392,-12387]]},{\"type\":\"Polygon\",\"id\":\"007700\",\"arcs\":[[-12393,12393,12394,-12388]]},{\"type\":\"Polygon\",\"id\":\"007500\",\"arcs\":[[12395,12396,12397,-12394]]},{\"type\":\"Polygon\",\"id\":\"007300\",\"arcs\":[[12398,12399,-12396,-12392]]},{\"type\":\"Polygon\",\"id\":\"007100\",\"arcs\":[[12400,12401,12402,-12399,-12391,-12382]]},{\"type\":\"Polygon\",\"id\":\"006900\",\"arcs\":[[12403,12404,12405,-12401,-12381]]},{\"type\":\"Polygon\",\"id\":\"006300\",\"arcs\":[[-12400,-12403,12406,12407,12408,12409]]},{\"type\":\"Polygon\",\"id\":\"035800\",\"arcs\":[[12410,12411,-12235,-12226,12412,12413]]},{\"type\":\"Polygon\",\"id\":\"035300\",\"arcs\":[[-12299,-12271,12414,12415,12416]]},{\"type\":\"Polygon\",\"id\":\"035200\",\"arcs\":[[-12293,-12269,12417,-12414,12418,12419,12420]]},{\"type\":\"Polygon\",\"id\":\"035100\",\"arcs\":[[12421,-12416,12422,12423,12424,12425]]},{\"type\":\"Polygon\",\"id\":\"034700\",\"arcs\":[[12426,-12300,-12417,-12422,12427,12428,12429]]},{\"type\":\"Polygon\",\"id\":\"033900\",\"arcs\":[[-12425,12430,12431,12432,12433]]},{\"type\":\"Polygon\",\"id\":\"033700\",\"arcs\":[[-12433,12434,12435,12436,12437]]},{\"type\":\"Polygon\",\"id\":\"033402\",\"arcs\":[[12438,12439,12440,12441]]},{\"type\":\"Polygon\",\"id\":\"033401\",\"arcs\":[[12442,-12287,-12294,-12421,12443,-12439,12444]]},{\"type\":\"Polygon\",\"id\":\"033100\",\"arcs\":[[-5374,12445,12446,12447,12448,-12282,12449,-12430,12450,12451]]},{\"type\":\"Polygon\",\"id\":\"143500\",\"arcs\":[[-12337,12452,12453,-12327,-12334]]},{\"type\":\"Polygon\",\"id\":\"142900\",\"arcs\":[[12454,-12331,-12329,12455,12456,-12321]]},{\"type\":\"Polygon\",\"id\":\"140902\",\"arcs\":[[-12456,12457,12458,12459]]},{\"type\":\"Polygon\",\"id\":\"140901\",\"arcs\":[[-12328,12460,12461,-12458]]},{\"type\":\"Polygon\",\"id\":\"140300\",\"arcs\":[[12462,12463,12464,-12461,-12454]]},{\"type\":\"Polygon\",\"id\":\"139900\",\"arcs\":[[-12336,12465,12466,-12463,-12453]]},{\"type\":\"Polygon\",\"id\":\"138502\",\"arcs\":[[-12302,-12174,-12170,-12159,12467,12468,12469,-12304,12470]]},{\"type\":\"Polygon\",\"id\":\"051800\",\"arcs\":[[-12349,-12351,-12372,12471]]},{\"type\":\"Polygon\",\"id\":\"051700\",\"arcs\":[[12472,12473,-12074,12474,-12367,12475,12476]]},{\"type\":\"Polygon\",\"id\":\"051600\",\"arcs\":[[12477,-12212,-12345,-12347]]},{\"type\":\"Polygon\",\"id\":\"051500\",\"arcs\":[[12478,12479,12480,12481]]},{\"type\":\"Polygon\",\"id\":\"051300\",\"arcs\":[[12482,12483,12484,-12480]]},{\"type\":\"Polygon\",\"id\":\"051200\",\"arcs\":[[-12204,-12213,-12478,12485,12486,12487]]},{\"type\":\"Polygon\",\"id\":\"051100\",\"arcs\":[[-12481,-12485,12488,-12473,12489]]},{\"type\":\"Polygon\",\"id\":\"051000\",\"arcs\":[[-12486,-12346,12490,12491,12492]]},{\"type\":\"Polygon\",\"id\":\"050800\",\"arcs\":[[12493,-12491,-12472,-12371,12494]]},{\"type\":\"Polygon\",\"id\":\"050700\",\"arcs\":[[12495,12496,12497,12498,12499]]},{\"type\":\"Polygon\",\"id\":\"006100\",\"arcs\":[[-12410,12500,12501,-12397]]},{\"type\":\"Polygon\",\"id\":\"005900\",\"arcs\":[[-12502,12502,12503,12504]]},{\"type\":\"Polygon\",\"id\":\"005800\",\"arcs\":[[12505,12506,12507,12508,12509,12510]]},{\"type\":\"Polygon\",\"id\":\"005700\",\"arcs\":[[-12504,12511,12512,12513]]},{\"type\":\"Polygon\",\"id\":\"005500\",\"arcs\":[[12514,-12513,12515,12516,12517]]},{\"type\":\"Polygon\",\"id\":\"005400\",\"arcs\":[[12518,12519,12520,12521,-12506,12522]]},{\"type\":\"Polygon\",\"id\":\"005300\",\"arcs\":[[-12398,-12505,-12514,12523,12524,12525]]},{\"type\":\"Polygon\",\"id\":\"005200\",\"arcs\":[[-12519,12526,12527,12528]]},{\"type\":\"Polygon\",\"id\":\"005100\",\"arcs\":[[-12524,-12515,12529,12530]]},{\"type\":\"Polygon\",\"id\":\"005000\",\"arcs\":[[-12527,-12523,-12511,12531]]},{\"type\":\"Polygon\",\"id\":\"004700\",\"arcs\":[[12532,-12525,12533,12534]]},{\"type\":\"Polygon\",\"id\":\"033000\",\"arcs\":[[-12444,-12420,12535,12536,12537,12538,-12440]]},{\"type\":\"Polygon\",\"id\":\"032900\",\"arcs\":[[-12426,-12434,-12438,12539,12540,-12428]]},{\"type\":\"Polygon\",\"id\":\"032800\",\"arcs\":[[-12413,-12231,12541,12542,-12536,-12419]]},{\"type\":\"Polygon\",\"id\":\"032700\",\"arcs\":[[12543,-12540,-12437,12544,12545,12546]]},{\"type\":\"Polygon\",\"id\":\"032000\",\"arcs\":[[-12537,12547,12548,12549,12550,12551,12552]]},{\"type\":\"Polygon\",\"id\":\"031700\",\"arcs\":[[12553,12554,12555,-12451,12556,12557,12558]]},{\"type\":\"Polygon\",\"id\":\"030902\",\"arcs\":[[12559,12560,12561,12562,12563,12564]]},{\"type\":\"Polygon\",\"id\":\"029900\",\"arcs\":[[12565,-12558,12566,-12560,12567,12568]]},{\"type\":\"Polygon\",\"id\":\"138501\",\"arcs\":[[-12470,12569,-12466,-12335,-12305]]},{\"type\":\"Polygon\",\"id\":\"137700\",\"arcs\":[[-12469,12570,-12570]]},{\"type\":\"Polygon\",\"id\":\"136700\",\"arcs\":[[-12464,-12467,-12571,12571,12572,12573]]},{\"type\":\"Polygon\",\"id\":\"134700\",\"arcs\":[[-12459,12574,12575,12576]]},{\"type\":\"Polygon\",\"id\":\"134100\",\"arcs\":[[-12577,12577,12578,12579,12580,12581]]},{\"type\":\"Polygon\",\"id\":\"133900\",\"arcs\":[[12582,12583,12584,-12579]]},{\"type\":\"Polygon\",\"id\":\"133300\",\"arcs\":[[-12578,-12576,12585,12586,-12583]]},{\"type\":\"Polygon\",\"id\":\"130100\",\"arcs\":[[-12162,-12025,-12071,-12179,12587]]},{\"type\":\"Polygon\",\"id\":\"050600\",\"arcs\":[[12588,-12495,-12373,-12365,-12362,12589,12590]]},{\"type\":\"Polygon\",\"id\":\"050500\",\"arcs\":[[12591,12592,-12496,12593]]},{\"type\":\"Polygon\",\"id\":\"050400\",\"arcs\":[[-12590,-12364,-12123,-12114,12594]]},{\"type\":\"Polygon\",\"id\":\"050202\",\"arcs\":[[-12492,-12494,-12589,12595,12596]]},{\"type\":\"Polygon\",\"id\":\"050201\",\"arcs\":[[12597,-12596,-12591,-12595,-12113]]},{\"type\":\"Polygon\",\"id\":\"050000\",\"arcs\":[[12598,12599,-12487,-12493,-12597,-12598,-12112,12600,12601]]},{\"type\":\"Polygon\",\"id\":\"049900\",\"arcs\":[[12602,12603,-12594,-12500,12604,12605]]},{\"type\":\"Polygon\",\"id\":\"049700\",\"arcs\":[[12606,-12606,12607,12608]]},{\"type\":\"Polygon\",\"id\":\"049600\",\"arcs\":[[-12199,-12488,12609,12610]]},{\"type\":\"Polygon\",\"id\":\"049500\",\"arcs\":[[-12499,12611,-12075,-12474,12612]]},{\"type\":\"Polygon\",\"id\":\"004500\",\"arcs\":[[12613,-12389,-12395,-12526,-12533,12614,12615,12616]]},{\"type\":\"Polygon\",\"id\":\"004401\",\"arcs\":[[-12528,-12532,-12510,12617,-6476,-6677,12618]]},{\"type\":\"Polygon\",\"id\":\"004300\",\"arcs\":[[-12615,-12535,12619,12620]]},{\"type\":\"Polygon\",\"id\":\"004200\",\"arcs\":[[12621,12622,-12529,-12619,-6676]]},{\"type\":\"Polygon\",\"id\":\"004002\",\"arcs\":[[12623,12624,12625,12626,-12521]]},{\"type\":\"Polygon\",\"id\":\"004001\",\"arcs\":[[12627,12628,-12624,-12520]]},{\"type\":\"Polygon\",\"id\":\"003900\",\"arcs\":[[12629,-12617,12630]]},{\"type\":\"Polygon\",\"id\":\"003800\",\"arcs\":[[12631,12632,-12628,-12623,12633]]},{\"type\":\"Polygon\",\"id\":\"003700\",\"arcs\":[[-994,-990,12634,-12390,-12614,-12630,12635,12636,12637]]},{\"type\":\"Polygon\",\"id\":\"003600\",\"arcs\":[[12638,-12634,-12622,-6680,12639]]},{\"type\":\"Polygon\",\"id\":\"029700\",\"arcs\":[[12640,12641,-12568,-12565,12642,12643,12644,12645,12646]]},{\"type\":\"Polygon\",\"id\":\"029500\",\"arcs\":[[-12645,12647,12648]]},{\"type\":\"Polygon\",\"id\":\"029300\",\"arcs\":[[-12643,12649,12650,12651,12652,12653]]},{\"type\":\"Polygon\",\"id\":\"029100\",\"arcs\":[[12654,12655,-12650,-12564]]},{\"type\":\"Polygon\",\"id\":\"028900\",\"arcs\":[[-12563,12656,12657,12658,12659,-12655]]},{\"type\":\"Polygon\",\"id\":\"028800\",\"arcs\":[[12660,12661,12662,12663,12664,12665,12666]]},{\"type\":\"Polygon\",\"id\":\"028700\",\"arcs\":[[12667,12668,-12658,12669]]},{\"type\":\"Polygon\",\"id\":\"028500\",\"arcs\":[[12670,12671,12672,-12668]]},{\"type\":\"Polygon\",\"id\":\"028400\",\"arcs\":[[12673,12674,12675,-12445,-12442,-12663]]},{\"type\":\"Polygon\",\"id\":\"028300\",\"arcs\":[[12676,12677,-12672,-12546]]},{\"type\":\"Polygon\",\"id\":\"129102\",\"arcs\":[[12678,12679,-12588,-12182,12680]]},{\"type\":\"Polygon\",\"id\":\"128300\",\"arcs\":[[-12465,-12574,12681,-12681,12682,12683,12684,-12586,-12575,-12462]]},{\"type\":\"Polygon\",\"id\":\"155101\",\"arcs\":[[-2537,12685,-12164]]},{\"type\":\"Polygon\",\"id\":\"126500\",\"arcs\":[[12686,-12092,12687,12688]]},{\"type\":\"Polygon\",\"id\":\"125700\",\"arcs\":[[12689,-12689,12690,12691,12692,12693]]},{\"type\":\"Polygon\",\"id\":\"124700\",\"arcs\":[[12694,-12580,-12585,-12086,12695]]},{\"type\":\"Polygon\",\"id\":\"124100\",\"arcs\":[[12696,-12696,-12085,-12687,-12690,12697]]},{\"type\":\"Polygon\",\"id\":\"122702\",\"arcs\":[[12698,12699,12700,-12693,12701,12702,12703]]},{\"type\":\"Polygon\",\"id\":\"049302\",\"arcs\":[[-12608,-12605,-12613,-12489,12704]]},{\"type\":\"Polygon\",\"id\":\"049301\",\"arcs\":[[12705,-12609,-12705,-12484]]},{\"type\":\"Polygon\",\"id\":\"049200\",\"arcs\":[[-12181,-12190,-12611,12706,12707,12708,-12683]]},{\"type\":\"Polygon\",\"id\":\"048900\",\"arcs\":[[12709,12710,-12607,-12706,12711,12712]]},{\"type\":\"Polygon\",\"id\":\"048500\",\"arcs\":[[12713,12714,12715,12716,12717,-12710,12718]]},{\"type\":\"Polygon\",\"id\":\"048400\",\"arcs\":[[-12707,-12610,-12600,12719,12720]]},{\"type\":\"Polygon\",\"id\":\"048300\",\"arcs\":[[12721,12722,12723,12724,-12719,-12713,12725]]},{\"type\":\"Polygon\",\"id\":\"048200\",\"arcs\":[[-12720,-12599,12726,12727]]},{\"type\":\"Polygon\",\"id\":\"048100\",\"arcs\":[[12728,12729,-12714,-12725,12730]]},{\"type\":\"Polygon\",\"id\":\"003400\",\"arcs\":[[12731,12732,12733,12734,-12640,-6679,12735]]},{\"type\":\"Polygon\",\"id\":\"003200\",\"arcs\":[[12736,12737,12738,12739,12740,-12632,-12639,-12735]]},{\"type\":\"Polygon\",\"id\":\"003100\",\"arcs\":[[-12530,-12518,12741,12742]]},{\"type\":\"Polygon\",\"id\":\"003000\",\"arcs\":[[12743,-12739,12744,12745]]},{\"type\":\"Polygon\",\"id\":\"002800\",\"arcs\":[[12746,12747,12748,12749,-12740,-12744]]},{\"type\":\"Polygon\",\"id\":\"002600\",\"arcs\":[[-12249,12750,12751,-12748,12752]]},{\"type\":\"Polygon\",\"id\":\"002500\",\"arcs\":[[12753,12754,12755,-12637]]},{\"type\":\"Polygon\",\"id\":\"002400\",\"arcs\":[[-12250,-12753,-12747,12756,-12256]]},{\"type\":\"Polygon\",\"id\":\"002200\",\"arcs\":[[-12255,-12757,-12746,12757,12758]]},{\"type\":\"Polygon\",\"id\":\"002000\",\"arcs\":[[-12745,-12738,12759,-12758]]},{\"type\":\"Polygon\",\"id\":\"001900\",\"arcs\":[[-12756,12760,12761,12762,12763,12764]]},{\"type\":\"Polygon\",\"id\":\"028200\",\"arcs\":[[12765,12766,-12443,-12676,12767]]},{\"type\":\"Polygon\",\"id\":\"028100\",\"arcs\":[[-12545,-12436,12768,12769,-12677]]},{\"type\":\"Polygon\",\"id\":\"028000\",\"arcs\":[[12770,-12768,-12675,12771,12772,12773]]},{\"type\":\"Polygon\",\"id\":\"027900\",\"arcs\":[[-12435,-12432,12774,12775,-12769]]},{\"type\":\"Polygon\",\"id\":\"027800\",\"arcs\":[[-12772,-12674,-12662,12776]]},{\"type\":\"Polygon\",\"id\":\"027700\",\"arcs\":[[-12431,-12424,12777,12778,-12775]]},{\"type\":\"Polygon\",\"id\":\"027600\",\"arcs\":[[12779,-12773,-12777,12780,12781]]},{\"type\":\"Polygon\",\"id\":\"027500\",\"arcs\":[[12782,12783,12784,-12778,-12423]]},{\"type\":\"Polygon\",\"id\":\"027400\",\"arcs\":[[-12781,-12661,12785,12786]]},{\"type\":\"Polygon\",\"id\":\"027300\",\"arcs\":[[-12415,-12277,12787,12788,12789,-12783]]},{\"type\":\"Polygon\",\"id\":\"027200\",\"arcs\":[[12790,-12786,-12667,12791,12792]]},{\"type\":\"Polygon\",\"id\":\"027100\",\"arcs\":[[12793,-12779,-12785,12794,-12730,12795]]},{\"type\":\"Polygon\",\"id\":\"129104\",\"arcs\":[[-12572,-12468,-12163,-12680,12796]]},{\"type\":\"Polygon\",\"id\":\"129103\",\"arcs\":[[-12573,-12797,-12679,-12682]]},{\"type\":\"Polygon\",\"id\":\"100802\",\"arcs\":[[12797,12798,12799,12800,12801,12802,12803]]},{\"type\":\"Polygon\",\"id\":\"122701\",\"arcs\":[[12804,12805,-12698,-12694,-12701]]},{\"type\":\"Polygon\",\"id\":\"122300\",\"arcs\":[[-12581,-12695,-12697,-12806,12806]]},{\"type\":\"Polygon\",\"id\":\"121500\",\"arcs\":[[12807,12808,-12807,-12805,-12700,12809]]},{\"type\":\"Polygon\",\"id\":\"121100\",\"arcs\":[[12810,12811,-12808,12812,12813]]},{\"type\":\"Polygon\",\"id\":\"120700\",\"arcs\":[[12814,12815,-12323,12816,-12811,12817,12818]]},{\"type\":\"Polygon\",\"id\":\"120500\",\"arcs\":[[12819,12820,12821,12822,12823]]},{\"type\":\"Polygon\",\"id\":\"120300\",\"arcs\":[[-12823,12824,12825,-12818,-12814,12826,12827]]},{\"type\":\"Polygon\",\"id\":\"120100\",\"arcs\":[[12828,12829,-12825,-12822,12830]]},{\"type\":\"Polygon\",\"id\":\"119900\",\"arcs\":[[12831,12832,-12819,-12826,-12830]]},{\"type\":\"Polygon\",\"id\":\"119500\",\"arcs\":[[-12324,-12816,12833,12834]]},{\"type\":\"Polygon\",\"id\":\"048000\",\"arcs\":[[12835,-12727,-12602,12836,12837,12838]]},{\"type\":\"Polygon\",\"id\":\"047900\",\"arcs\":[[-12718,12839,12840,-12603,-12711]]},{\"type\":\"Polygon\",\"id\":\"047800\",\"arcs\":[[-12708,-12721,-12728,-12836,12841,12842]]},{\"type\":\"Polygon\",\"id\":\"047600\",\"arcs\":[[-12709,-12843,12843,-12684]]},{\"type\":\"Polygon\",\"id\":\"047500\",\"arcs\":[[12844,12845,12846,-12604,-12841]]},{\"type\":\"Polygon\",\"id\":\"047300\",\"arcs\":[[12847,12848,12849,12850,-12845,-12840,-12717]]},{\"type\":\"Polygon\",\"id\":\"047200\",\"arcs\":[[-12844,-12842,-12839,12851,12852,12853,12854]]},{\"type\":\"Polygon\",\"id\":\"001800\",\"arcs\":[[-12760,-12737,-12734,12855,12856]]},{\"type\":\"Polygon\",\"id\":\"001600\",\"arcs\":[[-12856,-12733,12857,12858,12859]]},{\"type\":\"Polygon\",\"id\":\"001400\",\"arcs\":[[-12252,-12759,-12857,-12860,12860]]},{\"type\":\"Polygon\",\"id\":\"001200\",\"arcs\":[[-12253,-12861,12861,12862,12863]]},{\"type\":\"Polygon\",\"id\":\"001000\",\"arcs\":[[-12859,12864,12865,-12862]]},{\"type\":\"Polygon\",\"id\":\"000800\",\"arcs\":[[-12858,-12732,12866,-12865]]},{\"type\":\"Polygon\",\"id\":\"000400\",\"arcs\":[[-12863,-12866,12867,-6689,12868]]},{\"type\":\"Polygon\",\"id\":\"000100\",\"arcs\":[[-955,-995,-12638,-12765,12869,-12763,12870,12871,12872,-7418,-7568,-838,-1002]]},{\"type\":\"Polygon\",\"id\":\"000600\",\"arcs\":[[-12868,-12867,-12736,-6686]]},{\"type\":\"Polygon\",\"id\":\"000700\",\"arcs\":[[-12764,-12870]]},{\"type\":\"Polygon\",\"id\":\"027000\",\"arcs\":[[12873,12874,-12782,-12787,-12791,12875]]},{\"type\":\"Polygon\",\"id\":\"026700\",\"arcs\":[[-12669,-12673,12876,12877,-12731,-12724,12878,-12659]]},{\"type\":\"Polygon\",\"id\":\"026600\",\"arcs\":[[12879,12880,-12774,12881]]},{\"type\":\"Polygon\",\"id\":\"026500\",\"arcs\":[[-12656,-12660,-12879,-12723,12882]]},{\"type\":\"Polygon\",\"id\":\"026400\",\"arcs\":[[12883,12884,-12882,-12780,-12875,12885]]},{\"type\":\"Polygon\",\"id\":\"017100\",\"arcs\":[[12886,-12742,-12517,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,-12871,-12762]]},{\"type\":\"Polygon\",\"id\":\"017000\",\"arcs\":[[12897,12898,12899,12900,12901]]},{\"type\":\"Polygon\",\"id\":\"016900\",\"arcs\":[[12902,12903,12904,12905,12906,-12893]]},{\"type\":\"Polygon\",\"id\":\"016800\",\"arcs\":[[-12901,12907,12908,12909,12910,12911,12912,12913]]},{\"type\":\"Polygon\",\"id\":\"016600\",\"arcs\":[[12914,12915,-12913,12916,12917,12918]]},{\"type\":\"Polygon\",\"id\":\"100801\",\"arcs\":[[-2420,12919,-12804,12920,12921]]},{\"type\":\"Polygon\",\"id\":\"099801\",\"arcs\":[[-12801,12922,12923,12924]]},{\"type\":\"Polygon\",\"id\":\"099705\",\"arcs\":[[-5324,-2926,-2431,-2484,-12178,12925,12926,12927,12928,12929,12930,12931,-4549]]},{\"type\":\"Polygon\",\"id\":\"099704\",\"arcs\":[[12932,12933,12934,-12930]]},{\"type\":\"Polygon\",\"id\":\"099703\",\"arcs\":[[12935,-12927,12936,-12933,-12929]]},{\"type\":\"Polygon\",\"id\":\"097204\",\"arcs\":[[12937,12938,-12014,12939]]},{\"type\":\"Polygon\",\"id\":\"097203\",\"arcs\":[[12940,-12921,-12803,12941,-12938,12942]]},{\"type\":\"Polygon\",\"id\":\"038301\",\"arcs\":[[12943,12944,12945,12946]]},{\"type\":\"Polygon\",\"id\":\"093402\",\"arcs\":[[12947,12948,12949,12950]]},{\"type\":\"Polygon\",\"id\":\"119300\",\"arcs\":[[12951,-12325,-12835,12952,12953]]},{\"type\":\"Polygon\",\"id\":\"119100\",\"arcs\":[[12954,-12953,-12834,-12815,-12833,12955,12956]]},{\"type\":\"Polygon\",\"id\":\"118900\",\"arcs\":[[-12956,-12832,-12829,12957,12958]]},{\"type\":\"Polygon\",\"id\":\"118700\",\"arcs\":[[12959,12960,-12957,-12959,12961,12962]]},{\"type\":\"Polygon\",\"id\":\"118500\",\"arcs\":[[12963,12964,-12954,-12955,-12961,12965]]},{\"type\":\"Polygon\",\"id\":\"118100\",\"arcs\":[[-12316,-12332,-12455,-12320,12966,12967]]},{\"type\":\"Polygon\",\"id\":\"117500\",\"arcs\":[[12968,12969,-12967,-12319,-12952,-12965,12970,12971]]},{\"type\":\"Polygon\",\"id\":\"117100\",\"arcs\":[[12972,-12971,-12964,12973,12974,12975]]},{\"type\":\"Polygon\",\"id\":\"116700\",\"arcs\":[[12976,-12974,-12966,-12960,12977,12978]]},{\"type\":\"Polygon\",\"id\":\"116300\",\"arcs\":[[12979,-12978,-12963,12980,12981,12982,12983]]},{\"type\":\"Polygon\",\"id\":\"116100\",\"arcs\":[[12984,12985,12986,-12983,12987,12988]]},{\"type\":\"Polygon\",\"id\":\"047100\",\"arcs\":[[12989,12990,12991,12992,12993,-12848,-12716]]},{\"type\":\"Polygon\",\"id\":\"047000\",\"arcs\":[[-12852,-12838,12994,12995]]},{\"type\":\"Polygon\",\"id\":\"098100\",\"arcs\":[[-4713,12996,12997,12998,-5371]]},{\"type\":\"Polygon\",\"id\":\"097300\",\"arcs\":[[-12999,12999,13000,-5372]]},{\"type\":\"Polygon\",\"id\":\"096400\",\"arcs\":[[13001,-12943,-12940,-12017,13002,13003]]},{\"type\":\"Polygon\",\"id\":\"094700\",\"arcs\":[[13004,13005,13006,13007,13008,13009]]},{\"type\":\"Polygon\",\"id\":\"094500\",\"arcs\":[[-4846,-13001,13010,13011,-13006,13012]]},{\"type\":\"Polygon\",\"id\":\"094203\",\"arcs\":[[13013,13014,13015,13016,13017]]},{\"type\":\"Polygon\",\"id\":\"094202\",\"arcs\":[[13018,-13014,13019,13020]]},{\"type\":\"Polygon\",\"id\":\"000200\",\"arcs\":[[-12864,-12869,-6695,-12254]]},{\"type\":\"Polygon\",\"id\":\"045600\",\"arcs\":[[13021,13022,13023,13024,-12088]]},{\"type\":\"Polygon\",\"id\":\"026300\",\"arcs\":[[-12651,-12883,13025,13026]]},{\"type\":\"Polygon\",\"id\":\"026200\",\"arcs\":[[-12886,-12874,13027,13028]]},{\"type\":\"Polygon\",\"id\":\"026100\",\"arcs\":[[-12652,-13027,13029,13030,13031]]},{\"type\":\"Polygon\",\"id\":\"026000\",\"arcs\":[[13032,13033,-13029,13034]]},{\"type\":\"Polygon\",\"id\":\"025900\",\"arcs\":[[-12653,-13032,13035,13036]]},{\"type\":\"Polygon\",\"id\":\"025800\",\"arcs\":[[13037,-12884,-13034,13038]]},{\"type\":\"Polygon\",\"id\":\"025700\",\"arcs\":[[13039,-12644,-12654,-13037,13040]]},{\"type\":\"Polygon\",\"id\":\"025500\",\"arcs\":[[-12648,-13040,13041,-12903,-12892,13042]]},{\"type\":\"Polygon\",\"id\":\"025100\",\"arcs\":[[-13042,-13041,13043,13044,13045,-12904]]},{\"type\":\"Polygon\",\"id\":\"016400\",\"arcs\":[[13046,-12902,-12914,-12916,13047]]},{\"type\":\"Polygon\",\"id\":\"016300\",\"arcs\":[[13048,13049,-12646,-12649,-13043,-12891,13050]]},{\"type\":\"Polygon\",\"id\":\"016100\",\"arcs\":[[13051,-13051,-12890,13052]]},{\"type\":\"Polygon\",\"id\":\"015900\",\"arcs\":[[13053,13054,-13053,-12889,13055]]},{\"type\":\"Polygon\",\"id\":\"015700\",\"arcs\":[[-12512,13056,-13056,-12888,-12516]]},{\"type\":\"Polygon\",\"id\":\"015600\",\"arcs\":[[13057,13058,13059,13060,13061]]},{\"type\":\"Polygon\",\"id\":\"015500\",\"arcs\":[[-12501,-12409,13062,13063,13064,-13054,-13057,-12503]]},{\"type\":\"Polygon\",\"id\":\"015400\",\"arcs\":[[13065,-13062,13066,13067]]},{\"type\":\"Polygon\",\"id\":\"015300\",\"arcs\":[[-13065,13068,13069,-13049,-13052,-13055]]},{\"type\":\"Polygon\",\"id\":\"015200\",\"arcs\":[[13070,13071,13072,-13058,-13066,13073,13074,13075]]},{\"type\":\"Polygon\",\"id\":\"015100\",\"arcs\":[[13076,13077,-13050,-13070]]},{\"type\":\"Polygon\",\"id\":\"015000\",\"arcs\":[[13078,-13074,-13068,13079]]},{\"type\":\"Polygon\",\"id\":\"093401\",\"arcs\":[[13080,-12951,13081,13082]]},{\"type\":\"Polygon\",\"id\":\"079701\",\"arcs\":[[13083,13084,13085,13086,13087,13088]]},{\"type\":\"Polygon\",\"id\":\"077908\",\"arcs\":[[-12702,-12692,13089,13090,13091]]},{\"type\":\"Polygon\",\"id\":\"077907\",\"arcs\":[[13092,-13091,13093,13094]]},{\"type\":\"Polygon\",\"id\":\"077906\",\"arcs\":[[13095,-12703,-13092,-13093,13096]]},{\"type\":\"Polygon\",\"id\":\"075702\",\"arcs\":[[13097,13098,13099,13100,13101,13102]]},{\"type\":\"Polygon\",\"id\":\"075701\",\"arcs\":[[13103,13104,-12010,-13100]]},{\"type\":\"Polygon\",\"id\":\"071702\",\"arcs\":[[13105,13106,13107,13108,13109,13110]]},{\"type\":\"Polygon\",\"id\":\"071701\",\"arcs\":[[13111,13112,13113,13114,13115,13116,-13109]]},{\"type\":\"Polygon\",\"id\":\"071306\",\"arcs\":[[-13115,13117,13118,13119,13120,13121]]},{\"type\":\"Polygon\",\"id\":\"071305\",\"arcs\":[[13122,13123,-13120]]},{\"type\":\"Polygon\",\"id\":\"115900\",\"arcs\":[[13124,-12984,-12987,13125]]},{\"type\":\"Polygon\",\"id\":\"115700\",\"arcs\":[[13126,13127,-12979,-12980,-13125]]},{\"type\":\"Polygon\",\"id\":\"115500\",\"arcs\":[[13128,-12975,-12977,-13128,13129]]},{\"type\":\"Polygon\",\"id\":\"115100\",\"arcs\":[[13130,-12976,-13129,13131]]},{\"type\":\"Polygon\",\"id\":\"114700\",\"arcs\":[[13132,-12972,-12973,-13131,13133]]},{\"type\":\"Polygon\",\"id\":\"114100\",\"arcs\":[[13134,13135,13136,13137,-12969,-13133]]},{\"type\":\"Polygon\",\"id\":\"113900\",\"arcs\":[[13138,13139,-12317,-12968,-12970,-13138,13140]]},{\"type\":\"Polygon\",\"id\":\"113300\",\"arcs\":[[13141,-12318,-13140,13142]]},{\"type\":\"Polygon\",\"id\":\"112900\",\"arcs\":[[13143,13144,-12313,-13142]]},{\"type\":\"Polygon\",\"id\":\"112300\",\"arcs\":[[13145,13146,-12309,-13145,13147]]},{\"type\":\"Polygon\",\"id\":\"111300\",\"arcs\":[[13148,-12176,-12471,-12303,-12310,-13147]]},{\"type\":\"Polygon\",\"id\":\"094201\",\"arcs\":[[-13020,-13018,13149,13150]]},{\"type\":\"Polygon\",\"id\":\"093900\",\"arcs\":[[-4847,-13013,-13005,13151,-5333]]},{\"type\":\"Polygon\",\"id\":\"093800\",\"arcs\":[[-13150,-13017,13152,-12948,-13081,13153]]},{\"type\":\"Polygon\",\"id\":\"092900\",\"arcs\":[[-4841,-4450,-5334,-13152,-13010,13154,13155,-12446,-5373]]},{\"type\":\"Polygon\",\"id\":\"092800\",\"arcs\":[[-13082,-12950,13156,13157,-8495]]},{\"type\":\"Polygon\",\"id\":\"092500\",\"arcs\":[[-13009,13158,-13155]]},{\"type\":\"Polygon\",\"id\":\"092200\",\"arcs\":[[-13158,13159,13160,-8496]]},{\"type\":\"Polygon\",\"id\":\"091900\",\"arcs\":[[-13159,-13008,13161,-12447,-13156]]},{\"type\":\"Polygon\",\"id\":\"091800\",\"arcs\":[[-8500,-8497,-13161,13162,13163,13164,-8347]]},{\"type\":\"Polygon\",\"id\":\"024900\",\"arcs\":[[-13036,-13031,13165,13166,-13044]]},{\"type\":\"Polygon\",\"id\":\"024700\",\"arcs\":[[-13030,-13026,-12722,13167,-13166]]},{\"type\":\"Polygon\",\"id\":\"024600\",\"arcs\":[[13168,13169,13170,13171,13172,13173]]},{\"type\":\"Polygon\",\"id\":\"024500\",\"arcs\":[[-13167,-13168,13174,13175]]},{\"type\":\"Polygon\",\"id\":\"024300\",\"arcs\":[[-13175,-12726,-12712,-12483,-12479,13176]]},{\"type\":\"Polygon\",\"id\":\"024000\",\"arcs\":[[13177,13178,-13174,13179,13180,13181,13182]]},{\"type\":\"Polygon\",\"id\":\"023800\",\"arcs\":[[13183,-13183,13184,13185]]},{\"type\":\"Polygon\",\"id\":\"023600\",\"arcs\":[[13186,13187,-13178,-13184,13188,13189]]},{\"type\":\"Polygon\",\"id\":\"023500\",\"arcs\":[[13190,13191,13192,13193,13194,13195,13196,13197]]},{\"type\":\"Polygon\",\"id\":\"023200\",\"arcs\":[[13198,-13189,-13186,13199,13200]]},{\"type\":\"Polygon\",\"id\":\"014900\",\"arcs\":[[13201,-13077,-13069,-13064]]},{\"type\":\"Polygon\",\"id\":\"014800\",\"arcs\":[[13202,-13075,-13079,13203,13204]]},{\"type\":\"Polygon\",\"id\":\"014700\",\"arcs\":[[13205,13206,13207,-12647,-13078,-13202]]},{\"type\":\"Polygon\",\"id\":\"014500\",\"arcs\":[[13208,13209,-12641,-13208]]},{\"type\":\"Polygon\",\"id\":\"014400\",\"arcs\":[[13210,13211,-13205,13212,13213,13214]]},{\"type\":\"Polygon\",\"id\":\"014300\",\"arcs\":[[13215,13216,-13209,-13207,13217]]},{\"type\":\"Polygon\",\"id\":\"014202\",\"arcs\":[[13218,13219,13220,13221,-13076,-13203,-13212]]},{\"type\":\"Polygon\",\"id\":\"014201\",\"arcs\":[[-13219,-13211,13222]]},{\"type\":\"Polygon\",\"id\":\"014100\",\"arcs\":[[13223,-12569,-12642,-13210,-13217]]},{\"type\":\"Polygon\",\"id\":\"014000\",\"arcs\":[[13224,13225,-13223,-13215,13226,13227]]},{\"type\":\"Polygon\",\"id\":\"013800\",\"arcs\":[[13228,-13226,13229,13230]]},{\"type\":\"Polygon\",\"id\":\"071304\",\"arcs\":[[13231,13232,13233,-13118,-13114]]},{\"type\":\"Polygon\",\"id\":\"071303\",\"arcs\":[[13234,13235,-13123,-13119,-13234]]},{\"type\":\"Polygon\",\"id\":\"061302\",\"arcs\":[[-12107,13236,13237,13238,13239]]},{\"type\":\"Polygon\",\"id\":\"044302\",\"arcs\":[[13240,13241,13242,13243,13244,13245]]},{\"type\":\"Polygon\",\"id\":\"044301\",\"arcs\":[[13246,13247,13248,-13241,13249]]},{\"type\":\"Polygon\",\"id\":\"043702\",\"arcs\":[[13250,13251,13252,-13107,13253,-13249]]},{\"type\":\"Polygon\",\"id\":\"043701\",\"arcs\":[[13254,13255,13256,13257,-13252]]},{\"type\":\"Polygon\",\"id\":\"109900\",\"arcs\":[[13258,13259,-13143,-13139]]},{\"type\":\"Polygon\",\"id\":\"109700\",\"arcs\":[[13260,-13148,-13144,-13260]]},{\"type\":\"Polygon\",\"id\":\"107201\",\"arcs\":[[13261]]},{\"type\":\"Polygon\",\"id\":\"105900\",\"arcs\":[[13262,13263,-13135,-13134,-13132,-13130,13264]]},{\"type\":\"Polygon\",\"id\":\"104700\",\"arcs\":[[13265,13266,-13265,-13127,-13126,-12986,13267]]},{\"type\":\"Polygon\",\"id\":\"103900\",\"arcs\":[[-13000,-12998,13268,13269,-13266,13270,-13011]]},{\"type\":\"Polygon\",\"id\":\"103300\",\"arcs\":[[13271,13272,-13263,-13267,-13270]]},{\"type\":\"Polygon\",\"id\":\"091602\",\"arcs\":[[-13164,13273,13274]]},{\"type\":\"Polygon\",\"id\":\"091601\",\"arcs\":[[-8348,-13165,-13275,13275]]},{\"type\":\"Polygon\",\"id\":\"090700\",\"arcs\":[[-13162,-13007,-13012,13276,13277,-12947,13278,-12448]]},{\"type\":\"Polygon\",\"id\":\"089200\",\"arcs\":[[13279,13280,13281,-8493,-7184,13282]]},{\"type\":\"Polygon\",\"id\":\"088400\",\"arcs\":[[13283,13284,13285,-13281,13286,13287,13288]]},{\"type\":\"Polygon\",\"id\":\"087100\",\"arcs\":[[13289,13290,13291,13292,13293,-12945]]},{\"type\":\"Polygon\",\"id\":\"086500\",\"arcs\":[[-12982,13294,13295,-13291,13296,-12988]]},{\"type\":\"Polygon\",\"id\":\"086400\",\"arcs\":[[13297,13298,13299,13300,13301,13302,13303,13304,13305,13306]]},{\"type\":\"Polygon\",\"id\":\"086300\",\"arcs\":[[-12981,13307,13308,13309,-13295]]},{\"type\":\"Polygon\",\"id\":\"023000\",\"arcs\":[[13310,13311,-13190,-13199,13312]]},{\"type\":\"Polygon\",\"id\":\"022900\",\"arcs\":[[-13192,13313,-13045,-13176,-13177,-12482,-12490,13314,13315]]},{\"type\":\"Polygon\",\"id\":\"022002\",\"arcs\":[[13316,13317,-13313,-13201,13318,13319]]},{\"type\":\"Polygon\",\"id\":\"022001\",\"arcs\":[[13320,-13320,13321,13322,13323]]},{\"type\":\"Polygon\",\"id\":\"021900\",\"arcs\":[[13324,-13315,-12477,13325,-12338,-7863,13326]]},{\"type\":\"Polygon\",\"id\":\"021600\",\"arcs\":[[13327,-13323,13328,-13220,-13229,13329,13330]]},{\"type\":\"Polygon\",\"id\":\"021400\",\"arcs\":[[-13319,-13200,-13185,-13182,13331,-13329,-13322]]},{\"type\":\"Polygon\",\"id\":\"013700\",\"arcs\":[[13332,13333,13334,13335,-12559,-12566,-13224,13336]]},{\"type\":\"Polygon\",\"id\":\"013600\",\"arcs\":[[-13230,-13225,13337]]},{\"type\":\"Polygon\",\"id\":\"013500\",\"arcs\":[[13338,-12554,-13336,13339]]},{\"type\":\"Polygon\",\"id\":\"013400\",\"arcs\":[[13340,-13228,13341,13342,-12246]]},{\"type\":\"Polygon\",\"id\":\"013200\",\"arcs\":[[-13342,-13227,-13214,13343,13344,13345]]},{\"type\":\"Polygon\",\"id\":\"013000\",\"arcs\":[[-12247,-13343,-13346,13346,13347]]},{\"type\":\"Polygon\",\"id\":\"012800\",\"arcs\":[[-13348,13348,13349,-12751,-12248]]},{\"type\":\"Polygon\",\"id\":\"012602\",\"arcs\":[[-12752,-13350,13350,13351,-12749]]},{\"type\":\"Polygon\",\"id\":\"012601\",\"arcs\":[[-13349,13352,13353,13354,-13351]]},{\"type\":\"Polygon\",\"id\":\"012400\",\"arcs\":[[-13345,13355,13356,-13353,-13347]]},{\"type\":\"Polygon\",\"id\":\"012301\",\"arcs\":[[13357,13358,-12555,-13339,13359,13360]]},{\"type\":\"Polygon\",\"id\":\"012200\",\"arcs\":[[-13344,-13213,13361,-13356]]},{\"type\":\"Polygon\",\"id\":\"038302\",\"arcs\":[[-13279,-12946,-13294,13362,13363,13364,13365,13366,13367,13368,13369,13370,-13324,-13328,13371,-13104,-13099,13372,13373,-13257,13374,13375,-12135,-12149,-12279,-12283,-12449]]},{\"type\":\"Polygon\",\"id\":\"030904\",\"arcs\":[[-12567,-12557,-12429,-12541,-12544,13376,-12561]]},{\"type\":\"Polygon\",\"id\":\"030903\",\"arcs\":[[-13377,-12547,-12671,-12670,-12657,-12562]]},{\"type\":\"Polygon\",\"id\":\"026902\",\"arcs\":[[-12878,13377,-12796,-12729]]},{\"type\":\"Polygon\",\"id\":\"025302\",\"arcs\":[[-12905,-13046,-13314,-13191,13378]]},{\"type\":\"Polygon\",\"id\":\"025301\",\"arcs\":[[-12906,-13379,-13198,13379]]},{\"type\":\"Polygon\",\"id\":\"018502\",\"arcs\":[[13380,13381,13382,-13196,13383,13384]]},{\"type\":\"Polygon\",\"id\":\"018501\",\"arcs\":[[-13384,-13195,13385,13386]]},{\"type\":\"Polygon\",\"id\":\"155102\",\"arcs\":[[-12165,-12686,-2536,-12035,-12032,-12157,-12161,-12169]]},{\"type\":\"Polygon\",\"id\":\"103202\",\"arcs\":[[13387,-2312,-2121,13388,13389,-12799]]},{\"type\":\"Polygon\",\"id\":\"102900\",\"arcs\":[[13390,13391,13392,-13272,-13269]]},{\"type\":\"Polygon\",\"id\":\"101700\",\"arcs\":[[13393,13394,-13136,-13264,-13273,-13393,13395]]},{\"type\":\"Polygon\",\"id\":\"101001\",\"arcs\":[[-12800,-13390,13396,-2181,13397,-12923]]},{\"type\":\"Polygon\",\"id\":\"099900\",\"arcs\":[[-12936,-12928]]},{\"type\":\"Polygon\",\"id\":\"099701\",\"arcs\":[[13398,-12931,-12935,13399,-13394]]},{\"type\":\"Polygon\",\"id\":\"086100\",\"arcs\":[[-13308,-12962,-12958,-12831,-12821,13400,13401]]},{\"type\":\"Polygon\",\"id\":\"085900\",\"arcs\":[[13402,-13401,-12820,13403,-13086]]},{\"type\":\"Polygon\",\"id\":\"085700\",\"arcs\":[[13404,-13309,-13402,-13403,-13085,13405]]},{\"type\":\"Polygon\",\"id\":\"085500\",\"arcs\":[[-13310,-13405,13406,-13296]]},{\"type\":\"Polygon\",\"id\":\"085300\",\"arcs\":[[-13407,-13406,-13084,13407,13408,-13292]]},{\"type\":\"Polygon\",\"id\":\"084602\",\"arcs\":[[-13304,13409,13410,13411,13412,13413,-13284]]},{\"type\":\"Polygon\",\"id\":\"084601\",\"arcs\":[[13414,13415,-13410,-13303]]},{\"type\":\"Polygon\",\"id\":\"084500\",\"arcs\":[[-13087,-13404,-12824,-12828,13416]]},{\"type\":\"Polygon\",\"id\":\"084000\",\"arcs\":[[13417,-12917,-12912,13418,13419,13420,-13301]]},{\"type\":\"Polygon\",\"id\":\"083800\",\"arcs\":[[-13421,13421,-13415,-13302]]},{\"type\":\"Polygon\",\"id\":\"021200\",\"arcs\":[[-13181,13422,-13221,-13332]]},{\"type\":\"Polygon\",\"id\":\"020800\",\"arcs\":[[-13180,-13173,13423,13424,-13071,-13222,-13423]]},{\"type\":\"Polygon\",\"id\":\"020600\",\"arcs\":[[13425,13426,-13072,-13425]]},{\"type\":\"Polygon\",\"id\":\"020400\",\"arcs\":[[-13426,-13424,-13172,13427,13428,13429]]},{\"type\":\"Polygon\",\"id\":\"020200\",\"arcs\":[[-13430,13430,13431,13432,13433,-13427]]},{\"type\":\"Polygon\",\"id\":\"019800\",\"arcs\":[[-13429,13434,13435,-13431]]},{\"type\":\"Polygon\",\"id\":\"019600\",\"arcs\":[[13436,-13035,-13028,13437,13438,13439,-13432,-13436]]},{\"type\":\"Polygon\",\"id\":\"019200\",\"arcs\":[[-13439,13440,13441,13442,13443]]},{\"type\":\"Polygon\",\"id\":\"019000\",\"arcs\":[[-12876,-12793,13444,13445,-13441,-13438]]},{\"type\":\"Polygon\",\"id\":\"018900\",\"arcs\":[[13446,-13385,-13387,13447,13448,13449]]},{\"type\":\"Polygon\",\"id\":\"012100\",\"arcs\":[[-13360,-13340,-13335,13450,13451]]},{\"type\":\"Polygon\",\"id\":\"012000\",\"arcs\":[[-13362,-13204,-13080,-13067,13452,13453,13454]]},{\"type\":\"Polygon\",\"id\":\"011900\",\"arcs\":[[-13451,-13334,13455]]},{\"type\":\"Polygon\",\"id\":\"011800\",\"arcs\":[[-13354,-13357,-13455,13456,13457,13458]]},{\"type\":\"Polygon\",\"id\":\"011700\",\"arcs\":[[13459,-13456,-13333,13460,13461]]},{\"type\":\"Polygon\",\"id\":\"011600\",\"arcs\":[[-13355,-13459,13462,13463,13464,-13352]]},{\"type\":\"Polygon\",\"id\":\"011500\",\"arcs\":[[13465,13466,13467,-13462,13468]]},{\"type\":\"Polygon\",\"id\":\"011400\",\"arcs\":[[-12750,-13465,13469,-12633,-12741]]},{\"type\":\"Polygon\",\"id\":\"011300\",\"arcs\":[[13470,-13361,-13452,-13460,-13468,13471]]},{\"type\":\"Polygon\",\"id\":\"011200\",\"arcs\":[[-13464,13472,13473,-12625,-12629,-13470]]},{\"type\":\"Polygon\",\"id\":\"011100\",\"arcs\":[[13474,-13358,-13471,13475,13476]]},{\"type\":\"Polygon\",\"id\":\"011000\",\"arcs\":[[-13458,13477,13478,-13473,-13463]]},{\"type\":\"Polygon\",\"id\":\"010800\",\"arcs\":[[-13454,13479,13480,-13478,-13457]]},{\"type\":\"Polygon\",\"id\":\"018102\",\"arcs\":[[13481,-13382,13482,-12895]]},{\"type\":\"Polygon\",\"id\":\"018101\",\"arcs\":[[-12896,-13483,-13381,-13447,13483]]},{\"type\":\"Polygon\",\"id\":\"015802\",\"arcs\":[[13484,-13048,-12915,13485,-13060]]},{\"type\":\"Polygon\",\"id\":\"015801\",\"arcs\":[[-13073,-13434,-12898,-13047,-13485,-13059]]},{\"type\":\"Polygon\",\"id\":\"006502\",\"arcs\":[[13486,-13218,-13206,-13063,-12408,13487]]},{\"type\":\"Polygon\",\"id\":\"006501\",\"arcs\":[[13488,-13488,-12407,-12402]]},{\"type\":\"Polygon\",\"id\":\"006202\",\"arcs\":[[-12509,-13288,13489,-13283,-7183,-6489,-6502,-6477,-12618]]},{\"type\":\"Polygon\",\"id\":\"006201\",\"arcs\":[[-13287,-13280,-13490]]},{\"type\":\"Polygon\",\"id\":\"141700\",\"arcs\":[[-12322,-12457,-12460,-12582,-12809,-12812,-12817]]},{\"type\":\"Polygon\",\"id\":\"109300\",\"arcs\":[[-12934,-12937,-12926,-12177,-13149,-13146,-13261,13490]]},{\"type\":\"Polygon\",\"id\":\"099200\",\"arcs\":[[-12802,-12925,13491,13492,-12015,-12939,-12942]]},{\"type\":\"Polygon\",\"id\":\"099100\",\"arcs\":[[-4550,-12932,-13399,-13396,-13392,13493]]},{\"type\":\"Polygon\",\"id\":\"098700\",\"arcs\":[[-13494,-13391,-12997,-4551]]},{\"type\":\"Polygon\",\"id\":\"063500\",\"arcs\":[[-12378,-12242,-12045,13494]]},{\"type\":\"Polygon\",\"id\":\"063302\",\"arcs\":[[13495,-13495,-12044,13496]]},{\"type\":\"Polygon\",\"id\":\"063301\",\"arcs\":[[13497,-13497,-12043,13498]]},{\"type\":\"Polygon\",\"id\":\"063200\",\"arcs\":[[13499,13500,-12374,-12233,13501]]},{\"type\":\"Polygon\",\"id\":\"063000\",\"arcs\":[[13502,13503,-13502,-12232,-12412,13504]]},{\"type\":\"Polygon\",\"id\":\"062900\",\"arcs\":[[13505,13506,13507,-12041,13508]]},{\"type\":\"Polygon\",\"id\":\"083700\",\"arcs\":[[-13417,-12827,-12813,-12810,13509,13510,13511,13512,-13088]]},{\"type\":\"Polygon\",\"id\":\"081800\",\"arcs\":[[-13420,13513,13514,-13411,-13416,-13422]]},{\"type\":\"Polygon\",\"id\":\"081400\",\"arcs\":[[13515,13516,-13412,-13515,13517]]},{\"type\":\"Polygon\",\"id\":\"080900\",\"arcs\":[[13518,-12704,-13096,13519,-13368,13520]]},{\"type\":\"Polygon\",\"id\":\"080302\",\"arcs\":[[13521,-13510,-12699,-13519,13522,-13366]]},{\"type\":\"Polygon\",\"id\":\"080301\",\"arcs\":[[13523,13524,-13511,-13522,-13365]]},{\"type\":\"Polygon\",\"id\":\"079900\",\"arcs\":[[13525,-13512,-13525]]},{\"type\":\"Polygon\",\"id\":\"079300\",\"arcs\":[[-13523,-13521,-13367]]},{\"type\":\"Polygon\",\"id\":\"079200\",\"arcs\":[[13526,13527,-13517,13528]]},{\"type\":\"Polygon\",\"id\":\"018800\",\"arcs\":[[-13446,13529,13530,-13442]]},{\"type\":\"Polygon\",\"id\":\"018700\",\"arcs\":[[-13448,-13386,-13194,13531,13532]]},{\"type\":\"Polygon\",\"id\":\"018600\",\"arcs\":[[13533,13534,13535,-13530]]},{\"type\":\"Polygon\",\"id\":\"018402\",\"arcs\":[[-13445,-12792,-12666,13536,13537,-13534]]},{\"type\":\"Polygon\",\"id\":\"018401\",\"arcs\":[[-13537,-12665,13538,13539,13540,13541]]},{\"type\":\"Polygon\",\"id\":\"018300\",\"arcs\":[[-12907,-13380,-13197,-13383,-13482,-12894]]},{\"type\":\"Polygon\",\"id\":\"018200\",\"arcs\":[[-13538,-13542,13542,13543,-13535]]},{\"type\":\"Polygon\",\"id\":\"018000\",\"arcs\":[[-13544,-13518,-13514,13544]]},{\"type\":\"Polygon\",\"id\":\"017900\",\"arcs\":[[-13484,-13450,13545,-12872,-12897]]},{\"type\":\"Polygon\",\"id\":\"017800\",\"arcs\":[[13546,-13536,-13545,-13419,-12911]]},{\"type\":\"Polygon\",\"id\":\"010701\",\"arcs\":[[-4906,-5375,-12452,-12556,-13359,-13475,13547,13548,-1096]]},{\"type\":\"Polygon\",\"id\":\"010600\",\"arcs\":[[-13061,-13486,-12919,13549,13550,13551,-13480,-13453]]},{\"type\":\"Polygon\",\"id\":\"010500\",\"arcs\":[[-13548,-13477,13552]]},{\"type\":\"Polygon\",\"id\":\"010400\",\"arcs\":[[-13551,13553,13554,13555]]},{\"type\":\"Polygon\",\"id\":\"010300\",\"arcs\":[[-13549,-13553,-13476,-13472,13556,13557,-1097]]},{\"type\":\"Polygon\",\"id\":\"010200\",\"arcs\":[[-13550,-12918,-13418,-13300,13558,-13554]]},{\"type\":\"Polygon\",\"id\":\"010100\",\"arcs\":[[-13557,-13467,13559,13560]]},{\"type\":\"Polygon\",\"id\":\"010000\",\"arcs\":[[13561,-13555,-13559,-13299,13562]]},{\"type\":\"Polygon\",\"id\":\"009900\",\"arcs\":[[-1098,-13558,-13561,13563,13564,13565,-591]]},{\"type\":\"Polygon\",\"id\":\"009800\",\"arcs\":[[-13479,-13481,-13552,-13556,-13562,13566,13567]]},{\"type\":\"Polygon\",\"id\":\"009700\",\"arcs\":[[-13564,-13560,-13466,13568]]},{\"type\":\"Polygon\",\"id\":\"108500\",\"arcs\":[[-13400,-13491,-13259,-13141,-13137,-13395]]},{\"type\":\"Polygon\",\"id\":\"058200\",\"arcs\":[[13569,13570,13571,-12341,-12208,-12201]]},{\"type\":\"Polygon\",\"id\":\"053100\",\"arcs\":[[-12476,-12370,-12361,-13326]]},{\"type\":\"Polygon\",\"id\":\"044400\",\"arcs\":[[13572,13573,-12995,-12837,-12601,-12116,13574,13575,13576,13577,-13170,13578,13579]]},{\"type\":\"Polygon\",\"id\":\"035700\",\"arcs\":[[-12450,-12285,-12292,-12301,-12427]]},{\"type\":\"Polygon\",\"id\":\"030600\",\"arcs\":[[-13528,13580,13581,-12538,-12553,13582,-13413]]},{\"type\":\"Polygon\",\"id\":\"025400\",\"arcs\":[[-13171,-13578,13583,13584,-13039,-13033,-13437,-13435,-13428]]},{\"type\":\"Polygon\",\"id\":\"062700\",\"arcs\":[[13585,-13506,13586,13587,13588]]},{\"type\":\"Polygon\",\"id\":\"062600\",\"arcs\":[[-12268,13589,-13505,-12411,-12418]]},{\"type\":\"Polygon\",\"id\":\"062500\",\"arcs\":[[13590,-13507,-13586,13591,-13238]]},{\"type\":\"Polygon\",\"id\":\"062400\",\"arcs\":[[13592,13593,13594,13595,-13503,-13590,-12267]]},{\"type\":\"Polygon\",\"id\":\"062300\",\"arcs\":[[-13499,-12042,-13508,-13591,13596]]},{\"type\":\"Polygon\",\"id\":\"103201\",\"arcs\":[[-12920,-2419,-2313,-13388,-12798]]},{\"type\":\"Polygon\",\"id\":\"062000\",\"arcs\":[[-13596,13597,13598,-13500,-13504]]},{\"type\":\"Polygon\",\"id\":\"061900\",\"arcs\":[[13599,13600,-13498,-13597,-13237,-12106]]},{\"type\":\"Polygon\",\"id\":\"061800\",\"arcs\":[[-13599,13601,13602,-13501]]},{\"type\":\"Polygon\",\"id\":\"061602\",\"arcs\":[[13603,13604,-2549,-2488,-12375,-13603]]},{\"type\":\"Polygon\",\"id\":\"061601\",\"arcs\":[[-13595,13605,-13604,-13602,-13598]]},{\"type\":\"Polygon\",\"id\":\"079000\",\"arcs\":[[-13543,-13541,13606,-13529,-13516]]},{\"type\":\"Polygon\",\"id\":\"078800\",\"arcs\":[[-13540,13607,-13581,-13527,-13607]]},{\"type\":\"Polygon\",\"id\":\"077905\",\"arcs\":[[-13371,13608,13609,-12688,-12091,-13317,-13321]]},{\"type\":\"Polygon\",\"id\":\"077904\",\"arcs\":[[-13090,-12691,-13610,13610,-13094]]},{\"type\":\"Polygon\",\"id\":\"077903\",\"arcs\":[[-13611,-13609,-13370,13611]]},{\"type\":\"Polygon\",\"id\":\"077902\",\"arcs\":[[-13097,-13095,-13612,-13369,-13520]]},{\"type\":\"Polygon\",\"id\":\"077500\",\"arcs\":[[13612,-13330,-13231,-13338,-13341]]},{\"type\":\"Polygon\",\"id\":\"062100\",\"arcs\":[[-12218,-12379,-13496,-13601,13613]]},{\"type\":\"Polygon\",\"id\":\"088901\",\"arcs\":[[-13271,-13268,-12985,13614,-13277]]},{\"type\":\"Polygon\",\"id\":\"077300\",\"arcs\":[[13615,13616,-12012,13617,-13331,-13613,-12245]]},{\"type\":\"Polygon\",\"id\":\"017600\",\"arcs\":[[13618,-13531,-13547,-12910]]},{\"type\":\"Polygon\",\"id\":\"017400\",\"arcs\":[[-13443,-13619,-12909,13619]]},{\"type\":\"Polygon\",\"id\":\"017200\",\"arcs\":[[13620,-13620,-12908,-12900]]},{\"type\":\"Polygon\",\"id\":\"046900\",\"arcs\":[[-12784,-12790,13621,-12990,-12715,-12795]]},{\"type\":\"Polygon\",\"id\":\"046800\",\"arcs\":[[-12996,-13574,13622,13623]]},{\"type\":\"Polygon\",\"id\":\"046700\",\"arcs\":[[-12789,13624,13625,-12991,-13622]]},{\"type\":\"Polygon\",\"id\":\"046600\",\"arcs\":[[-12853,-13624,13626,13627,13628]]},{\"type\":\"Polygon\",\"id\":\"046500\",\"arcs\":[[-12276,13629,-13625,-12788]]},{\"type\":\"Polygon\",\"id\":\"046400\",\"arcs\":[[13630,-12854,-13629,13631,-13022]]},{\"type\":\"Polygon\",\"id\":\"046300\",\"arcs\":[[-13630,-12275,13632,13633,-12992,-13626]]},{\"type\":\"Polygon\",\"id\":\"009600\",\"arcs\":[[-13567,-13563,-13298,13634]]},{\"type\":\"Polygon\",\"id\":\"009500\",\"arcs\":[[-13569,13635,-12405,-13565]]},{\"type\":\"Polygon\",\"id\":\"009400\",\"arcs\":[[-13474,-13568,-13635,-13307,-12626]]},{\"type\":\"Polygon\",\"id\":\"009100\",\"arcs\":[[-592,-13566,-12404,-12380,13636,-1093]]},{\"type\":\"Polygon\",\"id\":\"008800\",\"arcs\":[[-13305,-13289,-12508,13637]]},{\"type\":\"Polygon\",\"id\":\"008700\",\"arcs\":[[-13637,-12385,-12386,-12635,-989,-1094]]},{\"type\":\"Polygon\",\"id\":\"008600\",\"arcs\":[[-13306,-13638,-12507,-12522,-12627]]},{\"type\":\"Polygon\",\"id\":\"990100\",\"arcs\":[[-13276,-13274,-13163,-13160,-13157,-12949,-13153,-13016,13638,-13003,-12016,-13493,13639,-2185,-2907,13640,-1321,-7469]]},{\"type\":\"Polygon\",\"id\":\"127700\",\"arcs\":[[-12584,-12587,-12685,-12855,-13631,-12087]]},{\"type\":\"Polygon\",\"id\":\"099802\",\"arcs\":[[-12924,-13398,-2186,-13640,-13492]]},{\"type\":\"Polygon\",\"id\":\"095400\",\"arcs\":[[-13004,-13639,-13015,-13019,13641]]},{\"type\":\"Polygon\",\"id\":\"079702\",\"arcs\":[[-13408,-13089,-13513,-13526,-13524,-13364,13642]]},{\"type\":\"Polygon\",\"id\":\"074900\",\"arcs\":[[13643,-12013,-13617,13644,13645]]},{\"type\":\"Polygon\",\"id\":\"067100\",\"arcs\":[[13646,-12093,-12080,13647,-12497]]},{\"type\":\"Polygon\",\"id\":\"062200\",\"arcs\":[[13648,13649,13650,-2636,13651,13652,13653]]},{\"type\":\"Polygon\",\"id\":\"061400\",\"arcs\":[[-13652,-2635,-2550,-13605,-13606,13654]]},{\"type\":\"Polygon\",\"id\":\"061200\",\"arcs\":[[13655,-13653,-13655,-13594,13656]]},{\"type\":\"Polygon\",\"id\":\"061000\",\"arcs\":[[-12146,13657,-13657,-13593,-12266]]},{\"type\":\"Polygon\",\"id\":\"060800\",\"arcs\":[[13658,13659,13660,-13658,-12145]]},{\"type\":\"Polygon\",\"id\":\"060701\",\"arcs\":[[-12475,-12078,-12084,-12104,-12108,-13240,13661,13662,13663,13664,-12368]]},{\"type\":\"Polygon\",\"id\":\"060600\",\"arcs\":[[-13661,13665,13666,-13654,-13656]]},{\"type\":\"Polygon\",\"id\":\"060300\",\"arcs\":[[-13663,13667,13668,13669]]},{\"type\":\"Polygon\",\"id\":\"060100\",\"arcs\":[[13670,-13664,-13670,13671,13672]]},{\"type\":\"Polygon\",\"id\":\"060000\",\"arcs\":[[13673,-13649,-13667,13674]]},{\"type\":\"Polygon\",\"id\":\"059900\",\"arcs\":[[-12369,-13665,-13671,13675,-12359]]},{\"type\":\"Polygon\",\"id\":\"059800\",\"arcs\":[[13676,13677,-13659,-12343]]},{\"type\":\"Polygon\",\"id\":\"076902\",\"arcs\":[[-13105,-13372,-13618,-12011]]},{\"type\":\"Polygon\",\"id\":\"074700\",\"arcs\":[[-13373,-13098,13678,13679,13680]]},{\"type\":\"Polygon\",\"id\":\"074500\",\"arcs\":[[-13258,-13374,-13681,13681,13682]]},{\"type\":\"Polygon\",\"id\":\"074300\",\"arcs\":[[-13680,13683,13684,-13682]]},{\"type\":\"Polygon\",\"id\":\"074100\",\"arcs\":[[-13679,-13103,13685,-13235,-13233,-13684]]},{\"type\":\"Polygon\",\"id\":\"073900\",\"arcs\":[[-13102,13686,13687,-13236,-13686]]},{\"type\":\"Polygon\",\"id\":\"073700\",\"arcs\":[[13688,-13687,-13101,-12009,-13644,13689]]},{\"type\":\"Polygon\",\"id\":\"073100\",\"arcs\":[[13690,-13645,-13616,-12238,13691]]},{\"type\":\"Polygon\",\"id\":\"072900\",\"arcs\":[[13692,-13692,-12237,13693]]},{\"type\":\"Polygon\",\"id\":\"072100\",\"arcs\":[[13694,-13685,-13232,-13113]]},{\"type\":\"Polygon\",\"id\":\"071900\",\"arcs\":[[-13253,-13683,-13695,-13112,-13108]]},{\"type\":\"Polygon\",\"id\":\"046200\",\"arcs\":[[-13627,-13623,-13573,13695,13696]]},{\"type\":\"Polygon\",\"id\":\"046100\",\"arcs\":[[-13634,13697,13698,-12993]]},{\"type\":\"Polygon\",\"id\":\"046000\",\"arcs\":[[13699,-13696,-13580,13700,13701,13702]]},{\"type\":\"Polygon\",\"id\":\"045900\",\"arcs\":[[-13699,-13245,13703,-12849,-12994]]},{\"type\":\"Polygon\",\"id\":\"045800\",\"arcs\":[[-13632,-13628,-13697,-13700,13704,-13023]]},{\"type\":\"Polygon\",\"id\":\"045700\",\"arcs\":[[-13704,-13244,13705,-12850]]},{\"type\":\"Polygon\",\"id\":\"066400\",\"arcs\":[[13706,-12223,-12099,-12110,-2329,13707,-12551]]},{\"type\":\"Polygon\",\"id\":\"045500\",\"arcs\":[[-13254,-13106,13708,-13242]]},{\"type\":\"Polygon\",\"id\":\"042400\",\"arcs\":[[-13575,-12127,-12139,-12296,13709,13710,13711]]},{\"type\":\"Polygon\",\"id\":\"026901\",\"arcs\":[[-12770,-12776,-12794,-13378,-12877,-12678]]},{\"type\":\"Polygon\",\"id\":\"020500\",\"arcs\":[[-13532,-13193,-13316,-13325,13712]]},{\"type\":\"Polygon\",\"id\":\"019900\",\"arcs\":[[-13546,-13449,-13533,-13713,-13327,-7862,-7398,-7419,-12873]]},{\"type\":\"Polygon\",\"id\":\"019400\",\"arcs\":[[-13433,-13440,-13444,-13621,-12899]]},{\"type\":\"Polygon\",\"id\":\"008500\",\"arcs\":[[-12631,-12616,-12621,13713,-12754,-12636]]},{\"type\":\"Polygon\",\"id\":\"003300\",\"arcs\":[[-13714,-12620,-12534,-12531,-12743,-12887,-12761,-12755]]},{\"type\":\"Polygon\",\"id\":\"086900\",\"arcs\":[[-13278,-13615,-12989,-13297,-13290,-12944]]},{\"type\":\"Polygon\",\"id\":\"084900\",\"arcs\":[[-13409,-13643,-13363,-13293]]},{\"type\":\"Polygon\",\"id\":\"059600\",\"arcs\":[[13714,13715,-13675,-13666,-13660,-13678]]},{\"type\":\"Polygon\",\"id\":\"059500\",\"arcs\":[[-12360,-13676,-13673,13716,13717,-12206,-12340]]},{\"type\":\"Polygon\",\"id\":\"059400\",\"arcs\":[[13718,13719,-13650,-13674,-13716]]},{\"type\":\"Polygon\",\"id\":\"059300\",\"arcs\":[[-13672,-13669,13720,13721,13722,13723,-13717]]},{\"type\":\"Polygon\",\"id\":\"059200\",\"arcs\":[[13724,-2437,-13651,-13720,13725,-13571]]},{\"type\":\"Polygon\",\"id\":\"059100\",\"arcs\":[[-13718,-13724,13726,-12192,-12194,-12207]]},{\"type\":\"Polygon\",\"id\":\"059000\",\"arcs\":[[-13572,-13726,-13719,-13715,-13677,-12342]]},{\"type\":\"Polygon\",\"id\":\"058900\",\"arcs\":[[-13723,13727,13728,-12183,-12188,-12193,-13727]]},{\"type\":\"Polygon\",\"id\":\"058700\",\"arcs\":[[-13722,13729,13730,-13728]]},{\"type\":\"Polygon\",\"id\":\"058500\",\"arcs\":[[-13731,13731,13732,13733,-12184,-13729]]},{\"type\":\"Polygon\",\"id\":\"058300\",\"arcs\":[[-13734,13734,-12060,-12185]]},{\"type\":\"Polygon\",\"id\":\"071600\",\"arcs\":[[-13583,-12552,-13708,-2422,13735,-13285,-13414]]},{\"type\":\"Polygon\",\"id\":\"071100\",\"arcs\":[[-13121,-13124,-13688,-13689,13736,13737,13738,13739]]},{\"type\":\"Polygon\",\"id\":\"070900\",\"arcs\":[[13740,13741,13742,-13738]]},{\"type\":\"Polygon\",\"id\":\"070700\",\"arcs\":[[-13742,13743,-13694,-12236,13744]]},{\"type\":\"Polygon\",\"id\":\"070300\",\"arcs\":[[-13743,-13745,-12377,-12216,13745]]},{\"type\":\"Polygon\",\"id\":\"069702\",\"arcs\":[[13746,-13739,-13746,-12215,13747,13748]]},{\"type\":\"Polygon\",\"id\":\"069701\",\"arcs\":[[13749,13750,-13116,-13122,-13740,-13747]]},{\"type\":\"Polygon\",\"id\":\"069500\",\"arcs\":[[13751,-13750,-13749,13752,13753]]},{\"type\":\"Polygon\",\"id\":\"045400\",\"arcs\":[[-13705,-13703,13754,13755,-13024]]},{\"type\":\"Polygon\",\"id\":\"045200\",\"arcs\":[[-12089,-13025,-13756,13756,13757]]},{\"type\":\"Polygon\",\"id\":\"045000\",\"arcs\":[[-13758,13758,-13311,-13318,-12090]]},{\"type\":\"Polygon\",\"id\":\"044800\",\"arcs\":[[-13759,-13757,13759,-13187,-13312]]},{\"type\":\"Polygon\",\"id\":\"044602\",\"arcs\":[[-13755,-13702,13760,-13188,-13760]]},{\"type\":\"Polygon\",\"id\":\"044601\",\"arcs\":[[-13761,-13701,-13579,-13169,-13179]]},{\"type\":\"Polygon\",\"id\":\"044000\",\"arcs\":[[-13577,13761,-13584]]},{\"type\":\"Polygon\",\"id\":\"043900\",\"arcs\":[[13762,-13255,-13251,-13248,13763]]},{\"type\":\"Polygon\",\"id\":\"043400\",\"arcs\":[[-13712,13764,-12880,-12885,13765]]},{\"type\":\"Polygon\",\"id\":\"043200\",\"arcs\":[[-13711,13766,-12766,-12771,-12881,-13765]]},{\"type\":\"Polygon\",\"id\":\"072300\",\"arcs\":[[-13744,-13741,-13737,-13690,-13646,-13691,-13693]]},{\"type\":\"Polygon\",\"id\":\"065703\",\"arcs\":[[13767,-12219,-13614,-13600,-12105,-12102]]},{\"type\":\"Polygon\",\"id\":\"061301\",\"arcs\":[[-13662,-13239,-13592,-13589,13768,13769,-13732,-13730,-13721,-13668]]},{\"type\":\"Polygon\",\"id\":\"029400\",\"arcs\":[[-13539,-12664,-12441,-12539,-13582,-13608]]},{\"type\":\"Polygon\",\"id\":\"012500\",\"arcs\":[[-13469,-13461,-13337,-13216,-13487,-13489,-12406,-13636]]},{\"type\":\"Polygon\",\"id\":\"107202\",\"arcs\":[[-13286,-13736,-2421,-12922,-12941,-13002,-13642,-13021,-13151,-13154,-13083,-8494,-13282],[-13262]]},{\"type\":\"Polygon\",\"id\":\"058100\",\"arcs\":[[-13770,13770,-12061,-13735,-13733]]},{\"type\":\"Polygon\",\"id\":\"058000\",\"arcs\":[[13771,-2438,-13725,-13570]]},{\"type\":\"Polygon\",\"id\":\"057900\",\"arcs\":[[-13588,13772,-13769]]},{\"type\":\"Polygon\",\"id\":\"057700\",\"arcs\":[[-13771,-13773,-13587,-13509,13773]]},{\"type\":\"Polygon\",\"id\":\"056800\",\"arcs\":[[13774,13775,-2218,-2339,-13772,-12200,-12197]]},{\"type\":\"Polygon\",\"id\":\"056700\",\"arcs\":[[-13774,-12040,13776,-12062]]},{\"type\":\"Polygon\",\"id\":\"056600\",\"arcs\":[[-12055,-12050,13777,-13775,-12196]]},{\"type\":\"Polygon\",\"id\":\"056500\",\"arcs\":[[-12063,-13777,-12039,-12054]]},{\"type\":\"Polygon\",\"id\":\"056400\",\"arcs\":[[-12049,13778,-12021,-2219,-13776,-13778]]},{\"type\":\"Polygon\",\"id\":\"056200\",\"arcs\":[[-12022,-13779,-12048]]},{\"type\":\"Polygon\",\"id\":\"069400\",\"arcs\":[[-12224,-13707,-12550,13779]]},{\"type\":\"Polygon\",\"id\":\"069300\",\"arcs\":[[-13117,-13751,-13752,13780]]},{\"type\":\"Polygon\",\"id\":\"069000\",\"arcs\":[[13781,-12225,-13780,-12549]]},{\"type\":\"Polygon\",\"id\":\"068700\",\"arcs\":[[-13110,-13781,-13754,13782,-12592,-12847]]},{\"type\":\"Polygon\",\"id\":\"068300\",\"arcs\":[[-12851,-13706,-13243,-13709,-13111,-12846]]},{\"type\":\"Polygon\",\"id\":\"068200\",\"arcs\":[[-12230,13783,-12542]]},{\"type\":\"Polygon\",\"id\":\"068000\",\"arcs\":[[-12548,-12543,-13784,-12229,-12376,-12221,-13782]]},{\"type\":\"Polygon\",\"id\":\"067900\",\"arcs\":[[-12593,-13783,-13753,-13748,-12214,13784,-12094,-13647]]},{\"type\":\"Polygon\",\"id\":\"067700\",\"arcs\":[[-13785,-12220,-13768,-12101,-12095]]},{\"type\":\"Polygon\",\"id\":\"066900\",\"arcs\":[[-12498,-13648,-12079,-12076,-12612]]},{\"type\":\"Polygon\",\"id\":\"042700\",\"arcs\":[[-13375,-13256,-13763,13785,13786]]},{\"type\":\"Polygon\",\"id\":\"042600\",\"arcs\":[[-13710,-12295,-12288,-12767,-13767]]},{\"type\":\"Polygon\",\"id\":\"101002\",\"arcs\":[[-2120,-2182,-13397,-13389]]},{\"type\":\"Polygon\",\"id\":\"041500\",\"arcs\":[[-12129,-13376,-13787,13787,-12119]]},{\"type\":\"Polygon\",\"id\":\"041400\",\"arcs\":[[-13576,-13766,-13038,-13585,-13762]]},{\"type\":\"Polygon\",\"id\":\"041300\",\"arcs\":[[13788,13789,-12120,-13788,-13786,-13764,-13247,13790]]},{\"type\":\"Polygon\",\"id\":\"041100\",\"arcs\":[[-12274,13791,-13791,-13250,-13246,-13698,-13633]]},{\"type\":\"Polygon\",\"id\":\"040900\",\"arcs\":[[13792,-13792,-12273,-12261]]},{\"type\":\"Polygon\",\"id\":\"040700\",\"arcs\":[[-12260,-12154,13793,-13789,-13793]]},{\"type\":\"Polygon\",\"id\":\"040500\",\"arcs\":[[-12121,-13790,-13794,-12153]]}]}},\"arcs\":[[[8093,1234],[-1,43],[8,25],[-3,35],[-17,54],[-9,42],[-21,31],[-1,35],[11,34],[3,37]],[[8063,1570],[-202,36],[-19,-197]],[[7842,1409],[127,-78],[12,-55],[18,-10],[94,-32]],[[7645,1532],[87,-56],[110,-67]],[[8063,1570],[-1,34],[17,81],[-7,37]],[[8072,1722],[-244,43],[-18,-25],[-60,39],[-91,14],[-4,-42],[-23,4],[-2,-27]],[[7630,1728],[-9,-111],[-10,-55],[2,-11],[32,-19]],[[7681,2565],[102,-4],[-4,-39],[182,-48]],[[7961,2474],[10,44],[17,29],[12,37],[-12,42],[14,24],[-20,29],[-6,23],[17,31]],[[7993,2733],[-73,11]],[[7920,2744],[-73,10],[-153,28]],[[7694,2782],[-5,-87],[-14,-110],[6,-20]],[[7694,2327],[54,-11],[4,-16],[39,9],[123,-23],[-13,-57],[2,-8],[30,-1]],[[7933,2220],[22,25],[5,21],[-8,88],[6,22],[2,47],[-4,24],[5,27]],[[7681,2565],[-8,-77],[-6,1],[-3,-34]],[[7664,2455],[-9,-121],[39,-7]],[[7953,2052],[-23,74],[-9,81],[12,13]],[[7694,2327],[-8,-111],[-10,1],[-4,-50],[24,-2],[-12,-15],[-6,-68]],[[7678,2082],[204,-37],[2,20],[69,-13]],[[7530,1304],[61,-6],[5,7],[28,4],[61,-38]],[[7685,1271],[14,7]],[[7699,1278],[11,105],[-65,94],[0,55]],[[7630,1728],[-54,8],[-11,-139],[-108,17]],[[7457,1614],[66,-212],[11,-57],[-4,-41]],[[7344,1544],[8,87]],[[7352,1631],[16,171],[3,57],[12,106],[-137,22]],[[7246,1987],[-42,5],[-103,20],[-2,-20]],[[7099,1992],[-25,-236],[-13,-162]],[[7061,1594],[29,36],[25,-3],[54,27],[23,-1],[12,-18],[31,11],[11,29],[9,-14],[42,-37],[9,3],[16,-16],[0,-28],[22,-39]],[[7061,1594],[-5,-35]],[[7056,1559],[137,-19],[96,-11],[53,-10],[2,25]],[[7328,1334],[202,-30]],[[7457,1614],[-105,17]],[[7056,1559],[-17,-174]],[[7039,1385],[177,-32],[112,-19]],[[7694,2782],[-92,15],[-118,21]],[[7484,2818],[-105,17]],[[7379,2835],[15,-91],[-73,-18],[-7,-90],[-10,-73],[66,-64],[147,-24],[0,-3],[66,-10],[81,-7]],[[8072,1722],[-10,33],[-24,12],[-9,18],[-14,49],[-36,38],[1,24],[-11,20],[4,13],[-8,43],[-18,33],[6,47]],[[7678,2082],[-119,15],[-29,11],[-269,44],[-15,-165]],[[6862,2032],[237,-40]],[[7379,2835],[-234,41]],[[7145,2876],[-3,-3],[6,-55],[10,-22],[-6,-19],[5,-17],[-20,-7],[-28,-21],[-6,10],[-35,-11],[-26,-19],[-3,-22],[-21,-3],[-22,12],[-34,7],[-14,22],[-78,-130],[-76,-127]],[[6794,2471],[100,-100],[-16,-175],[-16,-164]],[[7699,1278],[17,-11],[35,-12],[11,-10],[11,-31],[37,-13],[38,2],[5,-22],[15,-22],[11,-2],[-1,-16],[15,-12],[-6,-40],[157,-21]],[[8044,1068],[11,42],[10,6],[1,28],[19,34],[8,56]],[[7266,6566],[8,21],[32,-7]],[[7306,6580],[-6,12],[-5,67]],[[7295,6659],[-22,-6],[1,-22],[-22,10],[7,-55],[7,-20]],[[7266,7430],[-1,12],[-28,-22],[-7,28],[12,0],[-1,19],[21,40],[-3,55],[-32,-13],[-3,13],[9,36],[0,23]],[[7233,7621],[-64,10]],[[7169,7631],[21,-170]],[[7190,7461],[10,-76]],[[7200,7385],[1,-5],[65,50]],[[7064,7087],[16,-16],[11,12],[14,-17],[32,-8],[-1,-16],[20,0]],[[7156,7042],[8,15],[-8,33],[2,20],[-18,20],[-12,-11],[3,21]],[[7131,7140],[-21,19],[-40,5]],[[7070,7164],[-11,-67],[5,-10]],[[7122,6515],[23,3],[-25,90]],[[7120,6608],[-13,-4],[-22,9],[-3,-18],[-15,22],[-22,-2],[-5,31],[16,-1],[1,31],[-12,14]],[[7045,6690],[-20,-1],[-47,29]],[[6978,6718],[-65,-13],[-11,-23],[-14,-1]],[[6888,6681],[-12,-199]],[[6876,6482],[246,33]],[[6558,7166],[54,-94],[36,-77]],[[6648,6995],[49,35]],[[6697,7030],[-15,24],[83,79],[46,45]],[[6811,7178],[-3,14],[16,16],[-16,5],[-44,40],[-22,-7],[-8,31]],[[6734,7277],[-5,10],[-45,6]],[[6684,7293],[-37,-54],[-38,-12],[-49,-27],[-11,-17]],[[6549,7183],[9,-17]],[[6697,7030],[73,-116]],[[6770,6914],[122,113]],[[6892,7027],[86,80]],[[6978,7107],[-23,38],[-1,14],[-25,17],[-16,31],[-28,23],[-12,31],[-12,10]],[[6861,7271],[-11,-56],[-39,-37]],[[7103,7275],[8,-3],[20,14]],[[7131,7286],[-20,48],[-19,-18],[-15,5],[3,-37],[23,-9]],[[7045,6690],[33,-20],[20,19],[1,36],[15,3],[-10,11]],[[7104,6739],[-44,-16],[-23,1],[-43,37]],[[6994,6761],[-16,-43]],[[6721,7496],[48,-54],[10,1],[21,-35],[35,-20]],[[6835,7388],[23,45],[4,16],[16,-9],[120,47]],[[6998,7487],[-20,34],[5,22],[-3,30],[5,33]],[[6985,7606],[-4,6],[-72,-28]],[[6909,7584],[-8,-3],[1,-52],[-16,-8],[-64,50],[-8,16],[-21,17],[-15,-8]],[[6778,7596],[-5,15],[-17,1]],[[6756,7612],[-11,-16],[-13,-65],[-11,-35]],[[7250,6543],[9,3]],[[7259,6546],[-6,13],[13,7]],[[7295,6659],[3,20],[-3,32]],[[7295,6711],[-49,-23],[-13,-10]],[[7233,6678],[-14,1]],[[7219,6679],[7,-21],[24,-115]],[[6793,6832],[27,-115],[54,-32],[14,-4]],[[6994,6761],[8,26],[-22,20],[14,14]],[[6994,6821],[-19,66],[-19,15],[-12,36],[-52,89]],[[6770,6914],[23,-82]],[[7215,6891],[21,-6],[2,-15]],[[7238,6870],[9,-27]],[[7247,6843],[27,-15]],[[7274,6828],[-5,67],[-4,8]],[[7265,6903],[-18,-6],[-31,23]],[[7216,6920],[-4,4]],[[7212,6924],[-6,-13]],[[7206,6911],[9,-20]],[[6377,6577],[146,-116],[28,-55],[34,3],[64,-53]],[[6649,6356],[49,32]],[[6698,6388],[5,38],[14,37],[-35,6],[-17,26],[-13,9],[-1,39],[-6,13],[-13,-8],[-53,88],[89,83],[57,49],[68,64]],[[6648,6995],[-252,-191]],[[6396,6804],[-159,-115]],[[6237,6689],[140,-112]],[[6998,7487],[39,15]],[[7037,7502],[-3,9],[26,10],[-12,38]],[[7048,7559],[10,71]],[[7058,7630],[-73,-24]],[[6698,6388],[133,88],[26,3]],[[6857,6479],[19,3]],[[7216,6858],[3,9]],[[7219,6867],[-7,13]],[[7212,6880],[-10,-7]],[[7202,6873],[14,-15]],[[7266,7430],[16,13]],[[7282,7443],[-2,53]],[[7280,7496],[-4,66]],[[7276,7562],[-2,52]],[[7274,7614],[-41,7]],[[6978,7107],[40,36],[2,102]],[[7020,7245],[-16,25]],[[7004,7270],[-40,-7],[-30,50],[3,39],[-9,16],[-26,22],[14,-48],[-33,31]],[[6883,7373],[-22,-102]],[[7185,6870],[8,8]],[[7193,6878],[11,12],[2,21]],[[7212,6924],[-11,14]],[[7201,6938],[-30,-59]],[[7171,6879],[14,-9]],[[7222,6846],[25,-3]],[[7238,6870],[-19,-3]],[[7216,6858],[6,-12]],[[7168,6853],[17,17]],[[7171,6879],[-11,-22]],[[7160,6857],[8,-4]],[[7295,6711],[-10,55]],[[7285,6766],[-1,8]],[[7284,6774],[-14,-8],[-34,16],[-25,-5]],[[7211,6777],[-5,-14],[9,-25],[11,-5],[7,-55]],[[7020,7245],[50,-81]],[[7131,7140],[62,39]],[[7193,7179],[-19,89],[-19,41],[-21,21],[-23,65]],[[7111,7395],[-31,-45],[-32,-37],[-44,-43]],[[7131,7286],[13,-32],[6,-35],[-24,-22],[-11,42],[-11,-29],[-10,45],[9,20]],[[7136,6460],[29,33],[30,8],[3,40],[32,9],[20,-7]],[[7219,6679],[-21,1],[-34,-14]],[[7164,6666],[-53,-24],[9,-34]],[[7122,6515],[14,-55]],[[7259,6546],[12,-8],[19,12],[15,-3]],[[7305,6547],[-1,7]],[[7304,6554],[2,26]],[[7284,6774],[-10,54]],[[7222,6846],[-19,-9]],[[7203,6837],[-7,-11],[10,-25],[-5,-11],[10,-13]],[[7203,6837],[-1,21],[-20,-1],[-10,-16],[-4,12]],[[7160,6857],[-16,5]],[[7144,6862],[-37,-83],[-3,-38]],[[7104,6741],[35,14],[25,-89]],[[7193,6878],[9,-5]],[[7212,6880],[3,11]],[[7265,6903],[-2,38]],[[7263,6941],[-16,-2],[0,32],[-11,10],[-5,-32],[-15,-29]],[[6994,6821],[39,40],[78,73],[-8,23],[6,6]],[[7109,6963],[-45,124]],[[7288,7320],[-2,25]],[[7286,7345],[-4,25]],[[7282,7370],[-9,-2],[-32,25],[-4,-13],[9,-67],[-7,-34],[27,14],[3,-17],[8,43],[11,1]],[[7104,6741],[0,-2]],[[6703,7378],[2,-11],[19,22],[8,-27],[26,-31],[-13,-9],[9,-10],[-20,-35]],[[6883,7373],[-28,2],[-20,13]],[[6721,7496],[-38,-34]],[[6683,7462],[9,-16],[16,-62],[-5,-6]],[[7111,7395],[0,0]],[[7111,7395],[-15,15],[-22,-15],[-13,41],[-4,-1],[-20,67]],[[6535,7205],[14,-22]],[[6684,7293],[27,33],[-27,11],[5,29],[14,12]],[[6683,7462],[-82,-80]],[[6601,7382],[-105,-104],[39,-73]],[[7144,6862],[8,9],[9,67]],[[7161,6938],[-52,25]],[[7169,7631],[-21,3],[1,-11],[-18,-43],[-8,4]],[[7123,7584],[-2,-28],[-22,-24],[-12,-5],[-10,-23],[-5,-33],[11,-26],[47,-18],[39,16],[21,18]],[[7201,6938],[-16,20],[-12,38]],[[7173,6996],[-12,-58]],[[7163,6354],[22,18],[25,-2],[2,-30],[38,37]],[[7250,6377],[70,68],[8,3]],[[7328,6448],[-6,13]],[[7322,6461],[-8,25],[-9,61]],[[7136,6460],[27,-106]],[[7111,7395],[30,21],[19,-68],[38,30],[2,7]],[[7123,7584],[-13,8]],[[7110,7592],[-12,-11],[-50,-22]],[[7193,7179],[89,59]],[[7282,7238],[5,8]],[[7287,7246],[3,52]],[[7290,7298],[-2,22]],[[7282,7370],[6,41]],[[7288,7411],[-6,32]],[[7173,6996],[-9,6],[-3,39],[-5,1]],[[7263,6941],[27,61]],[[7290,7002],[2,17],[-12,31],[-1,111],[-3,19]],[[7276,7180],[1,46],[5,12]],[[6342,7452],[30,13],[16,15]],[[6388,7480],[11,16],[-6,53]],[[6393,7549],[-25,-4],[1,-40],[-25,-13],[-31,0],[10,-29],[19,-11]],[[6237,7446],[19,-20],[12,-25],[-4,-7],[27,-26],[-7,-16],[-2,-56],[-4,-12]],[[6278,7284],[22,7]],[[6300,7291],[4,43],[-10,27],[5,31],[26,47],[17,13]],[[6393,7549],[-2,35],[-10,23],[-147,-23]],[[6234,7584],[-1,-57],[3,-35],[-5,-34],[6,-12]],[[6334,7303],[72,24],[-8,79]],[[6398,7406],[1,10]],[[6399,7416],[-14,20],[3,44]],[[6300,7291],[34,12]],[[6396,6804],[-52,191]],[[6344,6995],[-94,-45],[-18,60],[-28,-14]],[[6204,6996],[-48,-22]],[[6156,6974],[-105,-51]],[[6051,6923],[-70,-33]],[[5981,6890],[82,-64],[120,-91],[54,-46]],[[6558,7166],[-116,-56],[-15,24],[-42,-20],[-32,-7]],[[6353,7107],[9,-36],[-35,-16],[17,-60]],[[6756,7612],[-51,37],[-14,18]],[[6691,7667],[-19,27]],[[6672,7694],[-4,20],[-35,44],[0,14],[-13,27]],[[6620,7799],[-33,1]],[[6587,7800],[22,-42],[-3,-24],[11,-23],[13,-12],[15,-32],[-20,-1],[-17,21],[-11,2],[-10,-15],[11,-26],[27,-31],[2,-13],[17,-17],[0,-20],[26,-52],[-13,-7],[19,-19],[7,-27]],[[6226,7582],[8,2]],[[6234,7584],[7,15],[1,27],[-11,65],[14,18],[16,36],[2,43],[11,34]],[[6274,7822],[-10,6],[0,19],[10,18],[-2,25],[-8,3],[-3,36],[10,42]],[[6271,7971],[-22,-4],[-23,11],[-8,-7],[-5,-29],[-8,-10],[-16,6],[-7,18],[-12,1],[-33,-30],[-37,15],[-7,-7],[7,-33],[-16,-7]],[[6084,7895],[24,-37],[96,-159],[-34,-36],[56,-81]],[[6207,7099],[26,35],[12,-7],[14,10],[9,-38],[11,-22],[9,50],[-6,34],[20,24],[-2,28],[-9,3]],[[6291,7216],[-7,-8],[-34,-7],[-24,34],[-13,1],[1,-28],[11,-25],[-42,-16],[12,-48],[12,-20]],[[6204,6996],[14,54],[-11,49]],[[6291,7216],[-19,37],[-1,29]],[[6271,7282],[-84,-28]],[[6187,7254],[-80,-26]],[[6107,7228],[26,-134],[2,2],[19,-75],[-8,-4],[10,-43]],[[6353,7107],[-19,75],[21,10],[-5,20]],[[6350,7212],[-16,91]],[[6278,7284],[-7,-2]],[[5984,7797],[75,-117],[54,-78],[-46,-44]],[[6067,7558],[159,24]],[[6084,7895],[-9,-32],[-30,-19],[-13,0],[-13,14],[-35,-8],[0,-53]],[[5967,6902],[14,-12]],[[6051,6923],[-9,50],[-5,-2],[-27,76],[-6,32],[-23,-9],[-11,53],[-17,-5],[-11,56]],[[5942,7174],[-72,-22]],[[5870,7152],[2,-24],[-23,6],[-29,-29],[2,-35],[-43,-21]],[[5779,7049],[188,-147]],[[6399,7416],[64,19]],[[6463,7435],[-10,35],[98,23]],[[6551,7493],[-54,116],[-58,127],[29,28],[-29,47]],[[6439,7811],[-165,11]],[[6551,7493],[50,-111]],[[6587,7800],[-35,3]],[[6552,7803],[-113,8]],[[6463,7435],[16,11],[14,-1],[13,-56],[3,-72],[-27,-4],[-6,20],[-5,-23],[-8,0]],[[6463,7310],[8,-27],[-5,-37],[20,-22],[10,8],[25,-33],[14,6]],[[6458,7310],[5,0]],[[6398,7406],[17,-20],[5,-22],[27,-24],[11,-30]],[[6350,7212],[8,-6],[11,39],[43,41],[46,24]],[[5942,7174],[120,39]],[[6062,7213],[-11,134]],[[6051,7347],[-46,-9],[0,-6],[-109,-19]],[[5896,7313],[1,-51],[-8,-24],[-20,-17],[-20,7],[-17,-9],[6,-37],[13,-17],[12,2],[7,-15]],[[6051,7347],[-16,171],[-3,34]],[[6032,7552],[-45,-6],[2,-28],[-87,-35]],[[5902,7483],[-3,-32],[-9,-19],[10,-12],[-3,-19],[-19,-40],[2,-12],[22,-5],[-6,-31]],[[6107,7228],[-45,-15]],[[6187,7254],[-7,28],[-16,3],[-8,15],[0,37],[-13,1],[-6,83],[38,12],[15,-3],[34,6],[13,10]],[[6067,7558],[-35,-6]],[[5984,7797],[-22,-4],[0,-30],[-10,-16],[-19,-12],[10,-22],[-14,-43],[-11,-5],[-12,-35],[-18,-18],[-18,-32],[19,-12],[-3,-12],[22,0],[-6,-73]],[[3662,6477],[6,21],[-11,6],[12,25]],[[3669,6529],[7,26]],[[3676,6555],[-30,12],[-19,-17]],[[3627,6550],[4,-5],[2,-89]],[[3633,6456],[17,0],[12,21]],[[3936,6108],[101,3]],[[4037,6111],[4,75],[-1,201]],[[4040,6387],[-31,-1],[5,29],[-3,24]],[[4011,6439],[-206,9]],[[3805,6448],[-5,-160]],[[3800,6288],[-3,-104]],[[3797,6184],[55,0],[0,23],[48,-1],[7,10],[29,-33],[0,-75]],[[3618,6551],[9,-1]],[[3676,6555],[8,-2],[9,30],[14,-5]],[[3707,6578],[20,-11],[11,-19]],[[3738,6548],[13,55]],[[3751,6603],[-23,13],[-6,-10],[-33,-3],[-9,10],[-32,13],[10,-12],[-17,-8],[9,-32],[-39,3],[-4,-8],[23,-8],[-12,-10]],[[3805,6448],[-105,5]],[[3700,6453],[-7,-47]],[[3693,6406],[4,-12],[-14,-40],[10,-44],[-24,2],[5,29]],[[3674,6341],[-7,-25],[-9,3],[4,23],[-16,-9],[-1,33]],[[3645,6366],[4,7]],[[3649,6373],[-16,4]],[[3633,6377],[0,-89]],[[3633,6288],[87,2],[80,-2]],[[3751,6603],[27,25],[20,-10],[13,3],[2,48],[16,2],[4,51]],[[3833,6722],[-105,0],[-62,-2],[-164,2]],[[3502,6722],[0,-163]],[[3502,6559],[78,-1],[38,-7]],[[3676,6470],[0,6]],[[3676,6476],[-6,13],[-8,-12]],[[3662,6477],[14,-7]],[[3676,6476],[9,37]],[[3685,6513],[-4,2]],[[3681,6515],[-12,14]],[[3685,6513],[11,-5]],[[3696,6508],[1,29]],[[3697,6537],[-6,7]],[[3691,6544],[-10,-29]],[[3633,6377],[0,79]],[[3502,6559],[0,-35]],[[3502,6524],[0,-69]],[[3502,6455],[1,-164]],[[3503,6291],[130,-3]],[[3641,6086],[100,-3],[52,2],[1,99],[3,0]],[[3503,6291],[0,-19]],[[3503,6272],[0,-154]],[[3503,6118],[0,-20]],[[3503,6098],[138,-12]],[[4011,6439],[4,10],[7,103],[11,60],[-24,90],[4,23]],[[4013,6725],[-180,-3]],[[3738,6548],[-6,-20]],[[3732,6528],[-26,-62]],[[3706,6466],[-6,-13]],[[3691,6544],[-15,11]],[[3706,6466],[-25,1]],[[3681,6467],[-10,-67]],[[3671,6400],[10,-13],[12,19]],[[3681,6467],[15,41]],[[3676,6470],[5,-3]],[[3649,6373],[13,3],[9,24]],[[3697,6537],[15,-2]],[[3712,6535],[-2,28]],[[3710,6563],[-17,-1],[-2,-18]],[[3645,6366],[35,-6],[-6,-19]],[[3712,6535],[20,2],[6,11]],[[3707,6578],[3,-15]],[[3696,6508],[20,5],[16,15]],[[7210,9425],[7,5]],[[7217,9430],[-2,5]],[[7215,9435],[-7,-5]],[[7208,9430],[2,-5]],[[7206,9387],[16,11]],[[7222,9398],[-3,5]],[[7219,9403],[-15,-11]],[[7204,9392],[2,-5]],[[7266,9391],[3,-6]],[[7269,9385],[10,4]],[[7279,9389],[-6,9]],[[7273,9398],[-7,-7]],[[7252,9327],[7,5]],[[7259,9332],[-2,6]],[[7257,9338],[-7,-6]],[[7250,9332],[2,-5]],[[7269,9367],[3,-7]],[[7272,9360],[6,4]],[[7278,9364],[-4,7]],[[7274,9371],[-5,-4]],[[7298,9208],[3,2]],[[7301,9210],[-3,10]],[[7298,9220],[-5,-3]],[[7293,9217],[5,-9]],[[7200,9511],[17,18]],[[7217,9529],[-2,9]],[[7215,9538],[0,0]],[[7215,9538],[-16,-11]],[[7199,9527],[-1,-12]],[[7198,9515],[2,-4]],[[7281,9328],[4,3]],[[7285,9331],[-1,1]],[[7284,9332],[-3,7]],[[7281,9339],[0,1]],[[7281,9340],[-4,-2]],[[7277,9338],[4,-10]],[[7231,9430],[5,3]],[[7236,9433],[-5,9]],[[7231,9442],[-3,-3]],[[7228,9439],[3,-9]],[[7224,9448],[4,-9]],[[7231,9442],[-3,10]],[[7228,9452],[-4,-4]],[[7236,9420],[3,-9]],[[7239,9411],[4,2]],[[7243,9413],[1,1]],[[7244,9414],[-5,9]],[[7239,9423],[-3,-3]],[[7226,9469],[5,4]],[[7231,9473],[-1,3]],[[7230,9476],[-5,-2]],[[7225,9474],[1,-5]],[[7227,9457],[1,1]],[[7228,9458],[-1,8]],[[7227,9466],[0,1]],[[7227,9467],[-4,-3]],[[7223,9464],[-1,0]],[[7222,9464],[5,-7]],[[7220,9458],[2,-4]],[[7222,9454],[5,3]],[[7222,9464],[-2,-2]],[[7220,9462],[0,-4]],[[7241,9468],[3,-6]],[[7244,9462],[5,5]],[[7249,9467],[-2,6]],[[7247,9473],[-6,-4]],[[7241,9469],[0,-1]],[[7235,9447],[6,5]],[[7241,9452],[-3,6]],[[7238,9458],[-7,-4]],[[7231,9454],[4,-7]],[[7233,9372],[0,-1]],[[7233,9371],[6,5]],[[7239,9376],[0,4]],[[7239,9380],[-1,1]],[[7238,9381],[-7,-5]],[[7231,9376],[2,-4]],[[7211,9471],[5,8]],[[7216,9479],[-2,5]],[[7214,9484],[-5,-6]],[[7209,9478],[2,-7]],[[7243,9483],[12,8]],[[7255,9491],[0,6]],[[7255,9497],[0,1]],[[7255,9498],[-13,-7]],[[7242,9491],[-3,-1]],[[7239,9490],[4,-7]],[[7235,9316],[17,11]],[[7250,9332],[-17,-11]],[[7233,9321],[2,-5]],[[7224,9480],[0,-1]],[[7224,9479],[4,2]],[[7228,9481],[5,2]],[[7233,9483],[-2,7]],[[7231,9490],[-1,-1]],[[7230,9489],[-8,-3]],[[7222,9486],[2,-6]],[[7198,9502],[1,-6]],[[7199,9496],[5,5]],[[7204,9501],[0,1]],[[7204,9502],[-1,4]],[[7203,9506],[-3,5]],[[7198,9515],[-3,0]],[[7195,9515],[3,-13]],[[7247,9289],[13,8]],[[7260,9297],[3,3]],[[7263,9300],[-2,5]],[[7261,9305],[-16,-10]],[[7245,9295],[2,-6]],[[7255,9401],[6,4]],[[7261,9405],[-3,6]],[[7258,9411],[-6,-4]],[[7252,9407],[3,-6]],[[7278,9310],[0,-1]],[[7278,9309],[4,3]],[[7282,9312],[-1,4]],[[7281,9316],[-1,2]],[[7280,9318],[-6,-3]],[[7274,9315],[4,-5]],[[7211,9471],[1,-6]],[[7212,9465],[4,3]],[[7216,9468],[4,3]],[[7220,9471],[-3,5]],[[7217,9476],[-1,3]],[[7208,9458],[4,-3]],[[7212,9455],[3,2]],[[7215,9457],[-3,8]],[[7212,9465],[-5,-1]],[[7207,9464],[1,-6]],[[7215,9414],[7,5]],[[7222,9419],[-2,5]],[[7220,9424],[-8,-5]],[[7212,9419],[3,-5]],[[7297,9186],[1,-1]],[[7298,9185],[-2,9]],[[7296,9194],[-1,10]],[[7295,9204],[-5,-2]],[[7290,9202],[7,-16]],[[7228,9461],[3,-7]],[[7238,9458],[-3,7]],[[7235,9465],[-7,-4]],[[7226,9408],[8,5]],[[7234,9413],[-3,4]],[[7231,9417],[0,2]],[[7231,9419],[-7,-5]],[[7224,9414],[2,-6]],[[7231,9419],[-3,5]],[[7228,9424],[-6,-5]],[[7222,9419],[2,-5]],[[7214,9447],[-2,8]],[[7208,9458],[0,-3]],[[7208,9455],[0,-6]],[[7208,9449],[6,-2]],[[7268,9344],[4,3]],[[7272,9347],[-2,7]],[[7270,9354],[-4,-3]],[[7266,9351],[2,-7]],[[7209,9494],[5,-10]],[[7214,9484],[2,3]],[[7216,9487],[-7,12]],[[7209,9499],[-5,2]],[[7204,9501],[5,-7]],[[7231,9473],[6,4]],[[7237,9477],[-1,2]],[[7236,9479],[-6,-3]],[[7216,9468],[4,-6]],[[7223,9464],[-3,7]],[[7237,9485],[2,5]],[[7242,9491],[-1,4]],[[7241,9495],[-3,-1]],[[7238,9494],[-3,-2]],[[7235,9492],[2,-7]],[[7247,9404],[5,3]],[[7252,9407],[-3,7]],[[7249,9414],[-2,3]],[[7247,9417],[-3,-3]],[[7243,9413],[4,-9]],[[7225,9494],[3,0]],[[7228,9494],[3,1]],[[7231,9495],[2,20]],[[7233,9515],[-5,-1]],[[7228,9514],[-3,-20]],[[7224,9392],[7,6]],[[7231,9398],[-3,5]],[[7228,9403],[-6,-5]],[[7222,9398],[2,-6]],[[7247,9417],[-1,4]],[[7246,9421],[-2,5]],[[7244,9426],[-5,-3]],[[7247,9392],[5,3]],[[7252,9395],[-5,9]],[[7247,9404],[-3,-2]],[[7244,9402],[3,-10]],[[7216,9487],[4,4]],[[7220,9491],[-1,4]],[[7219,9495],[-4,7]],[[7215,9502],[-1,2]],[[7214,9504],[-5,-5]],[[7203,9506],[16,19]],[[7219,9525],[0,1]],[[7219,9526],[-2,3]],[[7209,9494],[-5,-3]],[[7204,9491],[2,-16]],[[7206,9475],[3,3]],[[7236,9433],[3,-10]],[[7244,9426],[-1,2]],[[7243,9428],[-4,6]],[[7239,9434],[0,2]],[[7239,9436],[-3,-3]],[[7287,9244],[3,3]],[[7290,9247],[0,0]],[[7290,9247],[3,1]],[[7293,9248],[-3,7]],[[7290,9255],[-6,-4]],[[7284,9251],[3,-7]],[[7214,9447],[2,-4]],[[7216,9443],[4,2]],[[7220,9445],[-4,10]],[[7216,9455],[-1,2]],[[7249,9414],[6,4]],[[7255,9418],[-1,3]],[[7254,9421],[-2,4]],[[7252,9425],[-6,-4]],[[7191,9455],[17,0]],[[7207,9464],[-17,-1]],[[7190,9463],[1,-8]],[[7247,9473],[-2,4]],[[7245,9477],[-6,-4]],[[7239,9473],[2,-4]],[[7228,9424],[0,3]],[[7228,9427],[-1,3]],[[7227,9430],[-7,-6]],[[7228,9452],[0,6]],[[7222,9454],[2,-6]],[[7317,9157],[7,3]],[[7324,9160],[-2,3]],[[7322,9163],[-5,-6]],[[7287,9343],[3,-6]],[[7290,9337],[3,-7]],[[7293,9330],[0,-3]],[[7293,9327],[8,6]],[[7301,9333],[-5,13],[13,11]],[[7309,9357],[-3,4]],[[7306,9361],[-9,-5]],[[7297,9356],[-12,-9]],[[7285,9347],[2,-4]],[[7219,9495],[0,0]],[[7219,9495],[1,4]],[[7220,9499],[-5,3]],[[7209,9447],[-1,2]],[[7191,9455],[1,-7]],[[7192,9448],[17,-1]],[[7231,9473],[4,-8]],[[7235,9465],[6,3]],[[7239,9473],[-2,4]],[[7239,9436],[-1,5]],[[7238,9441],[-2,4]],[[7236,9445],[-5,-3]],[[7293,9327],[3,-5]],[[7296,9322],[2,-6]],[[7298,9316],[10,7]],[[7308,9323],[-7,10]],[[7249,9467],[14,10]],[[7263,9477],[-1,2]],[[7262,9479],[-4,8]],[[7258,9487],[-13,-10]],[[7280,9318],[4,3]],[[7284,9321],[-3,6]],[[7281,9327],[-4,-3]],[[7277,9324],[3,-6]],[[7261,9305],[5,4]],[[7266,9309],[2,1]],[[7268,9310],[-2,6]],[[7266,9316],[-7,-5]],[[7259,9311],[2,-6]],[[7243,9300],[16,11]],[[7259,9311],[-2,5]],[[7257,9316],[-18,-11]],[[7239,9305],[4,-5]],[[7243,9428],[6,4]],[[7249,9432],[-3,6]],[[7246,9438],[-7,-4]],[[7255,9373],[5,3]],[[7260,9376],[-5,10]],[[7255,9386],[-3,-3]],[[7252,9383],[3,-10]],[[7230,9476],[-2,5]],[[7224,9479],[1,-5]],[[7231,9417],[5,3]],[[7236,9420],[-5,10]],[[7231,9430],[-3,-3]],[[7282,9312],[3,-6]],[[7285,9306],[4,3]],[[7289,9309],[-4,10]],[[7285,9319],[-4,-3]],[[7200,9488],[4,3]],[[7199,9496],[1,-8]],[[7257,9316],[-2,3]],[[7255,9319],[-1,3]],[[7254,9322],[-16,-12]],[[7238,9310],[1,-5]],[[7289,9261],[3,-5]],[[7292,9256],[4,11]],[[7296,9267],[-7,-6]],[[7298,9195],[3,-11]],[[7301,9184],[0,1]],[[7301,9185],[5,5]],[[7306,9190],[-3,7]],[[7303,9197],[-2,1]],[[7301,9198],[-3,-3]],[[7217,9476],[3,2]],[[7220,9478],[-4,9]],[[7274,9294],[8,5]],[[7282,9299],[-1,4]],[[7281,9303],[-1,2]],[[7280,9305],[-7,-6]],[[7273,9299],[1,-5]],[[7195,9431],[11,4]],[[7206,9435],[3,3]],[[7209,9438],[0,9]],[[7192,9448],[3,-17]],[[7206,9435],[2,-5]],[[7215,9435],[-3,5]],[[7212,9440],[-3,-2]],[[7238,9441],[5,4]],[[7243,9445],[0,1]],[[7243,9446],[-2,4]],[[7241,9450],[0,2]],[[7235,9447],[1,-2]],[[7231,9454],[-3,-2]],[[7309,9176],[0,4]],[[7309,9180],[0,0]],[[7309,9180],[-8,5]],[[7301,9185],[8,-9]],[[7246,9385],[4,3]],[[7250,9388],[-3,4]],[[7247,9392],[-3,-3]],[[7244,9389],[2,-4]],[[7204,9502],[16,17]],[[7220,9519],[-1,6]],[[7239,9376],[4,-5]],[[7243,9371],[2,-6]],[[7245,9365],[2,-5]],[[7247,9360],[2,-5]],[[7249,9355],[3,-6]],[[7252,9349],[2,-6]],[[7254,9343],[3,-5]],[[7259,9332],[2,-4]],[[7261,9328],[1,-4]],[[7262,9324],[4,-8]],[[7268,9310],[6,5]],[[7277,9324],[-4,11]],[[7273,9335],[-2,2]],[[7271,9337],[-3,7]],[[7266,9351],[-3,3]],[[7263,9354],[-3,10]],[[7260,9364],[-5,9]],[[7252,9383],[-2,5]],[[7246,9385],[-7,-5]],[[7293,9231],[2,1]],[[7295,9232],[-3,9]],[[7292,9241],[-2,-2]],[[7290,9239],[0,-10]],[[7290,9229],[3,2]],[[7246,9438],[-3,7]],[[7296,9305],[5,5]],[[7301,9310],[-3,6]],[[7298,9316],[-5,-4]],[[7293,9312],[3,-7]],[[7226,9469],[1,-2]],[[7227,9466],[1,-5]],[[7210,9425],[2,-6]],[[7220,9424],[-3,6]],[[7220,9491],[2,-5]],[[7230,9489],[-2,5]],[[7225,9494],[-6,1]],[[7216,9455],[4,3]],[[7212,9465],[0,0]],[[7285,9272],[7,5]],[[7292,9277],[-3,6]],[[7289,9283],[-7,-5]],[[7282,9278],[3,-6]],[[7219,9403],[7,5]],[[7224,9414],[-7,-5]],[[7217,9409],[2,-6]],[[7252,9395],[3,3]],[[7255,9398],[0,3]],[[7215,9414],[2,-5]],[[7225,9474],[-5,-3]],[[7215,9435],[7,5]],[[7222,9440],[-2,5]],[[7216,9443],[-4,-3]],[[7224,9480],[-4,-2]],[[7255,9498],[-1,5]],[[7254,9503],[0,7]],[[7254,9510],[-3,-4]],[[7251,9506],[-10,-11]],[[7245,9477],[-2,4]],[[7243,9481],[-6,-4]],[[7247,9338],[3,-6]],[[7254,9343],[-7,-5]],[[7233,9483],[2,1]],[[7235,9484],[2,1]],[[7235,9492],[-4,-2]],[[7228,9514],[-4,1]],[[7224,9515],[-4,-16]],[[7235,9365],[8,6]],[[7233,9371],[2,-6]],[[7234,9494],[4,0]],[[7251,9506],[-9,7]],[[7242,9513],[-6,2]],[[7236,9515],[-2,-21]],[[7236,9479],[-1,5]],[[7238,9458],[6,4]],[[7183,9522],[16,5]],[[7215,9538],[-1,3]],[[7214,9541],[-8,13]],[[7206,9554],[-14,15],[-19,-16]],[[7173,9553],[10,-31]],[[7239,9399],[0,-2]],[[7239,9397],[4,-5]],[[7243,9392],[1,-3]],[[7244,9402],[-5,-3]],[[7258,9487],[-1,3]],[[7257,9490],[-2,1]],[[7243,9483],[0,-2]],[[7234,9413],[2,-5]],[[7236,9408],[3,3]],[[7272,9347],[4,3]],[[7276,9350],[-2,3]],[[7274,9353],[0,4]],[[7274,9357],[-4,-3]],[[7236,9479],[7,4]],[[7214,9504],[9,12]],[[7223,9516],[-1,2]],[[7222,9518],[-2,1]],[[7200,9488],[-12,-6]],[[7188,9482],[1,-11]],[[7189,9471],[17,4]],[[7281,9357],[5,12]],[[7286,9369],[-2,-1]],[[7284,9368],[-5,-7]],[[7279,9361],[2,-4]],[[7183,9522],[1,-7]],[[7184,9515],[11,0]],[[7263,9380],[0,-1]],[[7263,9379],[3,-6]],[[7266,9373],[6,5]],[[7272,9378],[-3,7]],[[7269,9385],[-6,-5]],[[7278,9364],[6,4]],[[7286,9369],[4,0]],[[7290,9369],[-5,9]],[[7285,9378],[-11,-7]],[[7268,9303],[3,2]],[[7271,9305],[-3,5]],[[7266,9309],[2,-6]],[[7265,9286],[3,3]],[[7268,9289],[-2,5]],[[7266,9294],[-3,6]],[[7260,9297],[5,-11]],[[7220,9349],[18,11]],[[7238,9360],[-3,5]],[[7235,9365],[-16,-10]],[[7219,9355],[1,-6]],[[7270,9354],[-2,3]],[[7268,9357],[-5,-3]],[[7231,9376],[-4,-2]],[[7227,9374],[6,-2]],[[7284,9178],[13,8]],[[7290,9202],[-3,3]],[[7287,9205],[-11,-4]],[[7276,9201],[8,-23]],[[7228,9403],[-2,5]],[[7258,9411],[-1,2]],[[7257,9413],[-2,5]],[[7289,9283],[-1,3]],[[7288,9286],[-1,2]],[[7287,9288],[-6,-6]],[[7281,9282],[1,-4]],[[7243,9446],[20,15]],[[7263,9461],[0,4]],[[7263,9465],[0,2]],[[7263,9467],[-22,-17]],[[7224,9435],[3,-5]],[[7228,9439],[-4,-3]],[[7224,9436],[0,-1]],[[7224,9515],[-1,1]],[[7249,9432],[14,9]],[[7263,9441],[0,4]],[[7263,9445],[0,13]],[[7263,9458],[0,3]],[[7309,9180],[-2,8]],[[7307,9188],[-1,2]],[[7268,9289],[0,7]],[[7268,9296],[-2,-2]],[[7298,9136],[16,9]],[[7314,9145],[8,5]],[[7322,9150],[6,3]],[[7328,9153],[-4,7]],[[7317,9157],[-4,7]],[[7313,9164],[-8,5]],[[7305,9169],[-12,-17]],[[7293,9152],[5,-16]],[[7312,9168],[3,9]],[[7315,9177],[-6,3]],[[7309,9176],[-2,-4]],[[7307,9172],[5,-4]],[[7303,9208],[3,-8]],[[7306,9200],[-3,8]],[[7272,9217],[4,-16]],[[7287,9205],[5,4]],[[7292,9209],[-2,6]],[[7290,9215],[-1,5]],[[7289,9220],[-2,6]],[[7287,9226],[-15,-9]],[[7289,9220],[7,5]],[[7296,9225],[-3,6]],[[7290,9229],[-3,-3]],[[7298,9185],[3,-1]],[[7298,9195],[-2,-1]],[[7322,9150],[6,-7]],[[7328,9143],[4,5]],[[7332,9148],[0,7]],[[7332,9155],[-2,3]],[[7330,9158],[-2,-5]],[[7295,9249],[5,2]],[[7300,9251],[1,19]],[[7301,9270],[-3,0]],[[7298,9270],[-2,-2]],[[7296,9268],[0,-1]],[[7292,9256],[3,-7]],[[7271,9283],[0,-2]],[[7271,9281],[5,6]],[[7276,9287],[-4,3]],[[7272,9290],[-3,-2]],[[7269,9288],[2,-5]],[[7290,9215],[3,2]],[[7298,9220],[-2,3]],[[7296,9223],[0,2]],[[7260,9259],[12,11]],[[7272,9270],[-13,-8]],[[7259,9262],[1,-3]],[[7266,9238],[18,13]],[[7284,9251],[-2,5]],[[7282,9256],[-19,-10]],[[7263,9246],[3,-8]],[[7322,9163],[-2,5]],[[7320,9168],[-5,-1]],[[7315,9167],[-2,-3]],[[7254,9391],[4,3]],[[7258,9394],[-3,4]],[[7252,9395],[2,-4]],[[7236,9408],[2,-5]],[[7238,9403],[1,-4]],[[7244,9402],[-5,9]],[[7287,9267],[2,-6]],[[7296,9268],[-3,4]],[[7293,9272],[-6,-5]],[[7255,9386],[-1,5]],[[7254,9391],[-4,-3]],[[7263,9250],[17,12]],[[7280,9262],[-1,3]],[[7279,9265],[-1,2]],[[7278,9267],[-17,-12]],[[7261,9255],[2,-5]],[[7292,9277],[0,-1]],[[7292,9276],[4,3]],[[7296,9279],[-4,9]],[[7292,9288],[-4,-2]],[[7290,9247],[10,-12]],[[7300,9235],[0,2]],[[7300,9237],[0,14]],[[7295,9249],[-2,-1]],[[7278,9288],[7,6]],[[7285,9294],[-3,5]],[[7274,9294],[4,-6]],[[7263,9398],[9,5]],[[7272,9403],[-4,7]],[[7268,9410],[-7,-5]],[[7261,9405],[2,-7]],[[7290,9239],[-1,1]],[[7289,9240],[-3,-2]],[[7286,9238],[1,-12]],[[7268,9232],[19,12]],[[7266,9238],[2,-6]],[[7217,9430],[7,5]],[[7224,9436],[-2,4]],[[7287,9288],[-2,6]],[[7278,9288],[3,-6]],[[7292,9209],[4,-3]],[[7296,9206],[2,2]],[[7285,9272],[1,-4]],[[7286,9268],[1,-1]],[[7293,9272],[-1,4]],[[7296,9322],[-6,-4]],[[7290,9318],[3,-6]],[[7292,9288],[-3,9]],[[7289,9297],[-4,-3]],[[7298,9270],[-2,9]],[[7274,9273],[2,-2]],[[7276,9271],[1,14]],[[7277,9285],[-1,2]],[[7271,9281],[3,-8]],[[7257,9413],[6,7]],[[7263,9420],[7,4]],[[7270,9424],[-4,6]],[[7266,9430],[-12,-9]],[[7268,9296],[-5,4]],[[7278,9309],[2,-4]],[[7281,9303],[4,3]],[[7268,9232],[1,-5]],[[7269,9227],[17,11]],[[7289,9240],[-2,4]],[[7262,9324],[-7,-5]],[[7243,9300],[2,-5]],[[7268,9289],[1,-1]],[[7272,9290],[-3,7]],[[7269,9297],[-1,6]],[[7282,9266],[3,1]],[[7285,9267],[1,1]],[[7282,9278],[-1,-1]],[[7281,9277],[1,-11]],[[7292,9256],[-2,-1]],[[7307,9188],[-1,12]],[[7306,9200],[-3,-3]],[[7301,9270],[0,11]],[[7301,9281],[-1,6]],[[7300,9287],[-4,4]],[[7296,9291],[-4,-3]],[[7261,9328],[-7,-5]],[[7254,9323],[0,-1]],[[7263,9467],[0,5]],[[7263,9472],[0,5]],[[7185,9497],[13,5]],[[7184,9515],[1,-18]],[[7185,9497],[3,-15]],[[7279,9389],[2,-5]],[[7281,9384],[4,-6]],[[7290,9369],[3,1]],[[7293,9370],[4,2]],[[7297,9372],[-12,18]],[[7285,9390],[-6,-1]],[[7263,9420],[5,-10]],[[7272,9403],[1,-5]],[[7285,9390],[-8,16]],[[7277,9406],[-7,18]],[[7282,9258],[0,-2]],[[7290,9255],[-3,7]],[[7287,9262],[-5,-4]],[[7280,9262],[2,-4]],[[7287,9262],[-2,5]],[[7282,9266],[-3,-1]],[[7266,9430],[-3,11]],[[7249,9432],[3,-7]],[[7315,9177],[5,-9]],[[7330,9158],[-7,20]],[[7323,9178],[-6,11]],[[7317,9189],[-2,5]],[[7315,9194],[-6,-14]],[[7260,9259],[1,-4]],[[7278,9267],[-2,4]],[[7274,9273],[-2,-3]],[[7289,9309],[4,3]],[[7290,9318],[-1,3]],[[7289,9321],[-4,-2]],[[7284,9332],[6,5]],[[7287,9343],[-6,-4]],[[7236,9515],[-3,0]],[[7231,9495],[3,-1]],[[7305,9169],[2,3]],[[7284,9178],[9,-26]],[[7285,9319],[-1,2]],[[7269,9297],[4,2]],[[7273,9299],[-2,6]],[[7252,9327],[2,-4]],[[7231,9327],[16,11]],[[7247,9338],[-2,5]],[[7245,9343],[-17,-11]],[[7228,9332],[3,-5]],[[7292,9241],[-2,6]],[[7252,9349],[-7,-6]],[[7285,9331],[2,-5]],[[7287,9326],[6,4]],[[7293,9299],[3,-8]],[[7300,9287],[1,8]],[[7301,9295],[5,8]],[[7306,9303],[-5,7]],[[7296,9305],[-3,-6]],[[7189,9471],[1,-8]],[[7276,9287],[2,1]],[[7277,9285],[4,-8]],[[7281,9328],[0,-1]],[[7289,9321],[-2,5]],[[7233,9392],[3,-5]],[[7236,9387],[7,5]],[[7239,9397],[-6,-5]],[[7227,9374],[-11,-11]],[[7216,9363],[3,-8]],[[7281,9384],[-9,-6]],[[7272,9378],[2,-7]],[[7238,9360],[7,5]],[[7295,9204],[1,2]],[[7271,9283],[-16,-16]],[[7255,9267],[4,-5]],[[7296,9223],[-1,9]],[[7231,9327],[2,-6]],[[7245,9343],[-3,6]],[[7242,9349],[-15,-13]],[[7227,9336],[1,-4]],[[7273,9335],[4,3]],[[7277,9338],[-3,2]],[[7274,9340],[-3,-3]],[[7235,9316],[3,-6]],[[7249,9355],[-7,-6]],[[7293,9299],[-4,-2]],[[7223,9346],[4,-10]],[[7242,9349],[-3,6]],[[7239,9355],[-16,-9]],[[7269,9227],[3,-10]],[[7247,9360],[-8,-5]],[[7238,9360],[1,-5]],[[7274,9340],[-2,7]],[[7231,9398],[7,5]],[[7236,9408],[-8,-5]],[[7293,9299],[-4,10]],[[7285,9306],[4,-9]],[[7260,9364],[3,2]],[[7263,9366],[-3,10]],[[7271,9305],[7,5]],[[7306,9303],[3,4]],[[7309,9307],[-1,16]],[[7281,9340],[-2,3]],[[7279,9343],[-5,-3]],[[7228,9382],[8,5]],[[7233,9392],[-7,-5]],[[7226,9387],[2,-5]],[[7228,9382],[3,-6]],[[7238,9381],[-2,6]],[[7255,9386],[5,2]],[[7260,9388],[-2,6]],[[7263,9250],[0,-4]],[[7281,9357],[3,-7]],[[7284,9350],[1,-3]],[[7297,9356],[-1,4]],[[7296,9360],[-3,10]],[[7309,9307],[16,13]],[[7325,9320],[-4,20]],[[7321,9340],[-5,8]],[[7316,9348],[-7,9]],[[7315,9167],[-3,1]],[[7279,9343],[6,4]],[[7284,9350],[-6,-4]],[[7278,9346],[1,-3]],[[7278,9346],[-2,4]],[[7281,9357],[-7,-4]],[[7274,9357],[5,4]],[[7279,9361],[-1,3]],[[7272,9360],[2,-3]],[[7301,9210],[2,-2]],[[7315,9194],[0,1]],[[7315,9195],[-4,9]],[[7311,9204],[-5,11]],[[7306,9215],[-3,11]],[[7303,9226],[-3,9]],[[7252,9277],[13,9]],[[7247,9289],[5,-12]],[[7220,9349],[3,-3]],[[7231,9398],[2,-6]],[[7195,9431],[9,-39]],[[7211,9375],[15,12]],[[7226,9387],[-2,5]],[[7206,9387],[5,-12]],[[7301,9198],[-3,10]],[[7258,9394],[5,4]],[[7263,9366],[5,-9]],[[7268,9357],[4,3]],[[7269,9367],[-1,2]],[[7268,9369],[-5,-3]],[[7263,9398],[3,-7]],[[7260,9388],[1,-1]],[[7261,9387],[5,4]],[[7266,9373],[2,-4]],[[7211,9375],[5,-12]],[[7260,9376],[3,3]],[[7263,9380],[-2,7]],[[7224,9448],[-4,-3]],[[7252,9277],[3,-10]],[[7090,9759],[9,9]],[[7099,9768],[-6,10]],[[7093,9778],[-9,-10]],[[7084,9768],[6,-9]],[[7086,9788],[4,-7]],[[7090,9781],[27,24]],[[7117,9805],[-13,17]],[[7104,9822],[-25,-21]],[[7079,9801],[7,-13]],[[7099,9768],[28,22]],[[7127,9790],[-10,15]],[[7090,9781],[3,-3]],[[7082,9656],[2,17]],[[7084,9673],[-14,4]],[[7070,9677],[0,-8]],[[7070,9669],[-1,-4]],[[7069,9665],[0,-6]],[[7069,9659],[0,-2]],[[7069,9657],[13,-1]],[[7090,9636],[1,17]],[[7091,9653],[-9,3]],[[7069,9657],[-5,-7]],[[7064,9650],[-1,-8]],[[7063,9642],[27,-6]],[[7094,9748],[11,10]],[[7105,9758],[-6,10]],[[7090,9759],[0,-2]],[[7090,9757],[4,-9]],[[7101,9740],[12,-6]],[[7113,9734],[-6,13]],[[7107,9747],[-2,11]],[[7094,9748],[7,-8]],[[7024,9809],[10,17],[0,15]],[[7034,9841],[-6,2]],[[7028,9843],[-2,-9]],[[7026,9834],[-5,-19]],[[7021,9815],[3,-6]],[[7102,9633],[5,15]],[[7107,9648],[0,4]],[[7107,9652],[-9,3]],[[7098,9655],[-7,-2]],[[7090,9636],[12,-3]],[[7107,9652],[0,1]],[[7107,9653],[0,7]],[[7107,9660],[-8,2]],[[7099,9662],[-1,-7]],[[7107,9660],[4,2]],[[7111,9662],[-2,4]],[[7109,9666],[-4,8]],[[7105,9674],[-11,-4]],[[7094,9670],[5,-8]],[[7136,9740],[11,22]],[[7147,9762],[-6,8]],[[7141,9770],[-13,-25]],[[7128,9745],[8,-5]],[[7107,9747],[21,-2]],[[7141,9770],[-14,20]],[[7113,9734],[7,2]],[[7120,9736],[8,9]],[[7078,9694],[6,-14]],[[7084,9680],[10,-10]],[[7105,9674],[-4,8]],[[7101,9682],[-10,14]],[[7091,9696],[-5,7]],[[7086,9703],[-8,-9]],[[7103,9719],[11,6]],[[7114,9725],[5,0]],[[7119,9725],[1,11]],[[7101,9740],[2,-21]],[[7091,9696],[7,4]],[[7098,9700],[8,4]],[[7106,9704],[1,6]],[[7107,9710],[-4,9]],[[7103,9719],[-9,-3]],[[7094,9716],[-8,-13]],[[7107,9710],[13,-15]],[[7120,9695],[5,-5]],[[7125,9690],[2,5]],[[7127,9695],[-4,7]],[[7123,9702],[-9,23]],[[7101,9682],[-3,18]],[[7123,9702],[4,12]],[[7127,9714],[-8,11]],[[7109,9666],[5,8]],[[7114,9674],[-5,16]],[[7109,9690],[-3,14]],[[7107,9653],[10,-4]],[[7117,9649],[1,8]],[[7118,9657],[0,0]],[[7118,9657],[-7,5]],[[7109,9690],[6,-4]],[[7115,9686],[5,9]],[[7115,9686],[6,-5]],[[7121,9681],[4,9]],[[7114,9674],[4,-17]],[[7118,9657],[28,0]],[[7146,9657],[0,1]],[[7146,9658],[-1,13]],[[7145,9671],[0,9]],[[7145,9680],[2,5]],[[7147,9685],[-26,-4]],[[7042,9830],[9,-16]],[[7051,9814],[2,-3]],[[7053,9811],[13,11]],[[7066,9822],[-9,7]],[[7057,9829],[-8,11]],[[7049,9840],[-7,-10]],[[7136,9733],[0,7]],[[7119,9725],[17,8]],[[7127,9714],[7,15]],[[7134,9729],[2,4]],[[7107,9648],[10,-2]],[[7117,9646],[0,3]],[[7127,9695],[13,30]],[[7140,9725],[-6,4]],[[7126,9628],[20,0]],[[7146,9628],[0,27]],[[7146,9655],[0,2]],[[7117,9646],[9,-18]],[[7140,9725],[16,-13]],[[7156,9712],[2,3]],[[7158,9715],[3,9]],[[7161,9724],[-14,38]],[[7102,9633],[24,-5]],[[7147,9685],[2,6]],[[7149,9691],[1,4]],[[7150,9695],[5,12]],[[7155,9707],[1,3]],[[7156,9710],[0,2]],[[7006,9762],[6,5]],[[7012,9767],[6,7]],[[7018,9774],[7,5]],[[7025,9779],[-23,21]],[[7002,9800],[4,-38]],[[7005,9691],[18,6],[6,-12]],[[7029,9685],[4,0]],[[7033,9685],[-9,27]],[[7024,9712],[-19,-19]],[[7005,9693],[0,-2]],[[7040,9732],[12,7]],[[7052,9739],[0,2]],[[7052,9741],[-10,21]],[[7042,9762],[-9,1]],[[7033,9763],[7,-31]],[[7028,9718],[1,0]],[[7029,9718],[3,2]],[[7032,9720],[8,12]],[[7033,9763],[-7,-4]],[[7026,9759],[-6,-6]],[[7020,9753],[-7,-5]],[[7013,9748],[0,-25]],[[7013,9723],[15,-5]],[[7033,9685],[10,2]],[[7043,9687],[-1,8]],[[7042,9695],[-1,8]],[[7041,9703],[-12,15]],[[7028,9718],[-4,-6]],[[6907,9898],[22,12]],[[6929,9910],[-28,25],[-8,-1]],[[6893,9934],[14,-36]],[[7032,9672],[13,5]],[[7045,9677],[-2,10]],[[7033,9685],[-1,-13]],[[7026,9665],[8,-2]],[[7034,9663],[-2,9]],[[7029,9685],[-5,-1]],[[7024,9684],[2,-19]],[[7015,9666],[11,-1]],[[7024,9684],[-9,-2]],[[7015,9682],[0,-16]],[[6944,9826],[12,2]],[[6956,9828],[-17,16],[4,19]],[[6943,9863],[5,37]],[[6948,9900],[-16,10]],[[6932,9910],[-3,0]],[[6907,9898],[-5,-36],[3,-16],[20,-19],[19,-1]],[[6940,9958],[19,-5],[39,-25]],[[6998,9928],[27,-17]],[[7025,9911],[24,-15]],[[7049,9896],[31,-40]],[[7080,9856],[6,-8]],[[7086,9848],[12,-16]],[[7098,9832],[6,-10]],[[7161,9724],[12,65],[-2,53]],[[7171,9842],[-8,89]],[[7163,9931],[-45,15],[-189,53],[-30,-21],[-7,-27]],[[6892,9951],[7,19],[41,-12]],[[7010,9755],[3,-7]],[[7020,9753],[-8,14]],[[7006,9762],[4,-7]],[[7026,9759],[-8,15]],[[6936,9933],[4,25]],[[6892,9951],[0,-5]],[[6892,9946],[44,-13]],[[6932,9910],[4,23]],[[6892,9946],[1,-12]],[[7037,9648],[-3,15]],[[7015,9666],[-2,-22]],[[7013,9644],[24,4]],[[7034,9663],[19,8]],[[7053,9671],[0,1]],[[7053,9672],[-8,5]],[[6956,9862],[8,32]],[[6964,9894],[-16,6]],[[6943,9863],[13,-1]],[[6989,9812],[12,8]],[[7001,9820],[-12,31]],[[6989,9851],[-8,-7]],[[6981,9844],[8,-32]],[[6956,9828],[5,4]],[[6961,9832],[8,27]],[[6969,9859],[-13,3]],[[7007,9680],[8,2]],[[7005,9691],[2,-11]],[[7037,9648],[26,-6]],[[7064,9650],[-11,21]],[[7053,9672],[-1,10]],[[7052,9682],[0,19]],[[7052,9701],[-10,-6]],[[7052,9701],[0,10]],[[7052,9711],[-11,-8]],[[7050,9720],[1,1]],[[7051,9721],[1,18]],[[7032,9720],[18,0]],[[7052,9711],[-2,9]],[[7064,9717],[0,2]],[[7064,9719],[0,15]],[[7064,9734],[-12,7]],[[7051,9721],[13,-4]],[[7052,9711],[9,-1]],[[7061,9710],[3,7]],[[6955,9783],[26,-20],[12,-24]],[[6993,9739],[14,-5],[3,21]],[[7002,9800],[0,21]],[[7002,9821],[-1,-1]],[[6989,9812],[-22,14]],[[6967,9826],[-6,6]],[[6944,9826],[11,-43]],[[6989,9851],[-16,24]],[[6973,9875],[-4,-16]],[[6969,9859],[12,-15]],[[7018,9836],[8,-2]],[[7028,9843],[-2,2]],[[7026,9845],[-16,14]],[[7010,9859],[-4,-16]],[[7006,9843],[0,-4]],[[7006,9839],[12,-3]],[[6996,9712],[17,11]],[[6993,9739],[-8,-6],[11,-21]],[[7090,9757],[-8,2],[-10,-25]],[[7072,9734],[-8,-15]],[[7064,9717],[30,-1]],[[7004,9866],[10,22]],[[7014,9888],[11,23]],[[6998,9928],[-23,-45]],[[6975,9883],[29,-17]],[[7072,9734],[-8,0]],[[6967,9826],[14,18]],[[7061,9710],[25,-7]],[[7023,9878],[10,-17]],[[7033,9861],[9,-13]],[[7042,9848],[7,10],[-13,22],[13,16]],[[7014,9888],[9,-10]],[[7010,9859],[13,19]],[[7004,9866],[6,-7]],[[7026,9845],[7,16]],[[7042,9848],[7,-8]],[[7057,9829],[23,27]],[[7052,9682],[7,-2]],[[7059,9680],[2,30]],[[7059,9680],[5,-1]],[[7064,9679],[10,10]],[[7074,9689],[4,5]],[[6996,9712],[9,-19]],[[7034,9841],[8,-11]],[[7002,9642],[6,25]],[[7008,9667],[-1,13]],[[7005,9693],[-36,-31]],[[6969,9662],[14,-22],[19,2]],[[7015,9666],[-7,1]],[[7002,9642],[11,2]],[[6973,9875],[2,8]],[[6975,9883],[-11,11]],[[7033,9763],[-8,16]],[[7053,9672],[7,-1]],[[7060,9671],[4,8]],[[7057,9788],[6,3]],[[7063,9791],[-3,13]],[[7060,9804],[-7,7]],[[7051,9814],[-17,-11]],[[7034,9803],[23,-15]],[[7063,9791],[3,-1]],[[7066,9790],[13,11]],[[7079,9801],[-5,8]],[[7074,9809],[-4,6]],[[7070,9815],[-10,-11]],[[7069,9659],[0,6]],[[7070,9669],[-10,2]],[[6955,9783],[11,-40],[-5,-18],[2,-53],[6,-10]],[[6989,9851],[5,5]],[[6994,9856],[10,10]],[[7042,9762],[15,26]],[[7034,9803],[-10,6]],[[7021,9815],[-7,5]],[[7014,9820],[-12,1]],[[7070,9815],[-4,7]],[[7098,9832],[-24,-23]],[[7070,9677],[4,12]],[[7075,9778],[11,10]],[[7066,9790],[9,-12]],[[7084,9673],[0,7]],[[7075,9778],[9,-10]],[[7002,9821],[4,18]],[[7006,9843],[-12,13]],[[7018,9836],[-4,-16]],[[7086,9848],[-20,-26]],[[1633,6540],[13,-3]],[[1646,6537],[12,3],[0,29]],[[1658,6569],[-2,0]],[[1656,6569],[-14,-1],[-15,13],[0,-24]],[[1627,6557],[6,-17]],[[1820,6204],[0,32]],[[1820,6236],[-9,0],[0,-32],[9,0]],[[1410,6258],[11,-33],[22,-13],[28,-8],[25,-22],[27,-31],[10,-21],[16,-1],[24,-20],[35,6],[18,-13],[14,0],[10,28],[15,-20],[3,-25],[18,6],[0,-43],[11,3],[25,-35],[0,-39],[50,-1],[10,-12],[38,0]],[[1820,5964],[0,231]],[[1820,6195],[0,9]],[[1820,6236],[0,14]],[[1820,6250],[-20,1],[-18,46],[-26,30],[-27,6],[-9,25],[-18,-1],[-4,-27],[-15,-6],[-11,-24],[-31,7],[-33,-4],[-28,15],[-9,38]],[[1571,6356],[-13,-53],[-25,-26],[-41,11],[-30,-6],[-31,7],[-23,14],[-26,-2]],[[1382,6301],[8,-4],[20,-39]],[[1258,5986],[42,16],[0,-10],[51,-42],[16,9],[19,-29],[31,10],[14,-13],[17,-2]],[[1448,5925],[0,28],[-9,23],[8,50],[-24,29],[19,3],[-5,27],[6,31],[-10,17],[-31,31],[-2,19],[7,24],[3,51]],[[1382,6301],[-11,2],[-20,23],[-4,28],[8,26]],[[1355,6380],[-63,-31],[-19,5]],[[1273,6354],[-9,-96],[-14,-37],[2,-40],[-8,-70],[12,-24],[-6,-40],[2,-43],[6,-18]],[[976,5620],[22,28],[11,46],[7,8]],[[1016,5702],[-40,-1],[0,-81]],[[970,5585],[-91,-2]],[[879,5583],[0,-33]],[[879,5550],[25,1],[8,-13],[25,19],[28,11],[5,17]],[[1669,6532],[0,40],[-11,-3]],[[1646,6537],[8,-15],[15,10]],[[1820,5586],[1,186]],[[1821,5772],[0,106]],[[1821,5878],[-23,-8],[-62,9],[-30,31],[-34,6],[-22,-7],[20,-64],[-57,1],[-2,-13]],[[1611,5833],[2,-58],[10,-13],[2,-171]],[[1625,5591],[195,-5]],[[1165,5949],[27,0],[31,15],[6,12],[29,10]],[[1273,6354],[-44,8],[-27,47],[1,40],[-75,31],[-29,-2],[3,-41],[-9,-10]],[[1093,6427],[-17,-27],[17,-40],[-10,-28],[7,-40],[0,-39],[9,-21],[-4,-17]],[[1095,6215],[-4,-44],[-10,-51],[16,-28],[17,-42],[12,7],[6,-40],[23,-57],[10,-11]],[[1571,6356],[5,25],[2,58],[10,49],[45,39]],[[1633,6527],[0,13]],[[1627,6557],[-14,0],[-31,-37],[-4,9],[-45,-27],[-37,12],[-7,7]],[[1489,6521],[-10,-13],[-23,-8],[-47,-7],[-21,-84],[-33,-29]],[[1489,6521],[8,11],[-14,18],[-25,-12],[-15,1],[1,24],[-27,-3],[-8,9],[-23,-5],[-15,-47],[-10,-80],[-33,-25],[-31,-9],[-8,-10],[-20,8],[-23,41],[15,0],[-4,48],[-22,-3],[-1,-22],[-23,40],[-44,15],[-24,-3],[-29,41],[-6,34],[-10,8],[5,28],[-5,27],[-47,3],[-26,15],[-1,56]],[[1024,6729],[-42,-1]],[[982,6728],[6,-61],[9,1],[18,-27],[72,-68],[0,-120],[6,-26]],[[1687,6528],[-18,4]],[[1633,6527],[26,-26],[29,3],[-1,24]],[[1571,5572],[55,-19]],[[1626,5553],[-1,38]],[[1611,5833],[-50,15],[-40,0],[-7,-28]],[[1514,5820],[-2,-41],[20,-7],[10,-51],[14,-1],[-9,-38],[-14,-17],[36,-1],[2,-92]],[[1657,6591],[17,1],[12,-17],[19,-7]],[[1705,6568],[21,11],[19,-26],[2,-19],[13,-3],[12,-22],[27,-31],[22,-15]],[[1821,6463],[0,263]],[[1821,6726],[-212,0],[-53,-1]],[[1556,6725],[1,-13],[21,-2],[13,-10],[18,0],[18,-29],[13,1],[16,-21],[1,-60]],[[1687,6528],[19,15],[-1,25]],[[1657,6591],[-1,-22]],[[1556,6725],[-101,0],[-267,5],[-164,-1]],[[1448,5925],[3,-31],[-7,-23],[24,0],[29,-24],[17,-27]],[[1821,5878],[-1,86]],[[970,5585],[6,35]],[[1016,5702],[9,0]],[[1025,5702],[19,19]],[[1044,5721],[12,14],[-4,19],[30,-8],[5,20]],[[1087,5766],[-4,34],[15,10],[-3,42]],[[1095,5852],[-10,39],[-50,-7],[-27,5],[0,-54],[-22,-9],[-25,-2],[-10,-23],[-60,-1],[-14,-24]],[[877,5776],[0,-2]],[[877,5774],[2,-191]],[[1087,5766],[20,-5],[52,-3],[33,-35],[21,-8],[14,16],[15,-4],[-9,-10]],[[1233,5717],[25,-5],[-8,-15],[16,5],[17,-10],[-2,-13],[12,-8],[37,-6],[0,24],[10,5],[13,-25],[24,-19],[21,3],[9,-16],[16,-4]],[[1423,5633],[18,-6],[7,-15],[27,-10],[27,12],[21,-20],[10,7],[12,-16],[12,6],[14,-19]],[[1165,5949],[-29,-29],[0,-35],[-22,-24],[-19,-9]],[[982,6728],[-105,-1]],[[877,6727],[4,-190]],[[881,6537],[-1,-89],[0,-248]],[[880,6200],[9,5],[101,0],[0,15],[61,3],[30,-10],[14,2]],[[1820,6250],[0,192],[1,21]],[[880,6200],[-1,-42]],[[879,6158],[0,-294],[-2,-88]],[[2431,4449],[54,3]],[[2485,4452],[61,1]],[[2546,4453],[10,6],[-12,22],[10,14]],[[2554,4495],[0,18],[-13,17],[3,28]],[[2544,4558],[-224,1]],[[2320,4559],[7,-109]],[[2327,4450],[74,1],[30,-2]],[[2660,4077],[15,-1]],[[2675,4076],[7,30]],[[2682,4106],[-31,-5]],[[2651,4101],[9,-24]],[[2247,4057],[26,-1],[6,9]],[[2279,4065],[-18,12],[-2,16]],[[2259,4093],[-23,-1],[0,-16],[12,0],[-1,-19]],[[2698,4380],[50,0]],[[2748,4380],[-14,46]],[[2734,4426],[-50,1],[14,-47]],[[2546,4453],[4,-16]],[[2550,4437],[39,2],[46,-12]],[[2635,4427],[-13,43],[0,23]],[[2622,4493],[-68,2]],[[2748,4380],[12,-41]],[[2760,4339],[20,0],[12,19],[13,5]],[[2805,4363],[-13,38]],[[2792,4401],[-12,56]],[[2780,4457],[-56,1]],[[2724,4458],[10,-32]],[[2973,3129],[13,570],[3,197],[-1,23]],[[2988,3919],[-19,0],[-29,15],[-20,0],[-26,18]],[[2894,3952],[-71,29]],[[2823,3981],[-32,26]],[[2791,4007],[-21,0]],[[2770,4007],[-30,-18]],[[2740,3989],[-32,-30]],[[2708,3959],[-2,-3]],[[2706,3956],[-24,-20]],[[2682,3936],[-28,-21]],[[2654,3915],[-10,-7],[-42,-47],[-34,-47],[-46,-43]],[[2522,3771],[-75,-3]],[[2447,3768],[-25,-1],[-21,-10],[-37,-5],[-20,-7]],[[2344,3745],[-40,-10],[-67,-25],[-24,10]],[[2213,3720],[1,-21],[1,-277],[0,-293]],[[2215,3129],[372,0],[247,-1],[139,1]],[[2522,3771],[0,24]],[[2522,3795],[-1,98]],[[2521,3893],[-26,0],[-9,-10],[3,-40],[-24,1],[0,17],[-24,1],[-2,33]],[[2439,3895],[-22,1]],[[2417,3896],[30,-128]],[[2843,4237],[11,11]],[[2854,4248],[0,10]],[[2854,4258],[-3,0]],[[2851,4258],[-39,-1]],[[2812,4257],[0,-6]],[[2812,4251],[0,-9]],[[2812,4242],[20,5],[11,-10]],[[2525,4294],[54,-40]],[[2579,4254],[32,0]],[[2611,4254],[-21,41]],[[2590,4295],[-68,3]],[[2522,4298],[3,-4]],[[2918,4357],[0,23]],[[2918,4380],[-32,-10],[-4,19],[-13,5],[3,22]],[[2872,4416],[0,9],[-21,-1]],[[2851,4424],[-1,-16]],[[2850,4408],[1,-19]],[[2851,4389],[0,-31]],[[2851,4358],[67,-1]],[[2715,4189],[18,8]],[[2733,4197],[-16,12]],[[2717,4209],[-6,-6]],[[2711,4203],[4,-14]],[[2552,4003],[35,0]],[[2587,4003],[0,33]],[[2587,4036],[-25,0],[-2,25]],[[2560,4061],[-17,-4]],[[2543,4057],[-26,-7]],[[2517,4050],[0,-59]],[[2517,3991],[24,1],[11,11]],[[2630,4288],[0,16],[17,-1],[4,-21],[13,-11],[28,18],[3,-11]],[[2695,4278],[49,-2]],[[2744,4276],[-10,37],[9,6]],[[2743,4319],[-51,3]],[[2692,4322],[-51,4]],[[2641,4326],[-35,3]],[[2606,4329],[8,-34],[16,-7]],[[2708,4100],[19,-1]],[[2727,4099],[0,16]],[[2727,4115],[-2,13]],[[2725,4128],[-6,1]],[[2719,4129],[-11,-20]],[[2708,4109],[0,-2]],[[2708,4107],[0,-7]],[[2682,3936],[7,33],[-6,3]],[[2683,3972],[-10,-6]],[[2673,3966],[-24,-14]],[[2649,3952],[-13,-8]],[[2636,3944],[18,-29]],[[2781,4190],[3,-6]],[[2784,4184],[7,-23]],[[2791,4161],[1,0]],[[2792,4161],[12,26]],[[2804,4187],[8,18],[0,37]],[[2812,4251],[-26,-33],[-11,-6]],[[2775,4212],[6,-22]],[[2635,4427],[14,-45]],[[2649,4382],[49,-2]],[[2724,4458],[-10,35]],[[2714,4493],[-92,0]],[[2706,3956],[-15,43]],[[2691,3999],[-19,-3]],[[2672,3996],[11,-24]],[[2458,4099],[3,-20]],[[2461,4079],[55,3]],[[2516,4082],[0,53]],[[2516,4135],[-1,50]],[[2515,4185],[-25,-3],[-1,20],[-39,-1]],[[2450,4201],[2,-61]],[[2452,4140],[0,-10],[38,1],[0,-30],[-32,-2]],[[2590,4295],[-8,17],[18,2],[20,-31],[31,-24]],[[2651,4259],[4,4]],[[2655,4263],[-25,25]],[[2606,4329],[-14,29],[-16,5],[11,14]],[[2587,4377],[0,30],[-10,15],[-27,15]],[[2485,4452],[-7,-37],[2,-60],[6,-40],[23,-6],[13,-11]],[[2342,4045],[-3,18],[-35,-7],[0,16]],[[2304,4072],[-25,-7]],[[2247,4057],[1,-12]],[[2248,4045],[94,0]],[[2473,4287],[5,7],[44,4]],[[2431,4449],[3,-155]],[[2434,4294],[39,-7]],[[2727,4174],[2,-3]],[[2729,4171],[17,-1]],[[2746,4170],[4,9]],[[2750,4179],[-4,9]],[[2746,4188],[0,5]],[[2746,4193],[-19,-19]],[[2618,4200],[7,22]],[[2625,4222],[10,20]],[[2635,4242],[-19,1],[-5,11]],[[2579,4254],[-11,0]],[[2568,4254],[3,-49]],[[2571,4205],[12,-5],[35,0]],[[2603,4135],[3,16]],[[2606,4151],[7,17]],[[2613,4168],[-32,0]],[[2581,4168],[0,-33]],[[2581,4135],[22,0]],[[2682,4106],[7,3]],[[2689,4109],[-1,10]],[[2688,4119],[-5,7]],[[2683,4126],[-10,5]],[[2673,4131],[9,-25]],[[2630,4219],[14,6]],[[2644,4225],[0,8]],[[2644,4233],[8,26]],[[2652,4259],[-1,0]],[[2651,4259],[-16,-17]],[[2625,4222],[5,-3]],[[2560,4061],[27,6]],[[2587,4067],[-6,27]],[[2581,4094],[-38,0],[0,-37]],[[2603,4135],[14,-1]],[[2617,4134],[30,1]],[[2647,4135],[0,24]],[[2647,4159],[0,9]],[[2647,4168],[-7,0]],[[2640,4168],[0,-21],[-34,4]],[[2672,3996],[0,13]],[[2672,4009],[-8,-2]],[[2664,4007],[-1,-29],[10,-12]],[[2589,3909],[-2,36]],[[2587,3945],[-24,-11]],[[2563,3934],[-43,-21]],[[2520,3913],[1,-20]],[[2522,3795],[19,12],[9,42],[21,44],[18,16]],[[2760,4339],[5,-21]],[[2765,4318],[10,-29]],[[2775,4289],[0,-1]],[[2775,4288],[33,30],[11,-1]],[[2819,4317],[-4,10],[17,30]],[[2832,4357],[-6,12],[-21,-6]],[[2703,4255],[49,-3]],[[2752,4252],[13,22]],[[2765,4274],[-21,2]],[[2695,4278],[8,-23]],[[2695,3981],[13,-22]],[[2740,3989],[-5,7]],[[2735,3996],[-26,5],[1,-12],[-15,-8]],[[2563,3934],[0,47],[-11,22]],[[2517,3991],[3,-65]],[[2520,3926],[0,-13]],[[2900,4054],[4,43]],[[2904,4097],[-39,0]],[[2865,4097],[0,-38]],[[2865,4059],[35,-5]],[[2304,4072],[0,21],[-45,0]],[[2667,4242],[11,-2],[-8,19],[-3,-17]],[[2695,4197],[4,0]],[[2699,4197],[8,11]],[[2707,4208],[1,3]],[[2708,4211],[-5,7]],[[2703,4218],[-12,2]],[[2691,4220],[-2,-2]],[[2689,4218],[6,-21]],[[2804,4187],[12,5],[35,0]],[[2851,4192],[-8,17],[0,28]],[[2733,4197],[10,4]],[[2743,4201],[-5,14]],[[2738,4215],[0,0]],[[2738,4215],[-13,2]],[[2725,4217],[-8,-8]],[[2663,4232],[0,1]],[[2663,4233],[2,9]],[[2665,4242],[2,15],[-12,6]],[[2652,4259],[1,-26]],[[2653,4233],[10,-1]],[[2525,4294],[0,-39]],[[2525,4255],[43,-1]],[[2743,4201],[3,-8]],[[2746,4193],[19,14]],[[2765,4207],[-27,8]],[[2789,4089],[13,-8]],[[2802,4081],[3,15]],[[2805,4096],[2,25],[-7,21]],[[2800,4142],[-38,0]],[[2762,4142],[-5,-18]],[[2757,4124],[21,-17],[11,-18]],[[2710,4065],[23,-1]],[[2733,4064],[4,33]],[[2737,4097],[-10,2]],[[2708,4100],[-1,-35]],[[2707,4065],[3,0]],[[2709,4118],[0,8]],[[2709,4126],[-11,5]],[[2698,4131],[-7,-4]],[[2691,4127],[18,-9]],[[2664,4007],[-15,0]],[[2649,4007],[0,-35]],[[2649,3972],[0,-20]],[[2636,3944],[-16,-17],[-17,3],[-14,-21]],[[2767,4230],[8,-18]],[[2812,4257],[-27,0],[-10,31]],[[2775,4289],[-7,-10]],[[2768,4279],[-1,-49]],[[2344,3745],[-10,7],[-7,44],[-21,55],[0,51]],[[2306,3902],[-93,-1]],[[2213,3901],[0,-6]],[[2213,3895],[0,-172]],[[2213,3723],[0,-3]],[[2738,4232],[29,-2]],[[2768,4279],[-3,-5]],[[2752,4252],[-14,-20]],[[2872,4416],[20,-6],[26,2],[0,-32]],[[2918,4380],[24,9],[52,1]],[[2994,4390],[0,65]],[[2994,4455],[-92,0]],[[2902,4455],[-51,1]],[[2851,4456],[0,-32]],[[2741,4115],[16,-1]],[[2757,4114],[0,10]],[[2762,4142],[-24,1]],[[2738,4143],[0,-13]],[[2738,4130],[3,-15]],[[2721,4218],[4,-1]],[[2738,4215],[0,16]],[[2738,4231],[-19,5]],[[2719,4236],[2,-18]],[[2789,4012],[25,-11],[8,20]],[[2822,4021],[-8,36]],[[2814,4057],[8,39]],[[2822,4096],[-17,0]],[[2802,4081],[-10,-11],[-3,-25]],[[2789,4045],[0,-33]],[[2708,4162],[7,-8]],[[2715,4154],[15,-5]],[[2730,4149],[-11,18]],[[2719,4167],[-11,-5]],[[2683,4189],[12,8]],[[2689,4218],[-6,-10]],[[2683,4208],[-3,-11]],[[2680,4197],[-4,-14]],[[2676,4183],[7,6]],[[2698,4238],[5,-16]],[[2703,4222],[8,6]],[[2711,4228],[-4,16]],[[2707,4244],[-9,-6]],[[2633,4054],[18,10]],[[2651,4064],[-2,17],[-16,-2]],[[2633,4079],[0,-25]],[[2633,4003],[0,17]],[[2633,4020],[0,16]],[[2633,4036],[-22,0]],[[2611,4036],[-24,0]],[[2587,4003],[46,0]],[[2757,4114],[-1,-16]],[[2756,4098],[0,-16]],[[2756,4082],[22,-3],[11,10]],[[2376,4045],[39,-143]],[[2415,3902],[2,-6]],[[2439,3895],[2,32],[79,-1]],[[2517,4050],[-1,32]],[[2461,4079],[-92,-4]],[[2369,4075],[7,-30]],[[2737,4097],[19,1]],[[2741,4115],[-14,0]],[[2613,4168],[3,16]],[[2616,4184],[2,16]],[[2571,4205],[-3,2]],[[2568,4207],[0,-39]],[[2568,4168],[13,0]],[[2516,4135],[25,0]],[[2541,4135],[0,33]],[[2541,4168],[0,46],[27,-7]],[[2525,4255],[-10,-1]],[[2515,4254],[0,-69]],[[2988,3919],[0,1]],[[2988,3920],[1,115]],[[2989,4035],[-31,7],[0,-43],[-24,0],[0,18]],[[2934,4017],[-34,4],[0,-66],[-6,-3]],[[2832,4357],[19,32]],[[2850,4408],[-46,4],[-12,-11]],[[2647,4168],[10,0]],[[2657,4168],[5,11]],[[2662,4179],[-6,6]],[[2656,4185],[-10,-1]],[[2646,4184],[-6,-16]],[[2762,4036],[8,-29]],[[2791,4007],[-2,5]],[[2789,4045],[-27,5]],[[2762,4050],[0,-14]],[[2699,4197],[14,-18]],[[2713,4179],[6,-2]],[[2719,4177],[-4,12]],[[2711,4203],[-4,5]],[[2708,4211],[7,7]],[[2715,4218],[-4,10]],[[2703,4222],[0,-4]],[[2698,4238],[-7,-18]],[[2709,4126],[0,10]],[[2709,4136],[0,1]],[[2709,4137],[-14,-1]],[[2695,4136],[3,-5]],[[2681,4143],[2,-10]],[[2683,4133],[8,3]],[[2691,4136],[0,9]],[[2691,4145],[-7,2]],[[2684,4147],[-3,-4]],[[2727,4018],[17,1],[18,17]],[[2762,4050],[-5,14]],[[2757,4064],[-24,0]],[[2710,4065],[-1,-33]],[[2709,4032],[18,-14]],[[2587,4036],[0,31]],[[2822,4021],[48,0]],[[2870,4021],[30,20]],[[2900,4041],[0,13]],[[2865,4059],[-51,-2]],[[2695,4162],[11,-4]],[[2706,4158],[2,4]],[[2719,4167],[8,7]],[[2727,4174],[-8,3]],[[2713,4179],[-15,-5]],[[2698,4174],[-3,-12]],[[2907,4220],[12,-33],[1,-58]],[[2920,4129],[70,-1]],[[2990,4128],[2,131]],[[2992,4259],[0,1]],[[2992,4260],[-74,0]],[[2918,4260],[-11,0]],[[2907,4260],[0,-40]],[[2452,4140],[-63,-4],[1,-21],[38,3],[0,-21],[30,2]],[[2819,4317],[13,-24]],[[2832,4293],[19,21]],[[2851,4314],[0,44]],[[2854,4248],[24,-6],[0,-25]],[[2878,4217],[29,3]],[[2907,4260],[-53,-2]],[[2646,4184],[-30,0]],[[2649,4007],[0,13]],[[2649,4020],[-16,0]],[[2633,4003],[0,-22]],[[2633,3981],[16,-9]],[[2648,4135],[20,11],[0,9]],[[2668,4155],[-9,3]],[[2659,4158],[-2,0]],[[2657,4158],[-10,1]],[[2647,4135],[1,0]],[[2587,4003],[0,-31]],[[2587,3972],[41,0],[5,9]],[[2707,4154],[2,-10]],[[2709,4144],[10,0]],[[2719,4144],[-4,10]],[[2706,4158],[1,-4]],[[2851,4192],[13,0],[0,25],[14,0]],[[2675,4223],[-12,10]],[[2663,4232],[0,-9]],[[2663,4223],[12,0]],[[2750,4179],[19,-1]],[[2769,4178],[15,6]],[[2781,4190],[-9,6],[-26,-8]],[[2695,4162],[-3,-11]],[[2692,4151],[15,3]],[[2683,4208],[-8,0]],[[2675,4208],[-8,0]],[[2667,4208],[13,-11]],[[2415,3902],[-109,0]],[[2823,3981],[12,6],[8,22],[27,12]],[[2800,4142],[-8,19]],[[2791,4161],[-21,1]],[[2770,4162],[-11,-8]],[[2759,4154],[0,-2]],[[2759,4152],[3,-10]],[[2638,4214],[11,-7]],[[2649,4207],[-1,18]],[[2648,4225],[-4,0]],[[2630,4219],[8,-5]],[[2376,4045],[-34,0]],[[2248,4045],[-37,1]],[[2211,4046],[0,-3]],[[2211,4043],[2,-142]],[[2918,4260],[0,32]],[[2918,4292],[-33,0],[-1,17]],[[2884,4309],[-25,3]],[[2859,4312],[-5,-16]],[[2854,4296],[12,-4],[-4,-29],[-11,3]],[[2851,4266],[0,-8]],[[2851,4266],[-1,3]],[[2850,4269],[-15,-1],[-3,25]],[[2668,4128],[0,4]],[[2668,4132],[-20,3]],[[2647,4135],[0,-3]],[[2647,4132],[21,-4]],[[2689,4109],[19,-2]],[[2708,4109],[1,9]],[[2691,4127],[-3,-8]],[[2581,4115],[44,-17],[7,-19]],[[2632,4079],[1,0]],[[2651,4064],[5,-14]],[[2656,4050],[7,-1]],[[2663,4049],[-3,28]],[[2651,4101],[-4,12]],[[2647,4113],[0,19]],[[2617,4134],[15,0],[-8,-34],[-43,15]],[[2646,4184],[0,11]],[[2646,4195],[-8,19]],[[2587,4067],[22,5]],[[2609,4072],[23,7]],[[2581,4115],[0,-21]],[[2741,4162],[5,8]],[[2729,4171],[12,-9]],[[2662,4179],[11,0]],[[2673,4179],[3,4]],[[2676,4183],[-1,0]],[[2675,4183],[-19,2]],[[2675,4183],[-12,17]],[[2663,4200],[-3,0]],[[2660,4200],[-14,-5]],[[2854,4296],[4,-24],[-8,-3]],[[2989,4035],[1,48]],[[2990,4083],[0,14]],[[2990,4097],[-86,0]],[[2900,4041],[34,4],[0,-28]],[[2668,4132],[5,-1]],[[2673,4131],[2,18]],[[2675,4149],[5,7]],[[2680,4156],[-12,-1]],[[2851,4314],[8,-2]],[[2884,4309],[5,23],[16,0],[13,11]],[[2918,4343],[0,14]],[[2721,4218],[-6,0]],[[2724,4131],[14,-1]],[[2738,4143],[-14,1]],[[2724,4144],[0,-13]],[[2741,4159],[18,-7]],[[2759,4154],[-9,25]],[[2741,4162],[0,-3]],[[2757,4064],[-1,18]],[[2675,4223],[3,0]],[[2678,4223],[8,2]],[[2686,4225],[-21,17]],[[2660,4200],[-11,7]],[[2918,4292],[-1,26]],[[2917,4318],[1,25]],[[2647,4113],[24,-2],[-3,17]],[[2719,4144],[5,0]],[[2738,4143],[-3,5]],[[2735,4148],[-5,1]],[[2770,4162],[-1,16]],[[2684,4147],[8,4]],[[2698,4174],[-6,3]],[[2692,4177],[-12,-21]],[[2675,4149],[6,-6]],[[2724,4131],[1,-3]],[[2719,4236],[-8,7]],[[2711,4243],[-4,1]],[[2822,4096],[43,1]],[[2990,4097],[0,31]],[[2920,4129],[-69,-1]],[[2851,4128],[-28,0],[-11,19],[-12,-5]],[[2692,4322],[8,32],[-2,26]],[[2649,4382],[3,-11],[-25,1]],[[2627,4372],[14,-46]],[[2568,4168],[-27,0]],[[2541,4135],[40,0]],[[2719,4129],[-10,7]],[[2691,4136],[4,0]],[[2709,4137],[0,7]],[[2709,4144],[-18,1]],[[2765,4207],[10,5]],[[2738,4232],[0,-1]],[[2649,4020],[7,30]],[[2633,4054],[0,-18]],[[2682,4070],[25,-5]],[[2708,4100],[-24,-8],[-2,-22]],[[2851,4128],[0,64]],[[2325,4237],[44,-162]],[[2450,4201],[-1,50]],[[2449,4251],[-14,-1]],[[2435,4250],[-113,-4]],[[2322,4246],[3,-9]],[[2741,4159],[-6,-11]],[[2695,3981],[-7,33],[4,18]],[[2692,4032],[-10,38]],[[2675,4076],[14,-26],[-2,-37],[4,-14]],[[2683,4189],[9,-12]],[[2272,4432],[50,-186]],[[2435,4250],[-1,44]],[[2327,4450],[-59,-5],[4,-13]],[[2449,4251],[32,2]],[[2481,4253],[1,22],[-9,12]],[[2657,4158],[0,10]],[[2673,4179],[-14,-21]],[[2743,4319],[22,-1]],[[2663,4049],[8,-17],[1,-23]],[[2992,4260],[2,105]],[[2994,4365],[-46,-32],[-16,-1],[-15,-14]],[[2648,4225],[15,-11]],[[2663,4214],[0,9]],[[2653,4233],[-9,0]],[[2994,4365],[0,25]],[[2692,4032],[17,0]],[[2325,4237],[-114,1]],[[2211,4238],[0,-192]],[[2587,4377],[40,-5]],[[2780,4457],[71,-1]],[[2851,4456],[3,128]],[[2854,4584],[0,74]],[[2854,4658],[-93,-2]],[[2761,4656],[-4,-30],[-13,-26],[-60,5],[2,-19]],[[2686,4586],[28,-93]],[[2761,4656],[-28,0]],[[2733,4656],[-69,-1]],[[2664,4655],[22,-69]],[[2481,4253],[34,1]],[[2663,4200],[0,8]],[[2663,4208],[0,6]],[[2683,4133],[0,-7]],[[2609,4072],[2,-36]],[[2686,4225],[3,-7]],[[2711,4243],[-8,12]],[[2727,4018],[8,-22]],[[2667,4208],[-4,0]],[[2675,4208],[3,15]],[[2587,3972],[0,-27]],[[2664,4655],[-4,10]],[[2660,4665],[-151,-1]],[[2509,4664],[35,-18],[7,-20],[6,-48],[-14,-3],[1,-17]],[[7742,9419],[8,26],[23,-20],[-10,-14]],[[7763,9411],[12,-5]],[[7775,9406],[0,38]],[[7775,9444],[-4,27]],[[7771,9471],[-13,3]],[[7758,9474],[-12,2]],[[7746,9476],[-6,2]],[[7740,9478],[-8,-54]],[[7732,9424],[10,-5]],[[7737,9568],[15,0]],[[7752,9568],[3,31]],[[7755,9599],[-4,-1]],[[7751,9598],[-3,-3]],[[7748,9595],[-6,-10]],[[7742,9585],[-5,-17]],[[7552,9699],[16,-7]],[[7568,9692],[9,7]],[[7577,9699],[8,9]],[[7585,9708],[15,6],[8,42]],[[7608,9756],[-4,2]],[[7604,9758],[-15,0]],[[7589,9758],[-45,-8]],[[7544,9750],[-3,-22]],[[7541,9728],[-7,-15]],[[7534,9713],[18,-14]],[[7658,9386],[8,-3]],[[7666,9383],[2,27]],[[7668,9410],[-9,3]],[[7659,9413],[-8,-3]],[[7651,9410],[8,-5],[-1,-19]],[[7684,9398],[-10,10]],[[7674,9408],[-6,2]],[[7666,9383],[12,-2],[6,17]],[[7650,9410],[1,0]],[[7659,9413],[6,17],[-16,9]],[[7649,9439],[-6,-27]],[[7643,9412],[7,-2]],[[7674,9408],[0,32]],[[7674,9440],[-4,1]],[[7670,9441],[-17,5]],[[7653,9446],[-4,-7]],[[7677,9539],[8,-22]],[[7685,9517],[4,-3]],[[7689,9514],[5,8]],[[7694,9522],[0,1]],[[7694,9523],[-8,27]],[[7686,9550],[-10,-5]],[[7676,9545],[1,-6]],[[7658,9767],[0,25]],[[7658,9792],[-15,-3]],[[7643,9789],[0,-22]],[[7643,9767],[15,0]],[[7662,9654],[7,-15]],[[7669,9639],[5,3]],[[7674,9642],[-8,33]],[[7666,9675],[-2,27]],[[7664,9702],[-10,-1]],[[7654,9701],[-5,-34],[13,-13]],[[7643,9651],[19,3]],[[7654,9701],[-15,-12]],[[7639,9689],[4,-38]],[[7818,9353],[3,17]],[[7821,9370],[0,9],[20,-3]],[[7841,9376],[0,5]],[[7841,9381],[0,5]],[[7841,9386],[-6,29]],[[7835,9415],[-18,-27],[-5,3]],[[7812,9391],[-5,2]],[[7807,9393],[-5,-37]],[[7802,9356],[16,-3]],[[7746,9476],[10,45]],[[7756,9521],[3,9]],[[7759,9530],[-12,7]],[[7747,9537],[-5,-38]],[[7742,9499],[-2,-21]],[[7835,9520],[2,-5]],[[7837,9515],[15,-1],[3,-34]],[[7855,9480],[1,-3]],[[7856,9477],[3,23]],[[7859,9500],[3,19]],[[7862,9519],[-11,3]],[[7851,9522],[-17,3]],[[7834,9525],[1,-5]],[[7526,9764],[11,-11]],[[7537,9753],[7,-3]],[[7589,9758],[0,25]],[[7589,9783],[-29,-4],[-38,5]],[[7522,9784],[0,-10]],[[7522,9774],[4,-10]],[[7643,9763],[0,4]],[[7643,9789],[-28,-6]],[[7615,9783],[0,-20]],[[7615,9763],[28,0]],[[7696,9657],[4,29]],[[7700,9686],[-23,32]],[[7677,9718],[-13,-16]],[[7666,9675],[15,-3],[15,-15]],[[7640,9726],[14,-2],[-8,22],[-6,-20]],[[7694,9606],[0,-1]],[[7694,9605],[19,-3]],[[7713,9602],[0,15]],[[7713,9617],[0,12]],[[7713,9629],[-21,-5]],[[7692,9624],[-4,-8]],[[7688,9616],[6,-10]],[[7684,9398],[2,-1]],[[7686,9397],[3,7]],[[7689,9404],[2,31]],[[7691,9435],[-17,5]],[[7689,9404],[51,-26],[16,-18]],[[7756,9360],[8,9]],[[7764,9369],[-2,4]],[[7762,9373],[-30,17]],[[7732,9390],[-16,8]],[[7716,9398],[-5,3]],[[7711,9401],[-22,3]],[[7556,9476],[5,-3]],[[7561,9473],[15,-5]],[[7576,9468],[-12,13]],[[7564,9481],[-10,3]],[[7554,9484],[0,-6]],[[7554,9478],[2,-2]],[[7576,9468],[3,-1]],[[7579,9467],[10,7]],[[7589,9474],[-8,17]],[[7581,9491],[-17,-10]],[[7869,9326],[14,36]],[[7883,9362],[-17,6]],[[7866,9368],[-3,-17]],[[7863,9351],[6,-25]],[[7906,9301],[0,0]],[[7906,9301],[6,50]],[[7912,9351],[-16,8]],[[7896,9359],[-13,3]],[[7869,9326],[-2,-5]],[[7867,9321],[39,-20]],[[7692,9624],[1,16]],[[7693,9640],[-19,2]],[[7669,9639],[0,-2]],[[7669,9637],[19,-21]],[[7883,9542],[12,-2],[-7,17]],[[7888,9557],[-24,3]],[[7864,9560],[0,-16]],[[7864,9544],[19,-2]],[[7835,9415],[0,18]],[[7835,9433],[-14,0]],[[7821,9433],[-9,-42]],[[7853,9457],[2,14]],[[7855,9471],[1,6]],[[7855,9480],[-12,8]],[[7843,9488],[-3,-16],[-16,-2]],[[7824,9470],[0,-14]],[[7824,9456],[29,1]],[[7843,9488],[-1,3]],[[7842,9491],[-21,1]],[[7821,9492],[-9,1],[-2,-21]],[[7810,9472],[14,-2]],[[7821,9433],[-23,0]],[[7798,9433],[9,-40]],[[7620,9677],[19,12]],[[7677,9718],[-7,29]],[[7670,9747],[-11,0]],[[7659,9747],[-13,1]],[[7646,9748],[-31,3]],[[7615,9751],[-7,5]],[[7585,9708],[7,-15],[28,-16]],[[7620,9677],[-2,-24]],[[7618,9653],[25,-2]],[[7605,9602],[7,-7]],[[7612,9595],[10,-9]],[[7622,9586],[5,12]],[[7627,9598],[0,22]],[[7627,9620],[-23,-5]],[[7604,9615],[1,-13]],[[7581,9466],[16,-5]],[[7597,9461],[1,-1]],[[7598,9460],[7,27]],[[7605,9487],[-1,-2]],[[7604,9485],[-15,-11]],[[7579,9467],[2,-1]],[[7604,9485],[-4,13],[-19,-7]],[[7599,9460],[23,-6]],[[7622,9454],[5,-2]],[[7627,9452],[0,2]],[[7627,9454],[-11,5],[-3,31]],[[7613,9490],[-8,-3]],[[7598,9460],[1,0]],[[7604,9615],[0,1]],[[7604,9616],[0,16]],[[7604,9632],[-15,10]],[[7589,9642],[-1,-34]],[[7588,9608],[16,7]],[[7557,9602],[23,12]],[[7580,9614],[0,15],[-16,14]],[[7564,9643],[-4,-19]],[[7560,9624],[-3,-22]],[[7759,9530],[8,-3]],[[7767,9527],[12,14]],[[7779,9541],[-16,5]],[[7763,9546],[-15,-1]],[[7748,9545],[-1,-8]],[[7879,9513],[4,29]],[[7864,9544],[-2,-25]],[[7862,9519],[17,-6]],[[7842,9491],[-5,24]],[[7835,9520],[-9,-5]],[[7826,9515],[-5,-23]],[[7891,9460],[32,-9]],[[7923,9451],[0,0]],[[7923,9451],[3,21]],[[7926,9472],[0,3]],[[7926,9475],[-13,-6]],[[7913,9469],[-22,-9]],[[7551,9697],[1,2]],[[7534,9713],[-1,0]],[[7533,9713],[-8,3]],[[7525,9716],[1,-12],[25,-7]],[[7904,9513],[0,0]],[[7904,9513],[-3,26]],[[7901,9539],[-10,26]],[[7891,9565],[-3,-8]],[[7879,9513],[25,0]],[[7789,9454],[35,2]],[[7810,9472],[-16,1]],[[7794,9473],[-5,-19]],[[7798,9433],[-4,13],[30,5]],[[7824,9451],[0,5]],[[7789,9454],[-4,-22]],[[7785,9432],[13,1]],[[7758,9474],[9,21]],[[7767,9495],[-11,26]],[[7533,9667],[5,-31],[22,-12]],[[7564,9643],[9,-6]],[[7573,9637],[-22,17],[-1,12]],[[7550,9666],[-4,3]],[[7546,9669],[-13,-2]],[[7605,9487],[-2,21]],[[7603,9508],[-4,2]],[[7599,9510],[-20,-2]],[[7579,9508],[-10,0]],[[7569,9508],[-12,-6]],[[7557,9502],[-3,-18]],[[7579,9508],[-6,19]],[[7573,9527],[0,0]],[[7573,9527],[-4,-19]],[[7599,9510],[-1,21]],[[7598,9531],[0,9],[-25,-13]],[[7603,9508],[3,-1]],[[7606,9507],[-3,38]],[[7603,9545],[-5,-14]],[[7711,9653],[4,44]],[[7715,9697],[-15,-11]],[[7696,9657],[15,-4]],[[7713,9629],[5,19]],[[7718,9648],[-7,5]],[[7696,9657],[-3,-17]],[[7835,9433],[15,0],[3,24]],[[7824,9451],[-3,-18]],[[7664,9583],[14,10]],[[7678,9593],[-3,15]],[[7675,9608],[-25,-15]],[[7650,9593],[14,-10]],[[7604,9616],[22,20]],[[7626,9636],[-10,10]],[[7616,9646],[-12,-14]],[[7751,9598],[-15,13]],[[7736,9611],[-10,-11]],[[7726,9600],[22,-5]],[[7702,9520],[9,0]],[[7711,9520],[2,1]],[[7713,9521],[-8,18],[2,19]],[[7707,9558],[-8,-6]],[[7699,9552],[-3,-1]],[[7696,9551],[6,-31]],[[7791,9608],[6,27],[11,19]],[[7808,9654],[-1,16]],[[7807,9670],[-11,-3]],[[7796,9667],[-16,-49]],[[7780,9618],[11,-10]],[[7751,9656],[8,-33]],[[7759,9623],[21,-5]],[[7796,9667],[-15,-7],[-14,17],[-17,8]],[[7750,9685],[1,-29]],[[7864,9457],[24,2]],[[7888,9459],[0,3]],[[7888,9462],[-8,5]],[[7880,9467],[-25,4]],[[7853,9457],[11,0]],[[7693,9198],[35,-8]],[[7728,9190],[1,4]],[[7729,9194],[-11,14],[-21,3],[2,21],[-15,14]],[[7684,9246],[-8,-14]],[[7676,9232],[-4,-19]],[[7672,9213],[21,-15]],[[7694,9130],[5,18]],[[7699,9148],[0,4]],[[7699,9152],[-21,11]],[[7678,9163],[0,-6]],[[7678,9157],[0,-23],[16,-4]],[[7829,9583],[10,-3]],[[7839,9580],[1,20]],[[7840,9600],[-6,0],[7,41]],[[7841,9641],[-16,32]],[[7825,9673],[-7,-11],[-2,-61]],[[7816,9601],[12,0],[1,-18]],[[7686,9550],[10,1]],[[7699,9552],[-10,28]],[[7689,9580],[-6,6]],[[7683,9586],[-5,-18],[8,-15],[-10,-7]],[[7676,9546],[0,0]],[[7676,9546],[0,-1]],[[7724,9524],[7,3]],[[7731,9527],[16,10]],[[7748,9545],[0,0]],[[7748,9545],[-20,3]],[[7728,9548],[-7,6]],[[7721,9554],[3,-30]],[[7713,9521],[2,0]],[[7715,9521],[9,3]],[[7721,9554],[-14,4]],[[7546,9669],[5,28]],[[7525,9716],[-8,-2]],[[7517,9714],[-6,-5]],[[7511,9709],[-3,-20]],[[7508,9689],[25,-22]],[[7694,9523],[8,-3]],[[7526,9222],[39,29]],[[7565,9251],[12,24]],[[7577,9275],[3,37]],[[7580,9312],[-3,1]],[[7577,9313],[-31,-26]],[[7546,9287],[-27,3],[21,18],[-6,4]],[[7534,9312],[-23,6]],[[7511,9318],[-13,-21]],[[7498,9297],[17,-75],[11,0]],[[7546,9287],[3,33]],[[7549,9320],[-15,-8]],[[7573,9527],[-3,10]],[[7570,9537],[-11,-5]],[[7559,9532],[0,-12]],[[7559,9520],[-2,-18]],[[7603,9545],[-3,10]],[[7600,9555],[-12,-2]],[[7588,9553],[-18,-16]],[[7622,9509],[-8,19]],[[7614,9528],[-2,11]],[[7612,9539],[-5,19]],[[7607,9558],[-7,-3]],[[7606,9507],[16,2]],[[7678,9593],[5,-7]],[[7689,9580],[0,5]],[[7689,9585],[5,20]],[[7694,9606],[-19,2]],[[7705,9481],[3,17]],[[7708,9498],[-4,2]],[[7704,9500],[-8,5]],[[7696,9505],[-2,-6]],[[7694,9499],[-3,-15]],[[7691,9484],[14,-3]],[[7581,9647],[-3,16],[13,6]],[[7591,9669],[5,11],[-23,1],[4,18]],[[7568,9692],[-4,-13]],[[7564,9679],[6,-21],[11,-11]],[[7888,9462],[3,-2]],[[7913,9469],[1,4]],[[7914,9473],[-21,13]],[[7893,9486],[-13,-19]],[[7718,9491],[22,-13]],[[7742,9499],[-16,6]],[[7726,9505],[-10,0]],[[7716,9505],[2,-14]],[[7914,9473],[-1,41]],[[7913,9514],[1,1]],[[7914,9515],[-10,-2]],[[7904,9513],[-6,-9]],[[7898,9504],[-5,-18]],[[7573,9637],[12,5]],[[7585,9642],[-4,5]],[[7564,9679],[-14,-13]],[[7577,9313],[2,9]],[[7579,9322],[-23,-10],[-7,10]],[[7549,9322],[0,-2]],[[7549,9322],[4,11]],[[7553,9333],[-4,19]],[[7549,9352],[-7,11]],[[7542,9363],[-21,-27]],[[7521,9336],[-10,-18]],[[7559,9571],[21,2]],[[7580,9573],[1,21]],[[7581,9594],[-24,-14]],[[7557,9580],[2,-9]],[[7691,9093],[3,37]],[[7678,9157],[-20,2],[0,10],[-31,16]],[[7627,9185],[-5,-16]],[[7622,9169],[29,-40],[26,-46],[14,10]],[[7678,9163],[0,3]],[[7678,9166],[-4,17],[-16,16]],[[7658,9199],[-31,-14]],[[7670,9615],[18,1]],[[7669,9637],[-21,0]],[[7648,9637],[22,-22]],[[7907,9571],[10,-1]],[[7917,9570],[8,-1]],[[7925,9569],[1,22]],[[7926,9591],[-23,6]],[[7903,9597],[4,-26]],[[7742,9419],[21,-8]],[[7893,9486],[-30,3],[1,10]],[[7864,9499],[-5,1]],[[7864,9596],[16,0]],[[7880,9596],[-2,31]],[[7878,9627],[-17,13]],[[7861,9640],[-2,-6]],[[7859,9634],[5,-38]],[[7786,9580],[18,-6]],[[7804,9574],[6,-6]],[[7810,9568],[6,20]],[[7816,9588],[-30,11]],[[7786,9599],[0,-19]],[[7732,9390],[0,34]],[[7732,9424],[-6,0]],[[7726,9424],[-10,-26]],[[7579,9322],[5,19],[-12,8]],[[7572,9349],[-3,3]],[[7569,9352],[-12,9],[-3,-13]],[[7554,9348],[11,-4],[-12,-11]],[[7554,9348],[-5,4]],[[7569,9352],[-15,18],[11,17]],[[7565,9387],[-16,-17]],[[7549,9370],[-7,-7]],[[7542,9363],[0,0]],[[7572,9349],[14,0],[3,24],[23,-16],[-12,-29]],[[7600,9328],[12,11],[20,-10]],[[7632,9329],[13,8]],[[7645,9337],[0,18]],[[7645,9355],[-12,9],[-2,28]],[[7631,9392],[-26,-1],[-3,12]],[[7602,9403],[-13,10]],[[7589,9413],[-8,-8]],[[7581,9405],[-6,-8]],[[7575,9397],[-10,-9]],[[7565,9388],[0,-1]],[[7678,9166],[13,20]],[[7691,9186],[2,12]],[[7672,9213],[1,-15],[-15,1]],[[7627,9454],[0,22]],[[7627,9476],[-1,14]],[[7626,9490],[-7,0]],[[7619,9490],[-6,0]],[[7591,9570],[4,7]],[[7595,9577],[-15,-4]],[[7559,9571],[0,-10]],[[7559,9561],[0,-7]],[[7559,9554],[20,3],[12,13]],[[7755,9599],[4,11]],[[7759,9610],[0,13]],[[7751,9656],[-4,-17]],[[7747,9639],[-5,-17]],[[7742,9622],[-4,-6]],[[7738,9616],[-2,-5]],[[7871,9393],[9,1]],[[7880,9394],[-5,12]],[[7875,9406],[-14,-1]],[[7861,9405],[-20,-19]],[[7841,9381],[25,-4],[5,16]],[[7726,9505],[5,22]],[[7715,9521],[1,-16]],[[7777,9603],[3,15]],[[7759,9610],[18,-7]],[[7926,9475],[4,36]],[[7930,9511],[-4,1]],[[7926,9512],[-13,2]],[[7728,9548],[9,20]],[[7742,9585],[-25,-3]],[[7717,9582],[0,-5]],[[7717,9577],[4,-23]],[[7627,9185],[20,53]],[[7647,9238],[4,14]],[[7651,9252],[-4,13],[-23,8],[-11,-18]],[[7613,9255],[-9,-42]],[[7604,9213],[-29,-2]],[[7575,9211],[-11,6],[0,17]],[[7564,9234],[1,17]],[[7526,9222],[24,-72],[23,-7],[49,26]],[[7575,9211],[13,24]],[[7588,9235],[-9,10],[-15,-11]],[[7604,9213],[-10,20]],[[7594,9233],[-6,2]],[[7594,9233],[9,-1],[5,43]],[[7608,9275],[-16,-8],[-15,8]],[[7612,9539],[20,2]],[[7632,9541],[0,20]],[[7632,9561],[-16,-1]],[[7616,9560],[-9,-2]],[[7647,9509],[-2,4]],[[7645,9513],[-5,-1]],[[7640,9512],[-5,-1]],[[7635,9511],[0,-23]],[[7635,9488],[12,5],[0,16]],[[7645,9513],[25,2]],[[7670,9515],[-2,2]],[[7668,9517],[-2,1]],[[7666,9518],[-23,24]],[[7643,9542],[-3,-23]],[[7640,9519],[0,-7]],[[7666,9518],[-11,29]],[[7655,9547],[-12,-5]],[[7880,9394],[16,-35]],[[7912,9351],[7,65]],[[7919,9416],[4,35]],[[7923,9451],[-8,-11],[-21,2],[-3,9]],[[7891,9451],[-16,-21],[0,-24]],[[7888,9459],[3,-8]],[[7648,9560],[7,-13]],[[7668,9517],[9,22]],[[7676,9546],[-19,16],[-9,-2]],[[7762,9373],[-1,2]],[[7761,9375],[-7,10]],[[7754,9385],[-14,24]],[[7740,9409],[2,10]],[[7676,9546],[-12,37]],[[7650,9593],[-5,11]],[[7645,9604],[-3,-10]],[[7642,9594],[-3,-24]],[[7639,9570],[9,-10]],[[7613,9255],[3,20]],[[7616,9275],[-9,2]],[[7607,9277],[1,-2]],[[7651,9252],[4,14],[-5,32]],[[7650,9298],[-11,3],[-6,-21],[-17,-5]],[[7607,9277],[0,23],[-9,4]],[[7598,9304],[-18,8]],[[7699,9152],[12,9]],[[7711,9161],[13,10]],[[7724,9171],[-30,3],[-3,12]],[[7724,9171],[4,19]],[[7588,9553],[3,17]],[[7559,9554],[0,-1]],[[7559,9553],[0,-21]],[[7914,9515],[6,28]],[[7920,9543],[-10,-2]],[[7910,9541],[-9,-2]],[[7717,9577],[-28,8]],[[7787,9472],[7,1]],[[7794,9473],[15,36]],[[7809,9509],[-7,2]],[[7802,9511],[-16,2]],[[7786,9513],[0,-19]],[[7786,9494],[1,-22]],[[7809,9509],[17,6]],[[7834,9525],[-17,3],[1,14]],[[7818,9542],[-9,1]],[[7809,9543],[-5,-18]],[[7804,9525],[-2,-14]],[[7930,9511],[3,28]],[[7933,9539],[5,47]],[[7938,9586],[-4,36]],[[7934,9622],[-8,-31]],[[7925,9569],[1,-57]],[[7670,9615],[-24,0]],[[7646,9615],[-1,-11]],[[7650,9298],[-20,20]],[[7630,9318],[-4,-14],[-27,8]],[[7599,9312],[-1,-8]],[[7602,9318],[28,0]],[[7630,9318],[2,11]],[[7600,9328],[2,-10]],[[7651,9252],[7,-2],[24,27]],[[7682,9277],[-20,35],[0,13]],[[7662,9325],[-17,12]],[[7619,9490],[3,19]],[[7622,9509],[0,0]],[[7626,9490],[9,-2]],[[7635,9511],[-13,-2]],[[7640,9519],[-3,5]],[[7637,9524],[-23,4]],[[7637,9524],[-5,17]],[[7804,9525],[-14,12]],[[7790,9537],[-11,4]],[[7767,9527],[19,-14]],[[7780,9404],[5,28]],[[7787,9472],[-10,-1]],[[7777,9471],[-2,-27]],[[7775,9406],[5,-2]],[[7726,9600],[-13,2]],[[7713,9602],[4,-20]],[[7758,9401],[17,-6],[-14,-20]],[[7764,9369],[3,3]],[[7767,9372],[12,14],[1,18]],[[7740,9409],[18,-8]],[[7851,9373],[15,-5]],[[7866,9368],[5,25]],[[7841,9376],[10,-3]],[[7682,9277],[2,3]],[[7684,9280],[5,7]],[[7689,9287],[18,18]],[[7707,9305],[-18,6],[0,10]],[[7689,9321],[-25,6]],[[7664,9327],[-2,-2]],[[7689,9321],[-4,37]],[[7685,9358],[-17,-5]],[[7668,9353],[-4,-26]],[[7668,9353],[-6,-1]],[[7662,9352],[-7,-1]],[[7655,9351],[-10,4]],[[7647,9509],[15,-11]],[[7662,9498],[8,17]],[[7648,9560],[-16,1]],[[7641,9449],[12,-3]],[[7670,9441],[8,30]],[[7678,9471],[-23,5]],[[7655,9476],[-6,0]],[[7649,9476],[-22,0]],[[7627,9452],[14,-3]],[[7704,9500],[-10,22]],[[7689,9514],[7,-9]],[[7864,9457],[-3,-52]],[[7825,9673],[-18,-3]],[[7808,9654],[-2,-50],[10,-3]],[[7580,9614],[1,-9]],[[7581,9605],[7,3]],[[7589,9642],[-4,0]],[[7851,9522],[-3,22]],[[7848,9544],[-16,-5]],[[7832,9539],[-14,3]],[[7771,9471],[6,0]],[[7786,9494],[-19,1]],[[7770,9575],[0,0]],[[7770,9575],[7,28]],[[7752,9568],[18,7]],[[7655,9351],[-9,40]],[[7646,9391],[-13,4]],[[7633,9395],[-2,-3]],[[7662,9352],[4,31]],[[7658,9386],[-10,6]],[[7648,9392],[-2,-1]],[[7685,9358],[1,39]],[[7718,9648],[2,16],[15,19]],[[7735,9683],[-20,14]],[[7711,9401],[6,27]],[[7717,9428],[-23,5]],[[7694,9433],[-3,2]],[[7602,9318],[-3,-6]],[[7646,9748],[-3,15]],[[7615,9763],[0,-12]],[[7591,9669],[5,-18],[22,2]],[[7648,9637],[-2,-5]],[[7646,9632],[1,-7]],[[7647,9625],[-1,-10]],[[7707,9305],[33,38]],[[7740,9343],[4,4]],[[7744,9347],[12,13]],[[7589,9445],[8,16]],[[7581,9466],[8,-21]],[[7604,9444],[-5,16]],[[7589,9445],[2,-4]],[[7591,9441],[-2,-28]],[[7589,9413],[15,31]],[[7717,9428],[9,-4]],[[7718,9491],[-10,7]],[[7705,9481],[-3,-19]],[[7702,9462],[-8,-29]],[[7738,9616],[-25,1]],[[7763,9546],[7,29]],[[7752,9568],[-4,-23]],[[7898,9504],[-34,-5]],[[7832,9539],[-3,44]],[[7816,9601],[0,-13]],[[7810,9568],[-1,-25]],[[7790,9537],[14,37]],[[7786,9580],[-6,0]],[[7780,9580],[-1,-39]],[[7791,9608],[-5,-9]],[[7626,9636],[8,-6]],[[7634,9630],[13,-5]],[[7646,9632],[-3,19]],[[7618,9653],[-2,-7]],[[7770,9575],[10,5]],[[7736,9641],[11,-2]],[[7750,9685],[-11,-3]],[[7739,9682],[-5,-41]],[[7734,9641],[2,0]],[[7602,9403],[5,5]],[[7607,9408],[7,29]],[[7614,9437],[-10,7]],[[7624,9415],[0,0]],[[7624,9415],[0,1]],[[7624,9416],[3,36]],[[7622,9454],[-8,-17]],[[7607,9408],[17,7]],[[7633,9395],[-9,20]],[[7595,9577],[2,1]],[[7597,9578],[-8,20],[16,4]],[[7581,9605],[0,-11]],[[7840,9600],[24,-4]],[[7859,9634],[-18,7]],[[7634,9630],[-7,-10]],[[7627,9598],[15,-4]],[[7850,9578],[14,-2]],[[7864,9576],[0,20]],[[7839,9580],[11,-2]],[[7864,9544],[-15,0]],[[7849,9544],[-1,0]],[[7739,9682],[-4,1]],[[7718,9648],[16,-7]],[[7793,9358],[9,-2]],[[7807,9393],[-27,11]],[[7767,9372],[26,-14]],[[7659,9747],[-1,15]],[[7658,9762],[0,5]],[[7648,9392],[2,18]],[[7643,9412],[-19,3]],[[7641,9449],[1,-15],[-18,-18]],[[7557,9602],[-1,-5]],[[7556,9597],[1,-17]],[[7853,9352],[10,-1]],[[7851,9373],[2,-21]],[[7670,9747],[0,15]],[[7670,9762],[-12,0]],[[7615,9783],[-11,0]],[[7604,9783],[0,-25]],[[7604,9783],[-15,0]],[[7790,9147],[30,-14]],[[7820,9133],[-10,37],[4,11]],[[7814,9181],[-7,22],[-9,-5]],[[7798,9198],[-1,-32],[-9,1]],[[7788,9167],[2,-20]],[[7856,9313],[-1,9]],[[7855,9322],[-8,15]],[[7847,9337],[-10,1]],[[7837,9338],[-16,-8]],[[7821,9330],[2,-13]],[[7823,9317],[3,5],[30,-9]],[[7649,9476],[6,0]],[[7678,9471],[24,-9]],[[7691,9484],[-5,2]],[[7686,9486],[-8,3]],[[7678,9489],[-16,9]],[[7861,9640],[0,120]],[[7861,9760],[-51,15],[-37,18],[-101,-2]],[[7672,9791],[-2,-29]],[[7699,9148],[41,-17],[0,12],[21,-10],[-5,18],[-28,-5],[-17,15]],[[7774,9067],[-7,6],[14,19]],[[7781,9092],[-23,10],[-20,-5],[-10,-29]],[[7728,9068],[33,-13],[13,12]],[[7863,9233],[35,-9]],[[7898,9224],[1,11]],[[7899,9235],[3,35]],[[7902,9270],[-49,16]],[[7853,9286],[2,-18],[12,-5],[-4,-30]],[[7902,9270],[4,31]],[[7867,9321],[-12,1]],[[7856,9313],[-3,-27]],[[7824,9291],[16,-1]],[[7840,9290],[13,-4]],[[7823,9317],[-16,-11]],[[7807,9306],[17,-15]],[[7821,9370],[16,-22]],[[7837,9348],[4,28]],[[7837,9338],[0,10]],[[7818,9353],[3,-23]],[[7847,9337],[6,15]],[[7891,9565],[-1,8]],[[7890,9573],[-26,3]],[[7864,9576],[0,-16]],[[7917,9570],[3,-27]],[[7742,9622],[-8,3]],[[7734,9625],[-21,4]],[[7910,9541],[-4,30]],[[7906,9571],[-16,2]],[[7814,9219],[22,4],[9,16],[18,-6]],[[7863,9233],[-22,22],[-1,35]],[[7824,9291],[10,-22],[-8,-31],[-9,6],[-7,-25]],[[7810,9219],[4,0]],[[7597,9578],[18,-3]],[[7615,9575],[-3,20]],[[7849,9544],[1,34]],[[7774,9067],[36,-28],[23,-9],[10,-38],[21,-12],[55,21],[11,16]],[[7930,9017],[-8,8],[-35,-7],[-26,-20],[-11,13],[-3,40],[13,25]],[[7860,9076],[-29,27],[-11,30]],[[7790,9147],[-9,-55]],[[7814,9181],[6,33],[-6,5]],[[7810,9219],[-16,6],[-8,-13],[12,-14]],[[7860,9076],[10,24],[5,52]],[[7875,9152],[13,17],[-1,16],[11,39]],[[7781,9314],[13,-5]],[[7794,9309],[0,13]],[[7794,9322],[7,26]],[[7801,9348],[-8,10]],[[7744,9347],[14,6],[7,-33],[16,-6]],[[7801,9348],[20,-18]],[[7794,9322],[13,-16]],[[7890,9573],[-3,14]],[[7887,9587],[-7,9]],[[7907,9571],[-1,0]],[[7622,9586],[17,-16]],[[7887,9587],[9,0],[3,43]],[[7899,9630],[-15,10],[-6,-13]],[[7903,9597],[4,21],[-8,12]],[[7686,9486],[8,13]],[[7685,9517],[-3,-12]],[[7682,9505],[-4,-16]],[[7736,9641],[-2,-16]],[[7682,9505],[-12,10]],[[7754,9385],[4,16]],[[7658,9792],[14,-1]],[[7861,9760],[0,0]],[[7861,9760],[0,146]],[[7861,9906],[-41,-5],[-45,-12],[-89,-11],[-102,-1],[-79,2]],[[7505,9879],[14,-46],[3,-49]],[[7937,9737],[-1,141]],[[7936,9878],[-75,28]],[[7861,9760],[76,-23]],[[7701,8989],[225,-82]],[[7926,8907],[4,110]],[[7728,9068],[-37,25]],[[7691,9093],[9,-104]],[[7700,8989],[1,0]],[[7599,9091],[101,-102]],[[7622,9169],[-23,-78]],[[7498,9246],[0,-1]],[[7498,9245],[21,-31],[5,-23]],[[7524,9191],[6,-33]],[[7530,9158],[11,-9]],[[7541,9149],[11,-12]],[[7552,9137],[16,-16]],[[7568,9121],[12,-11]],[[7580,9110],[19,-19]],[[7498,9297],[-6,-11]],[[7492,9286],[-1,-31],[7,-9]],[[7740,9343],[8,-15],[-8,-12],[6,-16],[17,19],[18,-5]],[[7715,9270],[12,-9]],[[7727,9261],[10,20],[-5,17],[-8,-23],[-9,-5]],[[7708,9498],[3,22]],[[7934,9622],[2,6]],[[7936,9628],[1,109]],[[7616,9560],[-1,15]],[[7676,9232],[-29,6]],[[7684,9246],[0,34]],[[7729,9194],[5,22],[19,-17],[14,-36],[21,4]],[[7794,9309],[-11,-35],[-29,-22],[-4,24],[-23,-15]],[[7715,9270],[-26,17]],[[6146,2146],[35,450],[36,484]],[[6217,3080],[20,274],[8,98],[-75,210]],[[6170,3662],[-33,-7],[-19,18],[-24,10],[-11,15],[-35,-4],[-18,24],[-19,-3],[-41,20],[-12,11],[-34,6],[-8,-6],[-38,10],[-13,7]],[[5865,3763],[-11,-156]],[[5854,3607],[-13,-185],[-5,-104],[-10,-153]],[[5826,3165],[-15,-194],[-1,-41]],[[5810,2930],[-11,-143],[-11,-174]],[[5788,2613],[-16,-216],[-10,-142],[-11,-170]],[[5751,2085],[134,105],[226,-39],[35,-5]],[[5830,3837],[10,-27],[28,-11],[-3,-36]],[[6170,3662],[-41,117],[21,12]],[[6150,3791],[-37,205]],[[6113,3996],[-162,-94],[13,119],[-78,17],[-10,-9]],[[5876,4029],[-6,-17],[-11,9],[-18,-3],[-32,-22],[-14,-15]],[[5795,3981],[-12,-14],[-10,17],[-2,-25],[-11,1],[5,-33],[13,-37],[0,-35],[22,-4],[30,-14]],[[5921,4379],[59,4],[5,71],[11,13]],[[5996,4467],[-48,29]],[[5948,4496],[-7,1]],[[5941,4497],[-31,-16]],[[5910,4481],[-10,-2]],[[5900,4479],[-1,-14]],[[5899,4465],[22,-86]],[[5873,4547],[11,3]],[[5884,4550],[20,8],[30,-1],[-1,-30],[8,-13]],[[5941,4514],[17,16],[14,-33]],[[5972,4497],[32,-8]],[[6004,4489],[17,-16],[46,20]],[[6067,4493],[19,160]],[[6086,4653],[-81,-12],[-32,-2],[-105,-77]],[[5868,4562],[5,-15]],[[5692,4482],[153,63],[23,17]],[[6086,4653],[35,57],[-6,47]],[[6115,4757],[-13,111],[-6,35],[-15,15],[-61,-47]],[[6020,4871],[-119,-90],[-64,-46],[-48,107],[-89,7],[-2,-52]],[[5698,4797],[14,-1],[-9,-133]],[[5703,4663],[-11,-181]],[[6150,3791],[99,62],[74,45]],[[6323,3898],[21,250],[-13,1],[-14,17],[12,35],[-33,12],[8,42],[-38,12],[-13,13]],[[6253,4280],[-22,-5],[3,58],[23,-4]],[[6257,4329],[-12,21],[7,37],[9,13],[3,27]],[[6264,4427],[1,11],[20,26],[3,28],[-3,41]],[[6285,4533],[-43,-32],[-11,3],[-35,-41],[-21,-7]],[[6175,4456],[-6,-50],[-18,3]],[[6151,4409],[-4,-10]],[[6147,4399],[-3,-33]],[[6144,4366],[-24,-287],[-7,-83]],[[6120,4464],[17,-35],[14,-2],[0,-18]],[[6175,4456],[-55,8]],[[5948,4496],[24,1]],[[5941,4514],[0,-17]],[[5996,4467],[8,22]],[[6144,4366],[-91,-13]],[[6053,4353],[-77,15],[10,-8],[-9,-15],[10,-33],[-3,-28],[5,-6],[-60,-48]],[[5929,4230],[-56,-33],[-54,-41]],[[5819,4156],[57,-127]],[[6147,4399],[-20,-6],[1,13],[-13,11],[5,47]],[[6285,4533],[3,3]],[[6288,4536],[-2,42],[-21,216],[-5,40]],[[6260,4834],[-145,-77]],[[6067,4493],[-14,-140]],[[5703,4390],[16,-29],[16,4],[6,-15],[-9,-14]],[[5732,4336],[6,-11]],[[5738,4325],[1,-2]],[[5739,4323],[20,7],[46,34],[25,30],[18,1],[-1,11],[18,18]],[[5865,4424],[-9,17],[11,33],[32,8]],[[5899,4482],[-26,65]],[[5692,4482],[-3,-66],[14,-26]],[[5865,4424],[21,12],[13,29]],[[5900,4479],[-1,3]],[[5884,4550],[18,-13],[11,-22],[-3,-34]],[[5921,4379],[8,-149]],[[6253,4280],[4,49]],[[5751,4299],[11,-21]],[[5762,4278],[3,-6]],[[5765,4272],[54,-116]],[[5739,4323],[12,-24]],[[4528,4529],[14,-2]],[[4542,4527],[2,32]],[[4544,4559],[-20,7]],[[4524,4566],[4,-37]],[[4509,4863],[95,-8]],[[4604,4855],[7,159]],[[4611,5014],[0,4]],[[4611,5018],[-44,2],[-101,9]],[[4466,5029],[-4,-98]],[[4462,4931],[46,-3],[-3,-65],[4,0]],[[4556,4515],[-1,44],[-11,0]],[[4542,4527],[-1,-15]],[[4541,4512],[15,3]],[[4510,4509],[9,-5]],[[4519,4504],[7,0]],[[4526,4504],[2,25]],[[4524,4566],[-9,0]],[[4515,4566],[-7,1],[-4,-47],[6,-11]],[[4536,4488],[0,7]],[[4536,4495],[-10,8]],[[4526,4503],[-1,-15]],[[4525,4488],[11,0]],[[4121,4295],[17,-10],[28,33],[16,-10]],[[4182,4308],[2,18],[29,-2],[2,29],[24,-2]],[[4239,4351],[8,158]],[[4247,4509],[-115,9]],[[4132,4518],[-36,3],[-1,-23]],[[4095,4498],[-10,-183]],[[4085,4315],[11,-18],[25,-2]],[[4446,4428],[20,-3]],[[4466,4425],[1,0]],[[4467,4425],[8,27]],[[4475,4452],[-8,9]],[[4467,4461],[-22,2]],[[4445,4463],[1,-35]],[[4618,4102],[4,-3]],[[4622,4099],[3,40]],[[4625,4139],[-13,1]],[[4612,4140],[-40,3]],[[4572,4143],[46,-41]],[[4536,4495],[5,17]],[[4526,4504],[0,-1]],[[4520,4467],[1,5]],[[4521,4472],[4,16]],[[4519,4504],[-1,-15]],[[4518,4489],[-5,-17]],[[4513,4472],[7,-5]],[[4494,4489],[10,-1]],[[4504,4488],[14,1]],[[4510,4509],[-12,1],[-6,-21]],[[4492,4489],[2,0]],[[4573,4482],[0,18]],[[4573,4500],[-16,0]],[[4557,4500],[-1,-16],[17,-2]],[[4617,4520],[12,35],[27,-7],[26,2]],[[4682,4550],[0,15]],[[4682,4565],[-44,4]],[[4638,4569],[-61,5]],[[4577,4574],[-3,-54]],[[4574,4520],[43,0]],[[4558,4465],[14,-1]],[[4572,4464],[0,3]],[[4572,4467],[1,15]],[[4557,4500],[1,10]],[[4558,4510],[-7,-12],[-1,-32]],[[4550,4466],[8,-1]],[[4549,4460],[1,6]],[[4558,4510],[-2,5]],[[4536,4488],[-2,-22]],[[4534,4466],[-1,-8]],[[4533,4458],[16,2]],[[4521,4472],[13,-6]],[[4519,4463],[14,-10]],[[4533,4453],[-1,3]],[[4532,4456],[1,2]],[[4520,4467],[-1,-4]],[[4506,4466],[7,6]],[[4504,4488],[2,-22]],[[4637,4458],[9,-20],[19,-3]],[[4665,4435],[1,34]],[[4666,4469],[13,19]],[[4679,4488],[3,62]],[[4617,4520],[16,-34],[4,-28]],[[4619,4451],[18,7]],[[4574,4520],[-1,-20]],[[4572,4467],[23,-8],[0,-9],[24,1]],[[4492,4459],[13,0]],[[4505,4459],[1,7]],[[4494,4489],[-2,-30]],[[4482,4460],[10,-1]],[[4492,4489],[-3,2]],[[4489,4491],[-9,-16]],[[4480,4475],[2,-15]],[[4518,4452],[1,11]],[[4505,4459],[13,-7]],[[4475,4452],[1,0]],[[4476,4452],[6,8]],[[4480,4475],[-23,7],[10,-21]],[[4582,4430],[17,-11]],[[4599,4419],[20,32]],[[4572,4464],[-4,-24]],[[4568,4440],[0,-8]],[[4568,4432],[14,-2]],[[4530,4284],[-1,32],[36,-2]],[[4565,4314],[0,13]],[[4565,4327],[-59,-1]],[[4506,4326],[24,-42]],[[4325,4761],[35,-6]],[[4360,4755],[128,-10]],[[4488,4745],[4,0],[2,48],[12,0],[3,70]],[[4462,4931],[-34,2],[-29,-50],[-48,-54],[-21,-43],[-5,-25]],[[4515,4566],[-12,56]],[[4503,4622],[-12,-24]],[[4491,4598],[-1,-15],[-18,1],[4,-10],[-23,2],[-3,-34],[-21,3]],[[4429,4545],[-2,-40]],[[4427,4505],[28,-2],[34,-12]],[[4544,4559],[3,16],[-6,32]],[[4541,4607],[0,-12],[-29,3],[1,24],[-10,0]],[[4558,4437],[10,3]],[[4558,4465],[0,-28]],[[4518,4438],[15,0]],[[4533,4438],[0,15]],[[4518,4452],[-1,-5]],[[4517,4447],[1,-9]],[[4476,4452],[21,-15]],[[4497,4437],[-1,7]],[[4496,4444],[-4,15]],[[4581,4405],[1,25]],[[4568,4432],[-1,-21]],[[4567,4411],[14,-6]],[[4554,4432],[4,5]],[[4549,4460],[1,-28]],[[4550,4432],[4,0]],[[4577,4574],[4,84],[-37,3]],[[4544,4661],[-3,-54]],[[4369,4467],[4,30],[54,8]],[[4429,4545],[-56,23],[-22,0]],[[4351,4568],[-3,-68]],[[4348,4500],[-2,-30],[23,-3]],[[4491,4598],[-10,1],[6,129]],[[4487,4728],[1,17]],[[4360,4755],[-9,-187]],[[4497,4437],[22,-1]],[[4519,4436],[-1,2]],[[4517,4447],[-21,-3]],[[4581,4405],[26,-2]],[[4607,4403],[0,6]],[[4607,4409],[-8,10]],[[4529,4418],[5,0]],[[4534,4418],[13,0]],[[4547,4418],[5,0]],[[4552,4418],[2,14]],[[4550,4432],[-17,-5]],[[4533,4427],[-7,-10]],[[4526,4417],[3,1]],[[4292,4505],[56,-5]],[[4351,4568],[-54,3],[-8,25],[2,24],[-13,15],[-24,0]],[[4254,4635],[-6,-126]],[[4248,4509],[44,-4]],[[4325,4761],[-65,5]],[[4260,4766],[-6,-131]],[[4516,4412],[6,2]],[[4522,4414],[4,3]],[[4533,4427],[0,11]],[[4519,4436],[-5,-16]],[[4514,4420],[2,-8]],[[4555,4371],[13,10]],[[4568,4381],[-10,7]],[[4558,4388],[-10,9]],[[4548,4397],[-3,-3]],[[4545,4394],[-1,-4]],[[4544,4390],[-1,-18]],[[4543,4372],[12,-1]],[[4534,4373],[9,-1]],[[4544,4390],[-12,1]],[[4532,4391],[0,-3]],[[4532,4388],[2,-15]],[[4529,4370],[5,3]],[[4532,4388],[-8,-6]],[[4524,4382],[5,-12]],[[4525,4362],[13,-12]],[[4538,4350],[15,6],[2,15]],[[4529,4370],[-10,-3]],[[4519,4367],[6,-5]],[[4710,4413],[1,1]],[[4711,4414],[-17,23],[-29,-2]],[[4665,4435],[-2,-41]],[[4663,4394],[34,6],[13,13]],[[4663,4394],[0,-20]],[[4663,4374],[-3,-52]],[[4660,4322],[56,1],[7,19],[-11,27],[-2,44]],[[4738,4529],[3,-1]],[[4741,4528],[31,30]],[[4772,4558],[-90,7]],[[4682,4550],[38,0],[18,-21]],[[4741,4478],[0,50]],[[4738,4529],[-31,-27],[-28,-14]],[[4666,4469],[40,-2],[35,11]],[[4260,4766],[-49,4],[14,49],[39,46]],[[4264,4865],[-117,8]],[[4147,4873],[-8,-185]],[[4139,4688],[-2,-31]],[[4137,4657],[90,-5],[27,-17]],[[4479,4270],[18,-41]],[[4497,4229],[15,33]],[[4512,4262],[0,9]],[[4512,4271],[0,1]],[[4512,4272],[-33,2]],[[4479,4274],[0,-4]],[[4711,4414],[31,-16],[20,0],[13,-20],[2,20],[-14,6],[0,28],[-24,24],[2,22]],[[4309,4139],[2,35]],[[4311,4174],[7,32]],[[4318,4206],[-11,-5]],[[4307,4201],[-8,-16],[-21,-10],[-21,-1]],[[4257,4174],[3,-53],[19,12],[30,6]],[[4311,4174],[54,-31]],[[4365,4143],[15,19],[25,18],[10,21]],[[4415,4201],[-1,25]],[[4414,4226],[-17,35]],[[4397,4261],[-35,-4]],[[4362,4257],[-29,-38],[-15,-13]],[[4306,4018],[15,3]],[[4321,4021],[11,4]],[[4332,4025],[-6,13],[-20,8],[3,93]],[[4257,4174],[-16,14],[-20,-17],[-23,-5],[-24,32],[-12,40],[0,35],[20,35]],[[4121,4295],[-8,-50],[-10,-25],[16,-11],[-8,-181]],[[4111,4028],[169,-11],[26,1]],[[4462,4391],[-1,17]],[[4461,4408],[-16,-9],[-23,7]],[[4422,4406],[0,-25]],[[4422,4381],[40,10]],[[4247,4509],[1,0]],[[4137,4657],[-5,-139]],[[4559,4414],[8,-3]],[[4552,4418],[7,-4]],[[4497,4437],[1,-11]],[[4498,4426],[16,-6]],[[4478,4416],[-11,9]],[[4466,4425],[-2,-9]],[[4464,4416],[14,0]],[[4397,4261],[40,50]],[[4437,4311],[46,56]],[[4483,4367],[-21,24]],[[4462,4391],[0,0]],[[4422,4381],[-8,-17]],[[4414,4364],[-28,-56]],[[4386,4308],[-24,-51]],[[4651,4851],[184,-14]],[[4835,4837],[3,80]],[[4838,4917],[4,76]],[[4842,4993],[-146,15],[-85,6]],[[4604,4855],[47,-4]],[[4607,4409],[33,-1],[7,-26]],[[4647,4382],[16,-8]],[[4548,4404],[-1,14]],[[4534,4418],[14,-14]],[[4528,4400],[6,6]],[[4534,4406],[-5,12]],[[4522,4414],[-3,-7]],[[4519,4407],[9,-7]],[[4462,4391],[18,18]],[[4480,4409],[3,8]],[[4483,4417],[-5,-1]],[[4464,4416],[-3,-8]],[[4578,4380],[13,-1]],[[4591,4379],[7,4]],[[4598,4383],[9,20]],[[4581,4405],[-3,-25]],[[4569,4381],[9,-1]],[[4567,4411],[2,-30]],[[4568,4381],[1,0]],[[4559,4414],[-1,-26]],[[4658,4262],[2,60]],[[4647,4382],[1,-7],[-33,2]],[[4615,4377],[-2,-113]],[[4613,4264],[45,-2]],[[4615,4377],[-17,6]],[[4591,4379],[-8,-16],[-16,2]],[[4567,4365],[-1,-19]],[[4566,4346],[-1,-19]],[[4565,4314],[-3,-46]],[[4562,4268],[51,-4]],[[4549,4211],[19,3],[2,20]],[[4570,4234],[-19,24]],[[4551,4258],[-1,-40]],[[4550,4218],[-1,-7]],[[4548,4404],[0,-7]],[[4534,4406],[11,-12]],[[4528,4400],[4,-9]],[[4521,4389],[3,-7]],[[4528,4400],[-7,-11]],[[4555,4371],[12,-6]],[[4521,4389],[-9,-6]],[[4512,4383],[7,-16]],[[4527,4345],[11,5]],[[4525,4362],[-9,-11]],[[4516,4351],[11,-6]],[[4570,4234],[28,-7]],[[4598,4227],[1,27],[13,-5],[1,15]],[[4562,4268],[-10,0]],[[4552,4268],[-1,-9]],[[4551,4259],[0,-1]],[[4549,4202],[8,-8],[39,1]],[[4596,4195],[2,32]],[[4549,4211],[0,-9]],[[4522,4133],[-2,51]],[[4520,4184],[-35,-26]],[[4485,4158],[-23,-7],[-1,-32]],[[4461,4119],[48,2],[13,12]],[[4625,4139],[48,-4],[34,16],[40,38]],[[4747,4189],[5,45],[22,5],[-11,16],[3,23],[-11,-10]],[[4755,4268],[-58,4],[-1,-12],[-38,2]],[[4596,4195],[-1,-29],[17,-26]],[[4514,4349],[2,2]],[[4512,4383],[-10,-7]],[[4502,4376],[12,-27]],[[4466,5029],[-98,8]],[[4368,5037],[-6,-32]],[[4362,5005],[-33,-61],[-65,-79]],[[4527,4345],[23,-11],[16,12]],[[4455,4279],[4,7]],[[4459,4286],[2,24]],[[4461,4310],[-4,9],[-18,-17]],[[4439,4302],[-7,-9],[23,-14]],[[4530,4284],[19,-15]],[[4549,4269],[3,-1]],[[4566,4143],[6,0]],[[4549,4202],[-3,-57]],[[4546,4145],[20,-2]],[[4520,4184],[29,18]],[[4549,4211],[-52,18]],[[4497,4229],[-20,-11]],[[4477,4218],[-1,-16]],[[4476,4202],[9,-44]],[[4514,3992],[24,8],[11,13]],[[4549,4013],[17,1],[40,38],[15,5]],[[4621,4057],[-15,0],[2,24],[14,9]],[[4622,4090],[0,9]],[[4618,4102],[-26,-8],[-33,12],[7,37]],[[4546,4145],[-4,0]],[[4542,4145],[-4,-62],[-6,0],[0,-31],[-15,1],[-3,-61]],[[4479,4270],[-2,-52]],[[4480,4409],[36,3]],[[4498,4426],[-15,-9]],[[4512,4271],[37,-2]],[[4506,4326],[-7,-5]],[[4499,4321],[12,-26],[1,-23]],[[4459,4286],[20,15]],[[4479,4301],[7,13],[-18,12],[-7,-16]],[[4455,4277],[24,-3]],[[4499,4321],[-20,-20]],[[4455,4279],[0,-2]],[[4528,4232],[4,29],[19,-2]],[[4512,4262],[4,-26],[12,-4]],[[4422,4406],[0,3]],[[4422,4409],[0,16]],[[4422,4425],[-9,3]],[[4413,4428],[-5,-11],[-29,-1]],[[4379,4416],[-10,-39]],[[4369,4377],[5,-16],[20,-5],[20,8]],[[4329,4435],[6,10]],[[4335,4445],[-16,14]],[[4319,4459],[-3,-17],[13,-7]],[[4363,4310],[23,-2]],[[4369,4377],[-27,49],[-13,9]],[[4319,4459],[-13,17],[-17,6],[3,23]],[[4239,4351],[76,-7],[25,-9],[-1,-12],[23,-3],[1,-10]],[[4483,4367],[15,-7],[10,-18],[6,7]],[[4502,4376],[17,31]],[[4755,4268],[-14,35],[1,28],[11,8],[62,3]],[[4815,4342],[7,175]],[[4822,4517],[1,39]],[[4823,4556],[-31,0]],[[4792,4556],[-1,-28],[-8,-25],[-15,-14],[-27,-11]],[[4437,4311],[2,-9]],[[4425,4464],[20,-1]],[[4369,4467],[56,-3]],[[4414,4226],[13,15]],[[4427,4241],[28,36]],[[4544,4661],[3,62],[-60,5]],[[4792,4556],[-20,2]],[[4528,4232],[-3,-7],[25,-7]],[[4448,3937],[10,-7],[42,55],[14,7]],[[4542,4145],[-20,-12]],[[4461,4119],[-41,2]],[[4420,4121],[-35,12]],[[4385,4133],[-20,10]],[[4365,4143],[-5,-57]],[[4360,4086],[14,-9],[9,-28],[-1,-18],[-16,-28],[22,3],[17,51],[25,21],[21,-7],[2,-19],[15,-2],[-10,-11],[-13,-77],[3,-25]],[[4420,4121],[8,13],[-3,24]],[[4425,4158],[-8,12]],[[4417,4170],[-32,-37]],[[4417,4170],[10,15],[-3,16]],[[4424,4201],[-9,0]],[[4533,4438],[-1,18]],[[4425,4158],[26,29],[1,12]],[[4452,4199],[-28,2]],[[4476,4202],[-24,-3]],[[4638,4569],[-1,32],[14,250]],[[4332,4025],[17,22]],[[4349,4047],[11,39]],[[4427,4241],[24,-10],[1,-32]],[[4720,4126],[1,21],[12,1],[14,41]],[[4622,4090],[30,-7],[53,52],[15,-9]],[[4257,4174],[11,32],[44,41]],[[4312,4247],[6,18],[45,45]],[[4446,4428],[-1,-14],[-23,-5]],[[4425,4464],[-3,-39]],[[4823,4556],[1,2],[11,279]],[[4379,4441],[34,-13]],[[4369,4467],[-1,-26]],[[4368,4441],[11,0]],[[4379,4441],[0,-25]],[[4368,4441],[-33,4]],[[4312,4247],[-10,-43],[5,-3]],[[7661,5824],[3,38],[14,18],[-3,47]],[[7675,5927],[-65,28],[-42,15]],[[7568,5970],[-3,-113]],[[7565,5857],[21,-23],[38,5],[16,-13],[15,8],[6,-10]],[[7569,5697],[42,-7]],[[7611,5690],[43,-8]],[[7654,5682],[-3,48],[10,94]],[[7565,5857],[2,-65],[-5,-28],[7,-67]],[[7568,5970],[-31,9],[11,-10],[-4,-24],[-62,33]],[[7482,5978],[-1,-6]],[[7481,5972],[-7,-69]],[[7474,5903],[13,-74],[10,-42],[2,-48],[-12,-28]],[[7487,5711],[82,-14]],[[7568,5970],[-8,53],[-8,85]],[[7552,6108],[-18,2]],[[7534,6110],[-47,-14]],[[7487,6096],[2,-22]],[[7489,6074],[-1,-70],[-6,-26]],[[7831,5647],[168,-32],[28,-4]],[[8027,5611],[-37,177]],[[7990,5788],[-148,-20],[-27,-7]],[[7815,5761],[2,-37],[-1,-74]],[[7816,5650],[15,-3]],[[7472,6156],[14,28],[19,-7]],[[7505,6177],[-11,25],[-28,-8],[-11,-17]],[[7455,6177],[17,-21]],[[7721,6128],[122,12],[70,9]],[[7913,6149],[-41,197]],[[7872,6346],[-155,-16]],[[7717,6330],[-20,-2]],[[7697,6328],[18,-148]],[[7715,6180],[6,-52]],[[7414,6211],[8,-14],[33,-20]],[[7505,6177],[-2,-22],[-28,-4]],[[7475,6151],[12,-55]],[[7534,6110],[-12,19],[-4,27],[9,30],[-8,49],[7,17],[-15,9],[-3,20],[28,50]],[[7536,6331],[-134,-48]],[[7402,6283],[0,-39],[12,-33]],[[7675,5927],[70,12]],[[7745,5939],[-6,53],[-7,24],[-5,84],[-6,28]],[[7715,6180],[-60,-23],[-20,-12],[-83,-37]],[[7472,6156],[3,-5]],[[7328,6448],[31,-93]],[[7359,6355],[27,-27]],[[7386,6328],[25,65]],[[7411,6393],[-3,-1],[-3,67],[-7,-2],[0,35],[13,14],[-1,37],[-88,-82]],[[7411,6393],[8,37],[-7,6],[9,48],[36,25],[-1,55],[-7,23],[2,35],[22,-1]],[[7473,6621],[15,3],[3,24],[27,13],[4,13]],[[7522,6674],[-79,-51]],[[7443,6623],[-33,-21]],[[7410,6602],[-63,-41]],[[7347,6561],[-25,-12],[-18,5]],[[7536,6331],[29,11]],[[7565,6342],[-54,162]],[[7511,6504],[-38,117]],[[7386,6328],[12,-21],[4,-24]],[[7565,6342],[72,26],[-2,-43],[62,3]],[[7717,6330],[-16,137],[-10,74]],[[7691,6541],[-41,-8]],[[7650,6533],[-139,-29]],[[7677,5678],[73,-13],[66,-15]],[[7815,5761],[1,94],[-2,78],[-4,13]],[[7810,5946],[-65,-7]],[[7654,5682],[23,-4]],[[7990,5788],[-41,190]],[[7949,5978],[-12,-1],[-1,-15],[-126,-16]],[[7872,6346],[-40,189],[5,38]],[[7837,6573],[-43,-11],[-103,-21]],[[7650,6533],[6,29],[0,77],[6,44],[2,53]],[[7664,6736],[-84,-22],[-31,-21]],[[7549,6693],[-27,-19]],[[7837,6573],[8,44]],[[7845,6617],[-30,-1],[-7,157],[-36,-8]],[[7772,6765],[-108,-29]],[[7949,5978],[-36,171]],[[7333,7344],[1,36]],[[7334,7380],[-19,-9]],[[7315,7371],[4,-31]],[[7319,7340],[14,4]],[[7772,6765],[-2,64],[-86,20]],[[7684,6849],[-113,24]],[[7571,6873],[-6,-108],[-16,-72]],[[7684,7280],[-9,61]],[[7675,7341],[-2,31],[5,143]],[[7678,7515],[-117,-22]],[[7561,7493],[-23,-4]],[[7538,7489],[0,-181]],[[7538,7308],[121,-25],[25,-3]],[[7571,6873],[-76,16]],[[7495,6889],[-62,12],[-5,12]],[[7428,6913],[0,-65],[11,-58]],[[7439,6790],[1,-1]],[[7440,6789],[1,-38],[10,-27],[-8,-101]],[[7323,7178],[0,6],[37,6],[27,-15]],[[7387,7175],[11,93]],[[7398,7268],[3,31]],[[7401,7299],[-57,-2]],[[7344,7297],[7,-12],[-8,-50],[-12,-1]],[[7331,7234],[-11,-8],[-1,-47]],[[7319,7179],[4,-1]],[[7344,7297],[-54,1]],[[7287,7246],[43,8],[1,-20]],[[7231,7716],[55,-11]],[[7286,7705],[-2,26]],[[7284,7731],[-6,14]],[[7278,7745],[-23,27]],[[7255,7772],[-20,-11]],[[7235,7761],[-12,-11]],[[7223,7750],[8,-34]],[[7314,7378],[20,10]],[[7334,7388],[-3,20]],[[7331,7408],[-11,-8]],[[7320,7400],[-6,-22]],[[7304,7342],[0,21]],[[7304,7363],[-3,8]],[[7301,7371],[-19,-1]],[[7286,7345],[18,-3]],[[7413,7257],[31,-2],[5,15],[30,-12],[32,-56],[16,-1]],[[7527,7201],[10,107]],[[7537,7308],[-48,9]],[[7489,7317],[-73,12]],[[7416,7329],[-15,-30]],[[7398,7268],[15,-11]],[[7489,7317],[-3,24],[2,42],[-7,58]],[[7481,7441],[-24,-5],[-37,6]],[[7420,7442],[-37,-32]],[[7383,7410],[0,0]],[[7383,7410],[-1,-28],[8,-7],[8,-31],[10,5],[8,-20]],[[7276,7180],[22,-12],[5,12],[16,-1]],[[7354,7049],[23,9],[7,71]],[[7384,7129],[3,46]],[[7323,7178],[2,-25],[10,-18],[11,-38],[-3,-30],[11,-18]],[[7409,7680],[-1,12]],[[7408,7692],[-5,29]],[[7403,7721],[-24,-10],[-22,14]],[[7357,7725],[-17,-1]],[[7340,7724],[-4,-29]],[[7336,7695],[73,-15]],[[7304,7342],[15,-2]],[[7315,7371],[-11,-8]],[[7383,7410],[-26,-16]],[[7357,7394],[3,-28],[-24,-28]],[[7336,7338],[8,-41]],[[7290,7002],[32,-4]],[[7322,6998],[54,-10]],[[7376,6988],[-17,31],[-5,30]],[[7491,7656],[7,7],[62,-4],[4,-7]],[[7564,7652],[4,7]],[[7568,7659],[48,102]],[[7616,7761],[8,16]],[[7624,7777],[-152,27]],[[7472,7804],[1,-12],[25,-46],[4,-21]],[[7502,7725],[-14,-49],[3,-20]],[[7413,7577],[1,-7]],[[7414,7570],[15,37],[16,16],[15,5]],[[7460,7628],[-4,-1],[-35,40],[-13,25]],[[7409,7680],[-12,-31]],[[7397,7649],[3,-21]],[[7400,7628],[13,-51]],[[7262,7807],[26,-32]],[[7288,7775],[2,30],[-37,42],[-11,-6]],[[7242,7841],[12,-11],[8,-23]],[[7234,7786],[10,0],[18,21]],[[7242,7841],[-12,3],[7,-20],[-3,-38]],[[7561,7493],[22,31],[13,6]],[[7596,7530],[-16,32],[-42,31]],[[7538,7593],[-28,-57]],[[7510,7536],[28,-47]],[[7472,7804],[-54,9]],[[7418,7813],[-27,5]],[[7391,7818],[7,-68]],[[7398,7750],[34,-11],[27,5],[43,-19]],[[7255,7772],[16,8],[11,-11]],[[7282,7769],[6,6]],[[7234,7786],[1,-25]],[[7564,7652],[-21,-48]],[[7543,7604],[25,17],[17,35],[-17,3]],[[7684,7280],[53,-12]],[[7737,7268],[91,-19]],[[7828,7249],[-2,71],[-6,119]],[[7820,7439],[-14,0],[-7,29],[-16,-22],[-21,19],[-8,-36],[-31,-33],[-19,-12],[-7,-24],[-22,-19]],[[7376,6988],[18,-24],[1,-31],[14,-22],[19,2]],[[7495,6889],[16,143],[4,48]],[[7515,7080],[4,54]],[[7519,7134],[-35,-1]],[[7484,7133],[-100,-4]],[[7596,7530],[25,24],[0,17],[20,41]],[[7641,7612],[-4,3],[-13,77],[-8,36],[0,33]],[[7543,7604],[-5,-11]],[[7565,7201],[27,-10],[4,-24],[12,-8],[15,52],[-27,5],[-31,-15]],[[7537,7308],[1,0]],[[7510,7536],[-9,-3]],[[7501,7533],[-9,-2]],[[7492,7531],[-14,-46],[3,-44]],[[7244,7689],[16,-22],[13,-36]],[[7273,7631],[14,-2],[21,-22],[1,-12]],[[7309,7595],[6,20]],[[7315,7615],[-14,22],[-15,52],[0,16]],[[7231,7716],[13,-27]],[[7383,7410],[-15,11],[1,27]],[[7369,7448],[-17,-28]],[[7352,7420],[-4,-2]],[[7348,7418],[-7,-24],[16,0]],[[7843,6982],[-15,267]],[[7737,7268],[-16,-134],[-12,-84]],[[7709,7050],[-10,-82]],[[7699,6968],[144,14]],[[7820,7439],[-4,110]],[[7816,7549],[-73,13]],[[7743,7562],[-61,14]],[[7682,7576],[-4,-61]],[[7400,7628],[-21,-25],[-3,-24]],[[7376,7579],[-3,-39]],[[7373,7540],[17,9],[8,-6],[7,28],[8,6]],[[7491,7656],[-31,-28]],[[7460,7628],[41,-95]],[[7382,6717],[0,27],[-17,8]],[[7365,6752],[-8,2],[1,-32],[12,-10],[12,5]],[[7284,7731],[4,13]],[[7288,7744],[-10,1]],[[7347,6561],[-4,45],[5,27],[-2,27],[-8,14],[-10,57],[2,50]],[[7330,6781],[-45,-15]],[[7382,6717],[13,-14],[13,-50],[-3,-15],[5,-36]],[[7440,6789],[-8,-3],[-58,10],[-14,-4]],[[7360,6792],[5,-40]],[[7484,7133],[-24,24],[-20,47],[-12,43],[-15,10]],[[7315,7615],[13,-8]],[[7328,7607],[2,30]],[[7330,7637],[6,38],[0,20]],[[7336,7695],[-50,10]],[[7724,7646],[8,-1],[6,44],[-25,6]],[[7713,7695],[-10,3],[-3,-37],[24,-15]],[[7305,7482],[12,32]],[[7317,7514],[-10,7],[-12,28],[-19,13]],[[7280,7496],[25,-14]],[[7360,6792],[-30,-11]],[[7336,7338],[-3,6]],[[7330,7637],[38,12],[29,0]],[[7288,7744],[1,0]],[[7289,7744],[-7,25]],[[7289,7744],[26,1],[13,13],[26,-1]],[[7354,7757],[1,12],[-13,30],[-3,26]],[[7339,7825],[-41,8],[-54,99]],[[7244,7932],[-5,8]],[[7239,7940],[-17,-24]],[[7222,7916],[-6,-14]],[[7216,7902],[3,-66]],[[7219,7836],[3,-22]],[[7222,7814],[-3,-34]],[[7219,7780],[0,-8]],[[7219,7772],[4,-22]],[[7344,6881],[0,21],[-13,-1]],[[7331,6901],[-11,-2],[-5,-40],[31,1],[-2,21]],[[7439,6790],[-10,-1],[-36,59],[-23,3],[-15,25],[-11,5]],[[7331,6901],[-3,66],[-6,31]],[[7724,7646],[19,-84]],[[7816,7549],[-12,201]],[[7804,7750],[-65,2],[-28,5]],[[7711,7757],[4,-24],[-2,-38]],[[7420,7442],[5,38],[-3,32]],[[7422,7512],[-48,-13]],[[7374,7499],[1,-23]],[[7375,7476],[-6,-28]],[[7451,7518],[41,13]],[[7414,7570],[32,-18],[5,-34]],[[7354,7757],[0,-2]],[[7354,7755],[14,-21],[-11,-9]],[[7403,7721],[-5,29]],[[7391,7818],[-52,7]],[[7354,7755],[-11,-19],[-15,6],[12,-18]],[[7451,7518],[-29,-6]],[[7519,7134],[8,67]],[[7682,7576],[-41,36]],[[7373,7540],[-24,6]],[[7349,7546],[5,-25],[14,-4],[6,-18]],[[7515,7080],[42,-5],[152,-25]],[[7328,7607],[11,8]],[[7339,7615],[27,-20],[10,-16]],[[7339,7615],[-14,-25],[2,-16]],[[7327,7574],[7,-18],[15,-10]],[[7684,6849],[15,119]],[[7316,7574],[11,0]],[[7309,7595],[7,-21]],[[7317,7514],[4,45],[-5,15]],[[7273,7631],[1,-17]],[[7317,7514],[7,-27],[23,14],[7,-30],[21,5]],[[7288,7411],[13,-8]],[[7301,7403],[13,17]],[[7314,7420],[-1,16],[11,2]],[[7324,7438],[-19,44]],[[7324,7438],[28,3],[0,-21]],[[7348,7418],[-17,-10]],[[7334,7388],[0,-8]],[[7314,7420],[6,-20]],[[7304,7372],[10,6]],[[7301,7403],[3,-31]],[[7301,7371],[3,1]],[[7711,7757],[-54,12]],[[7657,7769],[-33,8]],[[7845,6617],[13,0],[-6,183],[-7,94],[-2,88]],[[7237,4970],[12,16]],[[7249,4986],[6,9]],[[7255,4995],[-3,8]],[[7252,5003],[-11,-8],[-17,6]],[[7224,5001],[-4,-12]],[[7220,4989],[-2,-8],[19,-11]],[[7332,4906],[4,27]],[[7336,4933],[-11,-6]],[[7325,4927],[-12,2]],[[7313,4929],[8,-22],[11,-1]],[[7315,4950],[26,17]],[[7341,4967],[3,15]],[[7344,4982],[-8,8]],[[7336,4990],[-13,-2],[-8,-24]],[[7315,4964],[0,-14]],[[7346,4861],[10,2]],[[7356,4863],[-5,29],[-1,84]],[[7350,4976],[-9,-9]],[[7341,4967],[-5,-34]],[[7332,4906],[-10,-14]],[[7322,4892],[-2,-15]],[[7320,4877],[26,-16]],[[7356,4863],[11,3],[4,32],[12,13],[25,52]],[[7408,4963],[3,22],[-11,-4],[-44,2]],[[7356,4983],[-6,-7]],[[7356,4983],[30,22],[49,28]],[[7435,5033],[-60,12]],[[7375,5045],[-18,4]],[[7357,5049],[-8,-20],[1,-33],[-6,-14]],[[7315,4950],[-1,-1]],[[7314,4949],[11,-22]],[[7289,4923],[3,-3]],[[7292,4920],[9,8]],[[7301,4928],[-3,11]],[[7298,4939],[-8,-1]],[[7290,4938],[-4,-13]],[[7286,4925],[3,-2]],[[7292,4920],[9,-9],[19,-34]],[[7322,4892],[-13,37]],[[7309,4929],[-8,-1]],[[7265,5012],[6,6]],[[7271,5018],[22,33]],[[7293,5051],[5,9]],[[7298,5060],[-10,2]],[[7288,5062],[-3,1]],[[7285,5063],[-38,-27]],[[7247,5036],[18,-24]],[[7313,4929],[-4,0]],[[7252,5003],[13,9]],[[7247,5036],[-35,-19]],[[7212,5017],[12,-16]],[[7304,4996],[5,-1]],[[7309,4995],[8,16]],[[7317,5011],[-1,17],[17,26]],[[7333,5054],[-35,6]],[[7293,5051],[11,-55]],[[7285,5063],[-62,14]],[[7223,5077],[-14,-19]],[[7209,5058],[3,-41]],[[7195,4836],[9,13],[39,20],[6,18]],[[7249,4887],[3,9]],[[7252,4896],[-8,10],[5,19],[20,1]],[[7269,4926],[1,1]],[[7270,4927],[-13,14],[-13,-8],[-16,-25],[-18,-44],[-17,2],[-11,-34]],[[7182,4832],[13,4]],[[7107,4763],[24,200],[42,50]],[[7173,5013],[36,45]],[[7223,5077],[-55,12]],[[7168,5089],[-20,5]],[[7148,5094],[-8,-58],[-53,10],[-11,-108],[-17,-133]],[[7059,4805],[48,-42]],[[7252,4896],[17,30]],[[7110,4760],[24,29],[20,1],[15,16],[13,26]],[[7270,4927],[10,3]],[[7280,4930],[-4,20],[-25,1],[-14,19]],[[7220,4989],[-25,-7],[1,9],[-23,22]],[[7107,4763],[3,-3]],[[7300,4821],[44,5]],[[7344,4826],[2,35]],[[7289,4923],[-15,-30]],[[7274,4893],[26,-56],[0,-16]],[[7266,4755],[14,47]],[[7280,4802],[-10,-9],[-28,-5],[-23,6],[-24,42]],[[7110,4760],[-11,-130]],[[7099,4630],[48,5],[22,19],[38,23],[38,41],[21,37]],[[7286,4925],[-6,5]],[[7249,4887],[21,-20],[-7,16],[11,10]],[[6886,4981],[11,-23],[-3,-12],[108,-94],[57,-47]],[[7148,5094],[-65,13]],[[7083,5107],[-93,21]],[[6990,5128],[-5,38],[-23,4],[-46,-18],[-4,5]],[[6912,5157],[-37,5],[-43,-76],[23,-17],[36,0],[10,-23],[-4,-20],[8,-20],[-8,-23],[-11,-2]],[[7300,4821],[11,-44],[25,-33]],[[7336,4744],[4,34]],[[7340,4778],[4,47]],[[7344,4825],[0,1]],[[7317,4730],[19,-2],[0,16]],[[7300,4821],[-20,-2],[0,-17]],[[7266,4755],[7,4],[44,-29]],[[7314,4949],[-14,-9]],[[7300,4940],[-2,-1]],[[7255,4995],[35,5]],[[7290,5000],[-19,18]],[[7273,4967],[-3,17]],[[7270,4984],[16,13]],[[7286,4997],[4,3]],[[7249,4986],[24,-19]],[[7290,4938],[-4,11]],[[7286,4949],[-5,13]],[[7281,4962],[-8,5]],[[7273,4967],[-36,3]],[[7408,4963],[19,28]],[[7427,4991],[3,17],[25,12]],[[7455,5020],[-19,12]],[[7436,5032],[-1,1]],[[7328,5005],[8,-15]],[[7357,5049],[-24,5]],[[7317,5011],[11,-6]],[[7307,4971],[21,34]],[[7309,4995],[-8,-16]],[[7301,4979],[6,-8]],[[7292,4972],[9,7]],[[7301,4979],[-17,5],[2,13]],[[7270,4984],[22,-12]],[[7281,4962],[6,6]],[[7287,4968],[5,4]],[[7304,4996],[-14,4]],[[7297,4957],[10,14]],[[7287,4968],[10,-11]],[[7315,4964],[-8,7]],[[7297,4957],[-4,-6]],[[7293,4951],[7,-11]],[[7286,4949],[7,2]],[[6857,6479],[59,-149],[-24,-16],[43,-106],[17,0],[49,31],[20,9],[5,-14],[27,-2],[38,5],[7,-7],[36,4]],[[7134,6234],[11,8]],[[7145,6242],[5,10],[18,-4],[9,28],[-14,78]],[[7261,5761],[20,-4]],[[7281,5757],[-1,125]],[[7280,5882],[-2,34],[1,80]],[[7279,5996],[-49,-37],[-39,-14],[-31,26]],[[7160,5971],[-19,-37],[-22,-10],[1,-19],[-9,-113]],[[7111,5792],[58,-14],[92,-17]],[[7276,6133],[16,-13]],[[7292,6120],[1,23],[30,1],[13,15]],[[7336,6159],[-22,16],[-32,101],[-10,12],[-22,89]],[[7145,6242],[131,-109]],[[7336,6159],[13,4],[30,26],[15,-4]],[[7394,6185],[-12,49],[-32,10],[5,17],[-27,64],[26,13],[5,17]],[[7279,5996],[49,16]],[[7328,6012],[-11,65],[-9,30],[-16,13]],[[7276,6133],[-34,-37],[-32,-43],[-12,1],[-35,-37],[-18,-34]],[[7145,5983],[15,-12]],[[6614,6116],[102,-10],[3,-11],[31,7],[22,17],[12,-13],[94,-8],[7,7],[28,-1],[11,16],[13,-6],[11,20],[39,6],[29,-2],[20,-8],[49,11]],[[7085,6141],[24,21],[17,31],[8,41]],[[6649,6356],[-106,-70]],[[6543,6286],[71,-170]],[[7085,6141],[9,-22],[-3,-40],[-42,-25],[-12,-16]],[[7037,6038],[70,-34],[38,-21]],[[7102,5793],[9,-1]],[[7037,6038],[3,-17],[-22,-26],[-29,-4],[-18,-11],[-1,-14],[-22,-22],[-27,-40],[-11,-2]],[[6910,5902],[-13,-68]],[[6897,5834],[70,-13],[135,-28]],[[7451,5718],[4,-1]],[[7455,5717],[32,-6]],[[7474,5903],[-28,-3]],[[7446,5900],[-166,-18]],[[7281,5757],[9,-1],[130,-32],[31,-6]],[[7430,5963],[16,-5]],[[7446,5958],[-7,22],[-30,-5],[5,-12],[16,0]],[[7446,5900],[-8,33],[-13,11],[5,19]],[[7446,5958],[7,20],[28,-6]],[[7489,6074],[-44,-13],[-59,-12],[-23,-8],[-35,-29]],[[7394,6185],[1,18],[19,8]],[[6661,5951],[80,-42],[28,20],[14,20],[31,-11],[10,8],[16,-12],[30,-2],[27,-36],[13,6]],[[6614,6116],[66,-152],[-19,-13]],[[3085,4790],[14,33],[19,-7]],[[3118,4816],[28,-2]],[[3146,4814],[6,0]],[[3152,4814],[0,38]],[[3152,4852],[-30,1],[-4,66],[-7,38],[-32,60],[-12,42]],[[3067,5059],[-1,5]],[[3066,5064],[-69,0],[-1,-211]],[[2996,4853],[0,-63]],[[2996,4790],[27,8],[62,-8]],[[2902,4455],[17,36],[2,18],[19,58],[2,23],[-31,1],[-18,-9],[-39,2]],[[3060,4656],[91,-1]],[[3151,4655],[1,159]],[[3146,4814],[-21,-54]],[[3125,4760],[-7,-33],[-27,15]],[[3091,4742],[-19,13],[13,35]],[[2996,4790],[-2,-135]],[[2994,4655],[66,1]],[[2994,4455],[0,134]],[[2994,4589],[0,66]],[[2994,4655],[-140,3]],[[3125,4760],[-20,14]],[[3105,4774],[-14,-32]],[[3152,4852],[143,-3]],[[3295,4849],[10,16],[0,189]],[[3305,5054],[-26,4]],[[3279,5058],[-212,1]],[[3429,4748],[3,158],[4,147]],[[3436,5053],[-131,1]],[[3295,4849],[0,-98]],[[3295,4751],[134,-3]],[[3505,4801],[0,12]],[[3505,4813],[-20,16]],[[3485,4829],[-7,-1]],[[3478,4828],[-4,-21]],[[3474,4807],[31,-6]],[[3105,4774],[2,6]],[[3107,4780],[-22,10]],[[3107,4780],[11,36]],[[3485,4829],[-2,18],[8,38]],[[3491,4885],[-14,5],[-6,-31],[-8,3],[-11,-25]],[[3452,4837],[26,-9]],[[3342,4504],[17,0]],[[3359,4504],[146,-1]],[[3505,4503],[0,147]],[[3505,4650],[0,96]],[[3505,4746],[-76,2]],[[3295,4751],[0,-98]],[[3295,4653],[-3,-148]],[[3292,4505],[50,-1]],[[3462,4806],[12,1]],[[3452,4837],[-7,-35],[17,4]],[[3505,4788],[0,13]],[[3462,4806],[5,-17],[24,0],[-1,-15],[15,14]],[[2722,4854],[46,0]],[[2768,4854],[91,-1]],[[2859,4853],[3,146],[0,260]],[[2862,5259],[-12,0]],[[2850,5259],[-141,-4],[-4,-64],[-13,-136]],[[2692,5055],[30,0],[0,-201]],[[3505,4746],[0,42]],[[3491,4885],[-1,79]],[[3490,4964],[1,48],[-4,22],[8,18]],[[3495,5052],[-58,1]],[[3437,5053],[-1,0]],[[2996,4853],[-137,0]],[[2768,4854],[-3,-21],[10,-3],[-10,-19],[5,-14],[-2,-30],[-11,-15],[-1,-55],[-23,-41]],[[2994,4589],[66,3],[0,64]],[[3064,4455],[86,0]],[[3150,4455],[1,123]],[[3151,4578],[0,77]],[[2994,4455],[70,0]],[[3066,5064],[-29,54],[-21,77],[-4,69],[-12,0]],[[3000,5264],[-103,1],[0,-6],[-35,0]],[[3000,5264],[0,201]],[[3000,5465],[-71,0]],[[2929,5465],[-84,-2]],[[2845,5463],[1,-152],[4,-52]],[[3151,4578],[27,1],[27,9],[57,3],[0,22],[8,27],[-8,14]],[[3262,4654],[-111,1]],[[3262,4654],[33,-1]],[[3169,4444],[120,0]],[[3289,4444],[3,61]],[[3150,4455],[1,-11]],[[3151,4444],[18,0]],[[6505,5843],[156,108]],[[6543,6286],[-72,-48],[-113,-79]],[[6358,6159],[27,-57],[3,-19],[32,-15],[-3,-18],[24,-4],[16,-16],[-4,-32],[24,-19],[21,3],[13,-40],[-6,-99]],[[6049,6129],[6,-14],[7,14],[-6,18],[-7,-18]],[[5913,6082],[91,164],[7,-12],[-1,-24],[117,79],[21,-56],[26,16]],[[6174,6249],[1,60],[70,-101],[20,-1],[41,32]],[[6306,6239],[17,10],[19,21],[15,53],[-15,65],[-47,65],[-21,25],[-19,2],[23,20],[99,77]],[[6237,6689],[-113,-85],[10,-145],[-68,-48],[-62,38],[-40,-29]],[[5964,6420],[-56,-42],[0,-12],[-12,-28],[33,-52],[-80,-146]],[[5849,6140],[64,-58]],[[5962,6038],[30,55],[56,-55],[86,-76],[41,76],[8,-2]],[[6183,6036],[37,26],[-2,9],[-33,11],[-14,24],[3,70],[0,73]],[[5913,6082],[49,-44]],[[5702,6186],[14,-12]],[[5716,6174],[113,-15],[20,-19]],[[5964,6420],[-137,97],[16,44]],[[5843,6561],[-24,14]],[[5819,6575],[-92,-71],[-14,13],[5,24],[-20,3],[-3,-47],[24,-2],[-14,-179],[-38,-100],[35,-30]],[[5934,5864],[41,-39],[30,1],[31,8],[7,10],[61,-58],[66,-19],[80,-74],[44,77],[68,123]],[[6362,5893],[-16,1],[9,24],[-2,39],[-24,10],[-3,11],[-54,0],[-14,5],[-3,14],[-19,1],[-18,12],[-24,0],[-11,26]],[[5962,6038],[-63,-113],[44,-41],[-9,-20]],[[6362,5893],[21,-11],[7,13],[11,-8],[35,-48],[6,-39]],[[6442,5800],[37,25]],[[6479,5825],[26,18]],[[6358,6159],[-52,80]],[[5717,5943],[62,-60],[5,10],[26,-28],[-5,-10],[15,-17]],[[5820,5838],[27,-31],[43,-22]],[[5890,5785],[44,79]],[[5716,6174],[-10,-151],[11,-80]],[[5443,6111],[92,-8],[43,25],[39,17],[59,31],[26,10]],[[5819,6575],[-284,165]],[[5535,6740],[-22,-14]],[[5513,6726],[-9,-19],[-12,13],[-32,-18],[-8,-36],[-16,-30],[-2,-81],[5,-255]],[[5439,6300],[2,-114]],[[5441,6186],[2,-75]],[[5662,5929],[30,-6],[10,-20],[22,-2],[-7,42]],[[5443,6111],[1,-71]],[[5444,6040],[22,-2],[22,-13],[13,12],[22,-8],[13,10],[26,-15],[16,1],[17,-39],[32,-27],[-5,-13],[16,-22],[24,5]],[[5995,5704],[8,-2]],[[6003,5702],[13,13],[32,-26],[111,-84],[92,18],[23,-22],[24,1],[27,-8]],[[6325,5594],[14,26]],[[6339,5620],[103,180]],[[5890,5785],[48,3],[3,-55],[21,15],[8,17],[14,-9],[11,-52]],[[5843,6561],[56,160],[68,181]],[[5779,7049],[-22,-1],[-5,-42],[-9,-4],[-14,27],[-11,-18],[-26,4],[-8,20],[-25,-21],[-18,11],[-8,-19],[8,-11],[-4,-17],[-13,-8],[-2,-21],[6,-22],[-11,-33],[-3,-36],[-13,-9],[-2,-21],[-25,8],[-22,-42],[-17,-10],[6,-30],[-6,-14]],[[7464,4696],[33,-7]],[[7497,4689],[2,47]],[[7499,4736],[-16,20]],[[7483,4756],[-23,15],[-24,-2]],[[7436,4769],[7,-18],[-5,-48]],[[7438,4703],[26,-7]],[[7278,4549],[20,-3]],[[7298,4546],[10,106]],[[7308,4652],[9,78]],[[7099,4630],[-4,-52]],[[7095,4578],[183,-29]],[[7417,4529],[-1,13],[-24,3],[-2,-13]],[[7390,4532],[3,-23],[-12,-18],[12,-14],[2,22],[19,6],[3,24]],[[7374,4736],[8,-22],[56,-11]],[[7436,4769],[-35,16],[-41,-7],[-14,24],[-2,23]],[[7340,4778],[34,-42]],[[7386,4114],[1,44],[19,71],[6,60],[7,32],[11,10]],[[7430,4331],[-25,4]],[[7405,4335],[-145,22]],[[7260,4357],[-16,-194]],[[7244,4163],[-2,-27]],[[7242,4136],[144,-22]],[[7503,4885],[2,94]],[[7505,4979],[-21,1],[-6,-8],[0,-71],[-4,-16]],[[7474,4885],[29,0]],[[7308,4652],[43,-18],[44,-6],[-8,23],[-13,85]],[[7360,4537],[30,-5]],[[7417,4529],[5,-1]],[[7422,4528],[14,164],[2,11]],[[7298,4546],[62,-9]],[[7492,4319],[-12,4]],[[7480,4323],[-4,-12],[16,-17],[0,25]],[[7499,4736],[2,44]],[[7501,4780],[2,55]],[[7503,4835],[0,24]],[[7503,4859],[-8,-8]],[[7495,4851],[-5,-15],[-28,-20],[-2,-17],[26,-26],[-3,-17]],[[7559,4822],[-2,34]],[[7557,4856],[-14,35],[-40,-6]],[[7503,4885],[0,-26]],[[7503,4835],[45,-6],[11,-7]],[[7362,3649],[16,56],[-7,25],[15,19],[-1,14],[13,17],[-5,24],[20,22],[9,29],[14,3],[-4,46],[3,10]],[[7435,3914],[-127,17]],[[7308,3931],[-3,-55],[2,-44],[-92,-158]],[[7215,3674],[147,-25]],[[7435,3914],[-11,20],[0,44]],[[7424,3978],[-18,-11],[-3,14],[8,15],[19,10],[19,-15],[5,-14]],[[7454,3977],[14,4],[22,26],[15,32],[6,-7]],[[7511,4032],[19,58]],[[7530,4090],[-46,8],[-1,7]],[[7483,4105],[-97,9]],[[7242,4136],[-9,-194],[75,-11]],[[7414,4440],[5,47]],[[7419,4487],[1,11]],[[7420,4498],[2,30]],[[7360,4537],[0,-40],[-6,-55]],[[7354,4442],[44,-8],[16,6]],[[7483,4105],[9,32],[-5,9],[4,41]],[[7491,4187],[12,133]],[[7503,4320],[-2,0]],[[7501,4320],[-9,-1]],[[7480,4323],[-8,2]],[[7472,4325],[-42,6]],[[7495,4851],[-23,1],[-31,-8]],[[7441,4844],[-1,-70],[-4,-5]],[[7439,4894],[15,-9],[20,0]],[[7505,4979],[1,26]],[[7506,5005],[-11,-13],[-12,4],[-16,24],[-12,0]],[[7427,4991],[6,-20],[0,-52],[6,-25]],[[7564,4798],[-5,24]],[[7501,4780],[21,16],[18,-4],[24,6]],[[7408,4365],[6,75]],[[7354,4442],[-2,-62],[30,-13],[26,-2]],[[7244,4163],[-45,8],[-139,20]],[[7060,4191],[-20,-222]],[[7040,3969],[-25,-261]],[[7015,3708],[200,-34]],[[7626,4984],[-5,25]],[[7621,5009],[-13,-15],[2,-14],[16,4]],[[7580,4916],[62,16]],[[7642,4932],[1,22],[-17,29]],[[7626,4983],[0,1]],[[7621,5009],[0,1]],[[7621,5010],[-15,18],[-7,-4]],[[7599,5024],[-19,-23],[-2,-14]],[[7578,4987],[-13,-18],[6,-14],[-9,-27]],[[7562,4928],[18,-12]],[[7681,4631],[-9,31]],[[7672,4662],[-31,19]],[[7641,4681],[-1,-16],[16,-16],[-1,-26],[26,8]],[[7537,4495],[110,1],[0,3],[77,1]],[[7724,4500],[-14,29],[-5,41],[-27,26],[3,35]],[[7641,4681],[-23,45]],[[7618,4726],[-24,1]],[[7594,4727],[-58,-22],[-25,1]],[[7511,4706],[22,-139]],[[7533,4567],[-7,-41],[11,-31]],[[7472,4325],[-12,19],[4,43],[-7,17]],[[7457,4404],[-17,45],[-21,38]],[[7408,4365],[-3,-30]],[[7457,4404],[24,-12]],[[7481,4392],[0,8],[28,9],[21,-48],[-5,-45]],[[7525,4316],[66,-11]],[[7591,4305],[7,62],[-23,27],[-18,31],[4,10]],[[7561,4435],[-23,9],[-37,-8],[-25,28],[-19,-8],[-19,15],[-5,23],[-13,4]],[[7501,4320],[-11,18]],[[7490,4338],[-14,6],[0,20],[11,5]],[[7487,4369],[-6,23]],[[7487,4369],[10,-1],[-7,-30]],[[7503,4320],[22,-4]],[[7260,4357],[-183,27]],[[7077,4384],[-16,-170]],[[7061,4214],[-1,-23]],[[7747,4292],[0,2]],[[7747,4294],[-1,29]],[[7746,4323],[-29,24],[6,-34],[8,2],[5,-22],[11,-1]],[[7591,4305],[41,-6]],[[7632,4299],[116,-21]],[[7748,4278],[-1,14]],[[7746,4323],[2,23],[-8,25],[4,40],[-10,13],[-6,29],[-4,47]],[[7537,4495],[6,-21],[14,-19],[4,-20]],[[7740,4054],[3,16],[-8,32],[5,26],[-10,23],[10,35]],[[7740,4186],[-12,37],[8,37],[12,18]],[[7632,4299],[-24,-221]],[[7608,4078],[132,-24]],[[7666,3854],[23,3]],[[7689,3857],[-1,29],[-33,19],[-2,-16]],[[7653,3889],[11,-7],[2,-28]],[[7541,3978],[0,-31],[7,-11],[33,-13],[19,-18]],[[7600,3905],[10,4],[11,39]],[[7621,3948],[10,12],[16,-8],[56,-9],[18,15],[8,-13]],[[7729,3945],[3,26],[-12,20],[20,63]],[[7608,4078],[-78,12]],[[7511,4032],[26,-38],[4,-16]],[[7278,4549],[-18,-192]],[[7592,4730],[14,20],[-1,28]],[[7605,4778],[-1,-1]],[[7604,4777],[-12,-47]],[[7511,4706],[-14,-17]],[[7464,4696],[-4,-50],[4,-49],[11,-1],[8,-32],[35,-3],[15,6]],[[7557,4856],[12,53],[11,7]],[[7562,4928],[-10,-1]],[[7552,4927],[-8,5],[-15,38],[-23,35]],[[7564,4798],[9,-14],[26,1],[5,-8]],[[7605,4778],[7,-28]],[[7612,4750],[-1,23],[13,32],[-2,39],[12,56]],[[7634,4900],[8,32]],[[7618,4726],[-6,24]],[[7592,4730],[2,-3]],[[7641,3887],[12,2]],[[7689,3857],[3,-2]],[[7692,3855],[31,-1]],[[7723,3854],[8,12],[-8,21]],[[7723,3887],[-7,50],[13,8]],[[7621,3948],[19,-19],[-17,-29],[4,-18],[14,5]],[[7525,4316],[0,-17],[31,-84],[6,-28],[-39,-1],[-21,8],[-11,-7]],[[7095,4578],[-1,-8]],[[7094,4570],[-6,-52]],[[7088,4518],[-11,-134]],[[7424,3978],[11,10],[19,-11]],[[7441,4844],[-2,50]],[[2153,5592],[134,1]],[[2287,5593],[0,12],[22,38],[1,43],[-24,4],[0,35],[5,3],[-3,56],[18,80],[-3,54],[7,27],[-10,19],[-8,36],[-11,23],[-11,2],[-8,22],[0,22]],[[2262,6069],[-18,13]],[[2244,6082],[-14,3],[-42,-17],[-17,9],[-5,25],[-32,44],[-51,87],[-21,12],[-24,4],[-13,15]],[[2025,6264],[7,-38],[-10,-36],[5,-42],[31,-54],[15,-46],[0,-37],[-8,-8],[2,-30],[-6,0],[-17,-38],[-31,-40],[2,-18]],[[2015,5877],[-2,-34],[21,-40],[10,-32],[23,-29],[12,-25],[21,-10],[25,-28],[10,-43],[12,-9],[6,-35]],[[1820,6204],[14,0],[1,32],[-15,0]],[[2025,6264],[-1,66],[26,43]],[[2050,6373],[-29,14],[-2,38],[-25,1],[-33,20],[-56,1],[-11,7],[-13,-49],[-12,-2],[1,32],[-11,-16],[-29,19],[-9,25]],[[1820,6195],[14,-17],[-3,-19],[38,24],[-10,52],[36,-4],[37,28],[15,3],[46,21],[18,-3],[14,-16]],[[2159,5586],[-6,6]],[[2015,5877],[-28,-11],[-38,10],[-41,6],[-23,-28],[-10,-25],[-29,-16],[-6,-33],[-19,-8]],[[1820,5586],[339,0]],[[2050,6373],[1,22],[23,17],[22,7]],[[2096,6419],[0,33],[9,9],[-13,23],[7,38],[-26,11],[1,15],[-25,14],[-20,27],[36,23],[8,33],[-9,26],[-1,44],[-8,9]],[[2055,6724],[-156,3],[-78,-1]],[[2223,6264],[13,6],[51,-1],[18,-22],[21,-8],[-3,32],[16,15],[32,-17],[28,21]],[[2399,6290],[-8,42],[-7,63],[-15,3],[-33,20],[-35,27],[-12,22]],[[2289,6467],[-18,-5]],[[2271,6462],[-11,-8],[-8,-25],[-15,-3],[3,-27],[-18,-46]],[[2222,6353],[-13,-41],[-31,-37],[12,-5],[12,16],[21,-22]],[[2244,6082],[2,22],[-9,16],[1,44],[-16,18],[1,82]],[[2222,6353],[-26,49],[-12,-6],[-21,11],[-22,-1],[-6,14],[-39,-1]],[[2407,5594],[0,95],[147,7]],[[2554,5696],[-4,147]],[[2550,5843],[-6,0],[-4,155]],[[2540,5998],[-23,38],[-84,-4],[-19,-5],[-25,7],[-21,23],[-60,10],[-13,9],[-33,-7]],[[2287,5593],[120,1]],[[2271,6462],[-3,47],[-10,24],[-20,30],[-20,4],[-19,-6],[-7,26],[6,43],[-31,33],[-25,35],[-11,0],[7,28]],[[2138,6726],[-83,-2]],[[2289,6467],[21,7],[4,12],[24,14],[-5,25],[11,2],[24,-23],[9,31],[-3,23],[17,2],[20,20],[51,0],[4,33],[11,29],[29,1],[16,13]],[[2522,6656],[-2,72]],[[2520,6728],[-317,0],[-65,-2]],[[2399,6290],[2,-8],[29,-22],[4,-18],[18,-15],[0,23],[14,11],[5,-31],[21,-30],[14,-38],[0,-18],[30,-1]],[[2536,6143],[-8,247],[-6,266]],[[2540,5998],[-4,113]],[[2536,6111],[0,32]],[[7478,5254],[17,17]],[[7495,5271],[-3,5]],[[7492,5276],[-12,-4]],[[7480,5272],[-8,-7]],[[7472,5265],[6,-11]],[[7484,5247],[7,9]],[[7491,5256],[4,15]],[[7478,5254],[6,-7]],[[7516,5088],[37,21]],[[7553,5109],[-8,21],[-31,-17]],[[7514,5113],[0,-15]],[[7514,5098],[2,-10]],[[7435,5033],[28,20]],[[7463,5053],[12,25],[1,28],[12,3]],[[7488,5109],[-15,24]],[[7473,5133],[-21,26]],[[7452,5159],[4,-19],[-40,-27]],[[7416,5113],[3,-15],[-13,-6]],[[7406,5092],[13,-5],[-2,-21],[10,-2],[8,-31]],[[7432,5202],[19,13]],[[7451,5215],[15,3]],[[7466,5218],[28,7]],[[7494,5225],[16,21],[6,-19]],[[7516,5227],[11,6]],[[7527,5233],[11,6]],[[7538,5239],[-1,5]],[[7537,5244],[-14,15]],[[7523,5259],[-31,-22],[11,30]],[[7503,5267],[-12,-11]],[[7484,5247],[-8,-13],[-8,11],[-27,-29]],[[7441,5216],[-9,-14]],[[7279,5276],[28,-2],[14,10],[-8,14],[4,27],[-10,-9],[-29,6],[1,-46]],[[7476,5409],[18,8],[8,-7],[6,-42]],[[7508,5368],[9,15]],[[7517,5383],[-2,29],[11,53]],[[7526,5465],[-5,74]],[[7521,5539],[-6,36]],[[7515,5575],[-4,12]],[[7511,5587],[-56,-10]],[[7455,5577],[5,-21],[-4,-53],[6,-37],[8,-10],[6,-47]],[[7538,5239],[24,14]],[[7562,5253],[-2,6]],[[7560,5259],[-18,30]],[[7542,5289],[-6,-16]],[[7536,5273],[1,-29]],[[7168,5089],[30,18],[30,7],[37,23]],[[7265,5137],[1,33],[11,57],[21,45]],[[7298,5272],[-110,12]],[[7188,5284],[-5,-37],[-14,-21],[-12,-3],[-1,-18],[-14,-30],[3,-19],[-12,5],[-12,-19],[-38,-35]],[[7188,5185],[0,0]],[[7161,5179],[4,23],[11,5],[14,-14],[-5,-14],[-21,-18],[-11,7],[8,11]],[[7298,5060],[99,100]],[[7397,5160],[28,29]],[[7425,5189],[26,26]],[[7432,5202],[-10,-11]],[[7422,5191],[-43,-47],[-30,20],[-5,13],[18,11]],[[7362,5188],[-6,11]],[[7356,5199],[-16,-4],[-27,-18]],[[7313,5177],[-12,-15]],[[7301,5162],[-13,-58],[0,-42]],[[7488,5109],[26,4]],[[7514,5113],[8,34],[1,36]],[[7523,5183],[-28,-3]],[[7495,5180],[-22,-47]],[[7313,5177],[-21,17],[21,17],[20,29]],[[7333,5240],[13,26]],[[7346,5266],[-2,1]],[[7344,5267],[-46,5]],[[7265,5137],[36,25]],[[7468,5339],[4,16],[23,3]],[[7495,5358],[13,10]],[[7476,5409],[-32,2]],[[7444,5411],[-4,-51]],[[7440,5360],[0,-4]],[[7440,5356],[28,-17]],[[7433,5243],[0,1]],[[7433,5244],[24,13]],[[7457,5257],[-17,24]],[[7440,5281],[-8,-22]],[[7432,5259],[1,-16]],[[7444,5411],[-47,25],[-18,-23],[-16,-6]],[[7363,5407],[26,-20],[51,-27]],[[7455,5577],[-93,-17]],[[7362,5560],[9,-69],[2,-34],[-15,-46]],[[7358,5411],[5,-4]],[[7344,5267],[59,-6]],[[7403,5261],[-18,30],[-18,50]],[[7367,5341],[-4,12]],[[7363,5353],[-27,-11],[-50,19],[-8,-6],[-31,7],[5,29],[-3,34],[-18,3],[-14,-13],[-11,9]],[[7206,5424],[-16,-125]],[[7190,5299],[-2,-15]],[[7589,5194],[-5,13]],[[7584,5207],[-22,46]],[[7538,5239],[-11,-35],[14,4],[8,-23],[13,-11],[27,20]],[[7067,5521],[148,-32]],[[7215,5489],[5,46],[27,4]],[[7247,5539],[0,30],[14,192]],[[7102,5793],[-22,-166],[-13,-106]],[[7363,5353],[-5,58]],[[7362,5560],[-115,-21]],[[7215,5489],[-9,-65]],[[7587,5112],[5,2]],[[7592,5114],[6,9]],[[7598,5123],[-3,11]],[[7595,5134],[-3,7]],[[7592,5141],[0,5]],[[7592,5146],[-11,-1]],[[7581,5145],[6,-33]],[[7521,5061],[24,6],[41,27],[3,-14]],[[7589,5080],[3,1]],[[7592,5081],[0,33]],[[7587,5112],[-19,5]],[[7568,5117],[-15,-8]],[[7516,5088],[5,-27]],[[7346,5266],[24,-10],[5,-24],[17,-12]],[[7392,5220],[41,23]],[[7432,5259],[-29,2]],[[7581,5145],[-8,4]],[[7573,5149],[6,-15],[-11,-17]],[[7440,5281],[-27,18],[-4,20],[12,6],[27,-8],[8,27],[12,-5]],[[7468,5339],[0,0]],[[7440,5356],[-24,4],[-49,-19]],[[7592,5146],[-1,8]],[[7591,5154],[-4,27]],[[7587,5181],[-14,-6],[0,-26]],[[7514,5286],[13,12],[9,-25]],[[7542,5289],[-4,5]],[[7538,5294],[-6,25]],[[7532,5319],[-11,-7]],[[7521,5312],[-7,-7]],[[7514,5305],[0,-4]],[[7514,5301],[-3,-12]],[[7511,5289],[3,-3]],[[7502,5313],[12,13]],[[7514,5326],[13,6]],[[7527,5332],[-10,50]],[[7517,5382],[0,1]],[[7495,5358],[-1,-38],[8,-7]],[[6919,5491],[4,-24],[17,-21],[0,-14],[34,-60],[1,-20]],[[6975,5352],[215,-53]],[[7067,5521],[-146,29]],[[6921,5550],[-8,-28],[6,-31]],[[7552,4927],[-3,59],[-24,48],[-4,27]],[[7514,5098],[-13,-25],[-38,-20]],[[7435,5033],[1,-1]],[[7356,5199],[-16,19],[-7,22]],[[7356,5199],[36,21]],[[7406,5092],[-8,-24],[-23,-23]],[[7587,5181],[2,13]],[[7527,5233],[-4,-50]],[[7578,4987],[-16,4]],[[7562,4991],[-8,10],[-2,47],[32,16]],[[7584,5064],[5,16]],[[7452,5159],[-14,16]],[[7438,5175],[-32,-49]],[[7406,5126],[10,-13]],[[7514,5286],[1,-6]],[[7515,5280],[8,-21]],[[7514,5326],[7,-14]],[[7532,5319],[-5,13]],[[7507,5298],[7,3]],[[7514,5305],[-9,0]],[[7505,5305],[2,-7]],[[7495,5286],[12,12]],[[7505,5305],[-3,8]],[[7502,5313],[-19,2]],[[7483,5315],[0,0]],[[7483,5315],[1,-18]],[[7484,5297],[11,-11]],[[7457,5257],[11,6]],[[7468,5263],[-12,21],[8,15]],[[7464,5299],[-5,16],[19,16]],[[7478,5331],[-10,8]],[[7438,5175],[-13,14]],[[7397,5160],[9,-10],[0,-24]],[[6975,5352],[16,-38],[14,-63],[-1,-45],[6,-50],[-20,-28]],[[7598,5064],[13,-4]],[[7611,5060],[-3,18]],[[7608,5078],[-2,27]],[[7606,5105],[-8,18]],[[7592,5081],[6,-17]],[[7441,5216],[5,10],[-13,18]],[[7433,5243],[7,-13],[-26,-14]],[[7414,5216],[8,-25]],[[7598,5031],[0,33]],[[7584,5064],[-3,-35]],[[7581,5029],[17,2]],[[7621,5010],[-2,10]],[[7619,5020],[-6,24]],[[7613,5044],[-2,16]],[[7598,5031],[1,-7]],[[7581,5029],[-19,-38]],[[7508,5273],[7,7]],[[7511,5289],[-8,-10]],[[7503,5279],[5,-6]],[[7478,5331],[5,-16]],[[7492,5276],[7,4]],[[7499,5280],[-4,6]],[[7484,5297],[-4,0]],[[7480,5297],[12,-21]],[[7503,5267],[5,6]],[[7503,5279],[-4,1]],[[7468,5292],[12,5]],[[7483,5315],[-19,-16]],[[7464,5299],[4,-7]],[[7468,5263],[4,2]],[[7480,5272],[-12,20]],[[6897,5834],[-11,2],[-2,-28],[16,-54],[9,-54],[20,-52],[5,-34],[-2,-39],[-11,-25]],[[7362,5188],[52,28]],[[7451,5718],[-5,-5],[-6,-70],[9,31],[16,-2],[0,35],[-10,10]],[[7516,5227],[-2,-15],[-19,-32]],[[7494,5225],[-26,-40]],[[7468,5185],[-16,-26]],[[7466,5218],[-11,-18],[13,-15]],[[7511,5587],[-16,37],[-11,37],[3,50]],[[7389,9280],[3,-1]],[[7392,9279],[6,34]],[[7398,9313],[-11,4]],[[7387,9317],[-4,-18]],[[7383,9299],[-1,-18]],[[7382,9281],[7,-1]],[[7306,9229],[2,0]],[[7308,9229],[5,2]],[[7313,9231],[0,4]],[[7313,9235],[-2,3]],[[7311,9238],[-5,-9]],[[7392,9172],[3,15]],[[7395,9187],[-6,1]],[[7389,9188],[0,-16]],[[7389,9172],[3,0]],[[7347,9195],[5,-15]],[[7352,9180],[0,1]],[[7352,9181],[0,14]],[[7352,9195],[-2,3]],[[7350,9198],[-3,-3]],[[7330,9178],[5,0]],[[7335,9178],[-4,6]],[[7331,9184],[-3,5]],[[7328,9189],[-3,-5]],[[7325,9184],[5,-6]],[[7327,9215],[5,-5]],[[7332,9210],[3,0]],[[7335,9210],[0,6]],[[7335,9216],[-7,-1]],[[7328,9215],[-1,0]],[[7321,9293],[9,5]],[[7330,9298],[-6,5]],[[7324,9303],[-5,-6]],[[7319,9297],[2,-4]],[[7435,9248],[4,-4]],[[7439,9244],[4,8]],[[7443,9252],[-4,4]],[[7439,9256],[-4,-8]],[[7395,9203],[7,1]],[[7402,9204],[3,7]],[[7405,9211],[-4,3]],[[7401,9214],[-6,-11]],[[7303,9226],[3,3]],[[7311,9238],[-2,4]],[[7309,9242],[-9,-5]],[[7433,9223],[0,16]],[[7433,9239],[-3,2]],[[7430,9241],[-8,-11]],[[7422,9230],[11,-7]],[[7307,9288],[2,-3]],[[7309,9285],[12,8]],[[7319,9297],[-6,-5]],[[7313,9292],[-6,-4]],[[7317,9189],[5,-3]],[[7322,9186],[-2,9]],[[7320,9195],[-3,3]],[[7317,9198],[0,0]],[[7317,9198],[-2,-3]],[[7339,9209],[3,1]],[[7342,9210],[-3,7]],[[7339,9217],[-4,-1]],[[7335,9210],[4,-1]],[[7406,9225],[5,4]],[[7411,9229],[-5,5]],[[7406,9234],[-3,-5]],[[7403,9229],[3,-4]],[[7381,9188],[1,0]],[[7382,9188],[0,7]],[[7382,9195],[-1,6]],[[7381,9201],[-2,-1]],[[7379,9200],[2,-12]],[[7338,9248],[5,4]],[[7343,9252],[-3,8]],[[7340,9260],[-5,-2]],[[7335,9258],[3,-10]],[[7339,9270],[7,-7]],[[7346,9263],[4,4]],[[7350,9267],[-6,9]],[[7344,9276],[-5,-6]],[[7339,9270],[0,0]],[[7402,9277],[1,-1]],[[7403,9276],[3,0]],[[7406,9276],[3,8]],[[7409,9284],[-7,-7]],[[7406,9234],[-2,4]],[[7404,9238],[-2,1]],[[7402,9239],[-2,-12]],[[7400,9227],[3,2]],[[7351,9259],[1,-1]],[[7352,9258],[6,0]],[[7358,9258],[-1,5]],[[7357,9263],[-5,5]],[[7352,9268],[0,-1]],[[7352,9267],[-1,-8]],[[7379,9246],[2,-1]],[[7381,9245],[0,8]],[[7381,9253],[-6,1]],[[7375,9254],[0,-6]],[[7375,9248],[4,-2]],[[7447,9274],[7,-2]],[[7454,9272],[38,16]],[[7492,9288],[-10,24],[-8,0]],[[7474,9312],[-8,-4]],[[7466,9308],[-14,-7]],[[7452,9301],[-5,-27]],[[7328,9246],[2,-7]],[[7330,9239],[6,4]],[[7336,9243],[0,3]],[[7336,9246],[-6,1]],[[7330,9247],[-2,-1]],[[7348,9170],[2,2]],[[7350,9172],[1,2]],[[7351,9174],[1,2]],[[7352,9176],[-1,3]],[[7351,9179],[-5,0]],[[7346,9179],[-2,-1]],[[7344,9178],[4,-8]],[[7338,9165],[2,1]],[[7340,9166],[-4,12]],[[7336,9178],[-1,0]],[[7330,9178],[0,-1]],[[7330,9177],[8,-12]],[[7391,9231],[4,4]],[[7395,9235],[-5,3]],[[7390,9238],[1,-7]],[[7319,9226],[2,-5]],[[7321,9221],[4,3]],[[7325,9224],[-1,5]],[[7324,9229],[-3,-2]],[[7321,9227],[-2,-1]],[[7420,9219],[13,-4]],[[7433,9215],[0,5]],[[7433,9220],[0,3]],[[7422,9230],[-3,-5]],[[7419,9225],[1,-6]],[[7387,9223],[3,6]],[[7390,9229],[1,2]],[[7390,9238],[0,2]],[[7390,9240],[-3,1]],[[7387,9241],[0,-1]],[[7387,9240],[-1,-16]],[[7386,9224],[1,-1]],[[7383,9146],[3,-6]],[[7386,9140],[7,3]],[[7393,9143],[-1,4]],[[7392,9147],[-1,3]],[[7391,9150],[-6,-2]],[[7385,9148],[-2,-2]],[[7324,9241],[0,-1]],[[7324,9240],[3,5]],[[7327,9245],[-2,7]],[[7325,9252],[-4,-3]],[[7321,9249],[3,-8]],[[7363,9223],[3,3]],[[7366,9226],[-3,5]],[[7363,9231],[-5,-5]],[[7358,9226],[1,-6]],[[7359,9220],[4,3]],[[7335,9219],[8,6]],[[7343,9225],[-2,6]],[[7341,9231],[-7,-4]],[[7334,9227],[0,0]],[[7334,9227],[1,-6]],[[7335,9221],[0,-2]],[[7316,9281],[3,-4]],[[7319,9277],[6,4]],[[7325,9281],[-2,7]],[[7323,9288],[-9,-6]],[[7314,9282],[2,-1]],[[7309,9242],[-9,9]],[[7309,9273],[6,-8]],[[7315,9265],[6,10]],[[7321,9275],[-2,2]],[[7316,9281],[-7,-8]],[[7315,9265],[2,-8]],[[7317,9257],[4,-8]],[[7325,9252],[-3,5]],[[7322,9257],[-2,3]],[[7320,9260],[-4,4]],[[7316,9264],[-1,1]],[[7336,9178],[4,0]],[[7340,9178],[-5,8]],[[7335,9186],[-4,-2]],[[7328,9140],[0,-2]],[[7328,9138],[3,-2]],[[7331,9136],[5,4]],[[7336,9140],[-4,8]],[[7328,9143],[0,-3]],[[7391,9201],[7,-5]],[[7398,9196],[4,8]],[[7395,9203],[-2,2]],[[7393,9205],[-2,-4]],[[7384,9267],[5,-1]],[[7389,9266],[-2,5]],[[7387,9271],[-3,-4]],[[7387,9240],[-4,-3]],[[7383,9237],[-1,-12]],[[7382,9225],[4,-1]],[[7350,9267],[2,0]],[[7352,9268],[-5,10]],[[7347,9278],[-3,-2]],[[7331,9277],[4,-4]],[[7335,9273],[4,-3]],[[7339,9270],[-1,5]],[[7338,9275],[-2,10]],[[7336,9285],[-3,0]],[[7333,9285],[-1,-1]],[[7332,9284],[-1,-7]],[[7317,9198],[-4,6]],[[7313,9204],[-2,0]],[[7371,9250],[0,5]],[[7371,9255],[-5,2]],[[7366,9257],[-1,-6]],[[7365,9251],[6,-1]],[[7371,9255],[0,5]],[[7371,9260],[-5,1]],[[7366,9261],[0,-4]],[[7377,9098],[4,-6]],[[7381,9092],[1,8]],[[7382,9100],[1,6]],[[7383,9106],[-5,-1]],[[7378,9105],[-1,-7]],[[7418,9138],[18,-13]],[[7436,9125],[5,4]],[[7441,9129],[-16,12],[0,25]],[[7425,9166],[-5,-6]],[[7420,9160],[-8,-17]],[[7412,9143],[6,-5]],[[7440,9164],[4,12]],[[7444,9176],[-14,5]],[[7430,9181],[10,-17]],[[7363,9223],[4,-8]],[[7367,9215],[3,6]],[[7370,9221],[-2,5]],[[7368,9226],[-2,0]],[[7352,9242],[3,-7]],[[7355,9235],[8,1]],[[7363,9236],[3,2]],[[7366,9238],[-3,6]],[[7363,9244],[-3,4]],[[7360,9248],[-8,-6]],[[7435,9259],[6,5]],[[7441,9264],[2,1]],[[7443,9265],[1,3]],[[7444,9268],[-7,8]],[[7437,9276],[-2,-17]],[[7341,9081],[5,1]],[[7346,9082],[-2,15]],[[7344,9097],[-5,-2]],[[7339,9095],[2,-14]],[[7355,9217],[5,-9]],[[7360,9208],[2,1]],[[7362,9209],[-3,11]],[[7359,9220],[-4,-3]],[[7352,9221],[6,5]],[[7358,9226],[0,2]],[[7358,9228],[-7,-4]],[[7351,9224],[1,-3]],[[7402,9151],[1,-1]],[[7403,9150],[3,-2]],[[7406,9148],[3,13]],[[7409,9161],[-3,-2]],[[7406,9159],[-8,-4]],[[7398,9155],[4,-4]],[[7444,9268],[3,6]],[[7452,9301],[-15,1]],[[7437,9302],[0,-26]],[[7381,9201],[3,3]],[[7384,9204],[3,0]],[[7387,9204],[0,4]],[[7387,9208],[-4,2]],[[7383,9210],[-2,1]],[[7381,9211],[-2,-5]],[[7379,9206],[0,-6]],[[7417,9224],[2,1]],[[7430,9241],[-10,11]],[[7420,9252],[0,0]],[[7420,9252],[-7,-1]],[[7413,9251],[4,-27]],[[7327,9208],[3,-7]],[[7330,9201],[2,3]],[[7332,9204],[2,2]],[[7334,9206],[0,0]],[[7334,9206],[-2,4]],[[7332,9210],[-5,-2]],[[7379,9145],[2,0]],[[7381,9145],[0,14]],[[7381,9159],[-3,0]],[[7378,9159],[1,-14]],[[7343,9237],[1,1]],[[7344,9238],[0,9]],[[7344,9247],[3,4]],[[7347,9251],[-4,1]],[[7338,9248],[5,-11]],[[7395,9187],[0,3]],[[7395,9190],[3,6]],[[7391,9201],[-2,-11]],[[7389,9190],[0,-2]],[[7420,9111],[17,6]],[[7437,9117],[38,16]],[[7475,9133],[-34,-4]],[[7436,9125],[-14,-4]],[[7422,9121],[-2,-10]],[[7352,9195],[2,1]],[[7354,9196],[0,4]],[[7354,9200],[-5,13]],[[7349,9213],[1,-15]],[[7392,9212],[5,7]],[[7397,9219],[3,2]],[[7400,9221],[-13,2]],[[7387,9223],[-2,-2]],[[7385,9221],[-1,-6]],[[7384,9215],[8,-3]],[[7395,9235],[3,-10]],[[7398,9225],[2,0]],[[7400,9225],[0,2]],[[7402,9239],[-11,2]],[[7391,9241],[-1,-1]],[[7319,9215],[1,0]],[[7320,9215],[5,4]],[[7325,9219],[0,5]],[[7321,9221],[-2,-1]],[[7319,9220],[0,-5]],[[7336,9246],[2,2]],[[7335,9258],[-2,7]],[[7333,9265],[-2,-1]],[[7331,9264],[-4,-5]],[[7327,9259],[3,-12]],[[7350,9260],[1,-1]],[[7346,9263],[4,-3]],[[7365,9273],[18,26]],[[7387,9317],[-20,-17],[-11,-24]],[[7356,9276],[9,-3]],[[7401,9140],[3,-7]],[[7404,9133],[1,-1]],[[7405,9132],[4,2]],[[7409,9134],[3,9]],[[7412,9143],[-6,5]],[[7403,9150],[-2,-8]],[[7401,9142],[0,-2]],[[7313,9235],[3,-4]],[[7316,9231],[1,3]],[[7317,9234],[4,1]],[[7321,9235],[-2,3]],[[7319,9238],[-2,3]],[[7317,9241],[-4,-2]],[[7313,9239],[0,-4]],[[7336,9243],[3,-5]],[[7339,9238],[1,-2]],[[7340,9236],[3,1]],[[7390,9103],[-3,5]],[[7387,9108],[-4,-2]],[[7382,9100],[8,3]],[[7317,9129],[4,1]],[[7321,9130],[2,1]],[[7323,9131],[-6,8]],[[7317,9139],[0,-10]],[[7333,9074],[3,2]],[[7336,9076],[-4,23]],[[7332,9099],[-4,-1]],[[7328,9098],[5,-24]],[[7363,9244],[8,0]],[[7371,9244],[0,5]],[[7371,9249],[0,1]],[[7365,9251],[-5,0]],[[7360,9251],[0,-3]],[[7352,9242],[0,0]],[[7360,9251],[0,11]],[[7360,9262],[-3,1]],[[7358,9258],[1,-5]],[[7359,9253],[-7,-6]],[[7352,9247],[-3,0]],[[7349,9247],[3,-5]],[[7367,9154],[2,-1]],[[7369,9153],[4,3]],[[7373,9156],[-11,13]],[[7362,9169],[0,-1]],[[7362,9168],[1,-10]],[[7363,9158],[4,-4]],[[7418,9138],[-4,-11]],[[7414,9127],[0,-4]],[[7414,9123],[8,-2]],[[7322,9257],[5,2]],[[7331,9264],[-6,0]],[[7325,9264],[-5,-4]],[[7411,9229],[3,-4]],[[7414,9225],[3,-1]],[[7413,9251],[-1,0]],[[7412,9251],[-3,0]],[[7409,9251],[-3,-2]],[[7406,9249],[-2,-11]],[[7343,9284],[4,-6]],[[7352,9268],[4,8]],[[7387,9317],[-4,8]],[[7383,9325],[-32,-16]],[[7351,9309],[-15,-18]],[[7336,9291],[7,-7]],[[7420,9252],[-1,46],[9,7]],[[7428,9305],[-6,3]],[[7422,9308],[-11,2]],[[7411,9310],[-2,-26]],[[7406,9276],[-1,-14]],[[7405,9262],[7,-11]],[[7377,9235],[6,2]],[[7387,9241],[0,1]],[[7387,9242],[-6,3]],[[7379,9246],[-2,-11]],[[7313,9239],[0,15]],[[7313,9254],[-4,13]],[[7309,9267],[-2,5]],[[7307,9272],[-6,9]],[[7307,9272],[2,1]],[[7314,9282],[-5,3]],[[7307,9288],[-2,3]],[[7305,9291],[-4,4]],[[7392,9256],[3,-1]],[[7395,9255],[2,7]],[[7397,9262],[-8,4]],[[7384,9267],[-5,-9]],[[7379,9258],[13,-2]],[[7427,9193],[3,15]],[[7430,9208],[-2,-1]],[[7428,9207],[-6,-1]],[[7422,9206],[5,-13]],[[7371,9150],[2,-7]],[[7373,9143],[4,1]],[[7377,9144],[-6,6]],[[7378,9144],[-1,0]],[[7373,9143],[-3,-3]],[[7370,9140],[-5,-5]],[[7365,9135],[13,9]],[[7362,9209],[5,6]],[[7443,9265],[11,7]],[[7374,9235],[3,0]],[[7375,9248],[-1,-13]],[[7347,9251],[1,4]],[[7348,9255],[0,6]],[[7348,9261],[-8,-1]],[[7370,9234],[4,1]],[[7375,9248],[-4,1]],[[7371,9244],[-4,-6]],[[7367,9238],[3,-4]],[[7339,9217],[9,1]],[[7348,9218],[-1,2]],[[7347,9220],[-4,5]],[[7335,9219],[0,-3]],[[7352,9247],[0,7]],[[7352,9254],[-4,1]],[[7344,9247],[5,0]],[[7430,9241],[5,7]],[[7435,9248],[-8,7]],[[7427,9255],[-7,-3]],[[7305,9291],[6,5]],[[7311,9296],[6,5]],[[7317,9301],[7,2]],[[7330,9298],[1,0]],[[7331,9298],[5,-7]],[[7351,9309],[-10,19]],[[7341,9328],[-16,-8]],[[7408,9095],[6,-3]],[[7414,9092],[3,10]],[[7417,9102],[-6,3]],[[7411,9105],[-3,1]],[[7408,9106],[-2,-8]],[[7406,9098],[2,-3]],[[7395,9110],[3,-9]],[[7398,9101],[5,-10]],[[7403,9091],[5,4]],[[7406,9098],[-6,11]],[[7400,9109],[-2,5]],[[7398,9114],[-3,-2]],[[7395,9112],[0,-2]],[[7348,9170],[2,-3]],[[7350,9167],[2,-5]],[[7352,9162],[2,1]],[[7354,9163],[-4,9]],[[7342,9210],[5,-15]],[[7349,9213],[1,0]],[[7350,9213],[-2,5]],[[7410,9162],[2,2]],[[7412,9164],[8,7]],[[7420,9171],[-6,1]],[[7414,9172],[-3,0]],[[7411,9172],[-5,0]],[[7406,9172],[4,-10]],[[7406,9159],[-2,13]],[[7404,9172],[-4,0]],[[7400,9172],[-3,0]],[[7397,9172],[-2,-13]],[[7395,9159],[0,-6]],[[7395,9153],[3,2]],[[7336,9076],[2,-6]],[[7338,9070],[4,2]],[[7342,9072],[-1,9]],[[7339,9095],[-7,4]],[[7343,9193],[0,1]],[[7343,9194],[4,1]],[[7339,9209],[4,-16]],[[7455,9230],[9,-4],[15,-44],[24,0],[21,9]],[[7498,9245],[-43,-15]],[[7319,9297],[-2,4]],[[7311,9296],[2,-4]],[[7375,9254],[1,5]],[[7376,9259],[-2,0]],[[7374,9259],[-3,1]],[[7406,9249],[-11,-6]],[[7395,9243],[-4,-2]],[[7354,9200],[4,4]],[[7358,9204],[-6,11]],[[7352,9215],[-2,-2]],[[7444,9236],[11,-6]],[[7455,9230],[0,0]],[[7498,9246],[-49,11],[-6,-5]],[[7439,9244],[-2,-6]],[[7437,9238],[7,-2]],[[7355,9235],[2,-5]],[[7357,9230],[1,-2]],[[7363,9231],[0,5]],[[7360,9262],[5,11]],[[7334,9206],[5,-11]],[[7339,9195],[1,-3]],[[7340,9192],[-4,16]],[[7336,9208],[-2,-2]],[[7317,9206],[4,-5]],[[7321,9201],[1,3]],[[7322,9204],[-7,7]],[[7315,9211],[2,-5]],[[7309,9267],[6,-12]],[[7315,9255],[2,2]],[[7339,9095],[-1,26]],[[7338,9121],[-2,5]],[[7336,9126],[-5,-5]],[[7331,9121],[-1,-1]],[[7330,9120],[2,-21]],[[7393,9172],[4,0]],[[7400,9172],[0,15]],[[7400,9187],[-5,0]],[[7392,9172],[1,0]],[[7346,9179],[-2,7]],[[7344,9186],[-1,-1]],[[7343,9185],[1,-7]],[[7325,9205],[5,-4]],[[7327,9208],[-4,7]],[[7323,9215],[-3,0]],[[7319,9215],[1,-2]],[[7320,9213],[5,-8]],[[7403,9220],[3,-7]],[[7406,9213],[4,-8]],[[7410,9205],[0,3]],[[7410,9208],[4,17]],[[7406,9225],[-3,-5]],[[7351,9174],[5,-9]],[[7356,9165],[3,6]],[[7359,9171],[-7,5]],[[7354,9163],[2,2]],[[7350,9159],[2,3]],[[7350,9167],[-4,-3]],[[7346,9164],[4,-5]],[[7343,9194],[3,-7]],[[7346,9187],[6,-7]],[[7352,9180],[0,0]],[[7340,9192],[1,-3]],[[7341,9189],[2,-4]],[[7344,9186],[2,1]],[[7343,9193],[-3,-1]],[[7378,9172],[4,0]],[[7382,9172],[0,9]],[[7382,9181],[-4,-1]],[[7378,9180],[0,-8]],[[7409,9251],[-14,3]],[[7395,9254],[0,-7]],[[7395,9247],[0,-4]],[[7317,9241],[-1,5]],[[7316,9246],[-3,8]],[[7389,9190],[-2,14]],[[7384,9204],[1,-9]],[[7385,9195],[4,-5]],[[7344,9238],[8,-5]],[[7352,9233],[0,9]],[[7370,9221],[9,-15]],[[7381,9211],[-2,6]],[[7379,9217],[-5,10]],[[7374,9227],[-6,-1]],[[7340,9260],[0,8]],[[7340,9268],[-6,-2]],[[7334,9266],[-1,-1]],[[7374,9227],[1,0]],[[7375,9227],[-5,7]],[[7367,9238],[-1,0]],[[7340,9268],[-1,2]],[[7335,9273],[-1,-7]],[[7370,9140],[-1,3]],[[7369,9143],[-9,-1]],[[7360,9142],[-1,1]],[[7359,9143],[-2,-9]],[[7357,9134],[0,-3]],[[7357,9131],[8,4]],[[7397,9129],[7,4]],[[7401,9140],[-6,-3]],[[7395,9137],[2,-8]],[[7385,9148],[0,11]],[[7385,9159],[-3,0]],[[7382,9159],[-1,0]],[[7381,9145],[2,1]],[[7382,9181],[0,7]],[[7381,9188],[-3,-8]],[[7317,9066],[16,8]],[[7328,9098],[-7,32]],[[7317,9129],[-13,-9]],[[7304,9120],[13,-54]],[[7323,9131],[2,8]],[[7325,9139],[3,1]],[[7314,9145],[3,-6]],[[7298,9136],[6,-16]],[[7455,9206],[0,24]],[[7444,9236],[-3,-27]],[[7441,9209],[14,-3]],[[7437,9238],[-4,1]],[[7433,9220],[8,-11]],[[7341,9149],[2,14]],[[7343,9163],[-5,-2]],[[7338,9161],[3,-12]],[[7343,9163],[-3,3]],[[7338,9165],[-2,-2]],[[7336,9163],[2,-2]],[[7328,9193],[-1,2]],[[7327,9195],[-2,2]],[[7325,9197],[-4,-2]],[[7321,9195],[7,-2]],[[7320,9195],[1,0]],[[7325,9197],[-3,7]],[[7321,9201],[-4,-3]],[[7319,9060],[19,10]],[[7317,9066],[2,-6]],[[7393,9118],[2,-6]],[[7398,9114],[3,2]],[[7401,9116],[-1,6]],[[7400,9122],[-7,-4]],[[7408,9106],[-2,1]],[[7406,9107],[-6,2]],[[7405,9132],[1,-6]],[[7406,9126],[0,-2]],[[7406,9124],[8,-1]],[[7414,9127],[-5,7]],[[7390,9159],[-1,13]],[[7389,9172],[-3,0]],[[7386,9172],[0,-13]],[[7386,9159],[4,0]],[[7389,9188],[-4,0]],[[7385,9188],[1,-16]],[[7379,9145],[3,-9]],[[7382,9136],[4,2]],[[7386,9138],[0,2]],[[7335,9148],[7,0]],[[7342,9148],[-1,1]],[[7336,9163],[-3,-8]],[[7333,9155],[2,-7]],[[7443,9252],[-2,12]],[[7441,9264],[-2,-8]],[[7391,9150],[4,3]],[[7395,9159],[-2,0]],[[7393,9159],[-3,0]],[[7390,9159],[1,-9]],[[7328,9215],[0,5]],[[7328,9220],[-3,-1]],[[7325,9219],[2,-4]],[[7332,9155],[1,0]],[[7336,9163],[-6,14]],[[7330,9178],[-7,0]],[[7342,9179],[2,-1]],[[7341,9189],[-2,-1]],[[7339,9188],[3,-9]],[[7382,9188],[3,0]],[[7385,9195],[-3,0]],[[7324,9229],[-3,5]],[[7321,9234],[0,1]],[[7317,9234],[4,-7]],[[7316,9231],[3,-5]],[[7390,9229],[8,-4]],[[7400,9221],[0,4]],[[7317,9206],[-4,-2]],[[7315,9211],[0,1]],[[7315,9212],[-2,4]],[[7313,9216],[-1,0]],[[7312,9216],[-6,-1]],[[7315,9255],[2,-8]],[[7317,9247],[2,1]],[[7319,9248],[2,1]],[[7316,9246],[1,1]],[[7315,9255],[-2,-1]],[[7319,9238],[2,1]],[[7321,9239],[-2,9]],[[7321,9239],[3,2]],[[7324,9229],[3,2]],[[7327,9231],[-2,5]],[[7325,9236],[-4,-2]],[[7414,9172],[0,16]],[[7414,9188],[-2,-1]],[[7412,9187],[-1,-15]],[[7412,9187],[-6,-1]],[[7406,9186],[0,-14]],[[7385,9159],[1,0]],[[7386,9172],[-4,0]],[[7382,9172],[0,-13]],[[7395,9085],[5,-8]],[[7400,9077],[0,6]],[[7400,9083],[5,0]],[[7405,9083],[-2,8]],[[7398,9101],[-6,-4]],[[7392,9097],[-1,0]],[[7391,9097],[4,-12]],[[7400,9122],[6,4]],[[7397,9129],[3,-7]],[[7430,9183],[0,-2]],[[7444,9176],[11,30]],[[7433,9215],[-3,-7]],[[7427,9193],[3,-10]],[[7404,9172],[2,0]],[[7406,9186],[-3,0]],[[7403,9186],[1,-14]],[[7339,9139],[5,5]],[[7344,9144],[-2,4]],[[7335,9148],[4,-9]],[[7325,9236],[-1,4]],[[7327,9231],[1,1]],[[7328,9232],[6,-5]],[[7334,9227],[0,2]],[[7334,9229],[-2,5]],[[7332,9234],[-2,5]],[[7330,9239],[-5,-3]],[[7328,9246],[-1,-1]],[[7334,9229],[6,7]],[[7339,9238],[-7,-4]],[[7435,9259],[-8,-4]],[[7348,9261],[2,-1]],[[7325,9184],[-3,2]],[[7316,9264],[8,6]],[[7324,9270],[-3,5]],[[7406,9115],[7,-2]],[[7413,9113],[5,-2]],[[7418,9111],[2,0]],[[7406,9124],[-3,-7]],[[7403,9117],[3,-2]],[[7411,9105],[2,8]],[[7406,9115],[0,-8]],[[7352,9162],[4,-4]],[[7356,9158],[2,2]],[[7358,9160],[4,8]],[[7362,9168],[-3,3]],[[7401,9214],[-3,4]],[[7398,9218],[-5,-13]],[[7347,9220],[4,4]],[[7357,9230],[-5,3]],[[7340,9236],[1,-5]],[[7406,9202],[-4,2]],[[7395,9190],[11,12]],[[7420,9171],[10,10]],[[7430,9183],[-10,6]],[[7420,9189],[-6,-1]],[[7425,9166],[5,15]],[[7412,9164],[8,-4]],[[7400,9187],[3,-1]],[[7420,9189],[-10,19]],[[7410,9205],[-4,-3]],[[7374,9259],[-9,14]],[[7360,9262],[6,-1]],[[7404,9172],[0,0]],[[7405,9083],[5,3]],[[7410,9086],[4,6]],[[7384,9267],[-6,1]],[[7378,9268],[-1,-9]],[[7377,9259],[2,-1]],[[7325,9281],[2,2]],[[7327,9283],[1,10]],[[7328,9293],[-6,-4]],[[7322,9289],[1,-1]],[[7344,9074],[7,3]],[[7351,9077],[7,4]],[[7358,9081],[11,4]],[[7369,9085],[12,7]],[[7381,9092],[0,0]],[[7377,9098],[1,7]],[[7387,9108],[3,1]],[[7390,9109],[-3,6]],[[7387,9115],[-1,8]],[[7386,9123],[-2,8]],[[7384,9131],[-2,5]],[[7379,9145],[-1,-1]],[[7357,9131],[-9,-2]],[[7348,9129],[-2,-1]],[[7346,9128],[-5,-1]],[[7341,9127],[3,-9]],[[7344,9118],[0,-21]],[[7346,9082],[-2,-8]],[[7328,9189],[0,4]],[[7378,9144],[-5,12]],[[7369,9153],[2,-3]],[[7397,9219],[1,-1]],[[7405,9211],[1,2]],[[7403,9220],[-3,1]],[[7378,9172],[0,-13]],[[7336,9140],[3,-7]],[[7339,9133],[2,-6]],[[7346,9128],[-7,11]],[[7390,9103],[2,-6]],[[7395,9110],[-5,-1]],[[7381,9092],[6,3]],[[7387,9095],[4,2]],[[7352,9181],[7,5]],[[7359,9186],[-3,6]],[[7356,9192],[-2,4]],[[7330,9120],[-7,11]],[[7322,9204],[3,1]],[[7320,9213],[-5,-1]],[[7348,9218],[4,3]],[[7332,9204],[4,-9]],[[7336,9195],[3,0]],[[7381,9253],[6,-2]],[[7387,9251],[3,0]],[[7390,9251],[2,5]],[[7377,9259],[-1,0]],[[7328,9220],[7,1]],[[7328,9232],[0,-12]],[[7344,9165],[2,-1]],[[7348,9170],[-4,-3]],[[7344,9167],[0,-2]],[[7401,9116],[2,1]],[[7475,9133],[12,5]],[[7487,9138],[3,2]],[[7490,9140],[40,18]],[[7440,9164],[1,-35]],[[7340,9192],[0,0]],[[7336,9195],[0,-1]],[[7336,9194],[3,-6]],[[7367,9154],[2,-11]],[[7319,9215],[-6,1]],[[7331,9136],[8,-3]],[[7387,9133],[0,-1]],[[7387,9132],[3,-6]],[[7390,9126],[7,3]],[[7395,9137],[-8,-4]],[[7393,9205],[-3,3]],[[7390,9208],[-3,0]],[[7343,9163],[1,2]],[[7344,9167],[-4,11]],[[7383,9210],[1,5]],[[7385,9221],[-6,-4]],[[7393,9172],[0,-13]],[[7351,9179],[1,1]],[[7340,9178],[2,1]],[[7336,9194],[-2,-2]],[[7334,9192],[1,-6]],[[7338,9275],[5,9]],[[7336,9291],[0,-6]],[[7397,9262],[0,2]],[[7397,9264],[1,13]],[[7398,9277],[-6,2]],[[7389,9280],[-2,-9]],[[7387,9242],[0,9]],[[7344,9144],[6,-9]],[[7350,9135],[7,-1]],[[7359,9143],[-5,12]],[[7354,9155],[-4,4]],[[7401,9142],[-8,1]],[[7393,9143],[2,-6]],[[7428,9207],[-8,11]],[[7420,9218],[2,-12]],[[7387,9115],[6,3]],[[7393,9118],[-2,6]],[[7391,9124],[-5,-1]],[[7348,9129],[2,6]],[[7354,9155],[2,3]],[[7401,9263],[2,13]],[[7402,9277],[-4,0]],[[7397,9264],[4,-1]],[[7378,9268],[4,13]],[[7492,9286],[0,2]],[[7359,9186],[4,3]],[[7363,9189],[-1,7]],[[7362,9196],[-6,-4]],[[7327,9215],[-4,0]],[[7321,9293],[1,-4]],[[7328,9293],[3,1]],[[7331,9294],[0,4]],[[7420,9219],[0,-1]],[[7411,9310],[-9,2]],[[7402,9312],[-4,1]],[[7390,9126],[1,-2]],[[7384,9131],[3,1]],[[7387,9133],[-1,5]],[[7356,9158],[4,-14]],[[7360,9144],[3,12]],[[7363,9156],[-5,4]],[[7360,9142],[0,2]],[[7362,9169],[3,21]],[[7365,9190],[-2,-1]],[[7344,9118],[-6,3]],[[7328,9138],[8,-12]],[[7352,9215],[3,2]],[[7355,9217],[-3,4]],[[7390,9208],[2,4]],[[7313,9216],[1,10]],[[7314,9226],[-1,5]],[[7308,9229],[4,-13]],[[7352,9258],[4,-3]],[[7356,9255],[3,-2]],[[7327,9283],[5,1]],[[7333,9285],[-2,9]],[[7363,9156],[0,2]],[[7392,9147],[10,4]],[[7375,9227],[7,-2]],[[7417,9102],[1,9]],[[7358,9204],[4,-8]],[[7365,9190],[-3,19]],[[7360,9208],[-2,-4]],[[7334,9192],[-2,5]],[[7332,9197],[-5,-2]],[[7342,9072],[2,2]],[[7339,9209],[-3,-1]],[[7395,9247],[-5,4]],[[7405,9262],[-4,1]],[[7395,9255],[0,-1]],[[7330,9201],[2,-4]],[[7437,9302],[-5,3]],[[7432,9305],[-4,0]],[[7383,9325],[-5,14]],[[7378,9339],[-18,1]],[[7360,9340],[-19,-12]],[[7352,9254],[4,1]],[[7409,9161],[1,1]],[[7325,9139],[6,-18]],[[7325,9281],[0,-4]],[[7325,9277],[6,0]],[[7314,9226],[5,-6]],[[7325,9264],[-1,6]],[[7325,9277],[6,-13]],[[4687,6432],[28,-12],[14,1],[2,20]],[[4731,6441],[5,26],[14,2]],[[4750,6469],[2,15]],[[4752,6484],[-10,1]],[[4742,6485],[-17,-10],[-31,26]],[[4694,6501],[-4,-17]],[[4690,6484],[-1,-12]],[[4689,6472],[-6,-30]],[[4683,6442],[4,-10]],[[4684,6383],[97,-7]],[[4781,6376],[11,0],[0,47]],[[4792,6423],[-15,4]],[[4777,6427],[-15,-21],[-17,0],[-14,35]],[[4687,6432],[7,-26],[-10,-1]],[[4684,6405],[0,-22]],[[4882,5818],[2,47],[13,107]],[[4897,5972],[2,38]],[[4899,6010],[-81,9],[-84,4]],[[4734,6023],[-3,-131],[-3,-62]],[[4728,5830],[66,-4],[88,-8]],[[5297,6300],[142,0]],[[5513,6726],[-242,1]],[[5271,6727],[-3,-267]],[[5268,6460],[4,-29],[24,-1],[1,-130]],[[4587,6063],[79,-2],[4,-35],[64,-3]],[[4734,6023],[6,192]],[[4740,6215],[-39,1],[1,-33],[-19,-8],[0,-16],[-72,3]],[[4611,6162],[-9,-45],[-16,1],[-8,-33],[10,0],[-1,-22]],[[4549,5829],[90,-3]],[[4639,5826],[45,-2],[1,8],[43,-2]],[[4587,6063],[-16,-33],[-6,-41],[10,0],[-7,-65],[-10,0],[3,-30],[-5,-46],[-7,-19]],[[4942,6401],[39,-4]],[[4981,6397],[6,50]],[[4987,6447],[-5,30],[8,3],[19,127],[8,1],[0,39],[7,1],[0,38],[10,0],[0,44]],[[5034,6730],[-25,0]],[[5009,6730],[-6,-16],[-36,-46],[-12,-33],[5,-11],[-5,-46],[-15,-31],[-12,-2],[0,-19],[-24,-21],[-15,-5]],[[4889,6500],[-1,-29],[-20,3]],[[4868,6474],[-3,-63]],[[4865,6411],[77,-10]],[[4908,6210],[9,-17]],[[4917,6193],[20,-11],[103,0]],[[5040,6182],[0,146],[-67,1],[8,68]],[[4942,6401],[-22,-30],[-20,4]],[[4900,6375],[8,-3],[19,-39],[-4,-19]],[[4923,6314],[-3,-20],[-19,-40],[0,-25],[7,-19]],[[4839,6413],[9,-33]],[[4848,6380],[19,-17],[33,12]],[[4865,6411],[-26,2]],[[4792,6423],[46,-4],[1,-6]],[[4868,6474],[-9,0]],[[4859,6474],[-14,-25]],[[4845,6449],[-16,18]],[[4829,6467],[-12,1],[0,-15],[-17,-14],[1,22],[9,10],[-25,1]],[[4785,6472],[-6,1]],[[4779,6473],[-1,-27]],[[4778,6446],[-1,-19]],[[4879,6505],[5,-3]],[[4884,6502],[5,-2]],[[5009,6730],[-136,-2]],[[4873,6728],[-1,-41],[-6,0],[-4,-96],[27,-2],[-10,-84]],[[5040,6182],[20,3],[104,-2]],[[5164,6183],[2,116],[131,1]],[[5268,6460],[-70,1],[-17,-14],[-24,9],[-87,1],[-1,-11],[-82,1]],[[4776,6524],[1,18]],[[4777,6542],[1,4]],[[4778,6546],[-12,23],[-32,7]],[[4734,6576],[-2,-29],[10,-30],[34,7]],[[4763,6213],[54,-4]],[[4817,6209],[2,17],[20,56],[-5,43],[11,48]],[[4845,6373],[3,7]],[[4781,6376],[-3,-69],[-18,1],[-4,-52],[7,-43]],[[4845,6373],[16,-16],[21,-43],[41,0]],[[4817,6209],[83,-6],[8,7]],[[4777,6542],[21,-1],[3,28],[12,-2]],[[4813,6567],[23,-3],[-1,-23]],[[4835,6541],[13,-6],[29,-28]],[[4877,6507],[2,-2]],[[4873,6728],[-109,-1]],[[4764,6727],[2,-50],[-3,-101],[15,-1],[0,-29]],[[4828,6523],[39,-17],[10,1]],[[4835,6541],[-7,-18]],[[4828,6520],[0,3]],[[4813,6567],[4,-44]],[[4817,6523],[11,-3]],[[4799,6534],[16,-10]],[[4815,6524],[2,-1]],[[4776,6524],[0,-5]],[[4776,6519],[23,15]],[[4774,6495],[24,12]],[[4798,6507],[1,27]],[[4776,6519],[-2,-24]],[[4797,6499],[19,11]],[[4816,6510],[-1,14]],[[4798,6507],[-1,-8]],[[4809,6498],[10,0]],[[4819,6498],[-3,12]],[[4797,6499],[-8,-13]],[[4789,6486],[20,12]],[[4819,6498],[10,1]],[[4829,6499],[3,11],[-16,0]],[[4829,6499],[16,0]],[[4845,6499],[4,1]],[[4849,6500],[-21,20]],[[4849,6500],[6,2]],[[4855,6502],[29,0]],[[4855,6502],[4,-28]],[[5271,6727],[-71,0],[-166,3]],[[4661,6585],[5,-1]],[[4666,6584],[7,27],[39,-7],[8,-19],[14,-9]],[[4764,6727],[-185,1]],[[4579,6728],[0,-98]],[[4579,6630],[13,-1],[5,-21],[9,18],[24,-6],[5,-22],[26,-13]],[[4579,6560],[15,7],[10,-24],[15,-1],[14,-14]],[[4633,6528],[-1,21],[27,21],[2,15]],[[4579,6630],[-1,-6]],[[4578,6624],[-3,-61]],[[4575,6563],[4,-3]],[[4633,6528],[33,-19]],[[4666,6509],[26,-6]],[[4692,6503],[8,49],[-8,16],[-26,16]],[[4740,6215],[23,-2]],[[4684,6383],[-32,0],[0,8],[-41,2],[0,-5],[-42,3]],[[4569,6391],[-3,-70]],[[4566,6321],[37,-3],[7,-95],[-7,-10],[-12,-49],[20,-2]],[[4845,6499],[-1,-16]],[[4844,6483],[1,-34]],[[4829,6473],[15,10]],[[4819,6498],[10,-25]],[[4829,6473],[0,-6]],[[4692,6503],[2,-2]],[[4742,6485],[10,19],[24,15]],[[4778,6446],[-19,2],[2,22]],[[4761,6470],[-11,-1]],[[4752,6484],[22,4]],[[4774,6488],[0,7]],[[4780,6480],[-6,8]],[[4752,6484],[28,-4]],[[4761,6470],[19,8]],[[4780,6478],[0,2]],[[4809,6498],[0,-18],[-24,-8]],[[4789,6486],[-9,-8]],[[4780,6478],[-1,-5]],[[4899,6010],[8,149],[10,34]],[[4689,6472],[-26,2]],[[4663,6474],[-1,-36],[21,4]],[[4690,6484],[-25,2]],[[4665,6486],[-3,-12]],[[4662,6474],[1,0]],[[4666,6509],[-3,-7]],[[4663,6502],[-1,-11]],[[4662,6491],[3,-5]],[[4628,6495],[5,3]],[[4633,6498],[11,0]],[[4644,6498],[1,18]],[[4645,6516],[-27,7]],[[4618,6523],[10,-28]],[[4644,6498],[18,-7]],[[4663,6502],[-18,14]],[[4633,6498],[0,-18],[17,-14],[12,8]],[[4579,6560],[24,-35],[15,-2]],[[4628,6495],[0,-10]],[[4628,6485],[16,-79],[40,-1]],[[4628,6485],[-30,-15],[-26,10]],[[4572,6480],[-3,-89]],[[4575,6563],[0,0]],[[4575,6563],[-3,-83]],[[7868,779],[17,8],[17,-19]],[[7902,768],[0,25],[16,-10]],[[7918,783],[85,-8]],[[8003,775],[1,22],[-17,45],[7,13],[-10,18]],[[7984,873],[-124,22],[-12,-13]],[[7848,882],[-7,-94]],[[7841,788],[27,-9]],[[7888,755],[2,-14]],[[7890,741],[12,6]],[[7902,747],[0,21]],[[7868,779],[20,-24]],[[7821,732],[41,-4]],[[7862,728],[6,51]],[[7841,788],[-13,2],[-24,-25]],[[7804,765],[2,-30],[15,-3]],[[7643,661],[78,-14],[62,-8]],[[7783,639],[7,11],[1,34],[16,4],[-3,11],[17,33]],[[7804,765],[-19,-35],[-27,6],[-14,-9],[0,-13],[-14,6],[-12,-12],[-11,18],[-26,2],[-42,13]],[[7639,741],[-5,-4],[-7,-74]],[[7627,663],[16,-2]],[[7905,721],[20,-11]],[[7925,710],[-7,73]],[[7902,747],[3,-26]],[[7888,723],[17,-2]],[[7890,741],[-6,-18]],[[7884,723],[4,0]],[[7888,755],[-10,-9],[6,-23]],[[7880,703],[8,20]],[[7862,728],[2,-23],[16,-2]],[[7880,703],[19,-11],[-1,-14],[24,-14],[8,12],[-5,34]],[[8025,592],[-15,33],[1,92],[5,13],[-12,24],[-1,21]],[[7783,639],[81,-6],[24,-4],[137,-37]],[[7848,882],[-122,20],[-67,9]],[[7659,911],[-20,-170]],[[7447,30],[16,107],[36,334],[7,31],[4,43],[117,-16]],[[7627,529],[16,132]],[[7627,663],[-65,13],[-65,7],[-124,22],[-112,22]],[[7261,727],[-3,-27],[-25,3],[-9,-130],[-16,-156],[0,-90]],[[7208,327],[-1,-46],[-12,-97],[-13,-138]],[[7182,46],[191,-14],[74,-2]],[[7816,237],[20,3],[24,14],[111,-20],[1,5],[71,-13]],[[8043,226],[-18,21],[-8,24],[-13,74],[-12,19],[2,43],[13,21]],[[8007,428],[-27,32],[-176,34]],[[7804,494],[-21,-162],[-10,-12],[1,-83],[42,0]],[[7816,237],[2,-217]],[[7818,20],[102,-5],[119,-5],[-16,55],[3,15],[19,37],[-2,109]],[[7659,911],[-107,22],[21,182],[89,-16]],[[7662,1099],[23,172]],[[7328,1334],[-12,-170],[-16,-163],[-16,4],[-11,-132]],[[7273,873],[-12,-146]],[[8015,1030],[29,38]],[[7662,1099],[228,-42],[16,-16],[11,12],[98,-23]],[[7984,873],[-4,36],[8,9],[8,35],[-6,16],[8,31],[17,30]],[[7804,494],[-177,35]],[[7447,30],[29,-1],[146,1],[196,-10]],[[8007,428],[19,18],[23,37],[2,41],[-14,23],[-12,45]],[[1262,4788],[21,5]],[[1283,4793],[-2,20],[24,9]],[[1305,4822],[0,2]],[[1305,4824],[-37,-1],[-6,9]],[[1262,4832],[-5,-23]],[[1257,4809],[5,-21]],[[1359,4784],[23,0],[2,-18]],[[1384,4766],[0,10],[27,-6],[21,8],[28,1],[2,13],[21,5]],[[1483,4797],[0,27]],[[1483,4824],[0,7]],[[1483,4831],[-78,0]],[[1405,4831],[-46,2]],[[1359,4833],[0,-49]],[[1210,4738],[15,-11]],[[1225,4727],[6,-16]],[[1231,4711],[31,-7]],[[1262,4704],[0,19]],[[1262,4723],[0,22]],[[1262,4745],[-16,2]],[[1246,4747],[-21,5]],[[1225,4752],[-19,4]],[[1206,4756],[0,-18]],[[1206,4738],[4,0]],[[1262,4693],[0,11]],[[1231,4711],[0,-10]],[[1231,4701],[31,-8]],[[1262,4645],[0,35]],[[1262,4680],[-14,1]],[[1248,4681],[0,-37]],[[1248,4644],[14,1]],[[1237,4644],[11,0]],[[1248,4681],[-23,-1]],[[1225,4680],[0,-19]],[[1225,4661],[12,-17]],[[1483,4693],[0,104]],[[1384,4766],[0,-6]],[[1384,4760],[0,-41]],[[1384,4719],[31,-6],[68,-20]],[[1190,4703],[8,0]],[[1198,4703],[2,28]],[[1200,4731],[-9,0]],[[1191,4731],[-4,0]],[[1187,4731],[3,-28]],[[1180,4815],[24,0]],[[1204,4815],[0,16]],[[1204,4831],[-12,2],[-14,-12]],[[1178,4821],[2,-6]],[[1125,5051],[13,-16],[37,0]],[[1175,5035],[0,18],[-34,28]],[[1141,5081],[-4,3]],[[1137,5084],[-12,-33]],[[1253,4552],[28,0]],[[1281,4552],[0,28]],[[1281,4580],[-31,1]],[[1250,4581],[-6,-17],[9,-12]],[[1334,4532],[0,24]],[[1334,4556],[-53,-4]],[[1281,4552],[0,-25]],[[1281,4527],[18,5],[35,0]],[[1334,4481],[0,51]],[[1334,4532],[0,0]],[[1281,4527],[2,-50]],[[1283,4477],[6,4],[45,0]],[[1209,4935],[5,29]],[[1214,4964],[-5,0]],[[1209,4964],[-9,0]],[[1200,4964],[-8,-27]],[[1192,4937],[17,-2]],[[1334,4556],[0,24]],[[1334,4580],[-53,0]],[[1415,4631],[68,1]],[[1483,4632],[0,61]],[[1384,4719],[-6,-4]],[[1378,4715],[0,-17],[-19,-18],[-25,-3]],[[1334,4677],[0,-8]],[[1334,4669],[0,-28]],[[1334,4641],[0,-13]],[[1334,4628],[81,3]],[[1397,4501],[0,32]],[[1397,4533],[-63,-1]],[[1334,4481],[0,-23]],[[1334,4458],[0,-23]],[[1334,4435],[56,2],[0,61],[7,3]],[[1397,4533],[0,66]],[[1397,4599],[-32,-19],[-31,0]],[[1284,4686],[50,-17]],[[1334,4677],[0,10]],[[1334,4687],[-18,4],[-1,14]],[[1315,4705],[-34,0]],[[1281,4705],[3,-19]],[[1210,4889],[25,19]],[[1235,4908],[8,25],[-8,31]],[[1235,4964],[-21,0]],[[1209,4935],[-6,-32]],[[1203,4903],[1,-17]],[[1204,4886],[6,3]],[[1214,4850],[0,26]],[[1214,4876],[-5,-3]],[[1209,4873],[-5,-28]],[[1204,4845],[10,5]],[[1085,4760],[5,8]],[[1090,4768],[17,31]],[[1107,4799],[0,11]],[[1107,4810],[-20,-9]],[[1087,4801],[3,-6],[-18,-29]],[[1072,4766],[13,-6]],[[1149,4664],[20,0]],[[1169,4664],[-6,25]],[[1163,4689],[-11,12]],[[1152,4701],[0,-9]],[[1152,4692],[-3,-28]],[[1262,4907],[3,22]],[[1265,4929],[1,20],[-14,0],[-9,16]],[[1243,4965],[-8,-1]],[[1235,4908],[27,-1]],[[1214,4876],[9,7]],[[1223,4883],[39,3]],[[1262,4886],[0,14]],[[1262,4900],[0,7]],[[1210,4889],[-1,-16]],[[1242,4865],[2,-10],[18,7]],[[1262,4862],[0,14]],[[1262,4876],[0,10]],[[1223,4883],[6,-15],[13,-3]],[[1334,4404],[0,31]],[[1334,4458],[-34,-2]],[[1300,4456],[0,-42],[12,4],[22,-14]],[[1626,4336],[0,52]],[[1626,4388],[-34,-1],[-1,-41]],[[1591,4346],[20,-5],[4,11],[11,-16]],[[1300,4641],[-12,0]],[[1288,4641],[-27,-23]],[[1261,4618],[-5,-16]],[[1256,4602],[10,11],[15,-18],[8,33],[11,13]],[[871,5312],[17,30],[-9,27],[-14,22]],[[865,5391],[-52,0]],[[813,5391],[1,-10],[30,-36],[9,-23],[18,-10]],[[1025,5702],[0,-30]],[[1025,5672],[23,9],[11,-16],[-14,-19],[-20,1]],[[1025,5647],[0,-14]],[[1025,5633],[38,8],[-1,65],[-18,1],[0,14]],[[1094,4757],[5,-5]],[[1099,4752],[6,10]],[[1105,4762],[-15,6]],[[1085,4760],[9,-3]],[[1072,4724],[9,0]],[[1081,4724],[8,17]],[[1089,4741],[5,16]],[[1072,4766],[0,-11]],[[1072,4755],[0,-31]],[[1265,4929],[24,0],[14,20]],[[1303,4949],[-20,0],[-2,16],[-15,0]],[[1266,4965],[-23,0]],[[1103,4748],[6,0]],[[1109,4748],[9,0]],[[1118,4748],[-1,12]],[[1117,4760],[-3,8]],[[1114,4768],[-5,-2]],[[1109,4766],[-4,-4]],[[1099,4752],[4,-4]],[[1122,4728],[-2,17]],[[1120,4745],[-2,3]],[[1109,4748],[0,-20]],[[1109,4728],[13,0]],[[1097,4728],[12,0]],[[1103,4748],[-5,-15]],[[1098,4733],[-1,-5]],[[1262,4832],[72,1]],[[1334,4833],[0,56]],[[1334,4889],[-18,-4]],[[1316,4885],[-54,-9]],[[1262,4862],[-27,-39],[-9,-6]],[[1226,4817],[31,-8]],[[1596,5014],[31,3]],[[1627,5017],[-1,190]],[[1626,5207],[-62,3],[-83,-1]],[[1481,5209],[2,-195]],[[1483,5014],[113,0]],[[1033,4535],[26,-23]],[[1059,4512],[20,29],[24,-12]],[[1103,4529],[-5,45]],[[1098,4574],[0,0]],[[1098,4574],[-30,1],[-4,-10],[-31,-30]],[[1580,4728],[28,1],[0,47],[-8,8],[-33,-1],[2,-55],[11,0]],[[1626,4633],[0,192]],[[1626,4825],[-28,-1]],[[1598,4824],[-64,-2],[-51,2]],[[1483,4632],[143,1]],[[1498,4687],[0,13],[36,5],[-2,-34],[-18,4],[-10,-18],[-6,30]],[[1076,5086],[3,16],[27,13]],[[1106,5115],[-13,19],[-58,68]],[[1035,5202],[-2,0]],[[1033,5202],[-1,-10],[-40,-31],[0,-11]],[[992,5150],[32,-29],[32,-12],[20,-23]],[[873,5276],[31,9],[18,13],[103,1]],[[1025,5299],[0,95]],[[1025,5394],[-160,-3]],[[871,5312],[2,-36]],[[904,5309],[0,43],[27,-1],[0,-42],[-27,0]],[[1175,5035],[35,9]],[[1210,5044],[-2,61]],[[1208,5105],[-24,-24]],[[1184,5081],[-43,0]],[[1095,4719],[14,0]],[[1109,4719],[0,9]],[[1097,4728],[-3,-7]],[[1094,4721],[1,-2]],[[1095,4708],[14,0]],[[1109,4708],[0,11]],[[1095,4719],[0,-11]],[[1108,4677],[14,11]],[[1122,4688],[-1,13]],[[1121,4701],[-12,7]],[[1109,4708],[0,-17]],[[1109,4691],[0,-8]],[[1109,4683],[-1,-6]],[[1095,4708],[0,-4]],[[1095,4704],[14,-13]],[[1109,4683],[-15,-11]],[[1094,4672],[14,5]],[[1134,4704],[7,-12]],[[1141,4692],[11,0]],[[1152,4701],[-1,4]],[[1151,4705],[-13,-1]],[[1138,4704],[-4,0]],[[1098,4574],[16,0]],[[1114,4574],[2,17]],[[1116,4591],[-9,9]],[[1107,4600],[-12,0]],[[1095,4600],[3,-26]],[[1103,4529],[8,0]],[[1111,4529],[3,45]],[[1138,4574],[0,29]],[[1138,4603],[-17,-1],[-5,-11]],[[1114,4574],[24,0]],[[1129,4529],[7,23]],[[1136,4552],[2,9]],[[1138,4561],[0,13]],[[1111,4529],[18,0]],[[1149,4595],[27,5]],[[1176,4600],[0,25]],[[1176,4625],[-17,-1]],[[1159,4624],[-10,-29]],[[1087,4801],[24,60]],[[1111,4861],[17,23],[-2,18]],[[1126,4902],[-8,-6],[-5,29],[11,37]],[[1124,4962],[12,24],[-2,21],[-16,30]],[[1118,5037],[-42,49]],[[992,5150],[-27,29],[-22,2],[-23,18],[-27,11],[-20,66]],[[813,5391],[-14,40],[-10,14]],[[789,5445],[-7,33]],[[782,5478],[-4,-4]],[[778,5474],[-79,-89],[-135,-162]],[[564,5223],[210,-139],[25,-17],[156,-103],[87,-101],[30,-108]],[[1117,4760],[21,1]],[[1138,4761],[0,15]],[[1138,4776],[-17,6]],[[1121,4782],[-7,-14]],[[1138,4776],[0,20]],[[1138,4796],[-20,-2]],[[1118,4794],[3,-12]],[[1209,4964],[9,49],[-8,0],[0,31]],[[1175,5035],[0,-38]],[[1175,4997],[2,-34]],[[1177,4963],[23,1]],[[1161,4916],[14,-2]],[[1175,4914],[0,23]],[[1175,4937],[-18,8]],[[1157,4945],[4,-29]],[[1626,5207],[3,152],[-1,40]],[[1628,5399],[-89,0],[-60,2]],[[1479,5401],[2,-192]],[[1153,4963],[2,0]],[[1155,4963],[20,0]],[[1175,4963],[2,0]],[[1175,4997],[-22,0],[0,-34]],[[1143,4656],[6,6]],[[1149,4662],[0,2]],[[1141,4692],[1,-29]],[[1142,4663],[1,-7]],[[1138,4633],[11,0]],[[1149,4633],[0,29]],[[1143,4656],[-9,-1]],[[1134,4655],[4,-22]],[[1174,4638],[14,7]],[[1188,4645],[0,19]],[[1188,4664],[-16,0]],[[1172,4664],[-7,-25]],[[1165,4639],[9,-1]],[[1109,4719],[15,0]],[[1124,4719],[-2,9]],[[1094,4721],[-13,3]],[[1072,4724],[0,-18]],[[1072,4706],[23,-2]],[[1138,4561],[6,13]],[[1144,4574],[5,21]],[[1159,4624],[-2,0]],[[1157,4624],[-6,0]],[[1151,4624],[-13,0]],[[1138,4624],[0,-6]],[[1138,4618],[0,-15]],[[1157,4575],[20,-1]],[[1177,4574],[-1,26]],[[1144,4574],[13,1]],[[1159,4552],[18,0]],[[1177,4552],[0,22]],[[1157,4575],[2,-23]],[[1136,4552],[23,0]],[[1138,4529],[39,-6]],[[1177,4523],[0,29]],[[1129,4529],[9,0]],[[1161,5123],[12,16]],[[1173,5139],[-5,26]],[[1168,5165],[-13,14],[-15,-5]],[[1140,5174],[13,-26],[-27,-27],[21,-16],[14,18]],[[1173,5139],[15,-16],[-2,52],[-18,-10]],[[1071,4656],[14,-2]],[[1085,4654],[0,6]],[[1085,4660],[-2,31]],[[1083,4691],[-19,-21]],[[1064,4670],[-2,-6]],[[1062,4664],[1,-5]],[[1063,4659],[8,-3]],[[1087,4626],[-2,28]],[[1071,4656],[16,-30]],[[1087,4626],[2,-2]],[[1089,4624],[0,-6]],[[1089,4618],[5,6]],[[1094,4624],[13,0]],[[1107,4624],[0,0]],[[1107,4624],[0,32]],[[1107,4656],[-22,4]],[[1107,4656],[1,21]],[[1094,4672],[-11,19]],[[1138,4524],[9,-23],[12,-12],[18,10]],[[1177,4499],[0,6]],[[1177,4505],[0,5]],[[1177,4510],[0,13]],[[1138,4529],[0,-5]],[[1138,4506],[3,-16]],[[1141,4490],[14,0],[14,-25]],[[1169,4465],[9,12]],[[1178,4477],[-1,22]],[[1138,4524],[0,-18]],[[1138,4618],[-20,-2]],[[1118,4616],[-2,-25]],[[1138,4624],[-20,-1]],[[1118,4623],[0,-7]],[[1118,5037],[7,14]],[[1137,5084],[-31,31]],[[1124,4962],[29,1]],[[1095,4600],[-1,24]],[[1089,4618],[-7,-11],[-14,15]],[[1068,4622],[-5,37]],[[1062,4664],[-22,-34]],[[1040,4630],[-4,-28],[-12,-37],[9,-30]],[[1107,4656],[13,0]],[[1120,4656],[14,-1]],[[1142,4663],[-12,1],[-8,24]],[[1134,4704],[-13,-3]],[[1151,4624],[-2,9]],[[1138,4633],[-13,-1],[-4,16]],[[1121,4648],[-3,-25]],[[1118,4623],[0,0]],[[1107,4624],[11,-1]],[[1121,4648],[-1,8]],[[1090,4489],[13,24],[0,16]],[[1059,4512],[31,-23]],[[1270,5081],[4,-18],[15,0],[8,-26]],[[1297,5037],[38,5]],[[1335,5042],[-1,161]],[[1334,5203],[-82,-1]],[[1252,5202],[17,-7],[3,-17],[21,0],[-4,-30],[2,-33],[-21,-34]],[[954,5192],[32,-18],[-1,27],[-13,-5],[-18,15],[0,-19]],[[1023,4384],[49,34]],[[1072,4418],[17,31]],[[1089,4449],[1,8]],[[1090,4457],[1,27]],[[1091,4484],[-1,5]],[[1033,4535],[-35,-30]],[[998,4505],[0,-21],[25,0],[0,-100]],[[972,4380],[51,4]],[[998,4505],[-12,-19],[-19,-54],[0,-52]],[[967,4380],[5,0]],[[1033,5202],[-8,0],[0,97]],[[1334,4833],[25,0]],[[1405,4831],[-1,39],[6,15],[0,96],[5,32]],[[1415,5013],[-81,1]],[[1334,5014],[0,-65]],[[1334,4949],[0,-60]],[[1182,4626],[6,-4]],[[1188,4622],[6,-5]],[[1194,4617],[-3,27]],[[1191,4644],[-3,1]],[[1174,4638],[8,-12]],[[1176,4625],[6,1]],[[1165,4639],[-8,-15]],[[1207,4680],[0,7]],[[1207,4687],[-19,2]],[[1188,4689],[0,-8]],[[1188,4681],[19,-1]],[[1207,4656],[0,2]],[[1207,4658],[0,22]],[[1188,4681],[0,-10]],[[1188,4671],[19,-15]],[[1191,4644],[17,0]],[[1208,4644],[-1,12]],[[1188,4671],[0,-7]],[[1598,4824],[-2,190]],[[1483,5014],[0,-3]],[[1483,5011],[0,-180]],[[1359,4720],[19,-5]],[[1384,4760],[-33,-10]],[[1351,4750],[2,-23]],[[1353,4727],[6,-7]],[[1175,4903],[15,0]],[[1190,4903],[13,0]],[[1192,4937],[-17,-32]],[[1175,4905],[0,-2]],[[1175,4937],[0,26]],[[1155,4963],[2,-18]],[[1108,4484],[21,-2]],[[1129,4482],[12,8]],[[1138,4506],[-24,4]],[[1114,4510],[-6,-26]],[[1072,4706],[-8,-36]],[[1334,4949],[-31,0]],[[1262,4900],[33,6],[21,-9],[0,-12]],[[1163,4689],[16,-3]],[[1179,4686],[5,17]],[[1184,4703],[-9,0]],[[1175,4703],[-24,2]],[[1483,5011],[-19,2]],[[1464,5013],[-26,0]],[[1438,5013],[-23,0]],[[1184,5081],[-15,19],[-8,23]],[[1140,5174],[-19,27]],[[1121,5201],[-26,0]],[[1095,5201],[-60,1]],[[1335,5629],[5,0],[2,-35],[8,-4],[55,1],[-1,32],[-38,8],[6,17],[-23,-7],[-15,5],[1,-17]],[[1300,5393],[34,1]],[[1334,5394],[90,5]],[[1424,5399],[-1,234]],[[1233,5717],[-2,-132],[-5,-26]],[[1226,5559],[-1,-166]],[[1225,5393],[75,0]],[[1628,5399],[-2,154]],[[1424,5399],[55,2]],[[1025,5672],[0,-25]],[[1188,4689],[-9,-3]],[[1179,4686],[-7,-22]],[[1207,4687],[-1,16]],[[1206,4703],[-8,0]],[[1190,4703],[-6,0]],[[1172,4664],[-3,0]],[[1206,4703],[0,9]],[[1206,4712],[1,19]],[[1207,4731],[-7,0]],[[1187,4731],[-12,3]],[[1175,4734],[0,-13]],[[1175,4721],[0,-18]],[[1149,4786],[26,0]],[[1175,4786],[-8,20],[-18,-3]],[[1149,4803],[0,-4]],[[1149,4799],[0,-13]],[[1156,4768],[13,-4]],[[1169,4764],[4,-1]],[[1173,4763],[0,15],[11,-2]],[[1184,4776],[0,11]],[[1184,4787],[-9,-1]],[[1149,4786],[0,-15]],[[1149,4771],[7,-3]],[[1149,4799],[-11,-3]],[[1138,4776],[11,-5]],[[1204,4831],[0,7]],[[1204,4838],[-20,10]],[[1184,4848],[-7,-6]],[[1177,4842],[-3,-2]],[[1174,4840],[4,-19]],[[1134,4704],[-10,15]],[[1138,4704],[0,16]],[[1138,4720],[0,25]],[[1138,4745],[-18,0]],[[1138,4761],[11,-16]],[[1149,4745],[7,0]],[[1156,4745],[0,23]],[[1118,4794],[-4,22]],[[1114,4816],[-7,-6]],[[1107,4799],[2,-33]],[[1025,5633],[0,-69]],[[1025,5564],[17,-3],[130,1],[54,-3]],[[1089,4624],[-21,-2]],[[1485,4511],[-2,121]],[[1415,4631],[-2,-39],[-16,7]],[[1397,4501],[9,8],[38,1],[12,9],[29,-8]],[[1411,4326],[10,18],[12,-3]],[[1433,4341],[0,18],[21,5],[-7,7],[25,0],[13,-15]],[[1485,4356],[0,155]],[[1334,4404],[0,-63]],[[1334,4341],[40,0],[24,12],[-2,-19],[15,-8]],[[1334,4628],[0,-48]],[[1225,4752],[0,36]],[[1225,4788],[-19,-1]],[[1206,4787],[0,-11]],[[1206,4776],[0,-20]],[[1314,4732],[20,-5]],[[1334,4727],[0,4]],[[1334,4731],[0,31]],[[1334,4762],[-28,0],[1,-10]],[[1307,4752],[-14,-20]],[[1293,4732],[21,0]],[[1151,4721],[24,0]],[[1175,4734],[-6,11]],[[1169,4745],[-13,0]],[[1149,4745],[-1,0]],[[1148,4745],[3,-24]],[[1151,4721],[0,-16]],[[1148,4745],[-10,0]],[[1138,4720],[13,1]],[[1191,4731],[0,11]],[[1191,4742],[-22,3]],[[1204,4838],[0,7]],[[1204,4886],[-5,-6]],[[1199,4880],[-9,-13]],[[1190,4867],[-6,-19]],[[1190,4867],[-14,-17]],[[1176,4850],[1,-8]],[[1199,4880],[-12,-1]],[[1187,4879],[-11,-4]],[[1176,4875],[0,-1]],[[1176,4874],[0,-24]],[[1190,4903],[-3,-24]],[[1175,4903],[1,-28]],[[1359,4720],[0,-21],[-25,-7]],[[1334,4692],[0,-5]],[[1098,4733],[-9,8]],[[1207,4484],[4,0]],[[1211,4484],[-8,14],[-3,24],[-10,0],[-13,-17]],[[1178,4477],[29,7]],[[1334,4692],[0,35]],[[1314,4732],[1,-27]],[[1293,4732],[-4,-8]],[[1289,4724],[-8,-19]],[[1225,4788],[-2,17],[-17,0]],[[1206,4805],[0,-18]],[[1225,4788],[13,12]],[[1238,4800],[-17,15]],[[1221,4815],[-17,0]],[[1204,4815],[2,-10]],[[1191,4742],[-3,18]],[[1188,4760],[-15,3]],[[1169,4764],[0,-19]],[[1188,4760],[18,-4]],[[1206,4776],[-22,0]],[[1206,4787],[-18,0]],[[1188,4787],[-4,0]],[[1114,4816],[31,6]],[[1145,4822],[7,13]],[[1152,4835],[-16,20],[-25,6]],[[1164,4840],[10,0]],[[1176,4874],[-11,0],[-1,-34]],[[1025,5394],[0,125]],[[1025,5519],[-24,0],[0,-32],[-124,-4],[0,-31],[-49,-1],[0,-6],[-39,0]],[[1227,5202],[25,0]],[[1334,5203],[1,126],[-1,65]],[[1300,5393],[-3,-15],[-17,-23],[0,-32],[-18,-32],[0,-12],[-14,-24],[-2,-20],[-19,-10],[-12,-24]],[[1215,5201],[12,1]],[[1225,5393],[-37,0]],[[1188,5393],[-1,-94],[1,-98]],[[1188,5201],[27,0]],[[1208,5105],[-1,70],[20,27]],[[1188,5201],[-67,0]],[[1300,4456],[-30,-1],[-14,24]],[[1256,4479],[-10,0]],[[1246,4479],[0,-3]],[[1246,4476],[-4,-98]],[[1242,4378],[35,-3],[12,-30],[18,8],[13,-13],[14,1]],[[1180,4815],[8,-28]],[[1351,4762],[-2,23],[10,-1]],[[1334,4833],[0,-10]],[[1334,4823],[0,-26]],[[1334,4797],[0,-34]],[[1334,4763],[17,-1]],[[1238,4800],[8,-12],[0,-41]],[[1262,4745],[0,43]],[[1226,4817],[-5,-2]],[[1305,4824],[29,-1]],[[1214,4850],[28,15]],[[1207,4731],[-1,7]],[[1289,4724],[-27,-1]],[[1262,4693],[22,-7]],[[1107,4600],[0,24]],[[1464,5013],[0,32],[-12,5]],[[1452,5050],[-33,-3]],[[1419,5047],[-4,-22],[23,8],[0,-20]],[[1452,5050],[0,18],[-33,-2],[0,-19]],[[1481,5209],[-147,-6]],[[1335,5042],[-1,-28]],[[1334,4641],[-34,0]],[[1256,4602],[-10,-22]],[[1246,4580],[4,1]],[[1149,4803],[-4,19]],[[1175,4914],[0,-9]],[[1126,4902],[33,1],[2,13]],[[1301,4796],[33,1]],[[1305,4822],[-4,-26]],[[1334,4762],[0,1]],[[1301,4796],[-18,-3]],[[1262,4788],[45,-36]],[[1091,4484],[17,0]],[[1114,4510],[-3,19]],[[1297,5037],[-22,1]],[[1275,5038],[-9,-44],[0,-29]],[[1288,4641],[-26,4]],[[1237,4644],[-12,0]],[[1225,4644],[0,-31]],[[1225,4613],[17,9],[19,-4]],[[1194,4617],[31,-4]],[[1225,4644],[-17,0]],[[1226,4579],[1,1]],[[1227,4580],[19,0]],[[1225,4613],[1,-34]],[[1207,4577],[19,2]],[[1188,4622],[0,-8]],[[1188,4614],[19,-37]],[[1164,4840],[-12,-5]],[[1213,4709],[12,-5]],[[1225,4704],[6,-3]],[[1225,4727],[-15,1]],[[1210,4728],[3,-19]],[[1188,5393],[-72,1]],[[1116,5394],[-2,-144],[-19,-49]],[[1210,4738],[0,-10]],[[1275,5038],[-10,13]],[[1265,5051],[-13,3],[-42,-10]],[[1270,5081],[-12,0],[7,-30]],[[1188,4576],[19,1]],[[1188,4614],[0,-38]],[[1025,5519],[0,45]],[[879,5550],[-38,-32],[-7,-27],[-6,5]],[[828,5496],[-17,-17],[-15,11],[-14,-12]],[[1177,4574],[11,2]],[[1203,4545],[5,7]],[[1208,4552],[19,28]],[[1177,4510],[26,35]],[[1245,4518],[9,10],[27,-1]],[[1253,4552],[0,-10]],[[1253,4542],[-8,-23]],[[1245,4519],[0,-1]],[[1283,4477],[-27,2]],[[1211,4484],[2,0]],[[1213,4484],[4,20]],[[1217,4504],[-10,1],[-4,40]],[[1206,4712],[7,-3]],[[1262,4680],[0,13]],[[1225,4704],[0,-24]],[[1025,5394],[91,0]],[[1626,4388],[1,57],[-1,188]],[[1485,4356],[0,-20],[33,-9],[20,15],[25,-9],[6,-18],[4,19],[18,12]],[[1564,4474],[-1,32],[15,8],[21,-13],[10,5],[2,-57],[-23,20],[-24,5]],[[1245,4518],[1,-39]],[[1245,4519],[-28,-15]],[[1213,4484],[33,-8]],[[1253,4542],[-31,-1],[-14,11]],[[1225,4661],[-18,-3]],[[1040,4630],[-38,-5],[-16,-24],[-47,-36],[-9,-21],[-4,-48],[13,-28],[16,-60],[-9,-21],[-15,-5]],[[931,4382],[36,-2]],[[1334,4731],[19,-4]],[[1351,4750],[0,12]],[[1165,4421],[12,-3]],[[1177,4418],[23,-8]],[[1200,4410],[4,6],[3,68]],[[1169,4465],[5,-7],[-9,-26]],[[1165,4432],[0,-11]],[[1200,4410],[4,-24],[29,1],[9,-9]],[[6788,4377],[3,28]],[[6791,4405],[-4,6]],[[6787,4411],[-15,-22]],[[6772,4389],[16,-12]],[[6807,4408],[-16,-3]],[[6788,4377],[24,-12],[-7,15],[2,28]],[[6831,4281],[4,49]],[[6835,4330],[11,141]],[[6846,4471],[8,96]],[[6854,4567],[-9,-1],[-189,0],[-53,-1]],[[6603,4565],[-17,-197]],[[6586,4368],[79,-31],[-2,-41],[168,-15]],[[6758,4546],[12,-20],[8,-37]],[[6778,4489],[22,-54]],[[6800,4435],[7,-27]],[[6772,4389],[-10,20],[-12,-11],[-6,13],[13,8]],[[6757,4419],[-5,10],[13,25]],[[6765,4454],[-13,6]],[[6752,4460],[-18,36],[0,54],[24,-4]],[[6546,4027],[97,-11]],[[6643,4016],[164,-20],[5,61]],[[6812,4057],[19,224]],[[6586,4368],[-54,-33],[-18,-290],[32,-18]],[[6323,3898],[10,-1],[149,90],[64,40]],[[6603,4565],[-67,-1],[-77,-39]],[[6459,4525],[-195,-98]],[[7088,4518],[-29,-10],[-93,-37]],[[6966,4471],[-12,-123]],[[6954,4348],[-4,-48],[0,-55]],[[6950,4245],[111,-31]],[[6787,4411],[-6,11]],[[6781,4422],[-8,6],[-16,-9]],[[6950,4245],[0,-58],[-11,-145]],[[6939,4042],[-4,-61],[105,-12]],[[6966,4471],[-37,-2],[-83,2]],[[6835,4330],[37,-16],[24,2],[9,-14],[32,12],[5,27],[12,7]],[[6812,4057],[127,-15]],[[6800,4435],[-19,-13]],[[6778,4489],[-5,1],[-8,-36]],[[7094,4570],[-240,-3]],[[6752,4460],[-3,58],[11,14],[-2,14]],[[4823,4412],[31,-26],[29,18],[26,-10],[-6,18],[-24,12],[3,50],[-9,-31],[-9,-6],[-26,5],[2,-16],[-17,-14]],[[4953,4324],[4,79]],[[4957,4403],[5,113],[-57,1]],[[4905,4517],[-83,0]],[[4815,4342],[26,-2],[-6,-12],[29,-7],[89,3]],[[4856,4188],[21,19],[18,-21],[16,-9],[35,-2]],[[4946,4175],[7,149]],[[4720,4126],[19,13],[23,-6],[8,20],[26,-12],[6,31],[54,16]],[[5146,4280],[-15,8]],[[5131,4288],[-19,7],[-14,21],[34,15],[2,28],[26,-1]],[[5160,4358],[2,0]],[[5162,4358],[23,11]],[[5185,4369],[10,18],[18,12],[-9,12]],[[5204,4411],[11,24],[1,19]],[[5216,4454],[-74,5],[-58,-64]],[[5084,4395],[-5,-133],[-4,-65]],[[5075,4197],[3,31],[16,-5],[1,14],[19,12],[-8,10],[15,3],[4,15],[21,3]],[[5131,4288],[16,31],[13,39]],[[5146,4280],[16,41]],[[5162,4321],[0,37]],[[4978,4343],[17,-4],[2,-22],[34,1],[13,14],[17,33],[-9,13],[-47,14],[-23,0],[-4,-49]],[[5040,4168],[17,5],[2,15],[16,9]],[[5084,4395],[-127,8]],[[4946,4175],[26,1],[17,-26],[21,14],[15,19],[15,-15]],[[5284,4683],[123,-3]],[[5407,4680],[9,154]],[[5416,4834],[5,91],[6,169]],[[5427,5094],[-155,13]],[[5272,5107],[-6,-127]],[[5266,4980],[44,-1],[2,-33],[-12,-12],[-7,-38],[-30,2]],[[5263,4898],[-9,-215]],[[5254,4683],[30,0]],[[5266,4980],[-3,-82]],[[5263,4898],[-73,6],[-155,9],[-86,7],[0,-11]],[[4949,4909],[-9,-225]],[[4940,4684],[242,0],[72,-1]],[[5272,5107],[-83,5]],[[5189,5112],[-164,14],[-38,2],[-138,13]],[[4849,5141],[-7,-148]],[[4838,4917],[111,-8]],[[5216,4454],[56,-5],[2,38]],[[5274,4487],[10,196]],[[4940,4684],[-6,0],[0,-49],[-20,0],[7,-10],[-6,-38],[-11,-15],[1,-55]],[[4881,4638],[4,20],[0,48],[-5,26],[22,-4],[10,8],[6,-38],[-9,-62],[-8,31],[-9,-1],[0,-20],[-11,-8]],[[5578,4821],[75,-5]],[[5653,4816],[5,31],[-4,28],[9,24],[-14,20],[6,16],[-8,47],[1,16]],[[5648,4998],[-8,26],[-18,9],[-13,48],[-16,16]],[[5593,5097],[-98,9],[-67,4],[-1,-16]],[[5416,4834],[162,-13]],[[5140,1922],[30,-41],[20,-8],[14,4],[15,-18],[-5,-16],[19,-30],[13,-38],[16,-32],[22,-7],[15,-11]],[[5299,1725],[26,22]],[[5325,1747],[80,66]],[[5405,1813],[-60,121],[-65,137],[48,41]],[[5328,2112],[-4,36],[-21,3],[-68,71],[-5,36],[-54,6],[-27,-62],[-5,11],[-16,-3]],[[5128,2210],[-5,-19],[-18,-22],[-29,-18],[3,37],[-30,22],[-37,-39]],[[5012,2171],[-20,-33]],[[4992,2138],[31,-41],[6,-15],[51,-32],[60,-128]],[[4922,2237],[-8,-10],[26,-92],[15,10],[7,-17],[15,25],[15,-15]],[[5012,2171],[-17,22],[-9,-11],[-9,9],[-7,-13],[-31,25],[9,17],[9,-9],[3,36],[-16,5]],[[4944,2252],[-7,-7]],[[4937,2245],[-15,-8]],[[4506,1764],[65,1],[-4,19],[-16,14],[-10,-1],[-37,16],[-24,25],[-30,5],[4,19],[-26,19],[-26,28]],[[4402,1909],[-30,33],[-12,-1],[-25,22],[-20,37],[-30,10],[-29,39],[-7,32],[13,-4],[-2,31],[14,-11],[5,11],[-21,33],[20,3],[10,-8],[5,24],[17,9],[31,3],[-7,61],[-10,10],[10,18],[-1,20],[20,-2],[24,32],[-7,35],[-16,32],[5,15],[34,-13],[17,-18],[27,-51],[-1,-14],[20,-34],[5,-21],[-33,-7],[-35,20],[-16,4],[-18,16],[6,-51],[16,-29],[-2,-8],[26,-23],[32,-11],[23,-22],[-17,38],[15,12],[22,-8],[16,-15],[9,7],[29,-14],[-11,20],[9,3],[-9,25],[-23,29],[10,11],[27,-22],[21,1]],[[4558,2218],[-3,29],[-26,34],[-52,21],[-22,27],[-6,25],[10,22],[34,-15],[7,34],[29,-15],[12,3],[22,-16],[43,-52],[0,-10],[27,8],[1,48],[-13,8],[-2,-20],[-13,5],[-21,24],[-17,33],[-14,2],[-20,21],[13,17],[6,30],[-1,38]],[[4552,2519],[-3,17],[-16,14],[-16,-1],[-59,56],[2,25],[-21,-23],[-23,1],[13,-25],[0,-21],[20,-23],[-7,-12],[-5,21],[-39,21],[-11,-2],[-22,16],[-27,43],[3,19],[-6,20],[27,-4],[16,11],[-6,26],[21,-4],[15,23],[8,-14],[0,35],[9,12],[19,114]],[[4444,2864],[7,57],[8,99]],[[4459,3020],[-3,0]],[[4456,3020],[-214,-18],[-157,-17],[-181,-17]],[[3904,2968],[-112,-10]],[[3792,2958],[41,-94],[85,-189],[42,-91],[125,-280],[78,-213],[107,-91],[50,-145],[33,-11],[51,1],[49,-25],[19,-15],[34,-41]],[[4489,2501],[0,0]],[[4500,2475],[0,0]],[[4318,1951],[0,0]],[[4448,2521],[0,0]],[[4242,2584],[0,0]],[[4211,2564],[0,0]],[[4477,2273],[23,-19],[-5,-9],[-18,28]],[[4287,2229],[23,4],[-7,-21],[8,-24],[-13,14],[-11,27]],[[4321,1896],[2,31],[27,-7],[31,-17],[-6,-18],[-32,-11],[-22,22]],[[4228,2222],[33,8],[13,-10],[10,-40],[-35,3],[-21,39]],[[4265,2579],[15,-13],[14,11],[11,-10],[22,-48],[4,-34],[-12,8],[-6,25],[-13,0],[-22,21],[-13,40]],[[4151,2552],[26,-2],[49,-44],[15,-24],[-18,-6],[-21,4],[-37,44],[-14,28]],[[5128,2210],[-9,-19],[-16,26]],[[5103,2217],[-42,4]],[[5061,2221],[-22,20],[-23,-12],[-9,19],[-22,15],[-23,5],[-18,-16]],[[4841,2368],[26,12]],[[4867,2380],[1,1]],[[4868,2381],[-13,16],[-37,21]],[[4818,2418],[3,-41]],[[4821,2377],[20,-9]],[[4784,2389],[30,-29]],[[4814,2360],[7,17]],[[4818,2418],[-34,-29]],[[4799,2321],[20,25]],[[4819,2346],[-5,14]],[[4784,2389],[-7,-6],[0,-40],[18,-29],[4,7]],[[4799,2321],[17,-8]],[[4816,2313],[15,8]],[[4831,2321],[-3,33]],[[4828,2354],[-9,-8]],[[4856,2334],[15,16]],[[4871,2350],[-27,4]],[[4844,2354],[-16,0]],[[4831,2321],[25,13]],[[4871,2350],[12,-12],[5,16],[-18,8],[-3,18]],[[4841,2368],[3,-14]],[[4928,1954],[41,34],[51,-107],[19,-43],[54,42],[47,42]],[[4922,2237],[-57,-42],[-29,18],[-4,-50],[5,-14],[36,-41],[8,-28],[17,-35],[6,-51],[24,-40]],[[5061,2221],[21,83],[18,54],[2,49],[-19,41],[0,24]],[[5083,2472],[-41,-30],[-26,-27],[-34,-8],[-79,-9],[-35,-17]],[[4856,2334],[31,-26],[50,-63]],[[5103,2217],[-1,13],[30,30],[14,-7],[11,7],[9,50],[18,35],[24,22]],[[5208,2367],[-110,120]],[[5098,2487],[-15,-15]],[[5328,2112],[29,24],[-23,52],[12,10],[-11,24],[0,60],[-60,3],[9,91],[-43,5]],[[5241,2381],[-19,-2],[-14,-12]],[[4402,1909],[30,25],[26,31],[10,-18],[36,34],[28,-32],[16,-7],[20,6],[32,30],[14,-15],[9,14]],[[4623,1977],[-25,26],[-13,43],[34,61],[-7,19],[8,5],[-49,99],[-13,-12]],[[4761,1860],[39,-2],[24,14],[45,-2],[18,-5],[30,-35],[11,0]],[[4928,1830],[12,83],[-12,41]],[[4816,2313],[-24,-76],[-22,-77],[-14,-24]],[[4756,2136],[-22,-28],[-65,-67],[-40,-51]],[[4629,1990],[21,2],[80,-47],[12,-14],[0,-30],[13,-41],[6,0]],[[5005,1492],[102,84],[109,83],[83,66]],[[4928,1830],[8,-30],[1,-36],[11,-38],[5,-51],[9,-11],[-5,-63],[8,-42],[15,-20],[25,-47]],[[4506,1764],[3,-93],[39,-36],[16,4],[26,-11],[65,-73],[55,-35],[22,0]],[[4732,1520],[4,17],[-33,24],[-3,32],[27,18],[21,35],[1,51],[25,50],[7,54],[-9,24],[2,17],[-13,18]],[[4629,1990],[-6,-13]],[[4732,1520],[17,10],[26,-14],[25,-24],[10,-21],[11,2],[66,-79]],[[4887,1394],[118,98]],[[4691,2796],[11,1],[14,-50],[3,-30],[11,-9],[20,-46],[31,-21],[-18,-22],[-7,-19],[12,-16],[14,-49],[15,-15],[3,-43],[17,-44],[1,-15]],[[5098,2487],[-84,88],[-103,-11],[-8,146]],[[4903,2710],[-4,60],[38,4]],[[4937,2774],[4,51],[-28,-3],[-30,-17],[-18,-18],[-23,1],[-19,12],[-15,28],[-14,-5],[-32,5],[-31,-14],[-41,-6],[1,-12]],[[4631,2560],[21,-14],[9,-31],[30,-23],[17,-38],[23,-19],[40,-41],[13,-5]],[[4691,2796],[-23,-3],[-42,32]],[[4626,2825],[-16,-80],[10,-8],[3,-25],[-24,-8],[-17,-56],[4,-67]],[[4586,2581],[45,-21]],[[4756,2136],[-27,20],[-26,41],[12,20],[-12,14],[-11,32],[4,6],[-30,12],[-11,12],[-4,85],[-16,31],[-14,40],[0,21],[12,22],[-2,68]],[[4586,2581],[3,-58],[-37,-4]],[[4937,2774],[42,4],[15,223]],[[4994,3001],[-1,-1],[-222,-27],[-91,-13],[4,87]],[[4684,3047],[-129,-18],[-96,-9]],[[4444,2864],[-2,-27],[7,-10],[17,4],[-6,-30],[1,-33],[20,3],[30,-12],[50,7],[-1,50],[66,9]],[[7300,9664],[1,0]],[[7301,9664],[2,4]],[[7303,9668],[1,5]],[[7304,9673],[-3,1]],[[7301,9674],[-5,0]],[[7296,9674],[-1,0]],[[7295,9674],[0,-5]],[[7295,9669],[0,-5]],[[7295,9664],[5,0]],[[7381,9574],[8,-2]],[[7389,9572],[1,6]],[[7390,9578],[0,2]],[[7390,9580],[-1,0]],[[7389,9580],[-10,-6]],[[7379,9574],[2,0]],[[7273,9704],[5,5]],[[7278,9709],[0,5]],[[7278,9714],[-5,1]],[[7273,9715],[-2,-11]],[[7271,9704],[2,0]],[[7379,9593],[2,-1]],[[7381,9592],[6,-2]],[[7387,9590],[8,-2]],[[7395,9588],[-5,33]],[[7390,9621],[-8,-12]],[[7382,9609],[-3,-6]],[[7379,9603],[-2,-7]],[[7377,9596],[2,-3]],[[7381,9592],[6,-2]],[[7377,9583],[2,10]],[[7377,9596],[-2,-3]],[[7375,9593],[-2,-6]],[[7373,9587],[0,-3]],[[7373,9584],[4,-1]],[[7377,9583],[2,-1]],[[7379,9582],[10,-2]],[[7390,9580],[5,8]],[[7379,9582],[-1,-8]],[[7378,9574],[1,0]],[[7371,9567],[7,7]],[[7373,9584],[-2,-5]],[[7371,9579],[0,-12]],[[7366,9580],[5,-1]],[[7373,9587],[-5,2]],[[7368,9589],[-1,-6]],[[7367,9583],[-1,-3]],[[7214,9663],[6,8]],[[7220,9671],[-1,3]],[[7219,9674],[-2,-3]],[[7217,9671],[-6,-5]],[[7211,9666],[3,-3]],[[7262,9577],[0,0]],[[7262,9577],[4,2]],[[7266,9579],[-3,7]],[[7263,9586],[0,0]],[[7263,9586],[-6,-3]],[[7257,9583],[5,-6]],[[7209,9668],[2,-2]],[[7217,9671],[-3,5]],[[7214,9676],[-7,-6]],[[7207,9670],[2,-2]],[[7263,9586],[6,2]],[[7269,9588],[-3,14]],[[7266,9602],[-1,1]],[[7265,9603],[-2,-17]],[[7203,9674],[4,-4]],[[7214,9676],[-2,2]],[[7212,9678],[-1,3]],[[7211,9681],[-8,-7]],[[7201,9677],[2,-3]],[[7211,9681],[-1,1]],[[7210,9682],[-2,3]],[[7208,9685],[-7,-8]],[[7199,9679],[2,-2]],[[7208,9685],[-2,3]],[[7206,9688],[-3,-2]],[[7203,9686],[-2,-3]],[[7201,9683],[-2,-4]],[[7254,9576],[1,-1]],[[7255,9575],[7,2]],[[7257,9583],[-2,0]],[[7255,9583],[-1,-7]],[[7192,9686],[7,-7]],[[7201,9683],[-6,8]],[[7195,9691],[-3,-3]],[[7192,9688],[0,-2]],[[7255,9575],[0,-6]],[[7255,9569],[8,3]],[[7263,9572],[-1,5]],[[7203,9686],[-5,8]],[[7198,9694],[-3,-3]],[[7255,9569],[2,-5]],[[7257,9564],[3,1]],[[7260,9565],[3,2]],[[7263,9567],[0,5]],[[7206,9688],[-5,9]],[[7201,9697],[-3,-3]],[[7253,9687],[1,7]],[[7254,9694],[-7,0]],[[7247,9694],[6,-7]],[[7244,9701],[0,-1]],[[7244,9700],[3,-6]],[[7254,9694],[1,8]],[[7255,9702],[-6,1]],[[7249,9703],[-5,-2]],[[7309,9513],[5,-8]],[[7314,9505],[3,4]],[[7317,9509],[-5,8]],[[7312,9517],[-1,-1]],[[7311,9516],[-2,-3]],[[7249,9703],[1,5]],[[7250,9708],[-3,3]],[[7247,9711],[-6,-6]],[[7241,9705],[3,-4]],[[7317,9509],[4,3]],[[7321,9512],[-5,8]],[[7316,9520],[-4,-3]],[[7255,9702],[4,-1]],[[7259,9701],[0,5]],[[7259,9706],[-2,1]],[[7257,9707],[-7,1]],[[7321,9512],[1,1]],[[7322,9513],[2,3]],[[7324,9516],[-4,8]],[[7320,9524],[-4,-4]],[[7259,9706],[3,0]],[[7262,9706],[0,5]],[[7262,9711],[-7,7]],[[7255,9718],[0,-5]],[[7255,9713],[2,-6]],[[7324,9516],[1,2]],[[7325,9518],[2,4]],[[7327,9522],[-3,6]],[[7324,9528],[-3,-3]],[[7321,9525],[-1,-1]],[[7255,9713],[-8,1]],[[7247,9714],[0,-3]],[[7327,9522],[1,1]],[[7328,9523],[-1,3]],[[7327,9526],[7,7]],[[7334,9533],[0,5]],[[7334,9538],[-4,-4]],[[7330,9534],[-5,-5]],[[7325,9529],[-1,-1]],[[7255,9718],[-5,1]],[[7250,9719],[-3,1]],[[7247,9720],[0,-4]],[[7247,9716],[0,-2]],[[7324,9575],[3,1]],[[7327,9576],[4,0]],[[7331,9576],[-4,6]],[[7327,9582],[-3,0]],[[7324,9582],[0,-7]],[[7266,9777],[0,4]],[[7266,9781],[-11,3]],[[7255,9784],[2,-4]],[[7257,9780],[9,-3]],[[7313,9581],[11,1]],[[7327,9582],[3,1]],[[7330,9583],[-3,2]],[[7327,9585],[-3,2]],[[7324,9587],[-1,1]],[[7323,9588],[-10,-1]],[[7313,9587],[0,-6]],[[7266,9781],[0,3]],[[7266,9784],[0,1]],[[7266,9785],[-4,2]],[[7262,9787],[-7,2]],[[7255,9789],[0,-5]],[[7323,9588],[-4,2]],[[7319,9590],[-6,5]],[[7313,9595],[0,-8]],[[7266,9785],[0,6]],[[7266,9791],[-4,0]],[[7262,9791],[0,-4]],[[7262,9791],[-7,0]],[[7255,9791],[0,-2]],[[7313,9595],[-2,2]],[[7311,9597],[-2,-10]],[[7309,9587],[0,-6]],[[7309,9581],[4,0]],[[7311,9597],[0,0]],[[7311,9597],[-3,2]],[[7308,9599],[-2,1]],[[7306,9600],[-1,1]],[[7305,9601],[0,-1]],[[7305,9600],[1,-14]],[[7306,9586],[3,1]],[[7298,9599],[3,0]],[[7301,9599],[4,1]],[[7305,9601],[-2,2]],[[7303,9603],[-5,0]],[[7298,9603],[-3,1]],[[7295,9604],[0,-4]],[[7295,9600],[0,-1]],[[7295,9599],[3,0]],[[7247,9774],[8,-2]],[[7255,9772],[3,-1]],[[7258,9771],[-1,6]],[[7257,9777],[-6,4]],[[7251,9781],[-1,8]],[[7250,9789],[-5,2]],[[7245,9791],[1,-10]],[[7246,9781],[1,-7]],[[7365,9570],[4,-2]],[[7369,9568],[1,-1]],[[7370,9567],[1,0]],[[7366,9580],[0,-5]],[[7366,9575],[-1,-5]],[[7379,9567],[8,-2]],[[7387,9565],[0,4]],[[7387,9569],[2,3]],[[7381,9574],[-2,-7]],[[7383,9561],[3,2]],[[7386,9563],[1,2]],[[7379,9567],[-2,0]],[[7377,9567],[0,-3]],[[7377,9564],[6,-3]],[[7375,9556],[4,-1]],[[7379,9555],[3,-2]],[[7382,9553],[1,8]],[[7377,9564],[-1,-4]],[[7376,9560],[-1,-4]],[[7381,9544],[1,9]],[[7379,9555],[-1,-10]],[[7378,9545],[3,-1]],[[7375,9556],[-1,-8]],[[7374,9548],[4,-3]],[[7379,9535],[0,1]],[[7379,9536],[2,8]],[[7374,9548],[-4,2]],[[7370,9550],[-3,3]],[[7367,9553],[-4,3]],[[7363,9556],[-5,5]],[[7358,9561],[-2,1]],[[7356,9562],[-2,-3]],[[7354,9559],[25,-24]],[[7369,9563],[5,-2]],[[7374,9561],[2,-1]],[[7377,9567],[-7,0]],[[7369,9568],[0,-5]],[[7374,9561],[-4,-11]],[[7369,9563],[-2,-10]],[[7365,9570],[0,-5]],[[7365,9565],[-2,-9]],[[7365,9565],[-5,1]],[[7360,9566],[-2,-5]],[[7259,9553],[4,0]],[[7263,9553],[0,9]],[[7263,9562],[0,5]],[[7260,9565],[-1,-12]],[[7206,9688],[3,3]],[[7209,9691],[-5,9]],[[7204,9700],[-3,-3]],[[7257,9564],[-2,-1]],[[7255,9563],[-1,-9]],[[7254,9554],[5,-1]],[[7209,9691],[3,3]],[[7212,9694],[-1,1]],[[7211,9695],[-3,5]],[[7208,9700],[-2,3]],[[7206,9703],[-2,-3]],[[7253,9547],[2,1]],[[7255,9548],[5,-1]],[[7260,9547],[2,2]],[[7262,9549],[1,4]],[[7254,9554],[-1,-7]],[[7210,9682],[5,6]],[[7215,9688],[-3,6]],[[7254,9540],[1,0]],[[7255,9540],[4,-1]],[[7259,9539],[1,8]],[[7255,9548],[-1,-8]],[[7212,9678],[7,6]],[[7219,9684],[0,4]],[[7219,9688],[-4,0]],[[7259,9539],[7,-1]],[[7266,9538],[0,7]],[[7266,9545],[0,4]],[[7266,9549],[-4,0]],[[7219,9674],[1,2]],[[7220,9676],[0,5]],[[7220,9681],[-1,3]],[[7262,9529],[3,0]],[[7265,9529],[1,9]],[[7255,9540],[-1,-7]],[[7254,9533],[8,-4]],[[7219,9688],[-1,4]],[[7218,9692],[-1,9]],[[7217,9701],[-6,-6]],[[7217,9701],[-1,5]],[[7216,9706],[-4,0]],[[7212,9706],[-4,-6]],[[7334,9538],[1,1]],[[7335,9539],[-4,6]],[[7331,9545],[-4,-4]],[[7327,9541],[-2,-1]],[[7325,9540],[5,-6]],[[7239,9709],[2,-4]],[[7247,9716],[-5,-5]],[[7242,9711],[-3,-2]],[[7325,9540],[-2,-3]],[[7323,9537],[-1,-1]],[[7322,9536],[3,-7]],[[7247,9720],[-4,1]],[[7243,9721],[-1,-10]],[[7317,9531],[4,-6]],[[7322,9536],[-3,-3]],[[7319,9533],[-2,-2]],[[7238,9711],[1,-2]],[[7243,9721],[-4,0]],[[7239,9721],[-1,-10]],[[7317,9531],[-2,-1]],[[7315,9530],[-3,-3]],[[7312,9527],[4,-7]],[[7231,9722],[2,-4]],[[7233,9718],[2,-2]],[[7235,9716],[2,-4]],[[7237,9712],[1,-1]],[[7239,9721],[-1,1]],[[7238,9722],[-8,1]],[[7230,9723],[1,-1]],[[7312,9527],[-1,-1]],[[7311,9526],[-3,-4]],[[7308,9522],[3,-6]],[[7230,9723],[0,0]],[[7238,9722],[1,9]],[[7239,9731],[-4,1]],[[7235,9732],[-5,-8]],[[7230,9724],[0,-1]],[[7301,9517],[8,-4]],[[7308,9522],[-1,-1]],[[7307,9521],[-6,-4]],[[7243,9721],[1,10]],[[7244,9731],[-5,0]],[[7298,9519],[2,-1]],[[7300,9518],[1,-1]],[[7307,9521],[-4,7]],[[7303,9528],[-5,-9]],[[7298,9586],[0,13]],[[7295,9599],[0,-2]],[[7295,9597],[0,-4]],[[7295,9593],[0,-4]],[[7295,9589],[1,-4]],[[7296,9585],[2,1]],[[7226,9795],[11,-4]],[[7237,9791],[2,-1]],[[7239,9790],[6,1]],[[7250,9789],[5,2]],[[7266,9791],[0,12]],[[7266,9803],[-51,5]],[[7215,9808],[-3,-11]],[[7212,9797],[14,-2]],[[7298,9586],[5,0]],[[7303,9586],[-2,13]],[[7239,9790],[7,-9]],[[7303,9586],[3,0]],[[7303,9586],[0,-6]],[[7303,9580],[6,1]],[[7296,9585],[0,-7]],[[7296,9578],[7,2]],[[7289,9579],[7,-1]],[[7296,9585],[-7,0]],[[7289,9585],[0,-6]],[[7226,9790],[0,5]],[[7226,9795],[-14,0]],[[7212,9795],[0,-3]],[[7212,9792],[14,-2]],[[7289,9585],[-7,-1]],[[7282,9584],[0,-6]],[[7282,9578],[7,1]],[[7212,9797],[0,-2]],[[7295,9589],[-13,-1]],[[7282,9588],[0,-4]],[[7295,9593],[-14,-1]],[[7281,9592],[0,-2]],[[7281,9590],[1,-2]],[[7360,9566],[0,2]],[[7360,9568],[-5,3]],[[7355,9571],[-1,-7]],[[7354,9564],[2,-2]],[[7360,9568],[2,7]],[[7362,9575],[-2,1]],[[7360,9576],[-4,1]],[[7356,9577],[-1,-6]],[[7366,9575],[-4,0]],[[7367,9583],[-7,1]],[[7360,9584],[0,-8]],[[7368,9589],[0,3]],[[7368,9592],[-5,1]],[[7363,9593],[-3,-9]],[[7363,9593],[-1,1]],[[7362,9594],[-4,0]],[[7358,9594],[-1,-9]],[[7357,9585],[3,-1]],[[7356,9585],[1,0]],[[7358,9594],[-4,1]],[[7354,9595],[-2,-9]],[[7352,9586],[4,-1]],[[7350,9587],[2,-1]],[[7354,9595],[-2,1]],[[7352,9596],[-3,1]],[[7349,9597],[-1,-10]],[[7348,9587],[2,0]],[[7343,9589],[5,-2]],[[7349,9597],[-3,1]],[[7346,9598],[-2,0]],[[7344,9598],[-1,-9]],[[7349,9579],[6,-2]],[[7355,9577],[1,8]],[[7350,9587],[-1,-8]],[[7355,9577],[1,0]],[[7346,9571],[4,-4]],[[7350,9567],[4,-3]],[[7355,9571],[-9,0]],[[7351,9560],[3,-1]],[[7350,9567],[1,-7]],[[7250,9533],[4,0]],[[7254,9540],[-3,0]],[[7251,9540],[-1,-7]],[[7206,9704],[0,-1]],[[7212,9706],[-1,3]],[[7211,9709],[-5,-5]],[[7245,9533],[5,0]],[[7251,9540],[-2,-1]],[[7249,9539],[-3,0]],[[7246,9539],[-1,-6]],[[7211,9709],[-3,5]],[[7208,9714],[-2,-3]],[[7206,9711],[-3,-2]],[[7203,9709],[3,-5]],[[7253,9547],[-3,0]],[[7250,9547],[-1,-8]],[[7216,9706],[-1,6]],[[7215,9712],[-3,6]],[[7212,9718],[0,-1]],[[7212,9717],[-4,-3]],[[7247,9547],[3,0]],[[7254,9554],[-7,2]],[[7247,9556],[0,-4]],[[7247,9552],[0,-5]],[[7212,9717],[-8,10]],[[7204,9727],[-2,-3]],[[7202,9724],[6,-10]],[[7255,9563],[-2,0]],[[7253,9563],[-4,-2]],[[7249,9561],[-2,-5]],[[7212,9718],[3,2]],[[7215,9720],[-5,7]],[[7210,9727],[-2,3]],[[7208,9730],[-4,-3]],[[7241,9608],[6,-11]],[[7247,9597],[6,-13]],[[7253,9584],[2,-1]],[[7265,9603],[-2,6]],[[7263,9609],[0,12]],[[7263,9621],[-3,9]],[[7260,9630],[-8,5]],[[7252,9635],[-2,-9]],[[7250,9626],[-1,-6]],[[7249,9620],[-5,-9]],[[7244,9611],[-3,-3]],[[7250,9719],[0,5]],[[7250,9724],[-4,6]],[[7246,9730],[-2,1]],[[7311,9526],[-4,7]],[[7307,9533],[-3,-3]],[[7304,9530],[-1,-2]],[[7255,9718],[2,5]],[[7257,9723],[0,3]],[[7257,9726],[-4,3]],[[7253,9729],[-2,0]],[[7251,9729],[-1,-5]],[[7315,9530],[-4,7]],[[7311,9537],[-3,-3]],[[7308,9534],[-1,-1]],[[7262,9711],[1,6]],[[7263,9717],[0,6]],[[7263,9723],[-6,0]],[[7315,9707],[0,1]],[[7315,9708],[2,4]],[[7317,9712],[-4,5]],[[7313,9717],[-5,-7]],[[7308,9710],[0,0]],[[7308,9710],[0,-3]],[[7308,9707],[7,0]],[[7306,9713],[2,-3]],[[7313,9717],[4,6]],[[7317,9723],[-9,-1]],[[7308,9722],[-2,-9]],[[7308,9722],[-1,2]],[[7307,9724],[-6,-7]],[[7301,9717],[5,-4]],[[7298,9716],[2,-2]],[[7300,9714],[1,3]],[[7307,9724],[-9,-4]],[[7298,9720],[0,-4]],[[7293,9709],[3,-3]],[[7296,9706],[1,-1]],[[7297,9705],[3,9]],[[7298,9716],[-2,-4]],[[7296,9712],[-3,-3]],[[7297,9705],[1,-2]],[[7298,9703],[8,10]],[[7300,9702],[1,-2]],[[7301,9700],[5,6]],[[7306,9706],[2,4]],[[7298,9703],[2,-1]],[[7295,9695],[1,-1]],[[7296,9694],[1,-1]],[[7297,9693],[3,-3]],[[7300,9690],[1,-1]],[[7301,9689],[0,11]],[[7300,9702],[-5,-7]],[[7204,9772],[2,0]],[[7206,9772],[5,2]],[[7211,9774],[1,13]],[[7212,9787],[0,5]],[[7215,9808],[-19,-9],[-1,-20],[9,-7]],[[7295,9597],[-14,-2]],[[7281,9595],[0,-3]],[[7295,9600],[-14,-1]],[[7281,9599],[0,-4]],[[7295,9604],[-5,0]],[[7290,9604],[-2,0]],[[7288,9604],[-7,-2]],[[7281,9602],[0,-3]],[[7228,9781],[0,3]],[[7228,9784],[-3,1]],[[7225,9785],[-13,2]],[[7211,9774],[17,7]],[[7277,9602],[4,0]],[[7288,9604],[-7,1]],[[7281,9605],[-3,0]],[[7278,9605],[-4,1]],[[7274,9606],[0,-4]],[[7274,9602],[3,0]],[[7225,9785],[1,5]],[[7266,9602],[3,-1]],[[7269,9601],[5,1]],[[7274,9606],[-4,0]],[[7270,9606],[-5,2]],[[7265,9608],[-2,1]],[[7228,9784],[9,7]],[[7269,9588],[3,1]],[[7272,9589],[-3,12]],[[7272,9589],[2,0]],[[7274,9589],[0,13]],[[7278,9589],[-1,13]],[[7274,9589],[4,0]],[[7336,9569],[2,-3]],[[7338,9566],[8,-3]],[[7346,9563],[5,-3]],[[7346,9571],[-5,3]],[[7341,9574],[-5,-5]],[[7339,9590],[4,-1]],[[7344,9598],[-2,0]],[[7342,9598],[-2,1]],[[7340,9599],[-1,-7]],[[7339,9592],[0,-2]],[[7342,9598],[4,17]],[[7346,9615],[0,0]],[[7346,9615],[-4,1]],[[7342,9616],[-2,-7]],[[7340,9609],[-1,-6]],[[7339,9603],[1,-4]],[[7346,9598],[1,6]],[[7347,9604],[3,8]],[[7350,9612],[-4,3]],[[7354,9602],[2,6]],[[7356,9608],[-6,4]],[[7347,9604],[7,-2]],[[7352,9596],[2,6]],[[7362,9594],[0,3]],[[7362,9597],[-8,5]],[[7362,9597],[1,5]],[[7363,9602],[-7,6]],[[7368,9592],[2,5]],[[7370,9597],[-7,5]],[[7375,9593],[-5,4]],[[7365,9604],[3,7]],[[7368,9611],[-5,3]],[[7363,9614],[0,-3]],[[7363,9611],[2,-7]],[[7363,9614],[-4,7]],[[7359,9621],[4,-10]],[[7198,9741],[6,-14]],[[7208,9730],[-7,14]],[[7201,9744],[-3,-3]],[[7215,9622],[7,-11]],[[7222,9611],[3,2]],[[7225,9613],[5,-1]],[[7230,9612],[9,21]],[[7239,9633],[2,4]],[[7241,9637],[-10,6]],[[7231,9643],[-1,1]],[[7230,9644],[-7,-6]],[[7223,9638],[-5,-6]],[[7218,9632],[-6,-7]],[[7212,9625],[3,-3]],[[7195,9739],[5,-12]],[[7200,9727],[2,-3]],[[7198,9741],[-3,-2]],[[7200,9727],[-2,-3]],[[7198,9724],[8,-13]],[[7249,9620],[-6,2]],[[7243,9622],[-4,-4]],[[7239,9618],[5,-7]],[[7201,9711],[2,-2]],[[7198,9724],[-2,0]],[[7196,9724],[5,-13]],[[7235,9612],[3,-6]],[[7238,9606],[3,2]],[[7239,9618],[-4,-6]],[[7193,9730],[3,-6]],[[7195,9739],[-6,-2]],[[7189,9737],[4,-7]],[[7238,9606],[1,-3]],[[7239,9603],[3,-5]],[[7242,9598],[2,-4]],[[7244,9594],[3,3]],[[7244,9593],[3,-5]],[[7247,9588],[3,-6]],[[7250,9582],[3,2]],[[7244,9594],[0,-1]],[[7171,9718],[12,-15]],[[7183,9703],[1,1]],[[7184,9704],[1,13]],[[7185,9717],[8,13]],[[7189,9737],[-28,-13]],[[7161,9724],[10,-6]],[[7290,9699],[5,-4]],[[7296,9706],[-6,-7]],[[7293,9709],[-1,1]],[[7292,9710],[-5,-9]],[[7287,9701],[3,-2]],[[7285,9704],[2,-3]],[[7292,9710],[-6,6]],[[7286,9716],[-1,-12]],[[7284,9705],[1,-1]],[[7286,9716],[1,1]],[[7287,9717],[-3,1]],[[7284,9718],[-5,-10]],[[7279,9708],[5,-3]],[[7296,9712],[-4,4]],[[7292,9716],[-4,5]],[[7288,9721],[-1,-4]],[[7292,9716],[1,4]],[[7293,9720],[5,13]],[[7298,9733],[-1,1]],[[7297,9734],[-5,-7]],[[7292,9727],[-4,-6]],[[7298,9720],[-5,0]],[[7298,9733],[6,12]],[[7304,9745],[-3,-4]],[[7301,9741],[-3,-5]],[[7298,9736],[-1,-2]],[[7297,9746],[3,-3]],[[7300,9743],[1,20]],[[7301,9763],[-6,-3]],[[7295,9760],[-2,-9]],[[7293,9751],[4,-5]],[[7292,9768],[9,0]],[[7301,9768],[0,8]],[[7301,9776],[-11,1]],[[7290,9777],[0,0]],[[7290,9777],[2,-9]],[[7274,9775],[12,1]],[[7286,9776],[-12,6]],[[7274,9782],[0,-7]],[[7278,9589],[3,1]],[[7274,9583],[8,1]],[[7274,9589],[0,-6]],[[7274,9578],[8,0]],[[7274,9583],[0,-2]],[[7274,9581],[0,-3]],[[7282,9571],[0,7]],[[7274,9578],[0,-8]],[[7274,9570],[8,1]],[[7228,9757],[7,7]],[[7235,9764],[-4,7]],[[7231,9771],[-3,10]],[[7206,9772],[22,-15]],[[7286,9571],[3,1]],[[7289,9572],[0,7]],[[7282,9571],[4,0]],[[7296,9573],[0,5]],[[7289,9572],[7,1]],[[7303,9573],[0,7]],[[7296,9573],[7,0]],[[7235,9764],[1,-2]],[[7236,9762],[7,-8]],[[7243,9754],[4,5]],[[7247,9759],[0,15]],[[7247,9774],[-16,-3]],[[7314,9574],[-1,7]],[[7303,9573],[11,1]],[[7231,9754],[2,-4]],[[7233,9750],[2,2]],[[7235,9752],[0,0]],[[7235,9752],[1,10]],[[7228,9757],[3,-3]],[[7211,9760],[11,-16]],[[7222,9744],[9,10]],[[7204,9772],[7,-12]],[[7330,9627],[11,-11]],[[7341,9616],[1,0]],[[7346,9615],[3,6]],[[7349,9621],[-5,10]],[[7344,9631],[-8,8]],[[7336,9639],[-4,-7]],[[7332,9632],[-4,-4]],[[7328,9628],[2,-1]],[[7368,9611],[11,-8]],[[7382,9609],[-19,13]],[[7363,9622],[-3,2]],[[7360,9624],[-1,-3]],[[7390,9621],[1,1]],[[7391,9622],[7,24]],[[7398,9646],[-24,20]],[[7374,9666],[-6,-9]],[[7368,9657],[3,-11]],[[7371,9646],[-8,-24]],[[7358,9662],[4,-4]],[[7362,9658],[3,-4]],[[7365,9654],[3,3]],[[7374,9666],[-11,14]],[[7363,9680],[-9,-14]],[[7354,9666],[4,-4]],[[7342,9680],[5,-7]],[[7347,9673],[7,-7]],[[7363,9680],[-12,14]],[[7351,9694],[-8,-5]],[[7343,9689],[-4,-4]],[[7339,9685],[3,-5]],[[7341,9675],[3,-4]],[[7344,9671],[0,-1]],[[7344,9670],[3,3]],[[7342,9680],[-4,-3]],[[7338,9677],[3,-2]],[[7344,9670],[4,-3]],[[7348,9667],[4,-4]],[[7352,9663],[2,3]],[[7352,9655],[6,7]],[[7352,9663],[-3,-4]],[[7349,9659],[3,-4]],[[7357,9651],[5,7]],[[7352,9655],[5,-4]],[[7352,9632],[13,22]],[[7357,9651],[-2,-10]],[[7355,9641],[-4,-7]],[[7351,9634],[1,-2]],[[7254,9576],[-3,-1]],[[7251,9575],[2,-12]],[[7175,9708],[1,-2]],[[7176,9706],[1,-3]],[[7177,9703],[6,0]],[[7171,9718],[4,-10]],[[7251,9575],[-5,-3]],[[7246,9572],[3,-11]],[[7179,9696],[1,-6]],[[7180,9690],[3,2]],[[7183,9692],[4,5]],[[7187,9697],[-3,7]],[[7177,9703],[2,-7]],[[7244,9577],[2,-5]],[[7250,9582],[-6,-5]],[[7247,9588],[-6,-5]],[[7241,9583],[3,-6]],[[7244,9593],[-5,-5]],[[7239,9588],[2,-5]],[[7189,9699],[1,1]],[[7190,9700],[6,5]],[[7196,9705],[3,3]],[[7199,9708],[2,3]],[[7185,9717],[4,-18]],[[7236,9593],[3,-5]],[[7242,9598],[-6,-5]],[[7234,9598],[2,-5]],[[7239,9603],[-5,-5]],[[7199,9708],[5,-8]],[[7231,9604],[3,-6]],[[7235,9612],[-4,-2]],[[7231,9610],[-1,-5]],[[7230,9605],[1,-1]],[[7300,9743],[1,-2]],[[7304,9745],[15,23],[-18,0]],[[7301,9768],[0,-5]],[[7277,9770],[15,-2]],[[7290,9777],[-4,-1]],[[7274,9775],[-4,0]],[[7270,9775],[-4,-1]],[[7266,9774],[0,-4]],[[7266,9770],[11,0]],[[7274,9763],[5,0]],[[7279,9763],[8,-2]],[[7287,9761],[3,-1]],[[7290,9760],[2,8]],[[7277,9770],[-3,-7]],[[7290,9760],[5,0]],[[7292,9751],[1,0]],[[7287,9761],[-1,-4]],[[7286,9757],[6,-6]],[[7282,9743],[2,0]],[[7284,9743],[4,-1]],[[7288,9742],[1,0]],[[7289,9742],[3,9]],[[7286,9757],[-4,-14]],[[7277,9744],[3,0]],[[7280,9744],[2,-1]],[[7279,9763],[-2,-19]],[[7298,9468],[-8,8]],[[7290,9476],[0,-6]],[[7290,9470],[8,-2]],[[7314,9574],[10,1]],[[7224,9741],[9,9]],[[7222,9744],[2,-3]],[[7321,9571],[7,0]],[[7328,9571],[-1,5]],[[7314,9574],[0,-4]],[[7314,9570],[7,1]],[[7226,9737],[8,8]],[[7234,9745],[1,7]],[[7224,9741],[2,-4]],[[7305,9569],[9,1]],[[7303,9573],[2,-4]],[[7230,9731],[1,-4]],[[7231,9727],[3,16]],[[7234,9743],[0,2]],[[7226,9737],[4,-6]],[[7297,9562],[8,-2]],[[7305,9560],[0,2]],[[7305,9562],[0,7]],[[7305,9569],[-7,0]],[[7298,9569],[-1,-7]],[[7220,9738],[7,-10]],[[7227,9728],[3,3]],[[7222,9744],[-3,-3]],[[7219,9741],[1,-3]],[[7304,9554],[0,2]],[[7304,9556],[1,4]],[[7297,9562],[0,-6]],[[7297,9556],[7,-2]],[[7211,9760],[-1,-4]],[[7210,9756],[9,-15]],[[7303,9548],[0,1]],[[7303,9549],[1,5]],[[7297,9556],[-1,-7]],[[7296,9549],[7,-1]],[[7208,9750],[11,-15]],[[7219,9735],[1,3]],[[7210,9756],[-2,-6]],[[7357,9651],[-5,-7]],[[7352,9644],[3,-3]],[[7352,9655],[-3,-7]],[[7349,9648],[3,-4]],[[7344,9652],[5,-4]],[[7349,9659],[-2,-3]],[[7347,9656],[-3,-4]],[[7343,9660],[4,-4]],[[7348,9667],[-5,-7]],[[7340,9664],[3,-4]],[[7344,9671],[-4,-7]],[[7336,9668],[4,-4]],[[7341,9675],[-5,-7]],[[7338,9677],[-6,-4]],[[7332,9673],[4,-5]],[[7321,9667],[6,-1]],[[7327,9666],[5,7]],[[7339,9685],[-8,-6]],[[7331,9679],[-14,-9]],[[7317,9670],[4,-3]],[[7331,9661],[5,7]],[[7327,9666],[4,-5]],[[7334,9658],[2,-2]],[[7336,9656],[4,8]],[[7331,9661],[3,-3]],[[7336,9656],[3,-3]],[[7339,9653],[4,7]],[[7343,9649],[1,3]],[[7339,9653],[4,-4]],[[7344,9641],[5,7]],[[7343,9649],[-3,-4]],[[7340,9645],[4,-4]],[[7196,9705],[5,-8]],[[7228,9609],[2,-4]],[[7231,9610],[-1,2]],[[7225,9613],[3,-4]],[[7217,9606],[3,-5]],[[7220,9601],[8,8]],[[7222,9611],[-5,-5]],[[7222,9596],[3,3]],[[7225,9599],[6,5]],[[7220,9601],[2,-5]],[[7189,9686],[3,0]],[[7192,9688],[-5,9]],[[7183,9692],[6,-6]],[[7225,9599],[3,-6]],[[7228,9593],[6,5]],[[7195,9691],[-5,9]],[[7189,9699],[-2,-2]],[[7228,9591],[2,-3]],[[7230,9588],[6,5]],[[7228,9593],[0,-2]],[[7182,9683],[0,-1]],[[7182,9682],[1,-2]],[[7183,9680],[6,6]],[[7180,9690],[2,-7]],[[7230,9588],[1,-2]],[[7231,9586],[2,-3]],[[7233,9583],[6,5]],[[7184,9674],[9,8]],[[7193,9682],[-1,4]],[[7183,9680],[1,-6]],[[7235,9578],[6,5]],[[7233,9583],[2,-5]],[[7184,9674],[1,-4]],[[7185,9670],[8,-1]],[[7193,9669],[3,3]],[[7196,9672],[-3,10]],[[7274,9745],[3,-1]],[[7274,9763],[0,-9]],[[7274,9754],[0,-9]],[[7290,9476],[0,2]],[[7290,9478],[-4,4]],[[7286,9482],[-1,-6]],[[7285,9476],[-1,-5]],[[7284,9471],[6,-1]],[[7270,9755],[1,0]],[[7271,9755],[3,-1]],[[7274,9763],[-3,1]],[[7271,9764],[-1,-9]],[[7290,9454],[11,10]],[[7301,9464],[-3,4]],[[7284,9471],[0,-4]],[[7284,9467],[0,-4]],[[7284,9463],[6,-9]],[[7271,9764],[-5,1]],[[7266,9765],[-1,-9]],[[7265,9756],[5,-1]],[[7270,9745],[4,0]],[[7271,9755],[-1,-10]],[[7265,9746],[5,-1]],[[7265,9756],[0,-5]],[[7265,9751],[0,-5]],[[7269,9736],[1,9]],[[7265,9746],[0,-4]],[[7265,9742],[-2,-5]],[[7263,9737],[6,-1]],[[7269,9736],[1,0]],[[7270,9736],[4,-1]],[[7274,9735],[0,10]],[[7272,9442],[10,3]],[[7282,9445],[8,9]],[[7284,9463],[-6,0]],[[7278,9463],[-6,-14]],[[7272,9449],[0,-7]],[[7274,9735],[5,-1]],[[7279,9734],[1,10]],[[7274,9735],[0,0]],[[7280,9734],[2,-1]],[[7282,9733],[2,10]],[[7279,9734],[1,0]],[[7295,9543],[6,-1]],[[7301,9542],[2,6]],[[7296,9549],[-1,-6]],[[7219,9735],[6,-10]],[[7225,9725],[2,3]],[[7295,9538],[6,-2]],[[7301,9536],[5,4]],[[7306,9540],[1,1]],[[7307,9541],[-6,1]],[[7295,9543],[0,-5]],[[7216,9732],[6,-10]],[[7222,9722],[3,3]],[[7219,9735],[-3,-3]],[[7297,9532],[4,4]],[[7295,9538],[-2,-1]],[[7293,9537],[0,-5]],[[7293,9532],[0,-4]],[[7293,9528],[4,4]],[[7216,9733],[0,-1]],[[7208,9750],[-2,-2]],[[7206,9748],[10,-15]],[[7293,9528],[0,0]],[[7293,9532],[-6,2]],[[7287,9534],[-1,-5]],[[7286,9529],[7,-1]],[[7286,9524],[3,0]],[[7289,9524],[4,4]],[[7286,9529],[0,-5]],[[7219,9719],[3,3]],[[7216,9733],[-4,-3]],[[7212,9730],[7,-11]],[[7293,9537],[-6,1]],[[7287,9538],[0,-1]],[[7287,9537],[0,-3]],[[7203,9746],[9,-16]],[[7206,9748],[-3,-2]],[[7201,9744],[2,2]],[[7266,9803],[10,-2]],[[7276,9801],[28,-5]],[[7304,9796],[2,11]],[[7306,9807],[-135,35]],[[7161,9724],[0,0]],[[7371,9646],[-13,-20]],[[7358,9626],[2,-2]],[[7265,9608],[1,6]],[[7266,9614],[0,6]],[[7266,9620],[-3,1]],[[7346,9639],[2,-2]],[[7348,9637],[4,7]],[[7344,9641],[2,-2]],[[7348,9637],[3,-3]],[[7349,9621],[5,8]],[[7354,9629],[-2,3]],[[7346,9639],[-2,-8]],[[7340,9645],[-4,-6]],[[7336,9639],[-4,4]],[[7332,9643],[-4,-7]],[[7328,9636],[4,-4]],[[7340,9645],[-4,4]],[[7336,9649],[-4,-6]],[[7334,9658],[-2,-3]],[[7332,9655],[4,-6]],[[7332,9655],[-4,-7]],[[7328,9648],[4,-5]],[[7328,9648],[-3,-4]],[[7325,9644],[3,-8]],[[7320,9639],[5,-7]],[[7325,9632],[3,-4]],[[7325,9644],[-4,4]],[[7321,9648],[-4,4]],[[7317,9652],[0,-2]],[[7317,9650],[-1,-3]],[[7316,9647],[0,-4]],[[7316,9643],[4,-4]],[[7332,9655],[-4,4]],[[7328,9659],[-7,-11]],[[7325,9663],[3,-4]],[[7321,9667],[4,-4]],[[7237,9573],[7,4]],[[7235,9578],[2,-5]],[[7196,9672],[5,5]],[[7239,9569],[0,-1]],[[7239,9568],[4,2]],[[7243,9570],[3,2]],[[7237,9573],[2,-4]],[[7185,9670],[0,-2]],[[7185,9668],[2,-5]],[[7187,9663],[6,6]],[[7246,9560],[3,1]],[[7243,9570],[3,-10]],[[7241,9562],[2,-5]],[[7243,9557],[3,3]],[[7239,9568],[2,-6]],[[7196,9672],[0,-5]],[[7196,9667],[7,7]],[[7233,9566],[3,-7]],[[7236,9559],[5,3]],[[7239,9569],[-6,-3]],[[7193,9651],[3,3]],[[7196,9654],[2,3]],[[7198,9657],[-2,5]],[[7196,9662],[-1,1]],[[7195,9663],[-5,-6]],[[7190,9657],[3,-6]],[[7228,9591],[-5,-5]],[[7223,9586],[8,0]],[[7196,9662],[11,8]],[[7196,9667],[-1,-4]],[[7198,9657],[3,3]],[[7201,9660],[6,5]],[[7207,9665],[2,3]],[[7222,9596],[-2,-4]],[[7220,9592],[3,-6]],[[7278,9463],[-2,1]],[[7276,9464],[-2,0]],[[7274,9464],[-1,-8]],[[7273,9456],[-1,-7]],[[7284,9728],[2,0]],[[7286,9728],[1,9]],[[7287,9737],[1,5]],[[7282,9733],[2,-5]],[[7284,9467],[-7,3]],[[7277,9470],[-1,-6]],[[7289,9742],[8,4]],[[7285,9476],[-5,1]],[[7280,9477],[-3,-7]],[[7287,9737],[5,0]],[[7292,9737],[6,-1]],[[7280,9477],[-2,2]],[[7278,9479],[-5,-2]],[[7273,9477],[-2,-2]],[[7271,9475],[6,-5]],[[7292,9737],[-2,-10]],[[7290,9727],[2,0]],[[7286,9728],[4,-1]],[[7274,9464],[-11,1]],[[7263,9458],[10,-2]],[[7284,9728],[0,-5]],[[7284,9723],[0,-5]],[[7263,9445],[9,-3]],[[7270,9606],[0,6]],[[7270,9612],[0,2]],[[7270,9614],[-4,0]],[[7271,9621],[0,10]],[[7271,9631],[-3,0]],[[7268,9631],[-2,-6]],[[7266,9625],[0,-4]],[[7266,9621],[5,0]],[[7270,9614],[1,5]],[[7271,9619],[0,2]],[[7266,9621],[0,-1]],[[7343,9689],[-5,6]],[[7338,9695],[-8,3]],[[7330,9698],[-2,2]],[[7328,9700],[-1,2]],[[7327,9702],[-7,-5]],[[7320,9697],[-1,-5]],[[7319,9692],[12,-13]],[[7319,9692],[0,-1]],[[7319,9691],[0,-9]],[[7319,9682],[-2,-12]],[[7274,9782],[0,5]],[[7274,9787],[-8,-2]],[[7266,9784],[4,-9]],[[7266,9777],[0,-3]],[[7269,9644],[0,3]],[[7269,9647],[2,5]],[[7271,9652],[-5,2]],[[7266,9654],[0,-4]],[[7266,9650],[3,-6]],[[7271,9652],[3,4]],[[7274,9656],[-6,5]],[[7268,9661],[-2,-7]],[[7263,9632],[5,-1]],[[7268,9631],[0,6]],[[7268,9637],[-5,1]],[[7263,9638],[-1,-5]],[[7262,9633],[1,-1]],[[7268,9637],[0,2]],[[7268,9639],[1,3]],[[7269,9642],[-4,1]],[[7265,9643],[-2,-5]],[[7263,9621],[0,6]],[[7263,9627],[-1,1]],[[7262,9628],[-2,2]],[[7266,9625],[-3,2]],[[7325,9663],[-8,-11]],[[7317,9670],[0,-5]],[[7317,9665],[0,-7]],[[7317,9658],[0,-8]],[[7317,9665],[-4,2]],[[7313,9667],[0,-5]],[[7313,9662],[4,-4]],[[7309,9653],[0,-5]],[[7309,9648],[7,-1]],[[7313,9662],[-6,1]],[[7307,9663],[2,-10]],[[7309,9626],[4,0]],[[7313,9626],[-1,9]],[[7312,9635],[-4,0]],[[7308,9635],[0,-8]],[[7308,9627],[1,-1]],[[7313,9626],[2,0]],[[7315,9626],[1,16]],[[7316,9642],[-4,-7]],[[7315,9626],[2,3]],[[7317,9629],[3,10]],[[7316,9643],[0,-1]],[[7317,9629],[5,-4]],[[7322,9625],[3,7]],[[7324,9623],[4,-1]],[[7328,9622],[2,5]],[[7322,9625],[2,-2]],[[7328,9619],[5,-1]],[[7333,9618],[8,-2]],[[7328,9622],[0,-3]],[[7332,9611],[8,-2]],[[7333,9618],[-1,-7]],[[7330,9605],[5,-1]],[[7335,9604],[4,-1]],[[7332,9611],[-2,-6]],[[7207,9665],[3,-4]],[[7210,9661],[2,-5]],[[7212,9656],[4,4]],[[7216,9660],[-2,3]],[[7216,9651],[1,-2]],[[7217,9649],[5,4]],[[7222,9653],[-2,2]],[[7220,9655],[-4,5]],[[7212,9656],[4,-5]],[[7218,9646],[2,-3]],[[7220,9643],[6,5]],[[7226,9648],[-3,3]],[[7223,9651],[-1,2]],[[7217,9649],[1,-3]],[[7230,9644],[-2,2]],[[7228,9646],[-2,2]],[[7220,9643],[3,-5]],[[7207,9650],[3,-5]],[[7210,9645],[6,6]],[[7212,9656],[-5,-6]],[[7210,9661],[-6,-6]],[[7204,9655],[3,-5]],[[7201,9660],[3,-5]],[[7196,9654],[3,-5]],[[7199,9649],[5,6]],[[7215,9622],[-5,-5]],[[7210,9617],[7,-11]],[[7202,9644],[5,6]],[[7199,9649],[3,-5]],[[7202,9644],[2,-4]],[[7204,9640],[6,5]],[[7204,9640],[3,-5]],[[7207,9635],[5,6]],[[7212,9641],[-2,4]],[[7212,9641],[6,5]],[[7212,9641],[3,-4]],[[7215,9637],[5,6]],[[7280,9734],[-1,-10]],[[7279,9724],[5,-1]],[[7274,9735],[0,-10]],[[7274,9725],[5,-1]],[[7269,9726],[5,-1]],[[7270,9736],[-1,-10]],[[7263,9472],[8,3]],[[7273,9477],[-5,7]],[[7268,9484],[-2,1]],[[7266,9485],[-4,-6]],[[7263,9737],[0,-10]],[[7263,9727],[6,-1]],[[7266,9485],[-3,8]],[[7263,9493],[-6,-3]],[[7268,9716],[1,10]],[[7263,9727],[0,-4]],[[7263,9717],[5,-1]],[[7268,9484],[3,4]],[[7271,9488],[-5,7]],[[7266,9495],[-3,-2]],[[7268,9716],[5,-1]],[[7273,9715],[1,10]],[[7266,9495],[-3,6]],[[7263,9501],[-8,-4]],[[7278,9714],[1,10]],[[7263,9501],[0,2]],[[7263,9503],[0,2]],[[7263,9505],[-9,-2]],[[7278,9709],[1,-1]],[[7263,9632],[-1,-4]],[[7252,9759],[1,-1]],[[7253,9758],[2,14]],[[7247,9759],[5,0]],[[7258,9757],[2,0]],[[7260,9757],[-2,14]],[[7253,9758],[5,-1]],[[7251,9781],[6,-1]],[[7257,9777],[0,3]],[[7239,9531],[2,2]],[[7241,9533],[1,6]],[[7242,9539],[-3,8]],[[7239,9547],[-3,-1]],[[7236,9546],[-2,-1]],[[7234,9545],[1,-9]],[[7235,9536],[0,-8]],[[7235,9528],[4,3]],[[7225,9530],[2,1]],[[7227,9531],[1,5]],[[7228,9536],[0,1]],[[7228,9537],[-3,3]],[[7225,9540],[-3,0]],[[7222,9540],[3,-10]],[[7220,9539],[3,-11]],[[7223,9528],[2,2]],[[7222,9540],[-2,-1]],[[7252,9639],[8,-5]],[[7260,9634],[1,10]],[[7261,9644],[1,6]],[[7262,9650],[-4,2]],[[7258,9652],[-3,3]],[[7255,9655],[-3,-16]],[[7349,9579],[-8,-5]],[[7354,9629],[4,-3]],[[7328,9619],[-1,-10]],[[7327,9609],[-2,-3]],[[7325,9606],[5,-1]],[[7333,9594],[2,10]],[[7330,9605],[-2,-10]],[[7328,9595],[5,-1]],[[7333,9594],[6,-2]],[[7336,9577],[3,13]],[[7333,9594],[-2,-13]],[[7331,9581],[5,-4]],[[7330,9583],[1,-2]],[[7328,9595],[-1,-10]],[[7324,9587],[1,12]],[[7325,9599],[-4,1]],[[7321,9600],[-2,-10]],[[7321,9600],[-4,1]],[[7317,9601],[-6,-4]],[[7325,9599],[0,7]],[[7327,9609],[-4,1]],[[7323,9610],[-2,-10]],[[7322,9614],[1,-4]],[[7328,9619],[-6,-5]],[[7322,9614],[-5,-6]],[[7317,9608],[0,-7]],[[7317,9608],[-1,3]],[[7316,9611],[-1,-2]],[[7315,9609],[-7,-10]],[[7324,9623],[-7,-6]],[[7317,9617],[-1,-6]],[[7215,9637],[3,-5]],[[7210,9630],[2,-5]],[[7215,9637],[-5,-6]],[[7210,9631],[0,-1]],[[7207,9635],[3,-4]],[[7204,9572],[10,5]],[[7214,9577],[-10,-5]],[[7208,9620],[2,-3]],[[7210,9630],[-6,-5]],[[7204,9625],[4,-5]],[[7207,9635],[-5,-5]],[[7202,9630],[2,-5]],[[7200,9633],[2,-3]],[[7204,9640],[-5,-5]],[[7199,9635],[1,-2]],[[7196,9639],[3,-4]],[[7202,9644],[-6,-5]],[[7220,9565],[8,6]],[[7228,9571],[-10,14]],[[7218,9585],[-2,-4]],[[7216,9581],[4,-16]],[[7195,9642],[1,-3]],[[7199,9649],[-6,-5]],[[7193,9644],[2,-2]],[[7220,9564],[2,-6]],[[7222,9558],[6,4]],[[7228,9562],[3,4]],[[7231,9566],[-3,5]],[[7220,9565],[0,-1]],[[7193,9651],[-2,-2]],[[7191,9649],[2,-5]],[[7189,9651],[2,-2]],[[7190,9657],[-1,-6]],[[7263,9505],[0,4]],[[7263,9509],[-3,0]],[[7260,9509],[-5,2]],[[7255,9511],[-1,-1]],[[7260,9509],[3,6]],[[7263,9515],[-3,4]],[[7260,9519],[-5,-8]],[[7266,9705],[2,0]],[[7268,9705],[3,-1]],[[7268,9716],[-2,-11]],[[7260,9519],[3,6]],[[7263,9525],[-1,4]],[[7254,9533],[-15,-4]],[[7239,9529],[0,-7]],[[7239,9522],[3,-9]],[[7262,9706],[4,-1]],[[7263,9515],[3,3]],[[7266,9518],[-3,7]],[[7269,9694],[3,5]],[[7272,9699],[1,5]],[[7268,9705],[1,-11]],[[7266,9518],[3,5]],[[7269,9523],[1,4]],[[7270,9527],[-5,2]],[[7263,9509],[5,1]],[[7268,9510],[-2,8]],[[7260,9685],[3,0]],[[7263,9685],[2,5]],[[7265,9690],[-4,6]],[[7261,9696],[-1,-5]],[[7260,9691],[0,-6]],[[7268,9510],[6,8]],[[7274,9518],[-5,5]],[[7263,9674],[3,5]],[[7266,9679],[2,10]],[[7268,9689],[-3,1]],[[7263,9685],[0,-11]],[[7309,9648],[0,-5]],[[7309,9643],[-1,-8]],[[7268,9689],[1,5]],[[7262,9706],[-1,-10]],[[7258,9669],[2,-2]],[[7260,9667],[3,-2]],[[7263,9665],[3,-2]],[[7266,9663],[0,6]],[[7266,9669],[-8,6]],[[7258,9675],[-3,1]],[[7255,9676],[-3,0]],[[7252,9676],[0,-2]],[[7252,9674],[6,-5]],[[7301,9464],[4,2]],[[7305,9466],[6,24]],[[7311,9490],[0,5]],[[7311,9495],[3,10]],[[7314,9505],[-13,4]],[[7301,9509],[-3,-12]],[[7298,9497],[-5,-5]],[[7293,9492],[-3,-14]],[[7263,9567],[9,2]],[[7272,9569],[-2,11]],[[7270,9580],[-4,-1]],[[7290,9568],[8,1]],[[7286,9571],[0,-3]],[[7286,9568],[4,0]],[[7187,9661],[3,-4]],[[7187,9663],[0,-2]],[[7314,9622],[3,-5]],[[7315,9626],[-1,-4]],[[7312,9612],[3,-3]],[[7314,9622],[-2,-3]],[[7312,9619],[0,-7]],[[7312,9612],[-6,-12]],[[7312,9619],[-3,-2]],[[7309,9617],[-1,-6]],[[7308,9611],[-5,-8]],[[7308,9611],[-2,3]],[[7306,9614],[-8,-5]],[[7298,9609],[0,-6]],[[7306,9614],[0,3]],[[7306,9617],[-5,1]],[[7301,9618],[-3,-4]],[[7298,9614],[0,-5]],[[7298,9614],[-3,1]],[[7295,9615],[0,-11]],[[7295,9615],[-5,-5]],[[7290,9610],[0,-1]],[[7290,9609],[0,-5]],[[7296,9618],[2,10]],[[7298,9628],[-2,1]],[[7296,9629],[-3,0]],[[7293,9629],[0,-10]],[[7293,9619],[3,-1]],[[7301,9618],[0,10]],[[7301,9628],[-3,0]],[[7296,9618],[5,0]],[[7301,9618],[0,0]],[[7306,9617],[1,10]],[[7307,9627],[-4,1]],[[7303,9628],[-2,0]],[[7309,9617],[0,9]],[[7308,9627],[-1,0]],[[7231,9555],[5,4]],[[7233,9566],[-2,0]],[[7228,9562],[3,-7]],[[7182,9654],[7,-3]],[[7187,9661],[-6,-3]],[[7181,9658],[1,-4]],[[7223,9556],[1,-5]],[[7224,9551],[7,4]],[[7222,9558],[1,-2]],[[7180,9660],[1,-2]],[[7185,9668],[-6,-3]],[[7179,9665],[1,-5]],[[7216,9562],[1,-5]],[[7217,9557],[1,-4]],[[7218,9553],[5,3]],[[7220,9564],[-4,-2]],[[7177,9670],[2,-5]],[[7184,9674],[-7,-3]],[[7177,9671],[0,-1]],[[7216,9581],[-2,-5]],[[7214,9576],[-2,-5]],[[7212,9571],[4,-9]],[[7182,9682],[-6,-3]],[[7176,9679],[1,-8]],[[7215,9557],[2,0]],[[7212,9571],[0,-2]],[[7212,9569],[3,-12]],[[7174,9684],[8,-1]],[[7180,9690],[-6,-3]],[[7174,9687],[0,-3]],[[7173,9691],[1,-4]],[[7179,9696],[-7,-3]],[[7172,9693],[1,-2]],[[7209,9560],[3,9]],[[7214,9576],[0,1]],[[7204,9572],[5,-12]],[[7274,9518],[3,5]],[[7277,9523],[1,3]],[[7278,9526],[-4,0]],[[7274,9526],[-4,1]],[[7258,9675],[5,-1]],[[7260,9685],[-2,-10]],[[7269,9507],[9,6]],[[7278,9513],[-4,5]],[[7268,9510],[1,-3]],[[7266,9669],[0,10]],[[7270,9503],[8,3]],[[7278,9506],[0,7]],[[7269,9507],[1,-4]],[[7258,9652],[2,15]],[[7258,9669],[-3,-9]],[[7255,9660],[0,-5]],[[7263,9503],[7,0]],[[7266,9495],[6,4]],[[7272,9499],[-2,4]],[[7262,9650],[0,4]],[[7262,9654],[1,11]],[[7271,9488],[3,-5]],[[7274,9483],[2,9]],[[7276,9492],[-2,3]],[[7274,9495],[-2,4]],[[7262,9654],[4,-4]],[[7268,9661],[-2,2]],[[7278,9479],[-4,4]],[[7206,9554],[4,2]],[[7210,9556],[-1,4]],[[7218,9585],[-25,20],[-39,2]],[[7154,9607],[19,-54]],[[7174,9668],[3,2]],[[7176,9679],[-31,-8]],[[7146,9658],[28,10]],[[7243,9622],[2,4]],[[7245,9626],[-6,7]],[[7274,9526],[0,10]],[[7274,9536],[-3,1]],[[7271,9537],[-5,1]],[[7365,9604],[-2,-2]],[[7300,9654],[5,-1]],[[7305,9653],[4,0]],[[7307,9663],[-6,1]],[[7300,9664],[0,-10]],[[7282,9616],[8,-6]],[[7293,9619],[-5,0]],[[7288,9619],[-6,1]],[[7282,9620],[0,-4]],[[7308,9635],[-4,1]],[[7304,9636],[-1,-8]],[[7304,9636],[-4,0]],[[7300,9636],[-4,-2]],[[7296,9634],[0,-5]],[[7289,9629],[4,0]],[[7296,9634],[-8,-1]],[[7288,9633],[0,-4]],[[7288,9629],[1,0]],[[7282,9630],[2,0]],[[7284,9630],[4,-1]],[[7288,9633],[-1,5]],[[7287,9638],[-5,4]],[[7282,9642],[0,-4]],[[7282,9638],[0,-8]],[[7287,9638],[6,5]],[[7293,9643],[0,2]],[[7293,9645],[-3,0]],[[7290,9645],[-4,0]],[[7286,9645],[-2,1]],[[7284,9646],[-2,-4]],[[7300,9636],[-7,7]],[[7304,9636],[0,8]],[[7304,9644],[-6,0]],[[7298,9644],[-5,1]],[[7309,9643],[-5,1]],[[7305,9653],[-1,-9]],[[7300,9654],[-2,-10]],[[7300,9654],[-5,0]],[[7295,9654],[-2,-9]],[[7295,9664],[-2,-4]],[[7293,9660],[0,-5]],[[7293,9655],[2,-1]],[[7293,9655],[-1,0]],[[7292,9655],[-2,-10]],[[7172,9696],[0,-3]],[[7177,9703],[-6,-4]],[[7171,9699],[1,-3]],[[7158,9715],[17,-7]],[[7156,9710],[20,-4]],[[7155,9707],[16,-8]],[[7150,9695],[22,1]],[[7149,9691],[24,0]],[[7210,9556],[5,1]],[[7145,9680],[29,4]],[[7219,9544],[1,1]],[[7220,9545],[-2,8]],[[7215,9557],[4,-13]],[[7266,9770],[0,-5]],[[7214,9541],[5,3]],[[7280,9477],[2,8]],[[7282,9485],[-6,7]],[[7269,9642],[0,2]],[[7261,9644],[4,-1]],[[7274,9495],[5,0]],[[7279,9495],[1,9]],[[7280,9504],[-2,2]],[[7260,9634],[2,-1]],[[7280,9504],[2,0]],[[7282,9504],[0,9]],[[7282,9513],[-3,1]],[[7279,9514],[-1,-1]],[[7279,9514],[3,3]],[[7282,9517],[-5,6]],[[7282,9517],[7,7]],[[7286,9524],[-8,2]],[[7252,9639],[0,-4]],[[7284,9502],[2,0]],[[7286,9502],[2,12]],[[7288,9514],[-6,-1]],[[7282,9504],[2,-2]],[[7252,9639],[-1,1]],[[7251,9640],[-4,3]],[[7247,9643],[0,-2]],[[7247,9641],[-2,-15]],[[7245,9626],[5,0]],[[7282,9494],[2,2]],[[7284,9496],[0,6]],[[7279,9495],[3,-1]],[[7290,9777],[-16,10]],[[7290,9500],[8,-3]],[[7301,9509],[-1,9]],[[7298,9519],[-3,2]],[[7295,9521],[-3,-6]],[[7292,9515],[-2,-14]],[[7290,9501],[0,-1]],[[7245,9533],[-4,0]],[[7239,9531],[0,-2]],[[7220,9592],[-2,-7]],[[7336,9577],[2,0]],[[7338,9577],[3,-3]],[[7282,9620],[2,10]],[[7282,9630],[-3,0]],[[7279,9630],[-1,-10]],[[7278,9620],[4,0]],[[7288,9619],[1,10]],[[7292,9655],[-4,0]],[[7288,9655],[-2,-10]],[[7288,9655],[-4,1]],[[7284,9656],[-3,0]],[[7281,9656],[0,-10]],[[7281,9646],[3,0]],[[7281,9656],[-4,0]],[[7277,9656],[-1,-10]],[[7276,9646],[5,0]],[[7276,9646],[0,-7]],[[7276,9639],[6,-1]],[[7276,9639],[-2,-9]],[[7274,9630],[5,0]],[[7274,9619],[0,11]],[[7274,9630],[-3,1]],[[7271,9619],[3,0]],[[7274,9619],[4,-1]],[[7278,9618],[0,2]],[[7295,9543],[-7,1]],[[7288,9544],[-1,-6]],[[7210,9727],[2,3]],[[7296,9549],[-7,2]],[[7289,9551],[-1,-2]],[[7288,9549],[0,-5]],[[7215,9720],[4,-1]],[[7297,9556],[-8,1]],[[7289,9557],[0,-2]],[[7289,9555],[0,-4]],[[7215,9712],[5,0]],[[7220,9712],[0,6]],[[7220,9718],[-1,1]],[[7220,9545],[3,1]],[[7223,9546],[3,1]],[[7226,9547],[-2,4]],[[7226,9547],[2,-1]],[[7228,9546],[5,2]],[[7233,9548],[-2,7]],[[7233,9548],[6,4]],[[7239,9552],[-3,7]],[[7239,9552],[3,1]],[[7242,9553],[1,4]],[[7175,9664],[-1,4]],[[7146,9655],[29,9]],[[7230,9542],[4,3]],[[7236,9546],[6,7]],[[7228,9546],[2,-4]],[[7175,9664],[2,-5]],[[7177,9659],[3,1]],[[7242,9553],[5,-1]],[[7149,9620],[31,30]],[[7180,9650],[-3,9]],[[7146,9628],[3,-8]],[[7239,9547],[8,0]],[[7242,9539],[4,0]],[[7180,9650],[3,3]],[[7183,9653],[-1,1]],[[7282,9485],[0,0]],[[7282,9485],[0,0]],[[7282,9485],[0,9]],[[7247,9641],[-3,1]],[[7244,9642],[-3,-5]],[[7286,9482],[-4,3]],[[7244,9642],[-10,4]],[[7234,9646],[-3,-3]],[[7289,9494],[0,1]],[[7289,9495],[-5,1]],[[7282,9485],[7,9]],[[7247,9643],[-2,1]],[[7245,9644],[-2,2]],[[7243,9646],[-4,2]],[[7239,9648],[-2,2]],[[7237,9650],[-3,-4]],[[7289,9495],[1,5]],[[7290,9501],[-4,1]],[[7251,9640],[1,10]],[[7252,9650],[-3,1]],[[7249,9651],[-4,-7]],[[7292,9515],[-2,0]],[[7290,9515],[-2,-1]],[[7319,9533],[-4,7]],[[7315,9540],[-4,-3]],[[7263,9727],[-5,6]],[[7258,9733],[-1,-7]],[[7323,9537],[-4,6]],[[7319,9543],[-4,-3]],[[7281,9610],[9,-1]],[[7282,9616],[-1,-6]],[[7281,9610],[0,-5]],[[7278,9618],[0,-6]],[[7278,9612],[0,-7]],[[7270,9612],[8,0]],[[7276,9639],[-8,0]],[[7276,9646],[-7,1]],[[7277,9656],[-3,0]],[[7274,9656],[0,0]],[[7284,9656],[1,5]],[[7285,9661],[-8,0]],[[7277,9661],[-3,-5]],[[7285,9661],[0,9]],[[7285,9670],[-3,1]],[[7282,9671],[-3,-6]],[[7279,9665],[-2,-4]],[[7289,9660],[1,10]],[[7290,9670],[-5,0]],[[7285,9661],[4,-1]],[[7293,9660],[-4,0]],[[7297,9562],[-7,1]],[[7290,9563],[0,-1]],[[7290,9562],[-1,-5]],[[7220,9712],[2,-4]],[[7222,9708],[2,3]],[[7224,9711],[1,5]],[[7225,9716],[-5,2]],[[7290,9568],[0,-5]],[[7225,9716],[6,6]],[[7230,9723],[-5,2]],[[7230,9724],[1,3]],[[7282,9563],[8,-1]],[[7286,9568],[-4,-1]],[[7282,9567],[0,-4]],[[7224,9711],[9,7]],[[7282,9557],[7,-2]],[[7282,9563],[0,-6]],[[7224,9705],[2,2]],[[7226,9707],[9,9]],[[7222,9708],[2,-3]],[[7282,9557],[0,-2]],[[7282,9555],[-1,-4]],[[7281,9551],[7,-2]],[[7217,9701],[3,1]],[[7220,9702],[4,3]],[[7281,9551],[0,-5]],[[7281,9546],[7,-2]],[[7218,9692],[2,2]],[[7220,9694],[4,3]],[[7224,9697],[-4,5]],[[7281,9546],[-1,-8]],[[7280,9538],[7,-1]],[[7231,9524],[8,-2]],[[7235,9528],[-4,-4]],[[7183,9653],[9,-15]],[[7192,9638],[3,4]],[[7231,9524],[-4,-1]],[[7227,9523],[-5,-5]],[[7196,9630],[4,3]],[[7192,9638],[4,-8]],[[7208,9620],[-12,10]],[[7149,9620],[5,-13]],[[7235,9536],[-7,0]],[[7227,9531],[0,-8]],[[7230,9542],[-2,-5]],[[7263,9737],[-4,1]],[[7259,9738],[-1,-5]],[[7327,9541],[-3,7]],[[7324,9548],[-5,-5]],[[7259,9738],[-4,1]],[[7255,9739],[0,0]],[[7255,9739],[-2,-10]],[[7255,9739],[-4,0]],[[7251,9739],[-1,1]],[[7250,9740],[0,-6]],[[7250,9734],[1,-5]],[[7331,9545],[1,1]],[[7332,9546],[-4,6]],[[7328,9552],[-3,-3]],[[7325,9549],[-1,-1]],[[7250,9734],[-4,-4]],[[7332,9546],[4,3]],[[7336,9549],[-2,4]],[[7334,9553],[-6,0]],[[7328,9553],[0,-1]],[[7250,9740],[-5,1]],[[7245,9741],[-1,-10]],[[7335,9539],[5,4]],[[7340,9543],[-1,2]],[[7339,9545],[-3,4]],[[7245,9741],[-4,0]],[[7241,9741],[-2,-10]],[[7339,9545],[7,18]],[[7338,9566],[-4,-6]],[[7334,9560],[0,-7]],[[7241,9741],[-2,0]],[[7239,9741],[-2,1]],[[7237,9742],[-2,-10]],[[7336,9569],[-2,-1]],[[7334,9568],[-3,-4]],[[7331,9564],[3,-4]],[[7295,9669],[-5,1]],[[7295,9674],[-3,1]],[[7292,9675],[-5,0]],[[7287,9675],[-1,0]],[[7286,9675],[-4,-4]],[[7277,9667],[2,-2]],[[7286,9675],[-4,1]],[[7282,9676],[-4,1]],[[7278,9677],[-1,-10]],[[7278,9677],[-1,0]],[[7277,9677],[-5,1]],[[7272,9678],[-2,0]],[[7270,9678],[-1,-5]],[[7269,9673],[2,-10]],[[7271,9663],[6,4]],[[7271,9663],[-3,0]],[[7268,9663],[0,-2]],[[7269,9673],[-1,-10]],[[7270,9678],[-4,1]],[[7272,9678],[2,10]],[[7274,9688],[-6,1]],[[7274,9688],[0,0]],[[7274,9688],[2,10]],[[7276,9698],[-4,1]],[[7278,9698],[3,-1]],[[7281,9697],[1,0]],[[7282,9697],[2,8]],[[7279,9708],[-1,-10]],[[7274,9688],[4,-1]],[[7278,9687],[1,0]],[[7279,9687],[2,10]],[[7278,9698],[-2,0]],[[7277,9677],[1,10]],[[7224,9697],[6,4]],[[7230,9701],[-2,3]],[[7228,9704],[-2,3]],[[7287,9534],[-5,0]],[[7282,9534],[4,-5]],[[7280,9538],[0,-3]],[[7280,9535],[2,-1]],[[7228,9704],[9,8]],[[7280,9535],[-2,-9]],[[7230,9701],[1,-1]],[[7231,9700],[8,9]],[[7280,9535],[-6,1]],[[7231,9699],[2,-2]],[[7233,9697],[8,8]],[[7231,9700],[0,-1]],[[7281,9546],[-4,1]],[[7277,9547],[-3,-11]],[[7223,9690],[8,9]],[[7220,9694],[3,-4]],[[7282,9555],[-4,1]],[[7278,9556],[-1,-9]],[[7220,9681],[5,5]],[[7225,9686],[-2,4]],[[7282,9567],[-3,0]],[[7279,9567],[-1,-11]],[[7225,9686],[3,4]],[[7228,9690],[6,5]],[[7234,9695],[-1,2]],[[7223,9546],[2,-6]],[[7215,9538],[5,1]],[[7219,9526],[4,2]],[[7317,9723],[0,0]],[[7317,9723],[40,62],[3,9]],[[7360,9794],[-2,1]],[[7358,9795],[-52,12]],[[7304,9796],[-3,-20]],[[7255,9660],[-2,1]],[[7253,9661],[-1,-11]],[[7237,9742],[-3,1]],[[7331,9564],[-4,-4]],[[7327,9560],[-2,-1]],[[7325,9559],[3,-6]],[[7239,9741],[2,5]],[[7241,9746],[0,5]],[[7241,9751],[-2,0]],[[7239,9751],[-4,1]],[[7323,9552],[2,-3]],[[7325,9559],[-4,-4]],[[7321,9555],[2,-3]],[[7251,9739],[1,5]],[[7252,9744],[-11,2]],[[7323,9552],[-10,-9]],[[7313,9543],[2,-3]],[[7252,9744],[-1,5]],[[7251,9749],[0,2]],[[7251,9751],[-10,0]],[[7321,9555],[-2,-3]],[[7319,9552],[-7,-6]],[[7312,9546],[1,-3]],[[7255,9739],[2,9]],[[7257,9748],[-6,1]],[[7312,9546],[-1,-1]],[[7311,9545],[-4,-4]],[[7306,9540],[2,-6]],[[7265,9742],[-5,5]],[[7260,9747],[-3,1]],[[7282,9676],[0,10]],[[7282,9686],[-3,1]],[[7282,9686],[2,0]],[[7284,9686],[1,10]],[[7285,9696],[-3,1]],[[7285,9696],[5,-1]],[[7290,9695],[6,-1]],[[7284,9686],[4,-1]],[[7288,9685],[1,0]],[[7289,9685],[1,10]],[[7287,9675],[1,10]],[[7292,9675],[0,9]],[[7292,9684],[0,1]],[[7292,9685],[-3,0]],[[7292,9685],[5,8]],[[7292,9684],[5,-1]],[[7297,9683],[1,1]],[[7298,9684],[2,6]],[[7296,9674],[1,9]],[[7301,9674],[0,5]],[[7301,9679],[-3,5]],[[7301,9679],[10,-1]],[[7311,9678],[-2,1]],[[7309,9679],[-8,10]],[[7304,9673],[12,-1]],[[7316,9672],[-5,6]],[[7274,9566],[5,1]],[[7274,9570],[-2,-1]],[[7272,9569],[2,-3]],[[7234,9695],[4,1]],[[7238,9696],[6,4]],[[7273,9557],[5,-1]],[[7274,9566],[0,-6]],[[7274,9560],[-1,-3]],[[7231,9686],[2,3]],[[7233,9689],[5,7]],[[7228,9690],[3,-4]],[[7273,9557],[0,-5]],[[7273,9552],[-1,-4]],[[7272,9548],[5,-1]],[[7220,9676],[8,7]],[[7228,9683],[3,3]],[[7272,9548],[0,-4]],[[7272,9544],[-1,-7]],[[7220,9671],[10,8]],[[7230,9679],[-2,4]],[[7220,9671],[4,-4]],[[7224,9667],[7,9]],[[7231,9676],[-1,2]],[[7230,9678],[0,1]],[[7226,9664],[8,8]],[[7234,9672],[-1,2]],[[7233,9674],[-2,2]],[[7224,9667],[2,-3]],[[7272,9544],[-6,1]],[[7226,9664],[1,-2]],[[7227,9662],[1,-2]],[[7228,9660],[8,8]],[[7236,9668],[-1,3]],[[7235,9671],[-1,1]],[[7273,9552],[-7,1]],[[7266,9553],[0,-4]],[[7228,9658],[3,-4]],[[7231,9654],[7,11]],[[7238,9665],[0,1]],[[7238,9666],[-2,2]],[[7228,9660],[0,-2]],[[7290,9515],[0,8]],[[7290,9523],[-1,1]],[[7253,9661],[-7,1]],[[7246,9662],[-1,-5]],[[7245,9657],[4,-6]],[[7295,9521],[-5,2]],[[7245,9657],[-2,-11]],[[7246,9662],[-1,0]],[[7245,9662],[-3,-2]],[[7242,9660],[-3,-12]],[[7253,9661],[-3,7]],[[7250,9668],[-4,4]],[[7246,9672],[-1,-10]],[[7252,9674],[-2,-6]],[[7289,9494],[4,-2]],[[7245,9673],[1,-1]],[[7252,9674],[-7,5]],[[7245,9679],[0,-6]],[[7238,9665],[3,-4]],[[7241,9661],[1,-1]],[[7245,9673],[-7,-7]],[[7245,9679],[-2,1]],[[7243,9680],[-8,-9]],[[7297,9532],[4,-1]],[[7301,9531],[3,-1]],[[7265,9751],[-5,-4]],[[7301,9531],[-6,-10]],[[7265,9756],[-5,1]],[[7258,9757],[-1,-9]],[[7252,9759],[-1,-8]],[[7311,9545],[0,3]],[[7311,9548],[-8,1]],[[7243,9754],[-4,-3]],[[7311,9548],[1,6]],[[7312,9554],[-8,2]],[[7312,9554],[0,2]],[[7312,9556],[1,4]],[[7313,9560],[-8,2]],[[7313,9667],[-10,1]],[[7317,9670],[-1,2]],[[7319,9682],[-4,0]],[[7315,9682],[-4,-4]],[[7330,9698],[8,-3]],[[7351,9694],[9,24]],[[7360,9718],[-21,11]],[[7339,9729],[-11,-29]],[[7398,9646],[8,-1]],[[7406,9645],[19,33],[-3,45],[-24,45]],[[7398,9768],[-6,4]],[[7392,9772],[-8,7]],[[7384,9779],[-7,5]],[[7377,9784],[-17,-66]],[[7320,9724],[19,5]],[[7377,9784],[-17,10]],[[7317,9723],[3,1]],[[7320,9724],[7,-22]],[[7317,9712],[3,-13]],[[7320,9699],[0,-2]],[[7319,9691],[-7,1]],[[7312,9692],[0,-5]],[[7312,9687],[3,-5]],[[7266,9553],[0,8]],[[7266,9561],[-3,1]],[[7230,9649],[6,5]],[[7236,9654],[5,7]],[[7231,9654],[-1,-5]],[[7274,9560],[-8,1]],[[7236,9654],[1,-4]],[[7230,9649],[-2,-3]],[[7228,9658],[-5,-7]],[[7227,9662],[-7,-7]],[[7274,9581],[-4,-1]],[[7224,9667],[-8,-7]],[[7269,9588],[1,-8]],[[7243,9680],[-2,3]],[[7241,9683],[-8,-9]],[[7241,9683],[-2,4]],[[7239,9687],[-9,-9]],[[7239,9687],[-6,2]],[[7239,9687],[5,6]],[[7244,9693],[3,1]],[[7245,9679],[1,4]],[[7246,9683],[-2,10]],[[7246,9683],[6,-1]],[[7252,9682],[1,5]],[[7252,9676],[0,6]],[[7255,9676],[3,15]],[[7258,9691],[-5,-4]],[[7260,9691],[-2,0]],[[7259,9701],[-1,-10]],[[7313,9560],[0,4]],[[7313,9564],[1,6]],[[7313,9564],[7,-2]],[[7320,9562],[0,2]],[[7320,9564],[1,7]],[[7319,9554],[1,8]],[[7312,9556],[7,-2]],[[7319,9552],[0,2]],[[7327,9560],[0,3]],[[7327,9563],[-7,1]],[[7327,9563],[1,8]],[[7266,9770],[-8,1]],[[7334,9568],[-3,8]],[[7338,9577],[-7,-1]],[[7320,9697],[-5,5]],[[7315,9702],[-3,-5]],[[7312,9697],[0,-5]],[[7320,9699],[-5,9]],[[7315,9707],[0,-5]],[[7308,9707],[0,-9]],[[7308,9698],[4,-1]],[[7311,9688],[1,-1]],[[7308,9698],[-1,-10]],[[7307,9688],[4,0]],[[7311,9688],[-2,-9]],[[7307,9688],[-3,0]],[[7304,9688],[-3,1]],[[7304,9688],[2,18]],[[7276,9801],[-2,-14]],[[1966,4494],[1,38]],[[1967,4532],[-24,11]],[[1943,4543],[2,-24],[13,-24],[8,-1]],[[1980,4504],[16,5]],[[1996,4509],[-7,31]],[[1989,4540],[-6,-1]],[[1983,4539],[-5,-1]],[[1978,4538],[2,-34]],[[1996,4509],[19,3],[0,35]],[[2015,4547],[-26,-7]],[[2189,4550],[30,8],[14,-39],[31,5],[0,53],[-14,-2],[-1,55],[-16,-1],[0,-15],[-21,-12],[-20,34],[3,-39],[9,-16],[-14,-2],[-1,-29]],[[1967,4532],[11,6]],[[1983,4539],[-3,29]],[[1980,4568],[-37,-25]],[[1820,4627],[116,-2],[30,1]],[[1966,4626],[1,192]],[[1967,4818],[-145,2]],[[1822,4820],[-196,5]],[[1626,4633],[95,-4],[99,-2]],[[2062,4432],[0,11],[44,3],[108,0],[0,-14],[58,0]],[[2320,4559],[-2,94],[-29,-1]],[[2289,4652],[-76,-2],[0,4],[-50,0],[1,17],[-50,1],[0,-46],[-74,0]],[[2040,4626],[0,-193]],[[2040,4433],[22,-1]],[[5511,3027],[-13,17],[6,8],[-9,24],[6,10],[-3,33],[8,3],[8,34],[0,23],[26,50],[10,44],[15,29],[-9,21],[18,13],[4,20],[-10,20]],[[5568,3376],[-97,78]],[[5471,3454],[-175,146],[-37,-14]],[[5259,3586],[-77,-32],[-88,-34],[-77,-32]],[[5017,3488],[-13,-345],[-5,-70]],[[4999,3073],[18,-33],[30,-84],[31,-5],[29,-15],[-6,-30],[10,-6],[57,7],[133,-14],[16,-17],[14,-4],[59,100],[24,66],[17,33],[17,-9],[18,-38],[35,-3],[10,6]],[[5464,2948],[21,20],[-8,18],[18,6],[2,15],[15,-1]],[[5512,3006],[-1,21]],[[4999,3073],[-5,-72]],[[4903,2710],[30,-9],[9,14],[24,16],[24,2],[19,13],[49,6],[30,-8],[126,11],[32,17],[13,-7],[43,5],[23,11],[22,1],[11,20],[14,9],[60,73],[4,14],[29,30],[-1,20]],[[5512,3006],[13,-6],[14,-18],[17,-2],[41,21],[6,-28],[22,-16],[13,-23],[24,10],[39,0],[22,-12],[7,-12],[20,-3],[27,20],[21,-10],[12,3]],[[5826,3165],[-144,119]],[[5682,3284],[-114,92]],[[5384,2701],[28,-30],[21,-7]],[[5433,2664],[28,2],[25,9],[-1,12],[27,19],[46,-8],[48,-42],[16,-1],[47,-15],[15,-13],[41,-4],[13,-18],[10,10],[40,-2]],[[5464,2948],[9,-14],[15,0],[2,-12],[-19,-8],[-16,-39],[14,-13],[-1,-37],[-27,-22],[3,11],[-16,4],[-27,-9],[0,-27],[6,-25],[-33,-12],[-1,-16],[11,-28]],[[5241,2381],[0,30],[21,14],[-11,25],[12,32],[16,3],[19,26],[26,7],[11,32],[22,36],[-1,23],[13,32],[-5,31],[20,29]],[[5405,1813],[90,70],[73,62]],[[5568,1945],[3,20],[-24,9],[-18,16],[-10,25],[-15,15],[8,15],[-8,48],[3,48],[7,19],[5,43],[-5,26],[0,89],[-28,103],[-11,60],[7,16],[-11,38],[6,42],[-8,37],[-36,50]],[[2289,4652],[0,58]],[[2289,4710],[-1,31],[-25,-1],[1,95]],[[2264,4835],[-51,-1],[0,-4],[-99,3],[0,-14],[-147,-1]],[[1966,4626],[74,0]],[[1626,4336],[0,-6]],[[1626,4330],[20,2],[4,-13],[23,-1],[19,58],[-1,87],[-35,-2],[-26,-73],[-4,0]],[[1966,4494],[14,10]],[[5568,1945],[69,52]],[[5637,1997],[114,88]],[[2015,4547],[-6,25],[-29,-4]],[[1820,4627],[-1,-122],[-2,-70]],[[1817,4435],[89,0],[134,-2]],[[1818,4242],[-1,193]],[[1626,4330],[-2,-83]],[[1624,4247],[69,-4],[125,-1]],[[1819,4242],[244,-3]],[[2063,4239],[-1,2]],[[2062,4241],[1,15],[-1,176]],[[1818,4242],[1,0]],[[2062,4241],[97,0],[52,-3]],[[6858,353],[-10,29],[10,32]],[[6858,414],[-29,-8],[-2,-45],[31,-8]],[[6803,279],[50,-6]],[[6853,273],[0,40],[5,40]],[[6858,414],[20,32],[10,24],[-24,10],[-7,-12],[-23,-2],[-2,72],[7,22],[14,22],[5,27],[-16,36],[-7,33],[-14,28],[1,24]],[[6822,730],[-44,6]],[[6778,736],[-5,-49],[-9,-129],[-4,-109],[-6,-60],[-5,-106]],[[6749,283],[54,-4]],[[6500,39],[0,106],[-51,0],[-53,-56],[-19,5],[3,28],[-22,5],[-5,17]],[[6353,144],[-39,0]],[[6314,144],[-7,-96]],[[6307,48],[30,-19],[21,7],[19,-14],[10,14],[113,3]],[[6940,361],[24,227],[7,126],[-98,9],[-51,7]],[[6853,273],[79,-9],[8,97]],[[6854,1388],[38,-3]],[[6892,1385],[-7,33],[43,34],[-5,17],[11,8],[6,28],[38,13],[12,-1],[19,20],[44,22],[4,13],[-23,-3],[-35,63],[-3,13],[-16,10],[-43,78],[-16,-1],[-29,17],[-33,-2],[-30,24],[-8,16],[-13,-9],[-1,-18],[-27,-40]],[[6780,1720],[98,-18],[3,-5],[-27,-309]],[[6778,736],[10,132],[12,140],[2,51]],[[6802,1059],[3,116],[3,23],[16,193],[30,-3]],[[6780,1720],[-77,13]],[[6703,1733],[-29,-321],[-158,23]],[[6516,1435],[-10,-124],[-11,-133],[-10,-144],[-11,-117],[-21,-227],[-10,-139]],[[6443,551],[163,-21],[19,225],[153,-19]],[[7208,327],[-44,4],[-51,10],[-173,20]],[[6803,279],[-16,-226]],[[6787,53],[153,0],[94,3],[148,-10]],[[7039,1385],[-2,-14],[-145,14]],[[6802,1059],[75,6],[125,-26],[-21,-202],[113,-3],[21,3],[8,64],[150,-28]],[[6703,1733],[4,39]],[[6707,1772],[-39,22],[-32,4],[1,20],[-12,38],[-14,0],[-24,22],[-29,41],[-23,17]],[[6535,1936],[-2,-14],[25,-3],[-10,-137],[-25,-272]],[[6523,1510],[-7,-75]],[[6862,2032],[-128,20]],[[6734,2052],[-27,-280]],[[6500,39],[35,0],[128,5],[124,9]],[[6749,283],[-90,13],[-100,7],[-133,18]],[[6426,321],[-14,-176],[-59,-1]],[[6443,551],[-7,-94]],[[6436,457],[-10,-136]],[[6734,2052],[-188,28]],[[6546,2080],[-11,-144]],[[6412,4605],[12,16],[8,34],[15,35]],[[6447,4690],[-120,179]],[[6327,4869],[-67,-35]],[[6288,4536],[34,-1],[15,15],[40,-4],[24,22],[11,37]],[[6603,4565],[9,92],[10,101]],[[6622,4758],[-58,6]],[[6564,4764],[-12,0],[-38,-31],[-24,3],[-27,-13],[-16,-33]],[[6412,4605],[47,-33],[0,-47]],[[6854,4567],[7,81]],[[6861,4648],[-12,13]],[[6849,4661],[-9,22],[-11,0],[-30,-18],[-26,-22],[-46,4],[-27,24],[-21,27],[-22,13],[-16,20],[-3,17],[-16,10]],[[6849,4661],[15,8],[3,18],[-13,7],[5,33],[13,-1],[3,23],[-16,12],[-1,17],[12,-3],[2,37],[12,7],[-17,16],[-176,-1],[9,191]],[[6700,5025],[-54,8],[-126,-83]],[[6520,4950],[44,-186]],[[6520,4950],[-116,-42]],[[6404,4908],[-77,-39]],[[6991,4668],[3,-2]],[[6994,4666],[16,-14]],[[7010,4652],[4,28],[-15,12]],[[6999,4692],[-13,-13],[5,-11]],[[6990,4635],[11,-19],[9,36]],[[6994,4666],[-4,-31]],[[7110,4760],[-17,-18],[-36,-15],[-17,-14],[-26,-2],[-18,-12]],[[6996,4699],[3,-7]],[[6990,4635],[-7,-4]],[[6983,4631],[-16,-21],[-20,17]],[[6947,4627],[-8,9]],[[6939,4636],[-42,-3],[-30,6],[-6,9]],[[6991,4668],[-12,-4]],[[6979,4664],[3,-15]],[[6982,4649],[1,-18]],[[6982,4649],[-10,-9]],[[6972,4640],[-16,2],[-9,-15]],[[6972,4640],[-8,10]],[[6964,4650],[-16,-3]],[[6948,4647],[-9,-11]],[[6979,4664],[-4,2]],[[6975,4666],[-11,-16]],[[6996,4699],[-10,-7]],[[6986,4692],[-14,-17],[3,-9]],[[6948,4647],[-4,34],[26,30],[16,-19]],[[6886,4981],[-32,28],[-62,4]],[[6792,5013],[-92,12]],[[7164,7775],[-3,11]],[[7161,7786],[-5,6],[4,37]],[[7160,7829],[-41,-15]],[[7119,7814],[3,-18]],[[7122,7796],[-1,-57]],[[7121,7739],[13,2],[26,17],[4,17]],[[6751,8156],[38,-9],[11,9]],[[6800,8156],[30,65]],[[6830,8221],[-12,16],[-13,-2],[-16,14],[-16,36]],[[6773,8285],[-8,10]],[[6765,8295],[-30,-35],[-17,9]],[[6718,8269],[22,-48],[12,-37],[7,-3],[-8,-25]],[[7155,7714],[21,8]],[[7176,7722],[3,34],[11,11]],[[7190,7767],[-13,-1]],[[7177,7766],[-13,9]],[[7121,7739],[-6,-47]],[[7115,7692],[-2,-19],[42,41]],[[7161,7786],[16,21]],[[7177,7807],[12,1]],[[7189,7808],[0,8]],[[7189,7816],[0,11]],[[7189,7827],[-13,-5]],[[7176,7822],[-16,7]],[[7222,7814],[-13,-1]],[[7209,7813],[-13,-5]],[[7196,7808],[0,-19]],[[7196,7789],[6,-11],[17,2]],[[7196,7808],[-7,0]],[[7177,7807],[2,-32]],[[7179,7775],[17,14]],[[7177,7766],[2,9]],[[7190,7767],[29,5]],[[7176,7722],[17,5],[-11,-18],[-1,-35],[20,6],[17,-13],[26,22]],[[6522,7858],[30,-55]],[[6620,7799],[28,-2],[-18,43],[-54,136]],[[6576,7976],[-8,1]],[[6568,7977],[-108,11]],[[6460,7988],[-1,-17],[63,-113]],[[7061,7719],[11,1],[0,-23],[16,5],[11,-24],[16,14]],[[7122,7796],[-21,-7],[-22,-25],[-29,17]],[[7050,7781],[11,-62]],[[6928,8238],[11,-24],[28,-17],[8,-16]],[[6975,8181],[8,34],[16,15]],[[6999,8230],[30,8],[5,-8]],[[7034,8230],[-1,40]],[[7033,8270],[-128,54]],[[6905,8324],[0,-24]],[[6905,8300],[23,-62]],[[6969,8145],[6,36]],[[6928,8238],[1,-49]],[[6929,8189],[40,-44]],[[6694,7855],[20,8]],[[6714,7863],[16,21],[8,-26],[16,-1]],[[6754,7857],[-5,31]],[[6749,7888],[-5,7]],[[6744,7895],[-6,9],[-27,4]],[[6711,7908],[-1,-12]],[[6710,7896],[-11,-5]],[[6699,7891],[-8,-18],[-19,25]],[[6672,7898],[-1,0]],[[6671,7898],[-6,-21],[29,-22]],[[6714,7926],[-3,-18]],[[6744,7895],[25,60]],[[6769,7955],[-21,2]],[[6748,7957],[-57,6]],[[6691,7963],[17,-14],[6,-23]],[[6661,7927],[14,-6],[9,17]],[[6684,7938],[-5,32]],[[6679,7970],[-16,17],[-6,-19]],[[6657,7968],[8,-20],[-4,-21]],[[6765,7849],[-11,8]],[[6714,7863],[16,-34],[19,-19],[16,39]],[[7209,7813],[-20,3]],[[6684,7938],[11,-12]],[[6695,7926],[19,0]],[[6691,7963],[-12,7]],[[6997,7672],[5,17],[-15,16],[-20,-8]],[[6967,7697],[-8,-19],[2,-16],[22,-11],[14,21]],[[6699,7891],[-7,25]],[[6692,7916],[-20,-18]],[[6980,7932],[49,0]],[[7029,7932],[-21,31],[25,8],[4,11]],[[7037,7982],[-22,10],[-19,-8],[-13,-27],[-16,-2]],[[6967,7955],[13,-23]],[[6943,7851],[13,-21],[8,-38],[16,-22]],[[6980,7770],[19,0],[26,11],[25,0]],[[7119,7814],[-1,38],[16,53]],[[7134,7905],[0,11]],[[7134,7916],[-63,16]],[[7071,7932],[-42,0]],[[6980,7932],[-16,-57],[-21,-24]],[[6692,7916],[4,-1]],[[6696,7915],[-1,11]],[[6661,7927],[-5,-23],[15,-6]],[[6710,7896],[-14,19]],[[7263,8073],[-13,31]],[[7250,8104],[-1,-28],[14,-3]],[[6869,7837],[20,-7],[8,-12],[46,33]],[[6967,7955],[-66,60]],[[6901,8015],[-5,6],[-72,-72],[-18,3]],[[6806,7952],[-17,-36],[62,-20],[16,-45],[2,-14]],[[6901,8051],[0,10]],[[6901,8061],[-34,12],[-16,19]],[[6851,8092],[-8,-21],[-31,-32],[2,-36],[-9,12],[-16,-5]],[[6789,8010],[14,-25],[10,10],[9,-13],[10,21],[-4,10],[60,38],[13,0]],[[7071,7932],[-1,27]],[[7070,7959],[-33,23]],[[6909,7584],[-1,36],[-25,63]],[[6883,7683],[-5,-17],[-19,-1],[-3,-28],[-14,-17],[-18,-9],[-9,14],[-37,-29]],[[6460,7988],[-88,149]],[[6372,8137],[-25,-20]],[[6347,8117],[16,1],[1,-12]],[[6364,8106],[1,-8]],[[6365,8098],[1,-28],[8,-9],[-24,-21]],[[6350,8040],[3,-33],[7,-20],[20,-24],[-15,-6],[-5,-22],[-19,-12],[12,-15],[28,-13],[44,2],[19,-10],[19,17],[11,-18],[11,4],[13,-25],[24,-7]],[[6991,8155],[10,1]],[[7001,8156],[7,-12]],[[7008,8144],[2,32]],[[7010,8176],[-19,-21]],[[6851,8092],[-19,23]],[[6832,8115],[-29,-28],[4,-29],[-26,-18],[-11,3],[19,-22],[0,-11]],[[7263,8073],[9,2]],[[7272,8075],[-9,65],[-24,47]],[[7239,8187],[-54,65]],[[7185,8252],[-58,-91]],[[7127,8161],[14,-16],[11,2],[-11,34],[31,-1],[23,16],[25,-62],[26,17],[4,-47]],[[6714,8014],[11,-16],[19,-6],[4,-35]],[[6769,7955],[37,-3]],[[6901,8015],[0,36]],[[6832,8115],[-32,41]],[[6751,8156],[-16,3],[-19,24],[-42,-5]],[[6674,8178],[-20,-24],[9,-29],[21,-7],[-1,-15],[13,-20],[7,-26],[-4,-17],[12,-9],[3,-17]],[[7094,8049],[32,30]],[[7126,8079],[-19,11],[0,22],[-21,41],[10,22],[-10,20],[17,0],[9,-23],[15,-11]],[[7185,8252],[-56,70]],[[7129,8322],[-68,-66],[-9,16],[-19,-2]],[[7034,8230],[19,9],[7,-9],[-34,-37]],[[7026,8193],[-4,-23]],[[7022,8170],[22,-26],[13,-5],[12,9],[19,-54],[-1,-29],[7,-16]],[[7126,8079],[2,-17],[14,9],[8,-12],[19,12],[14,-17],[10,11],[11,-23],[23,-4],[-2,-38],[35,-7]],[[7260,7993],[3,22],[19,24],[-10,36]],[[7134,7916],[-3,44],[17,-9],[26,6]],[[7174,7957],[7,11],[12,-23],[29,-29]],[[7239,7940],[21,53]],[[7094,8049],[-17,-18]],[[7077,8031],[-11,-11],[4,-61]],[[7026,8193],[-16,-17]],[[7008,8144],[-1,-13]],[[7007,8131],[14,14],[1,25]],[[6969,8145],[5,-4]],[[6974,8141],[17,14]],[[7010,8176],[-16,20],[12,16],[-7,18]],[[7134,7916],[24,-3]],[[7158,7913],[23,-5]],[[7181,7908],[1,18],[-8,31]],[[7005,8129],[2,2]],[[7001,8156],[-11,-8],[15,-19]],[[7181,7908],[35,-6]],[[6832,8115],[11,5],[8,31],[19,-10],[23,-21],[34,14]],[[6927,8134],[5,14],[-3,41]],[[6905,8300],[-5,-6]],[[6900,8294],[-70,-73]],[[6982,8112],[15,10]],[[6997,8122],[8,7]],[[6974,8141],[8,-29]],[[6608,8203],[29,4],[17,-5],[20,-24]],[[6718,8269],[-10,17],[-28,28],[-15,56]],[[6665,8370],[-19,-17],[-102,-80]],[[6544,8273],[20,-36],[4,-23],[40,-11]],[[6765,8295],[-19,43],[24,15],[-8,22],[19,7],[-5,-17],[11,-13],[33,-12]],[[6820,8340],[23,26],[16,-9]],[[6859,8357],[-35,56],[-14,38],[-22,21]],[[6788,8472],[-30,-23],[-93,-79]],[[6568,7977],[-8,11],[3,25],[-16,30],[-14,14],[11,16]],[[6544,8073],[-89,128]],[[6455,8201],[-83,-64]],[[6901,8061],[1,12],[25,61]],[[7058,7630],[-7,57],[17,7],[-7,25]],[[6980,7770],[7,-14]],[[6987,7756],[28,-75],[-18,-9]],[[6967,7697],[-22,35],[-25,15],[-5,-5],[-14,19],[-2,22]],[[6899,7783],[-23,36],[-14,11]],[[6862,7830],[-27,-26]],[[6835,7804],[29,-62],[6,-1],[13,-58]],[[7077,8031],[-21,31],[-25,22]],[[7031,8084],[-13,-42],[-35,-14],[-17,50],[11,36],[5,-2]],[[7031,8084],[-29,25],[-5,13]],[[6765,7849],[15,-5],[1,36],[-32,8]],[[6835,7804],[-28,-29],[-116,-108]],[[6987,7756],[-53,-3],[-5,22],[-8,-7],[-16,21],[-6,-6]],[[6869,7837],[-7,-7]],[[7110,7592],[-5,28],[25,8],[4,17],[16,22],[8,27],[-3,20]],[[6350,8040],[-16,9],[5,13]],[[6339,8062],[-16,-11]],[[6323,8051],[-8,-14],[-21,-9],[-7,-25],[8,-38],[-11,-8],[-13,14]],[[6576,7976],[81,-8]],[[6714,8014],[-30,-7],[-36,11],[-13,17],[13,18],[-47,56]],[[6601,8109],[-14,-33],[-28,11],[-15,-14]],[[6601,8109],[8,11],[-6,17],[5,66]],[[6544,8273],[-89,-72]],[[7176,7822],[-19,50]],[[7157,7872],[-11,5],[-12,28]],[[7157,7872],[1,41]],[[7219,7836],[-15,-3]],[[7204,7833],[-15,-6]],[[6859,8357],[18,-42],[23,-21]],[[6905,8324],[0,88],[6,157]],[[6911,8569],[-73,-55],[-50,-42]],[[6820,8340],[-12,-22],[-2,-23],[-14,10],[-19,-20]],[[6672,7694],[12,45],[15,38],[4,30],[-9,48]],[[7129,8322],[-37,45]],[[7092,8367],[-79,97]],[[7013,8464],[-30,38]],[[6983,8502],[-32,39]],[[6951,8541],[-30,36]],[[6921,8577],[-10,-8]],[[3289,5261],[93,0],[8,25]],[[3390,5286],[-23,26],[-12,34],[-2,71],[-17,78],[-12,87],[-8,33]],[[3316,5615],[-20,27],[-17,3]],[[3279,5645],[-8,-29],[4,-41],[-2,-73],[6,-38]],[[3279,5464],[10,-28],[-27,-85],[21,-58],[6,-32]],[[3279,5058],[0,101],[-13,0],[0,17],[-16,0],[2,40],[-10,45],[47,0]],[[3279,5464],[-124,1]],[[3155,5465],[-155,0]],[[3437,5053],[7,25],[11,0],[8,87],[-1,37],[-6,34],[10,30]],[[3466,5266],[-15,18],[-45,-8],[-16,10]],[[3495,5052],[30,0],[3,60],[15,55],[32,73]],[[3575,5240],[16,54],[1,213],[-2,35]],[[3590,5542],[-6,46],[0,63],[12,63],[-16,2]],[[3580,5716],[-76,6],[0,-11],[-30,3]],[[3474,5714],[-1,-48]],[[3473,5666],[-6,-132],[-3,-73],[-8,-1],[-1,-57],[7,-11],[-4,-114],[8,-12]],[[3473,5666],[-149,3]],[[3324,5669],[0,-49],[-8,-5]],[[6339,8062],[25,44]],[[6347,8117],[5,-19],[-24,-30],[-5,-17]],[[6365,8098],[-3,-14],[-23,-22]],[[7204,7833],[-13,43],[-18,-18],[-16,14]],[[1114,4450],[10,-4]],[[1124,4446],[4,12]],[[1128,4458],[-25,12],[-6,-13]],[[1097,4457],[17,-7]],[[1410,4047],[19,3]],[[1429,4050],[0,52]],[[1429,4102],[-31,4],[-28,16]],[[1370,4122],[-24,-15],[-26,-4],[-5,22]],[[1315,4125],[-14,4],[0,37],[-20,-16],[0,26],[20,-10],[-1,48],[12,-16]],[[1312,4198],[39,0],[4,-6]],[[1355,4192],[7,0]],[[1362,4192],[-5,46]],[[1357,4238],[-23,5]],[[1334,4243],[-12,-5],[-60,-1]],[[1262,4237],[0,-191]],[[1262,4046],[148,1]],[[915,4282],[3,12]],[[918,4294],[-14,0]],[[904,4294],[-11,0]],[[893,4294],[0,-6]],[[893,4288],[22,-6]],[[918,4294],[2,13]],[[920,4307],[-16,0]],[[904,4307],[0,-13]],[[1262,4237],[-88,1]],[[1174,4238],[-75,2]],[[1099,4240],[0,-25]],[[1099,4215],[-1,-172]],[[1098,4043],[90,0],[74,3]],[[893,4307],[11,0]],[[904,4307],[1,15]],[[905,4322],[-2,0]],[[903,4322],[-14,1]],[[889,4323],[4,-16]],[[1161,3821],[2,23],[12,32],[7,-21],[-2,-38]],[[1180,3817],[82,-32]],[[1262,3785],[0,157]],[[1262,3942],[0,104]],[[1098,4043],[-19,0]],[[1079,4043],[0,-185]],[[1079,3858],[82,-37]],[[1624,3704],[0,5]],[[1624,3709],[-1,152]],[[1623,3861],[-81,-1],[-130,-7]],[[1412,3853],[-1,0]],[[1411,3853],[1,-116]],[[1412,3737],[81,-22],[106,-21],[25,10]],[[1132,4432],[-10,0]],[[1122,4432],[0,-42]],[[1122,4390],[16,-1],[7,18],[-13,25]],[[1370,4122],[7,4]],[[1377,4126],[-30,21]],[[1347,4147],[-12,2]],[[1335,4149],[0,-16],[-20,-8]],[[1312,4198],[18,-31]],[[1330,4167],[17,1]],[[1347,4168],[8,0]],[[1355,4168],[0,24]],[[1002,4332],[25,-2]],[[1027,4330],[-4,37]],[[1023,4367],[-20,-9]],[[1003,4358],[-1,-26]],[[1001,4328],[24,-16],[3,8]],[[1028,4320],[-1,10]],[[1002,4332],[-1,-4]],[[1412,3853],[0,98],[-2,96]],[[1262,3942],[18,0],[0,30],[36,-1],[0,-20],[15,-6],[-4,-27],[-13,-2],[1,-44],[-4,-25],[24,4],[76,2]],[[1111,4434],[3,16]],[[1097,4457],[-7,0]],[[1089,4449],[22,-15]],[[992,4328],[9,0]],[[1003,4358],[-13,-2]],[[990,4356],[2,-28]],[[978,4355],[12,1]],[[1023,4367],[0,17]],[[972,4380],[6,-25]],[[889,4134],[30,0]],[[919,4134],[3,33],[-29,1]],[[893,4168],[-4,-34]],[[1145,4382],[22,26],[-2,13]],[[1165,4432],[-33,0]],[[1122,4390],[0,-9]],[[1122,4381],[23,1]],[[1334,4243],[1,37]],[[1335,4280],[-1,61]],[[1177,4418],[-3,-180]],[[1335,4149],[-5,18]],[[919,4134],[1,-66],[12,0],[0,80],[25,-3]],[[957,4145],[4,31]],[[961,4176],[-30,22],[-4,16],[-11,-17],[-17,-4]],[[899,4193],[-6,-25]],[[905,4322],[7,0]],[[912,4322],[0,14]],[[912,4336],[-9,0]],[[903,4336],[0,-14]],[[893,4307],[0,-13]],[[955,4266],[0,62]],[[955,4328],[-4,2]],[[951,4330],[-27,-8]],[[924,4322],[-4,-15]],[[915,4282],[-1,-4]],[[914,4278],[41,-12]],[[887,4048],[29,0]],[[916,4048],[3,-3],[117,1],[43,-3]],[[1099,4215],[-37,0]],[[1062,4215],[-2,-73],[-18,0],[0,-24],[-13,10],[-72,17]],[[889,4134],[4,-44],[-10,-25],[4,-17]],[[916,4048],[0,-92],[-19,-11],[-1,22],[-11,3]],[[885,3970],[-25,-36]],[[860,3934],[102,-36],[51,-12],[66,-28]],[[1347,4147],[0,21]],[[1601,4053],[1,28],[22,-9],[0,-19]],[[1624,4053],[7,0]],[[1631,4053],[-7,149],[0,45]],[[1626,4330],[-34,0],[-1,16]],[[1433,4341],[-1,-204],[-3,-35]],[[1429,4050],[114,3],[58,0]],[[1028,4320],[0,-8]],[[1028,4312],[16,0],[43,21],[58,49]],[[1122,4381],[-28,0]],[[1094,4381],[-22,-12],[0,33]],[[1072,4402],[0,16]],[[874,4320],[7,-30]],[[881,4290],[8,-2]],[[889,4288],[4,0]],[[889,4323],[-15,-3]],[[889,4240],[11,-13],[-1,-34]],[[961,4176],[16,-3],[13,42],[72,0]],[[1099,4240],[-72,-1]],[[1027,4239],[-11,0]],[[1016,4239],[-85,2],[-27,-2]],[[904,4239],[0,0]],[[904,4239],[-15,1]],[[1094,4381],[0,17],[11,13]],[[1105,4411],[-7,13],[-26,-22]],[[1105,4411],[6,23]],[[1122,4432],[2,14]],[[903,4336],[1,38]],[[904,4374],[-7,-2]],[[897,4372],[-8,-25],[0,-24]],[[1262,3785],[150,-48]],[[1411,4326],[-6,-11],[6,-24],[-31,-4],[6,-45],[22,1],[-1,-32],[-17,-9],[-13,-23]],[[1377,4179],[1,-45]],[[1378,4134],[-1,-8]],[[1128,4458],[1,24]],[[1362,4192],[15,1],[0,-14]],[[1335,4280],[20,6],[2,-48]],[[1620,3125],[6,297],[-2,282]],[[1180,3817],[-19,4]],[[860,3934],[-91,-235],[-66,-166],[34,-23],[137,-88],[83,-50],[311,-194],[77,-56],[80,-1],[195,4]],[[1016,4239],[0,14],[-61,13]],[[914,4278],[-10,-39]],[[970,4327],[22,1]],[[978,4355],[-8,-28]],[[1601,4053],[5,-12],[18,12]],[[889,4288],[-1,-12],[16,-37]],[[1027,4239],[1,73]],[[970,4327],[-15,1]],[[887,4048],[-2,-78]],[[924,4322],[4,15],[-16,-1]],[[912,4322],[12,0]],[[897,4372],[-35,-12],[12,-40]],[[967,4380],[0,-15],[-21,-7],[5,-28]],[[1623,3861],[8,192]],[[931,4382],[-27,-8]],[[1355,4168],[3,-21],[20,-13]],[[881,4290],[-13,-24],[21,-26]],[[5306,5535],[-1,34],[16,15]],[[5321,5584],[-17,18],[-11,-45],[-1,-34],[14,12]],[[5209,5376],[21,-24],[16,3],[13,14],[13,30],[18,-3],[16,-22],[17,-2]],[[5323,5372],[-13,71],[5,31],[-2,36],[13,36],[-6,4]],[[5320,5550],[-14,-15]],[[5321,5584],[5,14],[21,16]],[[5347,5614],[-1,41],[15,25],[0,56],[-44,2],[-16,-23],[-11,11],[-23,-20],[1,9],[-33,3]],[[5235,5718],[-8,-11],[-3,-54],[-15,-45]],[[5209,5608],[-25,-48],[8,-61],[24,-47],[-2,-33],[-36,-11],[31,-32]],[[5180,5791],[32,-25],[27,-40],[-4,-8]],[[5347,5614],[32,22],[5,11],[50,26],[35,-15]],[[5469,5658],[-8,18],[2,41],[17,35],[1,28],[11,18],[1,31],[-6,15]],[[5487,5844],[-17,8],[-16,45],[9,42],[8,2],[-11,22],[5,18]],[[5465,5981],[-12,-5],[-6,-20],[-30,-64],[-6,-21],[-31,-30],[-28,3],[-7,-8],[-35,1],[-27,7],[-17,29],[-44,2],[-4,-6],[-36,6]],[[5182,5875],[-3,-21],[-9,-4],[-8,-23],[2,-16],[16,-20]],[[5180,5791],[-13,-6],[-45,-1],[-147,19],[-15,12],[-10,28],[-30,-32],[-17,-11],[-12,5],[-11,-23]],[[4880,5782],[-5,-128]],[[4875,5654],[28,-10],[25,5],[77,-13],[25,7],[13,-16],[14,-1],[13,18],[20,-6],[51,-1],[45,-27],[23,-2]],[[5189,5112],[-4,7],[4,39],[-6,17],[20,33],[1,23],[-22,-7],[0,111],[27,41]],[[4875,5654],[-9,-166]],[[4866,5488],[-13,-286],[-4,-61]],[[5128,6033],[36,3]],[[5164,6036],[1,68],[-4,12],[7,33],[-4,34]],[[4897,5972],[25,-10],[31,1],[23,23],[15,6],[15,21],[17,1],[19,17],[43,-4],[21,-7],[22,13]],[[5323,5372],[29,-35],[1,-47],[38,4],[18,-30],[2,-27],[21,3],[18,14],[31,-24],[37,-3],[4,6],[41,-5]],[[5563,5228],[-11,10],[-3,39],[9,62],[-8,5],[7,26],[-16,13],[0,42],[16,14],[-10,48],[-6,9]],[[5541,5496],[-38,23],[-6,34],[-12,10],[-9,47],[-12,24],[5,24]],[[5321,5584],[9,-23],[-10,-11]],[[5593,5097],[4,12],[-5,45],[-5,4],[-19,64],[-5,6]],[[5164,6036],[53,5],[41,-14],[18,14],[16,0],[7,11],[20,3],[29,16],[32,33],[5,39],[21,28],[35,15]],[[6633,2530],[4,5],[-39,40],[-83,83],[121,206],[13,20],[158,271]],[[6807,3155],[17,270],[7,92],[-108,102],[33,56],[-139,13],[26,328]],[[6217,3080],[90,-14],[18,4],[25,-8],[39,-27],[-10,-129],[57,-56],[13,20],[-7,9],[24,21],[20,-20],[-29,-49],[9,-11],[-19,-35],[-11,11],[-21,-37],[32,-25],[-3,-5],[32,-31],[-41,-70],[1,-17],[30,-36],[121,-123],[46,78]],[[6633,2530],[124,-121],[37,62]],[[7145,2876],[-198,35],[14,160]],[[6961,3071],[-25,-45],[-129,129]],[[6961,3071],[26,305]],[[6987,3376],[20,224],[8,108]],[[7747,7921],[32,-5]],[[7779,7916],[18,-3]],[[7797,7913],[-8,132]],[[7789,8045],[-41,12],[-13,-4],[-23,-22]],[[7712,8031],[-24,-24],[23,-11],[24,-36],[11,0],[1,-39]],[[7418,7910],[22,-33],[31,-23],[10,4],[-5,105],[37,-4]],[[7513,7959],[-23,41],[-14,17],[-3,69]],[[7473,8086],[-3,66]],[[7470,8152],[-24,4]],[[7446,8156],[-33,6]],[[7413,8162],[7,-21],[5,-52],[11,-24],[-11,-16],[-3,-45],[-14,0],[3,-15],[-13,1],[-24,66],[-20,-7]],[[7354,8049],[4,-111],[13,10],[47,-38]],[[7244,7932],[17,42]],[[7261,7974],[11,22]],[[7272,7996],[16,44],[10,16],[15,0],[4,15],[37,-22]],[[7354,8049],[-5,124]],[[7349,8173],[-111,20]],[[7238,8193],[1,-6]],[[6146,2146],[145,-22],[255,-44]],[[7261,7974],[16,-34],[16,9],[2,33],[-10,-3],[-13,17]],[[7418,7813],[0,97]],[[7801,7811],[-4,102]],[[7779,7916],[-4,-18],[-13,-18],[-9,-39],[48,-30]],[[7413,8162],[-24,4]],[[7389,8166],[-39,7]],[[7350,8173],[-1,0]],[[7554,8083],[5,-10]],[[7559,8073],[16,2],[2,12],[-12,21],[2,26]],[[7567,8134],[-42,8]],[[7525,8142],[16,-46],[13,-13]],[[7712,8031],[-21,9],[-17,-14],[-6,-33],[-21,0]],[[7647,7993],[3,-55]],[[7650,7938],[97,-17]],[[7789,8045],[-3,52]],[[7786,8097],[-144,23]],[[7642,8120],[-1,0]],[[7641,8120],[4,-69]],[[7645,8051],[2,-58]],[[7804,7750],[-3,61]],[[7650,7938],[3,-80]],[[7653,7858],[4,-89]],[[7624,7852],[19,34],[-5,2],[1,52]],[[7639,7940],[-31,5]],[[7608,7945],[-5,-18],[11,-34],[0,-20],[10,-21]],[[7650,7938],[-11,2]],[[7624,7852],[-2,-11],[9,-25],[22,42]],[[7608,7945],[-52,7]],[[7556,7952],[-29,5]],[[7527,7957],[-14,2]],[[7645,8051],[-8,-4],[-37,4],[-15,-25],[-8,0]],[[7577,8026],[2,-31],[-22,-4],[-1,-39]],[[7641,8120],[-43,9]],[[7598,8129],[-31,5]],[[7559,8073],[2,-30],[16,-17]],[[7554,8083],[-32,1],[-15,6]],[[7507,8090],[8,-14],[6,-109],[6,-10]],[[7525,8142],[0,0]],[[7525,8142],[-34,6]],[[7491,8148],[-21,4]],[[7473,8086],[34,4]],[[5465,5981],[1,9],[-22,36],[0,14]],[[5128,6033],[5,-54],[10,-18],[1,-27],[30,-33],[8,-26]],[[4882,5818],[-2,-36]],[[2342,5133],[16,-3],[-4,-20],[11,-9],[19,57],[-28,18],[-14,-43]],[[2560,5488],[29,-25],[20,31],[-7,13],[7,13],[-19,16],[-30,-48]],[[2428,5278],[-22,0]],[[2406,5278],[0,-80],[22,16],[0,64]],[[2845,5463],[-61,-2]],[[2784,5461],[-81,-4],[-59,0]],[[2644,5457],[-3,-107],[-3,-95],[-78,-1]],[[2560,5254],[2,-175]],[[2562,5079],[0,-25]],[[2562,5054],[130,1]],[[2430,5000],[1,-30]],[[2431,4970],[7,3],[17,-34],[13,0],[-2,17]],[[2466,4956],[-5,15],[0,40],[-20,0],[-3,21],[-15,-2],[7,-30]],[[2426,4967],[5,3]],[[2430,5000],[-8,-20],[4,-13]],[[2392,4950],[7,-10],[15,4],[12,23]],[[2466,4956],[30,-29],[39,-46],[0,-32],[-43,0],[12,-101]],[[2504,4748],[36,11],[4,-27],[0,-55],[-11,2],[-8,32],[-14,-8]],[[2511,4703],[-19,-29],[17,-10]],[[2660,4665],[-59,186]],[[2601,4851],[-38,-1],[-1,204]],[[2562,5079],[-100,0],[-55,-2],[5,-74],[-23,-3],[-4,-21],[7,-29]],[[2188,5393],[0,0]],[[2188,5393],[53,-2],[165,0]],[[2406,5391],[0,188],[1,15]],[[2159,5586],[-5,-30],[-8,-8],[-11,14],[-3,-13],[14,-14],[2,-31],[16,-20],[-2,-13],[-19,-1],[18,-30],[18,7],[22,-17],[-1,-14],[-27,2],[-3,-12],[18,-13]],[[2722,4854],[-63,0],[-58,-3]],[[2498,4724],[13,-21]],[[2504,4748],[-12,-19],[6,-5]],[[2263,5164],[0,-192]],[[2263,4972],[0,-22]],[[2263,4950],[90,3],[39,-3]],[[2560,5254],[0,28],[-132,-4]],[[2406,5278],[0,113]],[[2188,5393],[31,-12],[3,-29],[15,-22],[6,-21],[-4,-17],[7,-17],[16,-9],[1,-102]],[[2644,5457],[-11,0],[-3,99]],[[2630,5556],[-73,0],[-3,140]],[[2289,4710],[26,2],[143,0],[20,15],[20,-3]],[[2263,4950],[1,-115]],[[8557,9171],[35,1],[1,21],[12,24]],[[8605,9217],[4,12],[-17,14]],[[8592,9243],[-7,5]],[[8585,9248],[-10,-12],[-24,-6],[-16,-30]],[[8535,9200],[4,-22],[18,-7]],[[8541,9134],[30,-9]],[[8571,9125],[-14,46]],[[8535,9200],[-13,2]],[[8522,9202],[-3,-60]],[[8519,9142],[22,-8]],[[8571,9125],[0,0]],[[8571,9125],[43,-19]],[[8614,9106],[19,-8],[32,-23]],[[8665,9075],[7,69]],[[8672,9144],[0,36]],[[8672,9180],[-36,23]],[[8636,9203],[-31,14]],[[8374,9239],[17,-2]],[[8391,9237],[3,33]],[[8394,9270],[8,14]],[[8402,9284],[-29,5]],[[8373,9289],[-3,0]],[[8370,9289],[-4,-46]],[[8366,9243],[8,-4]],[[8419,9240],[23,7]],[[8442,9247],[1,14]],[[8443,9261],[-49,9]],[[8391,9237],[28,3]],[[8443,9261],[0,17]],[[8443,9278],[-31,5]],[[8412,9283],[-10,1]],[[8334,9255],[-5,40]],[[8329,9295],[-11,2]],[[8318,9297],[1,-13]],[[8319,9284],[1,-9]],[[8320,9275],[2,-26]],[[8322,9249],[12,6]],[[8450,9231],[21,-19],[29,-8]],[[8500,9204],[17,-3]],[[8517,9201],[2,25]],[[8519,9226],[-13,9],[-29,0],[-2,18],[-33,-6]],[[8442,9247],[8,-16]],[[8513,9339],[0,36]],[[8513,9375],[-20,6]],[[8493,9381],[-32,7]],[[8461,9388],[-2,-18]],[[8459,9370],[-1,-15]],[[8458,9355],[18,-2],[37,-14]],[[7691,5282],[67,15],[56,-13],[28,-3],[62,-14]],[[7904,5267],[-21,133]],[[7883,5400],[-65,7]],[[7818,5407],[-59,-26],[2,-24],[-31,11],[-25,-50],[-21,0]],[[7684,5318],[7,-36]],[[7681,5335],[3,-16]],[[7684,5319],[0,-1]],[[7818,5407],[-81,17]],[[7737,5424],[-73,13]],[[7664,5437],[17,-102]],[[7621,5076],[6,-23]],[[7627,5053],[6,-36]],[[7633,5017],[10,-25]],[[7643,4992],[6,2]],[[7649,4994],[6,20],[-12,6],[-8,54],[8,32]],[[7643,5106],[-20,2]],[[7623,5108],[4,-30],[-6,-1]],[[7621,5077],[0,-1]],[[6730,5253],[66,59],[87,39],[-5,-98],[11,-28],[18,-8],[6,-45],[-1,-15]],[[6919,5491],[-128,17],[-11,26]],[[6780,5534],[-32,-30],[-6,-40],[10,-11],[18,12],[16,-29],[-9,-11],[-20,0],[-17,-23],[-19,-7],[-5,-25],[-21,-43],[-19,-12]],[[6676,5315],[29,-43],[25,-19]],[[6754,5151],[38,-138]],[[6730,5253],[24,-102]],[[7643,5106],[4,46]],[[7647,5152],[-2,-9],[-23,3]],[[7622,5146],[-3,-11]],[[7619,5135],[4,-27]],[[7647,5152],[4,42]],[[7651,5194],[-13,-21],[-24,-20]],[[7614,5153],[8,-7]],[[6416,5278],[-1,-4]],[[6415,5274],[91,4],[45,-33],[6,-13]],[[6557,5232],[22,23]],[[6579,5255],[6,5]],[[6585,5260],[53,92]],[[6638,5352],[-107,100],[-16,62],[40,27],[-11,37],[-116,-51],[-89,93]],[[6325,5594],[49,-102],[52,-137],[-10,-77]],[[6579,5255],[6,5]],[[8443,9278],[10,-1]],[[8453,9277],[3,47]],[[8456,9324],[-28,-1],[0,18],[-13,2]],[[8415,9343],[-3,-60]],[[8456,9324],[2,31]],[[8459,9370],[-33,-5]],[[8426,9365],[-11,2]],[[8415,9367],[0,-24]],[[8429,9069],[10,26]],[[8439,9095],[-10,38]],[[8429,9133],[-5,-10]],[[8424,9123],[-5,-65],[10,11]],[[7591,5154],[16,15]],[[7607,5169],[0,34]],[[7607,5203],[-23,4]],[[7592,5141],[13,5]],[[7605,5146],[6,5]],[[7611,5151],[-4,18]],[[7595,5134],[10,12]],[[7606,5105],[9,1]],[[7615,5106],[-4,26],[8,3]],[[7614,5153],[-3,-2]],[[6676,5315],[-38,37]],[[6557,5232],[24,-44],[3,-33],[170,-4]],[[6415,5274],[-35,-192],[-1,-30]],[[6379,5052],[4,-63],[21,-81]],[[6479,5825],[33,-123],[110,81],[30,-2],[2,-12],[18,-2],[-4,-60],[10,-31],[20,-20],[-1,-27],[65,0],[18,-95]],[[8433,9055],[27,13]],[[8460,9068],[0,49]],[[8460,9117],[-10,-1],[-11,-21]],[[8429,9069],[4,-14]],[[8433,9138],[5,12],[29,15]],[[8467,9165],[-36,3]],[[8431,9168],[-5,1]],[[8426,9169],[-1,-31]],[[8425,9138],[8,0]],[[8525,8965],[15,19],[1,17]],[[8541,9001],[-34,-3]],[[8507,8998],[-1,-19],[19,-14]],[[8461,9388],[3,36]],[[8464,9424],[-23,-2]],[[8441,9422],[-4,-22]],[[8437,9400],[24,-12]],[[8335,9186],[29,1]],[[8364,9187],[6,-2]],[[8370,9185],[4,54]],[[8366,9243],[-11,-12]],[[8355,9231],[-2,-25],[-14,-8]],[[8339,9198],[-4,-12]],[[8355,9231],[-22,-1]],[[8333,9230],[-2,-30],[8,-2]],[[8519,9226],[3,41]],[[8522,9267],[-54,8]],[[8468,9275],[-15,2]],[[8541,9081],[34,2]],[[8575,9083],[-4,42]],[[8541,9134],[-6,-42],[6,-11]],[[7996,9554],[7,24],[-7,5]],[[7996,9583],[-8,3]],[[7988,9586],[-6,-23]],[[7982,9563],[0,-1]],[[7982,9562],[14,-8]],[[8061,9417],[-23,21]],[[8038,9438],[-1,-1]],[[8037,9437],[-6,-20]],[[8031,9417],[26,-9],[4,9]],[[8055,9393],[11,-3]],[[8066,9390],[-2,30]],[[8064,9420],[-3,-3]],[[8031,9417],[-3,-12]],[[8028,9405],[27,-12]],[[7615,5106],[8,2]],[[7615,5106],[6,-29]],[[7608,5078],[13,-2]],[[7613,5044],[14,9]],[[7619,5020],[14,-3]],[[7626,4983],[17,9]],[[7996,9583],[13,15]],[[8009,9598],[1,3]],[[8010,9601],[-14,16]],[[7996,9617],[-15,-28]],[[7981,9589],[7,-3]],[[8074,9515],[-3,16]],[[8071,9531],[3,24]],[[8074,9555],[0,14],[-17,2]],[[8057,9571],[-3,-27],[-8,-13]],[[8046,9531],[28,-16]],[[8039,9534],[7,-3]],[[8057,9571],[-5,11]],[[8052,9582],[-13,-48]],[[8415,8965],[17,19],[19,35]],[[8451,9019],[-20,8]],[[8431,9027],[-20,-1]],[[8411,9026],[10,-10],[-9,-31],[3,-20]],[[8522,9087],[19,-6]],[[8519,9142],[-17,7]],[[8502,9149],[-5,-40],[3,-20]],[[8500,9089],[22,-2]],[[8460,9068],[25,14]],[[8485,9082],[-4,40]],[[8481,9122],[-21,-5]],[[8525,8938],[0,27]],[[8507,8998],[-1,-1]],[[8506,8997],[-21,-7]],[[8485,8990],[4,-52]],[[8489,8938],[36,0]],[[8639,8940],[0,25],[18,16],[2,23]],[[8659,9004],[-24,1],[-48,-9]],[[8587,8996],[-4,0]],[[8583,8996],[-7,-29],[1,-22]],[[8577,8945],[62,-5]],[[7883,5400],[194,-25]],[[8077,5375],[-50,236]],[[7831,5647],[44,-205],[8,-42]],[[7521,5539],[17,15],[-4,21],[-19,0]],[[7613,5447],[51,-10]],[[7737,5424],[-13,97],[-11,24],[-5,40]],[[7708,5585],[-19,21],[5,17]],[[7694,5623],[-14,21],[-3,34]],[[7611,5690],[15,-65],[-12,-36],[4,-38],[9,-24],[-9,-20],[-18,-57]],[[7600,5450],[13,-3]],[[8370,9289],[-15,2]],[[8355,9291],[-1,1]],[[8354,9292],[-9,-41]],[[8345,9251],[21,-8]],[[8426,9365],[-5,8],[7,25],[9,2]],[[8441,9422],[-20,40]],[[8421,9462],[-5,-42]],[[8416,9420],[-1,-53]],[[8513,9339],[40,-6],[44,-24],[14,-2]],[[8611,9307],[5,11]],[[8616,9318],[-10,2],[-51,43],[-42,12]],[[7694,5258],[-3,24]],[[7684,5319],[-14,-5],[3,-28],[-11,-22]],[[7662,5264],[20,-34],[3,22],[9,6]],[[8015,4731],[28,-2],[2,41],[-23,8],[-7,-47]],[[7701,4977],[29,-127]],[[7730,4850],[18,-85],[8,-25],[17,5],[28,-14],[-4,-13],[36,-9],[20,-29],[27,-7],[7,-18]],[[7887,4655],[17,0]],[[7904,4655],[18,0],[11,152],[15,119]],[[7948,4926],[-113,23]],[[7835,4949],[-53,11]],[[7782,4960],[-81,17]],[[7948,4926],[54,-10]],[[8002,4916],[-34,188],[-5,34]],[[7963,5138],[-37,5]],[[7926,5143],[-137,25]],[[7789,5168],[46,-219]],[[7526,5465],[74,-15]],[[7721,5059],[29,23],[-6,30],[-26,16],[6,32],[14,19]],[[7738,5179],[-33,7]],[[7705,5186],[-54,11]],[[7651,5197],[0,-3]],[[7643,5106],[46,-32],[32,-15]],[[7649,4994],[12,-8],[40,-9]],[[7782,4960],[-23,17],[-5,17],[-23,36],[-10,29]],[[7634,4900],[35,10],[9,-24],[30,-43],[3,17],[19,-10]],[[7672,4662],[148,-5]],[[7820,4657],[67,-2]],[[7560,5259],[13,11],[16,-2],[-1,28],[-23,-10],[-3,19]],[[7562,5305],[-9,12]],[[7553,5317],[-11,-5],[-4,-18]],[[7553,5317],[-4,26],[-11,7]],[[7538,5350],[-3,26],[-18,6]],[[7694,5258],[11,-72]],[[7738,5179],[51,-11]],[[7926,5143],[-22,124]],[[7607,5203],[-4,41],[10,23],[20,-11],[29,8]],[[7681,5335],[-76,-19],[-10,-6]],[[7595,5310],[-33,-5]],[[8318,9043],[10,34],[13,4]],[[8341,9081],[2,7]],[[8343,9088],[-20,3]],[[8323,9091],[-5,21],[-10,1],[-11,-32]],[[8297,9081],[-1,-11],[22,-27]],[[8350,9027],[22,-4]],[[8372,9023],[28,1]],[[8400,9024],[11,2]],[[8431,9027],[-7,3]],[[8424,9030],[-15,14],[-22,34]],[[8387,9078],[-21,-31]],[[8366,9047],[-16,-20]],[[7651,5197],[-44,6]],[[7708,5585],[7,9],[-5,20],[-16,9]],[[7926,4624],[15,8],[11,-6],[11,14],[10,-5],[19,21],[133,1]],[[8125,4657],[-5,234]],[[8120,4891],[-118,25]],[[7904,4655],[1,-14],[21,-17]],[[8343,9088],[4,19],[-6,21]],[[8341,9128],[-6,6]],[[8335,9134],[-12,-43]],[[8365,8991],[7,32]],[[8350,9027],[-15,-18],[30,-18]],[[8365,8991],[5,-3]],[[8370,8988],[7,10],[16,-6],[7,32]],[[8400,8939],[15,26]],[[8370,8988],[-27,-59]],[[8343,8929],[57,10]],[[8485,8990],[-19,17]],[[8466,9007],[-12,10]],[[8454,9017],[-3,2]],[[8400,8939],[89,-1]],[[8454,9017],[26,44]],[[8480,9061],[5,21]],[[8433,9055],[-9,-25]],[[7538,5350],[24,48],[19,22],[13,-5]],[[7594,5415],[18,0],[1,32]],[[7595,5310],[-6,61],[10,-2],[-5,46]],[[3474,5714],[6,184],[23,-2]],[[3503,5896],[0,202]],[[3503,6118],[-41,0],[-96,6],[-31,7]],[[3335,6131],[-1,-4]],[[3334,6127],[-7,-296],[-3,-162]],[[3610,5873],[32,6],[1,9]],[[3643,5888],[5,22],[-6,63],[-1,113]],[[3503,5896],[112,-6],[-5,-17]],[[3580,5716],[10,43],[8,72],[12,42]],[[3852,5873],[0,38]],[[3852,5911],[-5,0],[-1,194],[90,3]],[[3643,5888],[209,-15]],[[3759,5534],[80,-4]],[[3839,5530],[4,120]],[[3843,5650],[5,124],[4,99]],[[3590,5542],[169,-8]],[[8424,9123],[-24,-32]],[[8400,9091],[-13,-13]],[[8485,9082],[15,7]],[[8502,9149],[-7,4]],[[8495,9153],[-22,7]],[[8473,9160],[8,-38]],[[8473,9160],[-6,5]],[[8433,9138],[-4,-5]],[[8541,9001],[23,-5]],[[8564,8996],[19,0]],[[8587,8996],[1,29]],[[8588,9025],[2,9],[-15,49]],[[8522,9087],[-4,-1],[-12,-89]],[[7963,5138],[43,4],[16,14],[16,0],[8,-13],[22,3],[17,11],[13,-9],[17,12],[10,-13]],[[8125,5147],[-48,228]],[[8120,4891],[-9,7],[2,45],[-9,26],[18,123],[14,1],[-11,54]],[[8659,9004],[6,71]],[[8614,9106],[6,-33],[-10,-5]],[[8610,9068],[-11,-46],[-11,3]],[[8563,8943],[-4,28],[5,25]],[[8525,8938],[38,5]],[[8563,8943],[14,2]],[[8330,9231],[3,-1]],[[8345,9251],[-11,4]],[[8322,9249],[-6,-7]],[[8316,9242],[-2,-10]],[[8314,9232],[16,-1]],[[8334,9186],[1,0]],[[8330,9231],[-5,-29],[-13,13]],[[8312,9215],[-3,-19]],[[8309,9196],[-3,-17]],[[8306,9179],[28,7]],[[8379,9183],[13,-4]],[[8392,9179],[14,-3]],[[8406,9176],[3,-1]],[[8409,9175],[2,28]],[[8411,9203],[-13,23],[-27,-41]],[[8371,9185],[8,-2]],[[8411,9203],[4,-2]],[[8415,9201],[4,39]],[[8370,9185],[1,0]],[[8354,9292],[-25,3]],[[8495,9153],[0,36],[5,15]],[[8450,9231],[-12,-26],[-3,-21]],[[8435,9184],[-4,-16]],[[8522,9202],[-5,-1]],[[8435,9184],[-20,17]],[[8409,9175],[17,-6]],[[8585,9248],[-16,12],[-47,7]],[[5651,4288],[36,14]],[[5687,4302],[-1,7]],[[5686,4309],[-6,-2]],[[5680,4307],[-16,-5]],[[5664,4302],[-17,-7]],[[5647,4295],[-3,-1]],[[5644,4294],[7,-6]],[[5643,4335],[6,5]],[[5649,4340],[-8,13]],[[5641,4353],[-9,-8]],[[5632,4345],[11,-10]],[[5646,4282],[13,6],[12,-28]],[[5671,4260],[27,18]],[[5698,4278],[53,21]],[[5738,4325],[-29,-12]],[[5709,4313],[-22,-11]],[[5651,4288],[-7,-2]],[[5644,4286],[2,-4]],[[5403,4047],[9,-26]],[[5412,4021],[10,11]],[[5422,4032],[-1,27],[-21,-5]],[[5400,4054],[3,-7]],[[5500,4326],[63,-11]],[[5563,4315],[19,-3]],[[5582,4312],[-6,20],[21,12]],[[5597,4344],[1,4]],[[5598,4348],[-19,13],[-43,18]],[[5536,4379],[-24,-26],[-12,-27]],[[5475,4395],[15,19],[8,-27],[11,16],[0,33],[11,18],[3,32],[29,32]],[[5552,4518],[-91,13]],[[5461,4531],[2,-45],[10,-37],[-5,-24],[7,-30]],[[5630,4278],[1,23]],[[5631,4301],[-28,-25]],[[5603,4276],[9,-10],[18,12]],[[5501,4279],[12,-24],[18,-13],[-1,-13],[15,-14],[2,-16],[11,7],[0,-37]],[[5558,4169],[12,12],[14,41]],[[5584,4222],[-14,6],[9,13],[-11,15],[13,8]],[[5581,4264],[-13,14],[6,12],[-11,25]],[[5500,4326],[-7,-12]],[[5493,4314],[8,-35]],[[5581,4264],[14,16]],[[5595,4280],[-13,32]],[[5536,4379],[47,78],[1,23]],[[5584,4480],[-30,3],[3,34]],[[5557,4517],[-5,1]],[[5475,4395],[0,-33]],[[5475,4362],[18,-48]],[[5259,3586],[15,38],[-4,61]],[[5270,3685],[-26,59],[-10,194]],[[5234,3938],[-32,5]],[[5202,3943],[-39,-6],[-15,-14],[-22,7],[-26,-18],[-5,11],[-12,-30]],[[5083,3893],[38,-163],[-139,-61],[-83,-33]],[[4899,3636],[45,-177],[73,29]],[[5199,3960],[57,50],[37,24],[55,-7]],[[5348,4027],[15,23]],[[5363,4050],[-8,33],[41,3]],[[5396,4086],[47,4],[5,-16]],[[5448,4074],[15,-6],[10,8],[11,-16]],[[5484,4060],[2,36],[32,16],[18,24]],[[5536,4136],[-100,10]],[[5436,4146],[-72,6]],[[5364,4152],[12,-6],[-26,-35],[0,24],[8,17]],[[5358,4152],[-75,6]],[[5283,4158],[-3,-5],[2,-121],[-40,11],[-11,-8],[-21,19],[-29,-6],[-38,26],[-14,-7]],[[5129,4067],[14,-60],[11,-8],[16,6],[0,-17],[15,0],[-4,-16],[22,-1],[-4,-11]],[[5358,4152],[6,0]],[[5436,4146],[65,133]],[[5475,4362],[-87,66]],[[5388,4428],[-1,-41],[-57,-128]],[[5330,4259],[-47,-101]],[[5330,4259],[-87,68],[-81,-6]],[[5040,4168],[9,-66],[28,-25],[20,5],[12,-17],[20,2]],[[5388,4428],[1,56]],[[5389,4484],[-115,3]],[[5204,4411],[26,-10],[8,-33],[-16,-18],[-24,1],[-13,18]],[[5597,4344],[4,-22],[15,14]],[[5616,4336],[15,10]],[[5631,4346],[-25,21]],[[5606,4367],[-11,-11]],[[5595,4356],[3,-8]],[[5631,4346],[1,-1]],[[5641,4353],[-3,9]],[[5638,4362],[-19,27],[-3,-11]],[[5616,4378],[-10,-11]],[[5584,4222],[16,-1],[9,17],[32,24],[5,20]],[[5644,4286],[-14,-8]],[[5603,4276],[-8,4]],[[5679,4239],[29,19]],[[5708,4258],[-10,20]],[[5671,4260],[8,-21]],[[5658,4346],[13,-27]],[[5671,4319],[5,3]],[[5676,4322],[-7,13]],[[5669,4335],[-6,14]],[[5663,4349],[-5,-3]],[[5628,4305],[16,-11]],[[5647,4295],[4,4]],[[5651,4299],[-27,27]],[[5624,4326],[-4,-1]],[[5620,4325],[8,-20]],[[5628,4305],[3,-4]],[[5708,4258],[54,20]],[[5671,4355],[5,-14]],[[5676,4341],[8,-5]],[[5684,4336],[17,13]],[[5701,4349],[-14,26]],[[5687,4375],[-16,-20]],[[5682,4326],[3,-4]],[[5685,4322],[10,6]],[[5695,4328],[12,6]],[[5707,4334],[-6,15]],[[5684,4336],[-2,-10]],[[5707,4334],[25,2]],[[5703,4390],[-16,-15]],[[5651,4299],[-8,22]],[[5643,4321],[-10,7]],[[5633,4328],[-9,-2]],[[5669,4335],[7,6]],[[5671,4355],[-8,-6]],[[5676,4322],[0,1]],[[5676,4323],[6,3]],[[5643,4321],[6,-5]],[[5649,4316],[8,7]],[[5657,4323],[-14,12]],[[5643,4335],[-10,-7]],[[5660,4308],[7,6]],[[5667,4314],[-10,9]],[[5649,4316],[11,-8]],[[5686,4309],[-1,13]],[[5676,4323],[4,-16]],[[5616,4336],[4,-11]],[[5664,4302],[-4,6]],[[5709,4313],[-14,15]],[[5673,3886],[19,-36],[16,5],[6,-45],[116,27]],[[5795,3981],[-6,6],[-62,143]],[[5727,4130],[-68,-51],[-55,-70]],[[5604,4009],[22,-42],[47,-81]],[[5571,4675],[7,146]],[[5407,4680],[164,-5]],[[5671,4319],[-4,-5]],[[5234,3938],[96,-11]],[[5330,3927],[69,-8]],[[5399,3919],[72,-11]],[[5471,3908],[4,25],[7,97]],[[5482,4030],[-11,-2],[-5,-37],[-22,-2],[0,-12],[-22,11]],[[5422,3988],[-8,-7],[-23,3],[-7,-10],[-15,22]],[[5369,3996],[-5,9]],[[5364,4005],[-16,22]],[[5199,3960],[3,-17]],[[5422,3988],[6,44]],[[5428,4032],[-6,0]],[[5412,4021],[-18,-14],[0,14]],[[5394,4021],[-25,-25]],[[5428,4032],[9,0],[11,42]],[[5396,4086],[-2,-18]],[[5394,4068],[6,-14]],[[5403,4047],[-10,-16]],[[5393,4031],[1,-10]],[[5393,4031],[-9,18]],[[5384,4049],[-20,-44]],[[5384,4049],[-6,11]],[[5378,4060],[-15,-10]],[[5378,4060],[16,8]],[[5584,4480],[1,13],[47,-5]],[[5632,4488],[60,-6]],[[5703,4663],[-70,8],[-49,3]],[[5584,4674],[-17,-37],[-10,-120]],[[5616,4378],[0,8]],[[5616,4386],[-8,7],[-18,-20],[5,-17]],[[5638,4362],[13,4],[6,21],[14,-32]],[[5632,4488],[-11,-33],[-5,-69]],[[5394,3861],[5,58]],[[5330,3927],[18,-29],[0,-34],[46,-3]],[[5461,4531],[-71,10],[-1,-57]],[[5571,3896],[43,-6],[59,-4]],[[5604,4009],[-32,63],[-36,65]],[[5536,4137],[0,-1]],[[5484,4060],[-2,-30]],[[5471,3908],[100,-12]],[[5765,4272],[-48,-35],[-25,-27]],[[5692,4210],[35,-80]],[[5679,4239],[13,-29]],[[5083,3893],[-31,-10],[-10,8],[-159,-66]],[[4883,3825],[-30,-13]],[[4853,3812],[46,-176]],[[5571,4675],[13,-1]],[[5698,4797],[-38,5],[-7,14]],[[5270,3685],[110,-16],[8,134],[6,58]],[[5682,3284],[10,127],[6,70],[-27,23],[8,7],[11,40],[2,37],[16,-3],[4,36]],[[5712,3621],[-4,5],[-75,13],[-78,10]],[[5555,3649],[-46,3],[-7,-71],[-21,2],[-10,-129]],[[5555,3649],[16,247]],[[5558,4169],[-22,-32]],[[5563,4162],[27,37],[5,-9],[-13,-16],[16,-16],[-35,4]],[[4856,4188],[13,-186],[14,-177]],[[5658,4346],[-9,-6]],[[5854,3607],[-22,36],[-27,-2],[-27,20],[-23,-26],[-3,15],[-31,-18],[-9,-11]],[[3066,4083],[78,-1]],[[3144,4082],[0,8]],[[3144,4090],[-1,168]],[[3143,4258],[-87,1]],[[3056,4259],[-1,-8],[0,-101],[11,-67]],[[3143,4258],[7,0]],[[3150,4258],[0,130]],[[3150,4388],[1,56]],[[3064,4455],[6,-24],[-11,-29],[-1,-129],[-4,-14]],[[3054,4259],[2,0]],[[3054,4259],[-62,0]],[[2990,4083],[76,0]],[[3144,4020],[147,-14]],[[3291,4006],[0,1]],[[3291,4007],[-2,83]],[[3289,4090],[-145,0]],[[3144,4082],[0,-62]],[[3505,4061],[0,44]],[[3505,4105],[0,68]],[[3505,4173],[-92,0],[-125,2]],[[3288,4175],[1,-85]],[[3291,4007],[53,-5],[11,3],[27,-13],[29,27],[72,46],[22,-4]],[[3288,4252],[1,192]],[[3169,4444],[-2,-37],[15,11],[18,-4],[-9,-21],[-18,-10],[-23,5]],[[3150,4258],[0,-8],[138,2]],[[3143,3916],[1,104]],[[3144,4020],[-105,9],[-50,6]],[[2988,3920],[40,-9],[28,-2],[33,7],[54,0]],[[3288,4175],[0,77]],[[3442,4361],[6,-21],[15,19],[28,-3],[4,65],[-9,14],[-6,-10],[-35,0],[-3,-64]],[[3602,4323],[38,-1],[0,48],[-36,1],[-2,-48]],[[3828,4241],[4,115],[-4,20],[-13,13]],[[3815,4389],[-4,51],[6,39]],[[3817,4479],[-210,14],[-102,10]],[[3505,4503],[0,-242]],[[3505,4261],[51,-5],[128,-9],[144,-6]],[[3678,4054],[85,-8],[58,-3]],[[3821,4043],[4,131]],[[3825,4174],[3,67]],[[3505,4261],[0,-88]],[[3505,4105],[31,-5],[135,-14],[-1,-32],[8,0]],[[3342,4504],[0,-6]],[[3342,4498],[-4,-32],[2,-69]],[[3340,4397],[29,14],[0,18],[19,-17],[-4,15],[-15,6],[-2,31],[6,21],[-14,0],[0,19]],[[3342,4498],[-23,1],[-4,-22],[9,-20],[-21,-5],[-6,-24],[4,-25],[11,-17],[28,11]],[[3807,3770],[6,142],[2,4],[6,127]],[[3678,4054],[-9,-200]],[[3669,3854],[10,3],[49,-17],[19,-12],[52,-58],[8,0]],[[3505,4061],[0,-128]],[[3505,3933],[13,1],[70,-58],[25,8],[56,-30]],[[3291,4006],[2,-108]],[[3293,3898],[34,-7],[31,17],[43,12],[7,13],[52,-2],[31,-8],[14,10]],[[3143,3916],[43,-14],[61,5],[24,-16],[22,7]],[[3768,3011],[17,353],[17,335],[5,69]],[[3807,3768],[0,2]],[[2973,3129],[174,0],[0,2],[156,-1],[147,4],[290,-1],[28,-122]],[[8404,9331],[11,12]],[[8415,9367],[-20,11]],[[8395,9378],[-10,-11]],[[8385,9367],[-1,-20]],[[8384,9347],[18,-3],[2,-13]],[[8277,9275],[0,0]],[[8277,9275],[26,-10],[17,10]],[[8319,9284],[-39,5]],[[8280,9289],[-3,-14]],[[8184,9260],[14,-1]],[[8198,9259],[31,24]],[[8229,9283],[-8,19]],[[8221,9302],[-19,3]],[[8202,9305],[-23,-2]],[[8179,9303],[-4,-9]],[[8175,9294],[9,-34]],[[8335,9134],[3,7]],[[8338,9141],[-4,45]],[[8306,9179],[-3,-15]],[[8303,9164],[32,-30]],[[8303,9164],[-1,-8]],[[8302,9156],[-10,-63]],[[8292,9093],[5,-12]],[[7987,9090],[16,36]],[[8003,9126],[-26,10]],[[7977,9136],[11,-21],[-1,-25]],[[8004,9517],[8,-9]],[[8012,9508],[11,34]],[[8023,9542],[-23,11]],[[8000,9553],[-2,-4]],[[7998,9549],[17,-15],[-11,-17]],[[7998,9549],[-6,-15]],[[7992,9534],[-1,-2]],[[7991,9532],[13,-15]],[[7975,9531],[17,3]],[[8000,9553],[-4,1]],[[7982,9562],[-6,-24]],[[7976,9538],[-1,-7]],[[7977,9492],[14,40]],[[7975,9531],[-15,-44]],[[7960,9487],[17,5]],[[4394,5836],[155,-7]],[[4566,6321],[-20,0],[-149,10]],[[4397,6331],[13,-20],[-1,-20],[12,-36],[-8,-42],[2,-20],[-18,-86],[1,-29]],[[4398,6078],[-1,-65],[14,-45],[-2,-36],[-47,-36],[-20,0],[-2,-46],[4,-12],[50,-2]],[[8116,9227],[14,8]],[[8130,9235],[19,11]],[[8149,9246],[-10,14]],[[8139,9260],[-30,-7],[7,-26]],[[8309,9479],[6,-10]],[[8315,9469],[24,21],[17,-8]],[[8356,9482],[25,-5]],[[8381,9477],[9,-10],[31,-5]],[[8464,9424],[20,-6]],[[8484,9418],[39,17]],[[8523,9435],[15,-6],[19,-26]],[[8557,9403],[22,-1],[26,-10]],[[8605,9392],[6,41],[9,14],[13,-5]],[[8633,9442],[7,-4]],[[8640,9438],[19,-7],[6,-12]],[[8665,9419],[40,-19],[5,-19],[-7,-20]],[[8703,9361],[19,-19],[32,5]],[[8754,9347],[19,-4],[-11,-14],[18,-3],[3,-21],[20,8],[5,-33]],[[8808,9280],[0,0]],[[8808,9280],[0,112]],[[8808,9392],[-99,47],[-123,66],[-71,45],[-103,59],[-49,22],[-71,27]],[[8292,9658],[-9,-26],[2,-88]],[[8285,9544],[4,-40],[20,-25]],[[8119,9561],[6,-15]],[[8125,9546],[29,-25]],[[8154,9521],[3,-4]],[[8157,9517],[9,2]],[[8166,9519],[20,0]],[[8186,9519],[13,6],[13,-9]],[[8212,9516],[11,6]],[[8223,9522],[5,6]],[[8228,9528],[21,13],[36,3]],[[8292,9658],[-78,27],[-59,23],[-19,1]],[[8136,9709],[2,-83],[-4,-15],[-53,-51]],[[8081,9560],[38,1]],[[8483,9321],[36,-4]],[[8519,9317],[-6,22]],[[8456,9324],[27,-3]],[[8151,9053],[-15,52]],[[8136,9105],[-9,8],[-10,38]],[[8117,9151],[-8,-11]],[[8109,9140],[-1,-8]],[[8108,9132],[-18,-61],[9,-21],[-2,-27]],[[8097,9023],[54,30]],[[9837,8230],[-4,20],[-19,43],[-50,24],[-43,30],[-30,16],[-21,-18],[-34,-38]],[[9636,8307],[60,-47],[113,-43],[28,13]],[[9342,8663],[-38,-26],[-16,30]],[[9288,8667],[-20,-24],[-23,10],[-6,25],[21,-19],[0,24],[10,11]],[[9270,8694],[-16,27],[-29,0],[2,8]],[[9227,8729],[-8,-7],[11,-28],[-14,-10],[11,-9],[-10,-17]],[[9217,8658],[30,-41],[6,1],[8,-29],[19,-24],[34,3],[15,-21],[45,-23],[34,-4],[18,3],[16,-26],[45,-37],[12,6],[52,-21],[33,-24],[19,15],[-23,33],[-84,36],[-17,34],[-21,-3],[-28,21],[-14,23],[-8,31],[-66,52]],[[8131,9299],[26,-3]],[[8157,9296],[1,19]],[[8158,9315],[-24,6]],[[8134,9321],[-11,24],[-24,-1]],[[8099,9344],[0,-22]],[[8099,9322],[0,-19]],[[8099,9303],[32,-4]],[[8227,9328],[19,-7]],[[8246,9321],[8,-2]],[[8254,9319],[7,9]],[[8261,9328],[-5,30],[16,17],[2,13]],[[8274,9388],[-12,-2],[-7,-16],[-23,4]],[[8232,9374],[-1,-13]],[[8231,9361],[12,1],[-4,-33],[-11,4]],[[8228,9333],[-1,-5]],[[8231,9361],[-3,-22]],[[8228,9339],[0,-6]],[[8204,9337],[6,30]],[[8210,9367],[3,24]],[[8213,9391],[-8,0]],[[8205,9391],[-3,-19]],[[8202,9372],[-9,-31]],[[8193,9341],[11,-4]],[[8221,9302],[14,1],[11,18]],[[8227,9328],[-12,4]],[[8215,9332],[-13,-27]],[[8052,9231],[12,1],[17,22]],[[8081,9254],[20,12]],[[8101,9266],[-1,6]],[[8100,9272],[-24,-16],[-21,-4],[-17,10],[-26,-4]],[[8012,9258],[-8,-22]],[[8004,9236],[34,8],[14,-13]],[[8035,9022],[-8,35]],[[8027,9057],[-11,19]],[[8016,9076],[-21,-22],[-18,27]],[[7977,9081],[-44,-27]],[[7933,9054],[11,-18]],[[7944,9036],[-12,-76],[40,1],[43,54],[20,7]],[[7930,9017],[14,19]],[[7933,9054],[-10,46]],[[7923,9100],[-9,32],[-7,-1]],[[7907,9131],[-19,7],[-13,14]],[[7957,9486],[3,1]],[[7976,9538],[-7,3]],[[7969,9541],[-14,-14]],[[7955,9527],[-18,-19]],[[7937,9508],[20,-22]],[[7937,9508],[-7,3]],[[7926,9472],[31,14]],[[8099,9377],[-1,19]],[[8098,9396],[-14,41]],[[8084,9437],[-18,-15]],[[8066,9422],[-2,-2]],[[8066,9390],[33,-13]],[[8099,9345],[0,32]],[[8066,9390],[0,-32]],[[8066,9358],[33,-13]],[[8049,9499],[8,2]],[[8057,9501],[8,1]],[[8065,9502],[9,-2]],[[8074,9500],[0,15]],[[8046,9531],[-5,-9],[8,-23]],[[4070,6726],[-47,-1]],[[4023,6725],[-2,-16],[32,-20],[-1,13],[16,1],[2,23]],[[4093,6112],[25,0],[-1,38],[73,2]],[[4190,6152],[0,234],[-1,2]],[[4189,6388],[-30,0]],[[4159,6388],[-119,-1]],[[4037,6111],[56,1]],[[4535,6584],[4,8],[19,-7],[17,-22]],[[4578,6624],[-51,0],[-18,22],[-10,-21],[3,-26],[33,-15]],[[4159,6388],[9,260],[-11,-9],[-16,3],[-12,14],[4,21],[-7,38],[-7,12]],[[4119,6727],[-49,-1]],[[4023,6725],[-10,0]],[[8585,9248],[17,9],[9,50]],[[8519,9317],[7,-26],[-4,-24]],[[8468,9275],[12,7],[3,39]],[[8493,9381],[-9,37]],[[7964,9398],[7,68]],[[7971,9466],[6,26]],[[7919,9416],[45,-18]],[[8249,9196],[8,21]],[[8257,9217],[-26,22]],[[8231,9239],[-16,3],[-7,-29]],[[8208,9213],[0,0]],[[8208,9213],[34,7],[7,-24]],[[8215,9332],[-11,5]],[[8193,9341],[-14,-38]],[[8202,9372],[-17,2]],[[8185,9374],[-2,-29]],[[8183,9345],[10,-4]],[[8160,9354],[11,-4]],[[8171,9350],[12,-5]],[[8185,9374],[2,34]],[[8187,9408],[-4,0]],[[8183,9408],[-5,-5]],[[8178,9403],[-1,-45],[-17,0]],[[8160,9358],[0,-4]],[[8179,9088],[28,13]],[[8207,9101],[-17,18]],[[8190,9119],[-9,16],[-29,-3]],[[8152,9132],[-2,-1]],[[8150,9131],[5,-26],[24,-17]],[[8117,9370],[0,63]],[[8117,9433],[-6,12]],[[8111,9445],[-2,-1]],[[8109,9444],[-11,-48]],[[8099,9377],[18,-7]],[[8229,9283],[34,-1],[14,-7]],[[8280,9289],[-2,21]],[[8278,9310],[-24,9]],[[8290,9080],[2,13]],[[8302,9156],[-32,-30]],[[8270,9126],[20,-46]],[[8370,9136],[6,1]],[[8376,9137],[3,46]],[[8364,9187],[-12,-47]],[[8352,9140],[18,-4]],[[8341,9128],[26,-29]],[[8367,9099],[3,37]],[[8352,9140],[-14,1]],[[7961,9594],[-3,34]],[[7958,9628],[-22,0]],[[7938,9586],[23,8]],[[4370,6518],[3,17],[31,-22],[1,-12]],[[4405,6501],[32,41],[23,-9],[25,-24],[26,3],[5,40],[19,32]],[[4579,6728],[-213,1]],[[4366,6729],[2,-200],[2,-11]],[[4370,6518],[-8,-35],[2,-17]],[[4364,6466],[22,-3],[-1,19],[23,4],[-3,15]],[[4189,6388],[193,2]],[[4382,6390],[-8,4],[-7,26],[6,32],[-9,14]],[[4366,6729],[-124,0],[-123,-2]],[[4382,6390],[5,-21],[11,-10],[-1,-28]],[[4190,6152],[1,-121],[81,0],[0,21],[79,1],[0,25],[47,0]],[[8513,9375],[1,13],[15,-2]],[[8529,9386],[2,24],[-8,25]],[[8616,9318],[-18,51],[7,23]],[[8557,9403],[-6,-19],[-22,2]],[[8165,9144],[36,43]],[[8201,9187],[-26,24]],[[8175,9211],[-17,-3]],[[8158,9208],[-1,-16],[12,-2],[-12,-20]],[[8157,9170],[8,-26]],[[8226,9151],[15,-25],[4,23],[9,5]],[[8254,9154],[-7,16],[4,23]],[[8251,9193],[-2,3]],[[8208,9213],[5,-22],[-9,-4]],[[8204,9187],[21,-22],[1,-14]],[[8205,9391],[1,15]],[[8206,9406],[-19,2]],[[8160,9358],[0,32]],[[8160,9390],[0,1]],[[8160,9391],[-19,1]],[[8141,9392],[2,-32]],[[8143,9360],[17,-6]],[[8166,9295],[5,55]],[[8160,9354],[-1,-20]],[[8159,9334],[-1,-19]],[[8157,9296],[9,-1]],[[8143,9360],[-7,-25]],[[8136,9335],[23,-1]],[[8358,9349],[5,1]],[[8363,9350],[1,37]],[[8364,9387],[-19,8]],[[8345,9395],[-20,-53]],[[8325,9342],[33,7]],[[7953,9251],[21,-6]],[[7974,9245],[-14,39]],[[7960,9284],[-8,-5]],[[7952,9279],[-12,-11],[1,-18]],[[7941,9250],[12,1]],[[8035,9456],[-4,46]],[[8031,9502],[-1,0]],[[8030,9502],[-8,-21]],[[8022,9481],[-10,-21]],[[8012,9460],[23,-4]],[[8030,9502],[-18,2]],[[8012,9504],[-18,-9]],[[7994,9495],[28,-14]],[[7979,9191],[17,20]],[[7996,9211],[-30,-3]],[[7966,9208],[-2,-4]],[[7964,9204],[15,-13]],[[8378,9088],[9,-10]],[[8400,9091],[1,22]],[[8401,9113],[-19,3],[-4,-28]],[[8350,9027],[-25,9]],[[8325,9036],[-1,-35],[-13,-12],[-35,16]],[[8276,9005],[-12,-69],[63,-10],[16,3]],[[8401,9113],[2,27]],[[8403,9140],[-8,0]],[[8395,9140],[-19,-3]],[[8367,9099],[11,-11]],[[8651,9287],[21,-18]],[[8672,9269],[31,-6]],[[8703,9263],[-5,15],[14,30]],[[8712,9308],[-33,-2]],[[8679,9306],[-33,7]],[[8646,9313],[-3,0]],[[8643,9313],[8,-26]],[[8703,9263],[25,-2]],[[8728,9261],[40,-12],[46,-31]],[[8814,9218],[-3,21]],[[8811,9239],[-3,20]],[[8808,9259],[-21,1],[-15,27],[-21,7]],[[8751,9294],[-39,14]],[[8309,9196],[-24,45]],[[8285,9241],[-6,-4],[-3,-55]],[[8276,9182],[30,-3]],[[8251,9193],[25,-11]],[[8285,9241],[-3,9]],[[8282,9250],[-25,3]],[[8257,9253],[0,-36]],[[8190,9119],[3,58],[10,10]],[[8203,9187],[-2,0]],[[8165,9144],[-13,-12]],[[8261,9328],[55,11]],[[8316,9339],[9,3]],[[8345,9395],[-19,13]],[[8326,9408],[-42,14]],[[8284,9422],[-4,2]],[[8280,9424],[3,-27],[-9,-9]],[[8109,9444],[-25,-7]],[[8176,9443],[6,-2]],[[8182,9441],[5,24]],[[8187,9465],[-1,54]],[[8166,9519],[5,-21],[-25,-45]],[[8146,9453],[30,-10]],[[8140,9454],[6,-1]],[[8157,9517],[-21,-34],[8,-6],[-11,-20]],[[8133,9457],[7,-3]],[[7990,9494],[4,1]],[[8012,9504],[0,4]],[[7977,9492],[13,2]],[[8066,9457],[14,-3]],[[8080,9454],[-4,32]],[[8076,9486],[-2,14]],[[8065,9502],[1,-45]],[[8084,9437],[-4,17]],[[8066,9457],[0,-35]],[[8000,9553],[12,18],[-3,27]],[[7958,9628],[38,-11]],[[8010,9601],[13,-6],[-7,-27],[12,-9]],[[8028,9559],[7,34],[17,-11]],[[8074,9555],[7,5]],[[8136,9709],[-52,6],[-16,-23],[-21,-7],[-35,19],[-75,33]],[[8395,9140],[-3,39]],[[8403,9140],[3,36]],[[8403,9140],[22,-2]],[[8592,9243],[17,23],[6,-16],[22,1]],[[8637,9251],[2,21],[12,15]],[[8643,9313],[-7,1]],[[8636,9314],[-20,4]],[[8672,9144],[25,4],[17,-20],[21,1],[6,-22],[17,-16],[17,5],[24,-10],[15,-18],[26,0]],[[8840,9068],[-26,150]],[[8728,9261],[5,-15],[-6,-81],[-11,-6],[-25,17],[-3,-9],[-16,13]],[[8151,9053],[26,17]],[[8177,9070],[2,18]],[[8150,9131],[-14,-26]],[[8157,9170],[-13,-5]],[[8144,9165],[-27,-14]],[[8257,9253],[-15,2]],[[8242,9255],[-11,-16]],[[8154,9521],[-27,-37],[-3,-24]],[[8124,9460],[-1,-3]],[[8123,9457],[10,0]],[[8163,9414],[3,-2]],[[8166,9412],[10,31]],[[8140,9454],[-2,-34]],[[8138,9420],[25,-6]],[[8117,9433],[21,-13]],[[8123,9457],[-12,-12]],[[8385,9433],[31,-13]],[[8381,9477],[-7,-41]],[[8374,9436],[11,-3]],[[8166,9295],[9,-1]],[[8314,9232],[-2,-17]],[[8232,9374],[2,29]],[[8234,9403],[-17,0]],[[8217,9403],[-4,-12]],[[8210,9367],[18,-28]],[[8028,9559],[-5,-17]],[[8023,9542],[16,-8]],[[8031,9502],[18,-3]],[[7946,9552],[14,17]],[[7960,9569],[1,25]],[[7933,9539],[13,13]],[[8055,9393],[-5,-22]],[[8050,9371],[-1,-6]],[[8049,9365],[17,-7]],[[8636,9314],[3,30],[-10,52],[4,46]],[[8646,9313],[9,26]],[[8655,9339],[4,12]],[[8659,9351],[-6,31]],[[8653,9382],[-16,18],[3,38]],[[8242,9255],[-44,4]],[[8184,9260],[-10,-2]],[[8174,9258],[-1,-19]],[[8173,9239],[12,-16],[23,-10]],[[8116,9219],[0,8]],[[8139,9260],[-11,14],[3,25]],[[8099,9303],[1,-28]],[[8100,9275],[0,-3]],[[8101,9266],[2,-46]],[[8103,9220],[13,-1]],[[8116,9219],[19,-6]],[[8135,9213],[11,-1]],[[8146,9212],[-16,23]],[[8254,9449],[1,-25]],[[8255,9424],[25,0]],[[8280,9424],[-11,32],[8,18],[16,3]],[[8293,9477],[16,2]],[[8228,9528],[6,-26],[13,-20],[13,5],[3,-13],[-9,-25]],[[7974,9245],[30,-9]],[[8012,9258],[-18,33]],[[7994,9291],[-10,-2]],[[7984,9289],[-24,-5]],[[8282,9250],[-5,25]],[[7928,9212],[5,38],[8,0]],[[7952,9279],[4,13]],[[7956,9292],[-7,30],[-19,-16],[-24,-5]],[[7899,9235],[11,-15],[18,-8]],[[8028,9405],[3,-21],[19,-13]],[[8020,9397],[16,-27]],[[8036,9370],[13,-5]],[[8028,9405],[-11,4]],[[8017,9409],[3,-12]],[[8325,9036],[-7,7]],[[8290,9080],[-12,-21],[5,-24],[-5,-19]],[[8278,9016],[-2,-11]],[[7961,9594],[20,-5]],[[8751,9294],[3,53]],[[8703,9361],[0,0]],[[8703,9361],[-16,-25]],[[8687,9336],[-8,-30]],[[8808,9259],[0,21]],[[8158,9208],[-12,4]],[[8135,9213],[0,-29],[9,-19]],[[8116,9219],[6,-30],[-5,-38]],[[8105,9163],[4,-23]],[[8103,9220],[1,-20]],[[8104,9200],[0,-19]],[[8104,9181],[1,-18]],[[7956,9292],[8,22]],[[7964,9314],[2,34],[-6,31],[4,19]],[[8027,9057],[14,2],[17,25],[-3,15]],[[8055,9099],[-17,23]],[[8038,9122],[-18,0],[3,-23],[-7,-23]],[[7996,9211],[8,25]],[[7974,9245],[1,-9]],[[7975,9236],[-9,-28]],[[7953,9251],[-1,-28]],[[7952,9223],[9,-3],[14,16]],[[7952,9223],[1,-15]],[[7953,9208],[11,-4]],[[7928,9212],[25,-4]],[[7960,9569],[22,-6]],[[7946,9552],[4,-2]],[[7950,9550],[19,-9]],[[9061,8786],[17,33],[-20,27],[36,62],[20,-4],[6,31],[17,32],[21,18]],[[9158,8985],[-44,22]],[[9114,9007],[-63,34]],[[9051,9041],[-27,-61],[-53,-102]],[[8971,8878],[22,-16],[68,-76]],[[9115,8755],[36,41],[17,-20],[4,48],[18,111]],[[9190,8935],[-23,37]],[[9167,8972],[-9,13]],[[9061,8786],[54,-31]],[[8270,9126],[0,2]],[[8270,9128],[-18,16],[2,10]],[[8226,9151],[0,-16],[-19,-34]],[[8177,9070],[101,-54]],[[8115,9464],[0,68],[10,14]],[[8119,9561],[-12,-29]],[[8107,9532],[0,-34]],[[8107,9498],[2,-30]],[[8109,9468],[6,-4]],[[8071,9531],[36,1]],[[7984,9289],[-20,25]],[[7931,9191],[19,-3]],[[7950,9188],[3,20]],[[7928,9212],[3,-21]],[[7949,9151],[12,18]],[[7961,9169],[-11,18]],[[7950,9187],[-13,-30]],[[7937,9157],[12,-6]],[[7929,9161],[4,-1]],[[7933,9160],[4,-3]],[[7950,9187],[0,1]],[[7931,9191],[-2,-30]],[[7961,9169],[18,22]],[[7923,9100],[17,8],[-7,52]],[[7929,9161],[-26,-6],[4,-24]],[[8007,9176],[3,27]],[[8010,9203],[-6,33]],[[7979,9191],[28,-15]],[[8178,9403],[-18,-13]],[[9837,8230],[145,259],[1,177],[11,12],[5,62],[-21,65],[-54,56],[-59,39],[-19,4],[-41,19],[-84,55],[-245,149],[-87,54],[-138,91],[-102,50],[-211,106],[-156,68],[-99,57],[-58,25],[-174,107],[-57,26],[-76,28],[-163,79],[-30,24],[-22,0],[-43,-12],[-66,24],[-36,18],[-22,6]],[[8808,9392],[57,-25]],[[8865,9367],[91,-42]],[[8956,9325],[64,-31]],[[9020,9294],[108,-53]],[[9128,9241],[10,-5]],[[9138,9236],[113,-65],[32,-20]],[[9283,9151],[59,-36],[61,-43],[21,-6]],[[9424,9066],[19,-13]],[[9443,9053],[90,-61]],[[9533,8992],[31,-21],[131,-75]],[[9695,8896],[101,-63],[48,-17],[44,-29],[23,-38],[0,-24],[-16,-25],[-17,2],[-33,-22],[-75,27],[-14,35],[-6,28],[-17,-11],[-28,42],[-42,13],[-21,15]],[[9642,8829],[-50,43],[-3,-4]],[[9589,8868],[38,-118],[10,-62],[-3,-32],[-55,-40],[-15,0],[1,-18],[-13,0],[-10,17],[4,25],[-19,26],[9,11],[-51,134]],[[9485,8811],[-13,2],[-40,-29],[-44,1]],[[9388,8785],[2,-90],[-48,-32]],[[9217,8658],[-21,18],[-32,5],[-19,19],[-30,55]],[[8971,8878],[-33,19],[-50,12]],[[8888,8909],[-61,5]],[[8827,8914],[-45,19],[-32,6]],[[8750,8939],[-70,-9],[-41,10]],[[8097,9023],[-62,-1]],[[7926,8907],[223,-77],[9,-2],[316,-133],[205,-68],[231,-75],[119,-40],[95,-30],[284,-93],[124,-38],[86,-30],[18,-14]],[[8687,9336],[-32,3]],[[9288,8667],[-18,27]],[[9227,8729],[30,104]],[[9257,8833],[-10,6],[-57,96]],[[8074,9515],[33,-17]],[[8076,9486],[14,-5]],[[8090,9481],[19,-13]],[[8111,9445],[-14,9]],[[8097,9454],[-17,0]],[[8390,9377],[2,40],[-7,16]],[[8374,9436],[-8,3]],[[8366,9439],[-2,-52]],[[8364,9387],[26,-10]],[[7963,9141],[14,-5]],[[8003,9126],[1,4]],[[8004,9130],[-6,34],[9,12]],[[7949,9151],[14,-10]],[[7977,9082],[10,8]],[[7963,9141],[-2,-45],[16,-14]],[[8010,9203],[12,3]],[[8022,9206],[14,-3],[11,13]],[[8047,9216],[5,15]],[[8046,9178],[3,0]],[[8049,9178],[4,26],[-6,12]],[[8022,9206],[9,-12],[0,-19],[15,3]],[[8105,9163],[-39,10]],[[8066,9173],[-3,-17]],[[8063,9156],[32,-9],[10,16]],[[8637,9251],[-1,-13]],[[8636,9238],[31,12],[5,19]],[[8149,9246],[25,12]],[[8653,9382],[12,37]],[[8466,9007],[11,26],[3,28]],[[8636,9203],[0,35]],[[8659,9351],[32,12],[12,-2]],[[8750,8939],[-7,39]],[[8743,8978],[-28,13],[3,30],[13,18],[-37,13],[-29,23]],[[8345,9395],[17,44]],[[8362,9439],[-10,0]],[[8352,9439],[-24,-2]],[[8328,9437],[-2,-29]],[[8355,9291],[3,58]],[[8316,9339],[-3,-41]],[[8313,9298],[5,-1]],[[8402,9284],[2,47]],[[8384,9347],[-2,-46],[-9,-12]],[[8385,9367],[-11,-10]],[[8374,9357],[-4,-68]],[[7977,9081],[0,1]],[[8004,9130],[13,0],[6,21],[14,8]],[[8037,9159],[-30,17]],[[8072,9138],[36,-6]],[[8105,9163],[0,0]],[[8063,9156],[-3,-17]],[[8060,9139],[12,-1]],[[8037,9159],[7,-15]],[[8044,9144],[16,-5]],[[8066,9173],[-17,5]],[[8046,9178],[-9,-19]],[[8060,9139],[-5,-40]],[[8055,9099],[13,2],[6,18],[-2,19]],[[8081,9254],[-5,-29]],[[8076,9225],[27,-5]],[[8072,9208],[32,-8]],[[8076,9225],[-4,-17]],[[9492,8949],[21,5],[20,38]],[[9443,9053],[-9,-19],[5,-11],[-8,-40],[34,-2],[5,-29],[22,-3]],[[9360,8861],[27,-32],[1,-44]],[[9485,8811],[7,10],[-4,49],[4,24]],[[9492,8894],[0,55]],[[9424,9066],[-33,-64],[8,-3],[-36,-89]],[[9363,8910],[-13,-37],[10,-12]],[[9038,9163],[28,-16]],[[9066,9147],[13,42],[-8,25],[-26,-12]],[[9045,9202],[-24,-16],[-3,-11]],[[9018,9175],[20,-12]],[[8877,9027],[30,-8],[3,43]],[[8910,9062],[-27,-2],[-24,8]],[[8859,9068],[-11,-24],[29,-17]],[[9360,8861],[-27,-67],[-30,12]],[[9303,8806],[-46,27]],[[8840,9068],[19,0]],[[8910,9062],[20,-2],[22,-11]],[[8952,9049],[30,4],[21,-3]],[[9003,9050],[10,13],[-3,22],[20,63]],[[9030,9148],[-57,4],[-23,9],[-49,9],[-87,48]],[[9030,9148],[8,15]],[[9018,9175],[-43,47],[-28,18]],[[8947,9240],[-42,4],[0,20]],[[8905,9264],[-26,-10],[-23,0]],[[8856,9254],[-45,-15]],[[8374,9357],[-11,-7]],[[8395,9378],[-5,-1]],[[8352,9439],[4,43]],[[8315,9469],[13,-32]],[[8282,9250],[34,-8]],[[8066,9173],[3,17]],[[8069,9190],[3,18]],[[8044,9144],[-6,-22]],[[8069,9190],[35,-9]],[[7994,9291],[-1,24],[8,20]],[[8001,9335],[5,47]],[[8006,9382],[-42,16]],[[9066,9147],[26,-22]],[[9092,9125],[1,14],[14,12],[21,90]],[[9020,9294],[-22,-39],[15,-5],[29,-27],[3,-21]],[[9051,9041],[-36,1],[-12,8]],[[8952,9049],[0,-11],[-30,-11],[-17,-58],[5,-16],[-22,-44]],[[8905,9264],[-14,41],[11,12],[19,1],[-53,24],[-3,25]],[[8808,9280],[18,30],[21,9],[8,-16],[1,-49]],[[9051,9041],[39,61],[2,23]],[[8947,9240],[-6,54],[15,31]],[[8223,9522],[7,-37],[-3,-26],[27,-10]],[[8212,9516],[3,-56]],[[8215,9460],[1,-26]],[[8216,9434],[39,-10]],[[8203,9187],[1,0]],[[8173,9239],[2,-28]],[[8039,9317],[10,48]],[[8036,9370],[-30,12]],[[8001,9335],[38,-18]],[[7994,9291],[45,-3]],[[8039,9288],[0,29]],[[8099,9322],[-33,-10],[-5,-31]],[[8061,9281],[18,-13],[21,7]],[[8276,9182],[-6,-54]],[[8877,9027],[-36,-73]],[[8841,8954],[-14,-40]],[[8575,9083],[19,-14],[16,-1]],[[9264,9063],[17,-34],[14,-7],[16,-38],[12,-17],[22,-9],[-1,-47]],[[9344,8911],[19,-1]],[[9283,9151],[-13,-28],[0,-15],[-23,-11]],[[9247,9097],[25,-20],[-8,-14]],[[9114,9007],[67,89],[17,3],[2,20]],[[9200,9119],[-11,7],[5,25],[-2,29],[-64,27],[10,29]],[[9167,8972],[51,2],[7,17],[31,34],[8,38]],[[9247,9097],[-18,3],[-29,19]],[[9303,8806],[1,13],[22,49],[21,10],[-22,7],[8,21],[11,5]],[[8124,9460],[-9,4]],[[8090,9481],[7,-27]],[[8366,9439],[-4,0]],[[8278,9310],[35,-12]],[[8134,9321],[2,14]],[[8143,9360],[-26,10]],[[8099,9345],[0,-1]],[[8039,9288],[22,-7]],[[8037,9437],[-30,5]],[[8007,9442],[10,-33]],[[8006,9403],[14,-6]],[[8007,9442],[-3,5]],[[8004,9447],[-13,-28],[15,-16]],[[8006,9403],[0,-21]],[[8004,9447],[0,2]],[[8004,9449],[-33,17]],[[8841,8954],[-28,18],[-30,7],[-24,-5],[-16,4]],[[8293,9477],[1,-46],[-10,-9]],[[8255,9424],[-2,-20],[-19,-1]],[[8041,9456],[16,45]],[[8035,9456],[6,0]],[[7999,9468],[13,-8]],[[7990,9494],[9,-26]],[[8038,9438],[3,18]],[[7999,9468],[5,-19]],[[8366,9047],[-31,16],[6,18]],[[9492,8894],[25,10],[6,-22],[31,3],[23,-31],[12,14]],[[9642,8829],[9,19],[26,20],[18,28]],[[8183,9408],[-17,4]],[[8163,9414],[-3,-23]],[[8138,9420],[3,-28]],[[8216,9434],[1,-31]],[[8187,9465],[28,-5]],[[8041,9456],[25,1]],[[7950,9550],[5,-23]],[[8200,9437],[8,-2]],[[8208,9435],[8,-1]],[[8182,9441],[18,-4]],[[8208,9435],[-2,-29]],[[8200,9437],[-13,-29]],[[4478,5442],[37,-2],[-2,-23]],[[4513,5417],[4,-35],[-14,1]],[[4503,5383],[-7,-33]],[[4496,5350],[127,-10]],[[4623,5340],[6,167]],[[4629,5507],[1,31],[-24,2]],[[4606,5540],[-15,1],[-20,-30],[-92,6]],[[4479,5517],[-9,-29],[8,-46]],[[4478,5385],[8,26]],[[4486,5411],[0,8]],[[4486,5419],[-7,2]],[[4479,5421],[-2,-10],[-15,12]],[[4462,5423],[-2,-37],[18,-1]],[[4629,5507],[55,-5],[152,-10],[30,-4]],[[4639,5826],[-5,-135],[-2,-120],[-22,1],[-4,-32]],[[4503,5417],[1,12],[-18,-10]],[[4486,5411],[16,-12],[1,18]],[[4478,5385],[25,-2]],[[4513,5417],[-10,0]],[[4470,5352],[26,-2]],[[4462,5423],[1,16]],[[4463,5439],[15,3]],[[4479,5517],[-95,5]],[[4384,5522],[-2,-52]],[[4382,5470],[-3,-108]],[[4379,5362],[0,-4]],[[4379,5358],[91,-6]],[[4623,5340],[-9,-272],[-3,-50]],[[4470,5352],[-1,-48],[18,-2],[6,9],[-3,31],[6,8]],[[4463,5439],[16,-18]],[[4379,5358],[-11,-321]],[[4394,5836],[-2,-67]],[[4392,5769],[-7,-225]],[[4385,5544],[-1,-22]],[[7044,8643],[3,0]],[[7047,8643],[5,0]],[[7052,8643],[9,10],[-8,20]],[[7053,8673],[-16,-13]],[[7037,8660],[7,-17]],[[7112,8591],[21,3]],[[7133,8594],[11,4]],[[7144,8598],[0,7]],[[7144,8605],[-10,6]],[[7134,8611],[-3,3]],[[7131,8614],[-12,-2],[-4,38]],[[7115,8650],[-5,0]],[[7110,8650],[-6,-4]],[[7104,8646],[8,-55]],[[7134,8611],[11,10]],[[7145,8621],[9,-1]],[[7154,8620],[1,2]],[[7155,8622],[-6,11]],[[7149,8633],[-20,3]],[[7129,8636],[2,-22]],[[7025,8619],[-11,6],[4,20]],[[7018,8645],[0,1]],[[7018,8646],[-47,-34]],[[6971,8612],[10,-23],[21,13],[4,-8],[27,7],[-8,18]],[[7242,8743],[15,19],[20,40]],[[7277,8802],[-17,1]],[[7260,8803],[1,-15],[-16,8],[-14,-8],[8,-16],[-6,-18],[9,-11]],[[6983,8502],[13,14],[1,28],[-18,19],[-13,3],[-15,-25]],[[7306,8814],[5,-38],[12,-3],[23,19]],[[7346,8792],[-40,22]],[[7212,8715],[22,0]],[[7234,8715],[23,1]],[[7257,8716],[-15,27]],[[7260,8803],[-3,25]],[[7257,8828],[-58,-45]],[[7199,8783],[1,-37]],[[7200,8746],[11,1],[1,-32]],[[7199,8783],[-15,-11]],[[7184,8772],[1,-27],[15,1]],[[7172,8716],[37,-2]],[[7209,8714],[3,1]],[[7184,8772],[-32,-24]],[[7152,8748],[23,-4],[-3,-28]],[[7257,8716],[9,-9]],[[7266,8707],[15,-6]],[[7281,8701],[-4,25],[7,66]],[[7284,8792],[0,15]],[[7284,8807],[-7,-5]],[[7156,8609],[13,16]],[[7169,8625],[-14,-3]],[[7154,8620],[-4,-9]],[[7150,8611],[6,-2]],[[7013,8464],[121,17]],[[7134,8481],[-6,2],[-34,53],[18,0],[1,38]],[[7113,8574],[-9,-12],[-22,2],[-15,24],[5,34],[-15,-2]],[[7057,8620],[-20,-8],[-12,7]],[[6971,8612],[-50,-35]],[[7113,8574],[-1,17]],[[7104,8646],[8,21],[-16,7]],[[7096,8674],[-5,-28],[-22,-11],[-17,8]],[[7047,8643],[10,-23]],[[7150,8483],[19,3],[24,-7]],[[7193,8479],[-5,86]],[[7188,8565],[-14,-2],[-2,19]],[[7172,8582],[-1,6]],[[7171,8588],[-13,-7],[-2,28]],[[7150,8611],[-6,-13]],[[7133,8594],[-6,-29],[21,4],[-2,-60],[4,-26]],[[7298,8690],[50,17]],[[7348,8707],[0,25]],[[7348,8732],[0,1]],[[7348,8733],[-24,-2],[-23,-18],[-1,-19]],[[7300,8694],[-2,-4]],[[7140,8670],[28,3]],[[7168,8673],[4,43]],[[7152,8748],[-21,-16]],[[7131,8732],[9,-24],[-6,-26],[6,-12]],[[7296,8433],[18,51]],[[7314,8484],[-28,24]],[[7286,8508],[-15,-18]],[[7271,8490],[-13,-37],[-7,-2]],[[7251,8451],[-1,-2]],[[7250,8449],[46,-16]],[[7285,8597],[19,-14],[9,24],[-4,23]],[[7309,8630],[-4,20]],[[7305,8650],[-12,-8],[-15,5],[0,-36]],[[7278,8611],[7,-14]],[[7179,8445],[3,21],[9,-6],[19,15]],[[7210,8475],[-17,4]],[[7150,8483],[5,-13],[11,11],[3,-30],[10,-6]],[[7261,8360],[2,21],[14,17]],[[7277,8398],[4,7]],[[7281,8405],[-27,6],[-11,9]],[[7243,8420],[0,-12],[-19,-19]],[[7224,8389],[-10,-26],[17,-8],[3,9],[27,-4]],[[7110,8650],[30,20]],[[7131,8732],[-36,-28]],[[7095,8704],[1,-30]],[[7234,8458],[0,-2]],[[7234,8456],[16,-7]],[[7251,8451],[-4,9],[24,30]],[[7286,8508],[-31,-25],[-27,-12]],[[7228,8471],[6,-13]],[[7234,8425],[9,-5]],[[7281,8405],[4,8]],[[7285,8413],[5,11]],[[7290,8424],[6,9]],[[7234,8456],[-8,-20],[8,-11]],[[7134,8481],[16,2]],[[7092,8367],[25,24],[25,0],[16,20],[29,3]],[[7187,8414],[-8,31]],[[7187,8414],[6,-3]],[[7193,8411],[27,9]],[[7220,8420],[-14,31],[10,15],[18,-8]],[[7228,8471],[-1,0]],[[7227,8471],[-17,4]],[[7238,8193],[-1,9],[23,38],[20,16]],[[7280,8256],[2,17],[-12,18]],[[7270,8291],[-9,13]],[[7261,8304],[-10,30],[10,26]],[[7224,8389],[-13,-2],[-18,24]],[[7309,8630],[16,-11],[5,-24],[27,-5]],[[7357,8590],[0,18]],[[7357,8608],[-5,46]],[[7352,8654],[-3,30]],[[7349,8684],[-45,-17]],[[7304,8667],[1,-17]],[[7018,8645],[8,-8],[18,6]],[[7037,8660],[-19,-14]],[[7184,8618],[12,3],[2,22]],[[7198,8643],[-21,7],[-1,-19]],[[7176,8631],[8,-13]],[[7150,8647],[2,9]],[[7152,8656],[-13,10],[-6,-17]],[[7133,8649],[17,-2]],[[7169,8625],[0,6]],[[7169,8631],[-4,16]],[[7165,8647],[-15,0]],[[7150,8647],[-1,-14]],[[7095,8704],[-42,-31]],[[7284,8807],[13,27],[-12,15]],[[7285,8849],[-28,-21]],[[7346,8792],[6,-5]],[[7352,8787],[2,48]],[[7354,8835],[-5,38]],[[7349,8873],[0,17]],[[7349,8890],[-11,0],[-53,-41]],[[7284,8792],[22,22]],[[7144,8605],[1,16]],[[7284,8511],[2,-3]],[[7314,8484],[16,47]],[[7330,8531],[12,15]],[[7342,8546],[9,15]],[[7351,8561],[6,26]],[[7357,8587],[0,3]],[[7285,8597],[4,-80],[-5,-6]],[[7231,8519],[19,1],[5,14],[-14,8]],[[7241,8542],[-8,24],[-15,1]],[[7218,8567],[-8,-37],[21,2],[0,-13]],[[7172,8582],[13,7]],[[7185,8589],[-14,-1]],[[7133,8649],[-4,1]],[[7129,8650],[0,-14]],[[7227,8471],[4,48]],[[7218,8567],[-30,-2]],[[7201,8676],[8,38]],[[7168,8673],[13,-9],[20,12]],[[7188,8565],[0,9]],[[7188,8574],[-1,15]],[[7187,8589],[-2,0]],[[7115,8650],[14,0]],[[7152,8656],[14,7]],[[7166,8663],[2,10]],[[7169,8631],[7,0]],[[7198,8643],[4,11]],[[7202,8654],[-1,22]],[[7166,8663],[-1,-16]],[[7263,8631],[15,-20]],[[7304,8667],[-6,23]],[[7300,8694],[-19,7]],[[7266,8707],[-6,-52],[3,-24]],[[7206,8624],[11,26]],[[7217,8650],[-15,4]],[[7184,8618],[3,-29]],[[7188,8574],[8,32],[10,18]],[[7217,8650],[8,15],[9,50]],[[7263,8631],[-9,-13]],[[7254,8618],[6,-8],[3,-58],[11,1],[2,-26],[8,-16]],[[7254,8618],[-4,-8]],[[7250,8610],[-3,-15]],[[7247,8595],[-2,-27],[5,-15],[-9,-11]],[[7348,8733],[0,12]],[[7348,8745],[4,41]],[[7352,8786],[0,1]],[[7215,8591],[32,4]],[[7250,8610],[-11,13],[-14,2],[-8,25]],[[7206,8624],[9,-33]],[[7218,8567],[-3,24]],[[7349,8684],[-1,23]],[[7234,8425],[-14,-5]],[[2114,5395],[74,-2]],[[1820,5586],[0,-190]],[[1820,5396],[74,-2],[176,0],[44,1]],[[1626,5207],[117,0],[78,-3]],[[1821,5204],[-1,192]],[[1820,5396],[-73,3],[-119,0]],[[2263,4972],[-118,-2],[-31,2],[0,39]],[[2114,5011],[-144,1]],[[1970,5012],[-3,-194]],[[1970,5012],[-56,0],[-52,4],[-40,-1]],[[1822,5015],[1,-34],[-1,-161]],[[1968,5202],[146,2]],[[2114,5204],[0,191]],[[1821,5204],[147,-2]],[[1970,5012],[-2,190]],[[1627,5017],[72,-2],[123,0]],[[2114,5204],[0,-40]],[[2114,5164],[149,0]],[[2114,5011],[0,153]],[[4557,3898],[2,-11],[45,-180]],[[4604,3707],[94,38]],[[4698,3745],[-27,115],[-50,197]],[[4549,4013],[-1,-80],[9,-35]],[[4267,3564],[67,28]],[[4334,3592],[-33,127],[12,5],[-20,80],[13,6]],[[4306,3810],[-30,124],[-16,26]],[[4260,3960],[-11,-6],[-25,-39],[-1,-46]],[[4223,3869],[-1,-22],[-9,2],[4,-40]],[[4217,3809],[-11,-8],[-2,-20],[-17,1]],[[4187,3782],[-9,-8],[-6,-50],[-17,-11],[1,-9]],[[4156,3704],[-11,-22],[-17,-17],[-10,-27]],[[4118,3638],[134,-17],[15,-57]],[[4306,3810],[122,48]],[[4428,3858],[20,10]],[[4448,3868],[0,69]],[[4349,4047],[9,-33],[-27,-20],[-10,27]],[[4306,4018],[-23,-38],[-11,3],[-12,-23]],[[4528,3247],[46,-5],[3,62],[-47,3],[-2,-60]],[[4456,3165],[79,31],[1,21],[140,-13]],[[4676,3204],[4,82]],[[4680,3286],[-49,4],[2,41],[-26,-11],[-43,173]],[[4564,3493],[-67,-28],[-3,10],[-52,-83],[4,-18],[-35,-14],[0,-13]],[[4411,3347],[13,-16],[14,-34],[10,-41],[7,-54],[1,-37]],[[4334,3592],[49,21]],[[4383,3613],[99,41]],[[4482,3654],[-54,204]],[[4060,3464],[33,-26],[9,14]],[[4102,3452],[22,36],[-7,32]],[[4117,3520],[-12,-5],[-17,8],[-14,-5]],[[4074,3518],[-14,-54]],[[4117,3520],[-6,22],[12,32],[-17,8]],[[4106,3582],[-1,-4]],[[4105,3578],[-12,-28],[-16,-24]],[[4077,3526],[-3,-8]],[[4066,3532],[11,-6]],[[4105,3578],[-32,-2]],[[4073,3576],[-6,-14]],[[4067,3562],[-7,-17],[6,-13]],[[4042,3477],[15,46],[9,9]],[[4067,3562],[-27,1],[-2,-61]],[[4038,3502],[4,-25]],[[4042,3477],[18,-13]],[[4246,3347],[4,76],[4,135],[13,6]],[[4118,3638],[-12,-56]],[[4102,3452],[15,-30],[58,-43],[9,-16],[25,-11],[37,-5]],[[4073,3576],[0,12],[15,56],[-1,13],[19,50]],[[4106,3707],[-34,2]],[[4072,3709],[-128,7]],[[3944,3716],[-5,-113]],[[3939,3603],[-1,-11]],[[3938,3592],[34,-30],[28,-37],[17,-4],[21,-19]],[[4372,3363],[11,250]],[[4246,3347],[24,27],[17,-1],[55,8],[30,-18]],[[4156,3704],[-50,3]],[[4564,3493],[-45,178]],[[4519,3671],[-37,-17]],[[4372,3363],[39,-16]],[[4519,3671],[85,36]],[[4557,3898],[-21,3],[5,-44],[-21,-10],[8,48],[-42,-19],[-38,-8]],[[4072,3709],[3,131],[31,-1],[3,124]],[[4109,3963],[-37,0],[-113,7]],[[3959,3970],[-6,0],[-5,-174],[-4,-80]],[[4187,3782],[-2,17]],[[4185,3799],[-23,2],[-1,36]],[[4161,3837],[-7,16],[22,0],[1,12],[45,2]],[[4222,3867],[1,2]],[[4111,4028],[-2,-65]],[[4185,3799],[5,30]],[[4190,3829],[-29,8]],[[4190,3829],[32,38]],[[4190,3829],[27,-20]],[[4698,3745],[155,67]],[[4899,3636],[-22,-9],[-138,-54],[44,-179],[-86,-36],[-2,-73],[-15,1]],[[4676,3204],[15,-1],[-7,-156]],[[4456,3165],[4,-86],[-4,-59]],[[3938,3592],[-34,-624]],[[2213,3895],[-89,2],[0,-29],[-62,3]],[[2062,3871],[0,-21],[-93,4],[-76,0]],[[1893,3854],[-1,-37],[7,-3],[0,-43],[-11,-14],[0,-24],[-13,-1],[-2,-27]],[[1873,3705],[27,8],[41,-5],[39,2],[25,-9],[76,-2],[47,13],[31,-2],[6,6],[39,0],[9,7]],[[2211,4043],[-33,0],[-4,-12],[-99,1],[-12,-7]],[[2063,4025],[-1,-154]],[[2063,4239],[-1,-7],[0,-207],[1,0]],[[1893,3854],[-58,0]],[[1835,3854],[-80,0],[-132,7]],[[1624,3709],[59,-8],[64,-3],[37,7],[38,-1],[11,5],[40,-4]],[[1687,4050],[4,0]],[[1691,4050],[52,-2]],[[1743,4048],[0,24],[-55,3],[-1,-25]],[[1691,4050],[8,-2],[0,-28],[9,-13],[35,3],[0,38]],[[1743,4048],[90,-1]],[[1833,4047],[0,14],[-15,0],[1,181]],[[1631,4053],[56,-3]],[[1620,3125],[118,0],[9,3],[147,0],[157,2],[164,-1]],[[1835,3854],[-2,193]],[[1893,3972],[33,-7],[19,19],[4,-18],[16,-17],[19,0],[0,22],[15,-5],[0,30],[-16,2],[0,49],[-19,0],[0,-34],[-9,-14],[-16,0],[6,-12],[-14,-13],[-38,-2]],[[3380,6373],[2,30]],[[3382,6403],[-16,-3]],[[3366,6400],[-1,-30],[15,3]],[[2901,6127],[131,3]],[[3032,6130],[144,1]],[[3176,6131],[-1,196]],[[3175,6327],[-68,-1],[4,200]],[[3111,6526],[-145,-2],[1,-104],[-73,-2]],[[2894,6418],[3,-96],[-39,-2]],[[2858,6320],[1,-49],[23,1],[2,-59],[16,-11],[1,-75]],[[2652,6018],[-1,26]],[[2651,6044],[-6,3],[-20,-39]],[[2625,6008],[27,10]],[[2621,5988],[4,20]],[[2651,6044],[-2,6],[-30,0],[1,-45],[-14,-4],[15,-13]],[[2621,5988],[22,2],[9,28]],[[3256,6130],[78,-3]],[[3335,6131],[4,191]],[[3339,6322],[-132,5]],[[3207,6327],[-32,0]],[[3176,6131],[80,-1]],[[3074,5912],[15,17]],[[3089,5929],[2,19],[-16,64],[-21,-12]],[[3054,6000],[6,-2],[4,-40],[10,-46]],[[3256,6130],[-4,-185]],[[3252,5945],[0,-78],[-4,-144]],[[3248,5723],[-1,-15],[32,-63]],[[3089,5929],[10,7],[38,-37],[7,9],[0,32],[29,-2],[0,9],[79,-2]],[[3032,6130],[0,-91],[-3,-11],[25,-28]],[[2778,5789],[37,1],[0,-30],[11,0],[0,-17],[31,1],[8,-40],[13,0],[5,-42],[48,1]],[[2931,5663],[-3,86],[16,0],[0,53],[14,0],[0,29],[15,0],[0,36],[17,0],[12,14]],[[3002,5881],[-25,28],[-23,1],[0,12],[-22,0],[0,11],[-25,-9],[-6,203]],[[2901,6127],[-185,-7],[-1,-47],[-12,0]],[[2703,6073],[4,-31],[-4,-82]],[[2703,5960],[49,1],[2,-90],[24,1],[0,-83]],[[2550,5843],[74,4],[-2,80],[62,2],[0,31],[19,0]],[[2703,6073],[-22,0],[-1,45]],[[2680,6118],[-144,-7]],[[3002,5881],[80,1]],[[3082,5882],[-8,30]],[[3339,6322],[28,-2]],[[3367,6320],[-5,11],[1,36],[-10,0],[0,28]],[[3353,6395],[1,132]],[[3354,6527],[-146,0]],[[3208,6527],[-1,-200]],[[7934,3237],[38,34],[15,-17],[-3,-35],[18,-33],[0,-42],[23,-3],[6,10],[21,-13],[38,5],[0,32],[11,17],[-3,59],[13,-6],[5,13],[20,10],[21,34],[-2,23],[11,26],[-7,13],[-1,76]],[[8158,3440],[-131,21],[-28,6]],[[7999,3467],[-104,18],[-16,-156]],[[7879,3329],[36,-36],[11,-19],[8,-37]],[[7810,3119],[14,-3],[17,-19],[10,-24],[0,-30],[8,-21],[7,-44],[22,-68],[5,0],[-5,-66],[5,-21],[-15,-7],[42,-72]],[[7993,2733],[3,21],[24,28],[9,32],[-25,62],[0,40],[-22,40],[-10,29],[-9,8],[-6,53],[-9,37],[-12,16],[-4,23],[13,27],[-8,24],[3,19],[-12,33],[6,12]],[[7879,3329],[-19,15],[-117,-104]],[[7743,3240],[16,-35],[14,-16],[16,-40],[21,-30]],[[7994,4446],[57,-6],[15,-48],[69,-53]],[[8135,4339],[-4,90],[-6,228]],[[7926,4624],[35,-22],[24,-49],[-5,-24],[1,-44],[13,-39]],[[8144,4021],[-3,136],[-5,140]],[[8136,4297],[-8,17],[-23,-8],[-16,5],[-1,22],[-39,40],[-11,0],[-3,-62],[-6,-5],[7,-29],[-10,-41],[-17,-26],[-18,7],[-9,-9]],[[7982,4208],[-7,-61],[10,-1],[-8,-78]],[[7977,4068],[-2,-18]],[[7975,4050],[169,-29]],[[7756,3869],[-21,-29],[-14,-1]],[[7721,3839],[0,-6]],[[7721,3833],[31,2],[4,34]],[[3208,6527],[-97,-1]],[[3366,6400],[6,29],[10,2]],[[3382,6431],[28,7],[11,-5]],[[3421,6433],[2,12],[31,27],[24,-15],[7,8],[17,-10]],[[3502,6524],[-148,3]],[[3353,6395],[13,5]],[[3392,6408],[20,-1]],[[3412,6407],[9,26]],[[3382,6431],[10,-23]],[[7756,3869],[0,11]],[[7756,3880],[-33,7]],[[7723,3854],[-2,-15]],[[7895,4314],[19,3],[16,-8],[16,-27],[-13,-36],[25,-35],[24,-3]],[[8136,4297],[-1,42]],[[7994,4446],[-28,6],[-9,-25],[-13,-6],[-10,-23],[-13,-3],[-15,-23],[-15,-3]],[[7891,4369],[-1,-35],[5,-20]],[[7740,4186],[62,-11]],[[7802,4175],[0,7],[97,-17],[-11,-41],[41,-5],[3,-23],[14,-21],[31,-7]],[[7895,4314],[-15,19],[-33,-2],[-6,13],[-17,-12],[-15,3],[9,-27],[-24,1],[7,-35],[-10,-7],[-38,12],[-6,15]],[[8158,3440],[-7,309]],[[8151,3749],[-131,24]],[[8020,3773],[-17,-168]],[[8003,3605],[9,-1],[-13,-137]],[[3382,6403],[10,5]],[[3380,6373],[32,34]],[[2858,6320],[-185,-7],[7,-195]],[[3367,6320],[93,-3],[43,-45]],[[2630,5556],[0,20],[19,0],[-1,22],[33,7],[0,15],[11,0],[0,40],[37,1],[-2,79],[25,-8],[12,10],[-2,16],[15,0]],[[2777,5758],[1,31]],[[2929,5465],[0,52],[33,1],[0,47],[9,1],[3,24],[-10,30],[-21,42],[-12,1]],[[2777,5758],[1,-96],[2,0],[4,-201]],[[3155,5465],[2,201]],[[3157,5666],[-24,-1],[1,60],[-12,0],[0,67],[-23,1],[-4,54],[-14,1],[1,34]],[[8020,3773],[8,74],[-75,13]],[[7953,3860],[0,-16],[-73,13]],[[7880,3857],[-21,-202]],[[7859,3655],[4,-23],[140,-27]],[[8151,3749],[-5,240],[-2,32]],[[7975,4050],[-22,-190]],[[3157,5666],[14,3],[1,55],[76,-1]],[[7756,3880],[42,-7]],[[7798,3873],[7,50],[-1,232],[-2,20]],[[7859,3655],[-1,-3],[-153,28]],[[7705,3680],[-4,-33]],[[7701,3647],[-20,-194]],[[7681,3453],[-5,-19],[0,-39],[7,-20],[10,2],[4,-45],[11,-28],[-9,-7],[10,-25],[22,-4],[12,-28]],[[7891,4369],[-17,68],[-4,51],[-10,11],[-11,61],[-23,13],[2,53],[-8,31]],[[3502,6722],[-167,4],[-127,0]],[[3208,6726],[1,-97],[-1,-102]],[[3208,6726],[-320,-1]],[[2888,6725],[0,-54],[6,-253]],[[2888,6725],[-252,1],[-116,2]],[[7880,3857],[-82,16]],[[7721,3833],[-16,-153]],[[5953,795],[-16,22],[9,9],[24,-7],[9,-26]],[[5979,793],[1,-12],[17,7],[81,0]],[[6078,788],[16,29]],[[6094,817],[-78,69],[-108,92],[-27,26]],[[5881,1004],[-51,-95]],[[5830,909],[35,-41],[41,-35],[28,-38],[19,0]],[[5992,797],[5,22],[11,-9],[-16,-13]],[[5948,540],[36,68]],[[5984,608],[32,62]],[[6016,670],[-27,23],[-23,-2],[-14,23],[-3,32],[13,4],[15,44]],[[5977,794],[-24,1]],[[5830,909],[-54,-101]],[[5776,808],[-26,-49]],[[5750,759],[-15,-31]],[[5735,728],[127,-114],[86,-74]],[[5977,794],[2,-1]],[[6016,670],[62,118]],[[5310,735],[24,33],[17,-13]],[[5351,755],[17,-14]],[[5368,741],[17,-16],[9,9],[10,-25]],[[5404,709],[57,94],[74,141]],[[5535,944],[11,23]],[[5546,967],[-72,62],[8,-39],[-11,-21],[-27,-29],[-10,8],[-65,-53],[-7,24],[4,34],[-19,35],[-37,40],[-30,26]],[[5280,1054],[-81,-165]],[[5199,889],[111,-154]],[[5330,709],[16,21],[5,25]],[[5310,735],[20,-26]],[[5363,677],[0,20],[-10,13],[15,31]],[[5330,709],[33,-32]],[[5363,677],[44,-54]],[[5407,623],[16,40],[3,27],[-25,7],[3,12]],[[6094,232],[18,36]],[[6112,268],[6,11]],[[6118,279],[56,104],[-51,45],[-53,45],[16,29],[-63,55],[6,11],[-45,40]],[[5948,540],[-59,-110]],[[5889,430],[140,-127],[49,-41],[16,-30]],[[6268,49],[32,9],[7,-10]],[[6314,144],[-18,0],[-56,71],[-61,8],[-61,56]],[[6112,268],[-1,-24],[-9,-16],[-4,-40]],[[6098,188],[12,3],[26,-33],[23,-18],[24,-6],[46,-26],[-3,-14],[16,-12],[26,-33]],[[6094,232],[-44,-84]],[[6050,148],[17,-28],[31,68]],[[6040,72],[38,2],[10,-21],[16,-17],[27,-2],[25,-22],[25,-12],[12,8],[19,-5],[11,22],[37,-3],[8,27]],[[6050,148],[-20,-30],[-1,-26],[11,-20]],[[5789,264],[11,1],[89,165]],[[5735,728],[-17,-28],[-32,-63],[-34,-61],[-71,-139]],[[5581,437],[-2,-29],[42,-36],[23,-12],[18,-20],[16,-2],[12,-22],[19,0],[48,-36],[32,-8],[0,-8]],[[5789,264],[6,-34],[21,-14],[16,4],[11,-17],[40,-6],[6,-11],[42,-28],[27,-28],[15,-43],[24,-13],[43,-2]],[[5750,759],[-88,75],[-96,86],[-31,24]],[[5407,623],[26,-30],[12,-38],[21,-2],[13,-15],[21,-6],[1,-12],[30,-48],[15,6],[35,-41]],[[6523,1510],[-165,21],[-1,-15]],[[6357,1516],[-11,-111],[-15,-217],[-4,-42],[-8,-129],[-74,7],[-19,-290]],[[6226,734],[96,-82],[-83,-153],[14,-15],[94,-15],[89,-12]],[[5039,1095],[52,101],[9,-34],[37,78],[38,72],[-3,18],[-30,53],[66,132],[17,31]],[[5225,1546],[41,78],[26,56],[26,-21]],[[5318,1659],[7,88]],[[4887,1394],[49,-66],[16,-89],[52,-100],[35,-44]],[[5280,1054],[44,91],[45,86]],[[5369,1231],[-43,91],[-23,75],[-25,52],[-24,22],[8,16],[-29,36],[-8,23]],[[5039,1095],[43,-61],[52,-68],[48,-55],[17,-22]],[[5369,1231],[134,258],[-51,49]],[[5452,1538],[-91,84],[-43,37]],[[5452,1538],[195,-19],[0,-40],[56,-5],[-12,-226],[-11,-21]],[[5680,1227],[18,-14],[147,-130]],[[5845,1083],[14,181]],[[5859,1264],[13,160],[9,109],[10,80],[-178,19],[6,108],[20,241],[-102,16]],[[5546,967],[91,176]],[[5637,1143],[43,84]],[[6094,817],[8,18],[124,-101]],[[6357,1516],[-21,-13],[-21,24],[-8,32],[-21,4],[-14,-9],[-33,23],[-19,3],[-19,-27],[-142,15],[-9,-119],[-14,-196],[-177,11]],[[5845,1083],[52,-47],[-16,-32]],[[5776,808],[2,29],[-2,32],[-11,46],[-35,79],[-11,7],[-32,47],[-16,47],[-34,48]],[[5756,966],[10,16],[34,-8],[-22,-21],[-22,13]],[[7422,9089],[3,10]],[[7425,9099],[-8,3]],[[7414,9092],[8,-3]],[[7427,9087],[5,-1]],[[7432,9086],[1,10]],[[7433,9096],[-8,3]],[[7422,9089],[5,-2]],[[7433,9096],[7,-1]],[[7440,9095],[7,-3]],[[7447,9092],[-10,25]],[[7516,8612],[6,17],[-19,3],[-6,19]],[[7497,8651],[-22,-12]],[[7475,8639],[12,-20],[-12,-8]],[[7475,8611],[27,-12],[14,13]],[[7438,8754],[19,-1],[7,23]],[[7464,8776],[0,1]],[[7464,8777],[-15,6]],[[7449,8783],[-11,-3],[0,-26]],[[7390,8835],[20,-1]],[[7410,8834],[-12,38]],[[7398,8872],[-5,16]],[[7393,8888],[-24,-10]],[[7369,8878],[-3,-1]],[[7366,8877],[9,-24],[17,1],[-2,-19]],[[7354,8835],[36,0]],[[7366,8877],[-17,-4]],[[7387,9051],[0,1]],[[7387,9052],[-8,7]],[[7379,9059],[-9,17]],[[7370,9076],[-3,-6]],[[7367,9070],[2,-16],[18,-3]],[[7371,9030],[4,-3]],[[7375,9027],[11,9]],[[7386,9036],[1,15]],[[7367,9070],[-4,-7]],[[7363,9063],[8,-33]],[[7358,8933],[8,-2]],[[7366,8931],[-6,17]],[[7360,8948],[-4,24]],[[7356,8972],[-6,22]],[[7350,8994],[-1,4]],[[7349,8998],[-3,-4]],[[7346,8994],[12,-61]],[[7471,8908],[21,-57]],[[7492,8851],[19,36]],[[7511,8887],[0,20],[-16,11]],[[7495,8918],[-12,-3]],[[7483,8915],[-12,-7]],[[7511,8887],[24,23],[1,11]],[[7536,8921],[0,5]],[[7536,8926],[-34,53]],[[7502,8979],[-1,-7]],[[7501,8972],[-2,-22]],[[7499,8950],[-4,-32]],[[7503,8839],[16,4]],[[7519,8843],[2,6]],[[7521,8849],[-10,38]],[[7492,8851],[11,-12]],[[7411,9076],[8,-3]],[[7419,9073],[1,6]],[[7420,9079],[-10,7]],[[7400,9083],[11,-7]],[[7404,9039],[7,8]],[[7411,9047],[-5,19]],[[7406,9066],[-3,3]],[[7403,9069],[-8,0]],[[7395,9069],[-1,0]],[[7394,9069],[10,-30]],[[7406,9035],[8,4]],[[7414,9039],[-3,8]],[[7404,9039],[2,-4]],[[7497,8651],[-3,25]],[[7494,8676],[-31,3]],[[7463,8679],[-20,6]],[[7443,8685],[9,-25],[23,-21]],[[7421,8536],[20,5]],[[7441,8541],[-8,19],[10,39]],[[7443,8599],[-18,-44],[-21,5],[-9,-8]],[[7395,8552],[11,-21],[15,5]],[[7505,8433],[18,-4],[-7,-53]],[[7516,8376],[14,-15]],[[7530,8361],[19,58]],[[7549,8419],[-11,28],[3,12],[-14,21]],[[7527,8480],[-33,72]],[[7494,8552],[-2,-1]],[[7492,8551],[-14,-12]],[[7478,8539],[-2,-26],[11,-32],[16,-5],[2,-43]],[[7270,8291],[28,17]],[[7298,8308],[5,20]],[[7303,8328],[0,4]],[[7303,8332],[-17,15],[-25,-43]],[[7370,8406],[16,4]],[[7386,8410],[-21,23],[-6,21],[7,34],[-22,22],[-1,13]],[[7343,8523],[-13,8]],[[7290,8424],[31,-28],[31,-2],[18,12]],[[7549,8419],[8,-9]],[[7557,8410],[-1,23],[-11,20],[15,5],[7,-51]],[[7567,8407],[3,17]],[[7570,8424],[-5,37],[12,-7],[2,23],[-9,6]],[[7570,8483],[-10,-10],[-7,12],[-26,-5]],[[7645,8414],[14,-5],[6,-31],[27,15],[-3,16],[23,2]],[[7712,8411],[14,54],[-37,17]],[[7689,8482],[-89,40]],[[7600,8522],[-13,6]],[[7587,8528],[-17,-45]],[[7570,8424],[56,17],[3,-34],[16,7]],[[7594,8308],[79,-37],[5,22]],[[7678,8293],[11,42]],[[7689,8335],[23,76]],[[7645,8414],[0,-27],[-16,-37]],[[7629,8350],[-6,-7]],[[7623,8343],[-12,13],[-14,-1],[-3,-47]],[[7700,8222],[36,-6],[-1,18],[18,-5],[27,7]],[[7780,8236],[-2,14],[32,66]],[[7810,8316],[-23,8],[-5,28],[-7,0]],[[7775,8352],[-16,-29],[-70,12]],[[7678,8293],[-1,-33],[23,3],[0,-41]],[[7484,8159],[-8,46],[-13,-2]],[[7463,8203],[0,-27],[21,-17]],[[7350,8994],[10,5]],[[7360,8999],[3,2]],[[7363,9001],[0,7]],[[7363,9008],[-14,6]],[[7349,9014],[-2,-1]],[[7347,9013],[2,-15]],[[7347,9024],[2,-10]],[[7363,9008],[-3,6]],[[7360,9014],[-8,7]],[[7352,9021],[-1,4]],[[7351,9025],[-4,-1]],[[7525,8142],[5,58],[8,-9],[16,9]],[[7554,8200],[-8,2],[0,37],[-20,28],[-23,3]],[[7503,8270],[-4,-41]],[[7499,8229],[-7,-70]],[[7492,8159],[-1,-11]],[[7567,8134],[-3,25],[4,39]],[[7568,8198],[-14,2]],[[7605,8951],[9,-26],[20,-15]],[[7634,8910],[11,5]],[[7645,8915],[56,74]],[[7580,9110],[-1,-64]],[[7579,9046],[28,-90],[-2,-5]],[[7775,8352],[51,104]],[[7826,8456],[-127,100]],[[7699,8556],[-5,-53],[-5,-21]],[[7447,9092],[20,0]],[[7467,9092],[1,9]],[[7468,9101],[19,37]],[[7316,8265],[20,-12]],[[7336,8253],[11,0]],[[7347,8253],[-1,3]],[[7346,8256],[-10,26]],[[7336,8282],[-23,17]],[[7313,8299],[3,-34]],[[7494,8552],[1,3]],[[7495,8555],[6,38],[15,19]],[[7475,8611],[-10,-10],[27,-50]],[[7495,8555],[41,31]],[[7536,8586],[-1,27],[6,20],[-11,10],[-7,37]],[[7523,8680],[-12,21],[-3,24]],[[7508,8725],[-7,-40],[-7,-9]],[[7508,8725],[-8,26]],[[7500,8751],[-8,-9]],[[7492,8742],[-25,-14]],[[7467,8728],[4,-23],[-8,-26]],[[7441,8541],[8,-25]],[[7449,8516],[29,23]],[[7443,8685],[-13,24]],[[7430,8709],[-3,-2]],[[7427,8707],[-17,-6]],[[7410,8701],[0,-20],[10,-9],[10,-32],[-13,3],[-8,17],[-17,-6],[-40,0]],[[7357,8608],[67,16],[19,-25]],[[7410,8701],[-15,6]],[[7395,8707],[-6,-15],[-40,-8]],[[7484,8159],[8,0]],[[7499,8229],[-31,12]],[[7468,8241],[-5,-38]],[[7642,8120],[-5,6]],[[7637,8126],[-10,26],[-17,28],[-10,1]],[[7600,8181],[-2,-52]],[[7507,8768],[2,1]],[[7509,8769],[9,32]],[[7518,8801],[-7,7]],[[7511,8808],[-4,3]],[[7507,8811],[-5,-23],[5,-20]],[[7518,8801],[7,8]],[[7525,8809],[1,5]],[[7526,8814],[-7,0]],[[7519,8814],[-8,-6]],[[7453,8909],[3,-7]],[[7456,8902],[15,6]],[[7483,8915],[-8,22]],[[7475,8937],[-20,-24]],[[7455,8913],[-2,-3]],[[7453,8910],[0,-1]],[[7325,8225],[27,15],[-5,13]],[[7336,8253],[-19,1]],[[7317,8254],[8,-29]],[[7389,8535],[1,9]],[[7390,8544],[-9,10]],[[7381,8554],[-4,1]],[[7377,8555],[-26,6]],[[7342,8546],[47,-11]],[[7390,8571],[5,-19]],[[7357,8587],[33,4],[0,-20]],[[7557,8410],[10,-3]],[[7546,8980],[5,9]],[[7551,8989],[8,21],[18,17]],[[7577,9027],[2,19]],[[7568,9121],[-23,-79]],[[7545,9042],[-13,-38]],[[7532,9004],[14,-24]],[[7530,9030],[15,12]],[[7552,9137],[-29,-68],[0,-14],[-13,-19],[11,-15],[9,9]],[[7541,9149],[-24,-53],[-3,-16],[8,-22],[-11,-4],[-2,-17]],[[7509,9037],[-2,-14]],[[7507,9023],[-4,-34]],[[7503,8989],[27,30],[0,11]],[[7536,8926],[4,26]],[[7540,8952],[2,9],[-10,43]],[[7503,8989],[-1,-10]],[[7600,8181],[-32,17]],[[7637,8126],[6,33],[-2,35],[-10,10],[-11,31]],[[7620,8235],[-8,16],[-12,-5],[7,23],[-15,37],[-12,9]],[[7580,8315],[-7,18],[-43,28]],[[7516,8376],[-13,-106]],[[7580,8315],[14,-7]],[[7623,8343],[-13,31],[9,3],[10,-27]],[[7585,8763],[9,5],[10,31]],[[7604,8799],[-17,3],[-8,-15],[6,-24]],[[7313,8369],[-7,22],[-21,22]],[[7277,8398],[31,-41],[5,12]],[[7621,8842],[12,-13]],[[7633,8829],[8,15]],[[7641,8844],[-6,23]],[[7635,8867],[-8,7]],[[7627,8874],[-8,0]],[[7619,8874],[2,-32]],[[7500,9131],[0,0]],[[7619,8874],[-3,21]],[[7616,8895],[-6,-6]],[[7610,8889],[-10,-15]],[[7600,8874],[13,2],[2,-32],[6,-2]],[[7627,8874],[3,17]],[[7630,8891],[-9,10]],[[7621,8901],[-5,-6]],[[7786,8097],[-6,101],[0,38]],[[7700,8222],[-80,13]],[[7449,9074],[16,6]],[[7465,9080],[2,12]],[[7447,9092],[2,-18]],[[7316,8265],[-5,-6]],[[7311,8259],[6,-5]],[[7507,9023],[-27,19]],[[7480,9042],[-6,-29]],[[7474,9013],[18,-15],[9,-26]],[[7381,8554],[-4,1]],[[7467,8728],[-37,-19]],[[7565,8967],[7,4]],[[7572,8971],[5,56]],[[7551,8989],[14,-22]],[[7584,8938],[5,-13]],[[7589,8925],[21,-36]],[[7621,8901],[13,9]],[[7605,8951],[-9,-20],[-8,10]],[[7588,8941],[-8,7]],[[7580,8948],[4,-10]],[[7280,8256],[4,-6]],[[7284,8250],[19,16],[8,-7]],[[7313,8299],[-15,9]],[[7343,8523],[28,-19],[0,-10]],[[7371,8494],[16,-8],[-2,26],[16,0]],[[7401,8512],[-6,16]],[[7395,8528],[-6,7]],[[7401,8512],[10,-14],[14,11],[-4,12]],[[7421,8521],[-26,7]],[[7526,8814],[7,4]],[[7533,8818],[21,13],[5,15]],[[7559,8846],[-32,26]],[[7527,8872],[-6,-23]],[[7519,8843],[0,-6]],[[7519,8837],[0,-23]],[[7540,8952],[14,8]],[[7554,8960],[0,1]],[[7554,8961],[-8,19]],[[7389,8968],[-3,13]],[[7386,8981],[-9,-3]],[[7377,8978],[12,-10]],[[7377,8979],[0,-1]],[[7386,8981],[20,2]],[[7406,8983],[-8,18]],[[7398,9001],[-8,6]],[[7390,9007],[-17,-4],[4,-24]],[[7435,8913],[18,-4]],[[7453,8910],[-4,18]],[[7449,8928],[-11,13]],[[7438,8941],[-13,-6]],[[7425,8935],[10,-22]],[[7572,8971],[16,-30]],[[7360,9074],[3,-11]],[[7370,9076],[-1,9]],[[7358,9081],[2,-7]],[[7349,9059],[2,18]],[[7344,9074],[0,-9]],[[7344,9065],[2,-11]],[[7346,9054],[3,5]],[[7349,9059],[11,15]],[[7421,8521],[0,15]],[[7390,8571],[0,-27]],[[7536,8586],[45,-56],[6,-2]],[[7600,8522],[-3,115]],[[7597,8637],[-40,31],[27,57]],[[7584,8725],[-1,3]],[[7583,8728],[-18,2],[-32,-17]],[[7533,8713],[3,-23],[-13,-10]],[[7536,8772],[-6,-1]],[[7530,8771],[16,2],[-13,45]],[[7525,8809],[11,-37]],[[7583,8728],[2,35]],[[7604,8799],[-4,32]],[[7600,8831],[-14,0],[-25,19]],[[7561,8850],[-2,-4]],[[7530,8771],[-4,-56],[7,-2]],[[7600,8831],[0,43]],[[7589,8925],[-10,-14],[-4,18],[-39,-8]],[[7536,8921],[8,-6],[20,-38],[-3,-27]],[[7565,8967],[-6,-3]],[[7559,8964],[21,-16]],[[7559,8964],[-5,-3]],[[7554,8960],[7,-19],[23,-3]],[[7406,8983],[7,-19]],[[7413,8964],[9,-18]],[[7422,8946],[10,14]],[[7432,8960],[-3,15]],[[7429,8975],[-15,-6],[-2,15]],[[7412,8984],[-6,-1]],[[7419,8918],[16,-5]],[[7425,8935],[-1,5]],[[7424,8940],[-2,6]],[[7413,8964],[6,-46]],[[7398,8922],[21,-4]],[[7389,8968],[0,-17]],[[7389,8951],[9,-29]],[[7354,9045],[17,-15]],[[7346,9054],[1,-7]],[[7347,9047],[0,-3]],[[7347,9044],[7,1]],[[7351,9029],[5,2]],[[7356,9031],[-2,14]],[[7347,9044],[0,-8]],[[7347,9036],[4,-7]],[[7356,9031],[2,-9]],[[7358,9022],[7,1]],[[7365,9023],[9,4]],[[7374,9027],[1,0]],[[7536,8772],[-10,-3],[0,-29],[-8,-6],[-9,35]],[[7507,8768],[-6,0]],[[7501,8768],[-1,-17]],[[7462,9052],[20,-5]],[[7482,9047],[2,13]],[[7484,9060],[-12,3]],[[7472,9063],[-9,3]],[[7463,9066],[-1,-14]],[[7484,9060],[3,11]],[[7487,9071],[-1,4]],[[7486,9075],[-8,8]],[[7478,9083],[-6,-20]],[[7536,8921],[0,0]],[[7584,8725],[49,104]],[[7377,8979],[-1,-4]],[[7376,8975],[1,-19]],[[7377,8956],[12,-5]],[[7363,9001],[13,-26]],[[7390,9007],[-16,20]],[[7365,9023],[-5,-9]],[[7403,9069],[-3,8]],[[7395,9085],[-1,-1]],[[7394,9084],[1,-15]],[[7352,9021],[6,1]],[[7351,9029],[0,-4]],[[7366,8931],[19,-5]],[[7385,8926],[13,-4]],[[7377,8956],[-6,2]],[[7371,8958],[-11,-10]],[[7356,8972],[7,13]],[[7363,8985],[-3,14]],[[7478,9083],[-13,-3]],[[7465,9080],[-2,-14]],[[7486,9075],[3,4]],[[7489,9079],[-14,16]],[[7475,9095],[-7,6]],[[7494,9108],[3,-16]],[[7497,9092],[0,-21]],[[7497,9071],[9,-10],[-5,-15]],[[7501,9046],[8,-9]],[[7490,9140],[4,-32]],[[7699,8556],[-102,81]],[[7468,8980],[2,-19]],[[7470,8961],[2,10],[27,-21]],[[7474,9013],[-15,12]],[[7459,9025],[9,-45]],[[7395,8707],[-47,25]],[[7395,8707],[-5,40],[-42,-2]],[[7427,8707],[-17,6],[0,53],[-8,16]],[[7402,8782],[-50,4]],[[7402,8782],[15,24]],[[7417,8806],[-6,26]],[[7411,8832],[-1,2]],[[7417,8806],[27,2]],[[7444,8808],[-8,39]],[[7436,8847],[-1,0]],[[7435,8847],[-24,-15]],[[7430,8709],[-5,21],[13,24]],[[7449,8783],[-5,25]],[[7444,8808],[0,0]],[[7424,8940],[13,7]],[[7437,8947],[-5,13]],[[7468,8241],[-1,10],[-28,6]],[[7439,8257],[-3,-34]],[[7436,8223],[-4,-20],[12,-26],[2,-21]],[[7457,8308],[18,-12],[20,-26],[8,0]],[[7516,8376],[-18,22],[-25,-17],[-28,-12],[11,-30],[1,-31]],[[7439,8257],[2,28],[16,23]],[[7505,8433],[-86,15]],[[7419,8448],[-17,-162]],[[7402,8286],[-4,-30]],[[7398,8256],[0,-3]],[[7398,8253],[38,-30]],[[7363,8985],[8,-27]],[[7343,8938],[15,-5]],[[7346,8994],[-14,-6]],[[7332,8988],[11,-50]],[[7347,9013],[-19,-4]],[[7328,9009],[4,-21]],[[7472,8955],[3,-18]],[[7470,8961],[2,-6]],[[7480,9042],[2,5]],[[7462,9052],[-2,-10]],[[7460,9042],[0,-1]],[[7460,9041],[-1,-16]],[[7369,8878],[-3,53]],[[7343,8938],[6,-48]],[[7393,8888],[-8,38]],[[7479,8821],[5,17]],[[7484,8838],[-13,24]],[[7471,8862],[-3,-19]],[[7468,8843],[11,-22]],[[7467,8728],[1,39],[-4,9]],[[7448,8971],[15,9]],[[7463,8980],[-22,16]],[[7441,8996],[7,-25]],[[7398,8253],[-6,-53]],[[7392,8200],[-3,-34]],[[7386,9036],[4,-8]],[[7390,9028],[5,3]],[[7395,9031],[-8,21]],[[7438,8941],[-1,6]],[[7387,9052],[7,17]],[[7394,9084],[-11,-2]],[[7383,9082],[-4,-23]],[[7347,9024],[-5,0]],[[7342,9024],[-6,-1]],[[7336,9023],[-11,-1]],[[7325,9022],[3,-13]],[[7347,9036],[-7,-1]],[[7340,9035],[2,-11]],[[7339,9064],[5,1]],[[7319,9060],[0,-4]],[[7319,9056],[20,8]],[[7319,9056],[3,-11]],[[7322,9045],[13,1]],[[7335,9046],[5,1]],[[7340,9047],[-1,17]],[[7340,9047],[7,0]],[[7336,9023],[-1,23]],[[7322,9045],[3,-23]],[[7501,9046],[-14,25]],[[7497,9071],[-8,8]],[[7475,9095],[9,2]],[[7484,9097],[10,11]],[[7630,8891],[12,2]],[[7642,8893],[3,22]],[[7444,8808],[10,-2]],[[7454,8806],[3,25],[11,12]],[[7468,8843],[-20,37]],[[7448,8880],[-18,-14],[6,-19]],[[7641,8844],[7,13],[-5,18]],[[7643,8875],[-8,-8]],[[7449,8928],[3,-1]],[[7452,8927],[20,28]],[[7468,8980],[-5,0]],[[7448,8971],[-7,-9]],[[7441,8962],[8,-34]],[[7452,8927],[3,-14]],[[7701,3647],[-33,7],[-31,44],[-40,15],[-8,-23]],[[7589,3690],[10,-16],[19,-5],[-13,-11],[7,-17],[-4,-30],[10,-68],[-5,-87]],[[7613,3456],[33,22],[16,-26],[19,1]],[[7692,3855],[-3,-26]],[[7689,3829],[-17,-22]],[[7672,3807],[11,-16],[-3,-15],[-30,9],[-3,-28],[-14,-5],[-29,8],[-8,-3]],[[7596,3757],[-2,0]],[[7594,3757],[-8,-19],[2,-47]],[[7588,3691],[1,-1]],[[7596,3757],[9,17],[16,50]],[[7621,3824],[-13,14],[-19,-9]],[[7589,3829],[-6,-14],[-22,0],[-1,-28],[16,-41],[18,11]],[[7383,9082],[4,13]],[[7395,9031],[11,3]],[[7406,9034],[0,1]],[[7395,9024],[11,10]],[[7390,9028],[5,-4]],[[7340,9035],[0,12]],[[7527,8872],[7,18],[2,31]],[[7511,8825],[8,12]],[[7503,8839],[0,-7]],[[7503,8832],[8,-7]],[[7511,8825],[-4,-14]],[[7449,8516],[-73,-61]],[[7376,8455],[43,-7]],[[7489,9079],[3,7]],[[7492,9086],[-8,11]],[[7471,8862],[-15,40]],[[7435,8913],[13,-33]],[[7464,8777],[15,5]],[[7479,8782],[-3,17]],[[7476,8799],[-22,7]],[[7441,8962],[-8,15]],[[7433,8977],[-4,-2]],[[7430,8997],[13,6]],[[7443,9003],[-2,28]],[[7441,9031],[-13,-6]],[[7428,9025],[-6,-3]],[[7422,9022],[8,-25]],[[7424,8995],[6,2]],[[7422,9022],[-3,-7]],[[7419,9015],[5,-20]],[[7460,9041],[-8,-4]],[[7452,9037],[-11,-6]],[[7443,9003],[-2,-7]],[[7386,8410],[-10,45]],[[7376,8455],[-5,39]],[[7672,3807],[-21,3]],[[7651,3810],[-12,4]],[[7639,3814],[-18,10]],[[7535,3127],[-1,19]],[[7534,3146],[0,13],[23,37],[-4,18],[-1,66],[-20,50],[2,40],[-4,30]],[[7530,3400],[-8,14],[0,28],[-11,7],[14,173],[-22,5]],[[7503,3627],[-141,22]],[[7362,3649],[-2,-14],[11,-16],[-6,-14],[17,-25],[-3,-26],[10,-8],[24,-60],[33,-21],[14,-36],[-27,-107],[-13,-30],[-22,-17],[-1,-12]],[[7397,3263],[138,-136]],[[7391,3236],[6,27]],[[6987,3376],[237,-29],[23,-2],[60,-23],[84,-86]],[[7589,3829],[-5,32],[-22,-4],[23,40],[15,8]],[[7541,3978],[-14,-106],[-17,-168]],[[7510,3704],[78,-13]],[[7639,3814],[-2,33]],[[7637,3847],[1,15]],[[7638,3862],[3,25]],[[7503,3627],[7,77]],[[7398,9001],[5,1]],[[7403,9002],[-8,22]],[[7403,9002],[1,-3]],[[7404,8999],[15,16]],[[7422,9022],[-6,16]],[[7416,9038],[-2,1]],[[7412,8984],[-8,15]],[[7503,8832],[-6,-16]],[[7497,8816],[-2,0]],[[7495,8816],[12,-5]],[[7492,8851],[-8,-13]],[[7484,8838],[13,-22]],[[7495,8816],[-5,-13]],[[7490,8803],[5,0],[6,-35]],[[7452,9063],[8,-21]],[[7449,9074],[3,-11]],[[7416,9038],[6,3]],[[7422,9041],[-3,14]],[[7419,9055],[-5,-16]],[[7497,9092],[-5,-6]],[[7428,9025],[-6,16]],[[7490,8803],[-3,3]],[[7487,8806],[-11,-7]],[[7479,8782],[2,-20],[11,-20]],[[7810,8316],[54,111],[-38,29]],[[7398,8256],[-33,-2]],[[7365,8254],[-5,-15]],[[7360,8239],[32,-39]],[[7360,8239],[-5,-19],[-5,-47]],[[7365,8254],[-19,2]],[[7325,8225],[-19,5],[-8,16],[-14,4]],[[7530,3400],[83,56]],[[7666,3854],[-4,-8]],[[7662,3846],[3,-17],[24,0]],[[7662,3846],[-3,-3]],[[7659,3843],[-8,-33]],[[7412,8984],[13,8]],[[7425,8992],[-1,3]],[[7433,8977],[-8,15]],[[7484,8838],[0,0]],[[7452,9037],[-8,13]],[[7444,9050],[-17,-8]],[[7427,9042],[-5,-1]],[[7452,9063],[-11,-3]],[[7441,9060],[3,-10]],[[7441,9060],[-9,-1]],[[7432,9059],[-3,0]],[[7429,9059],[-2,-17]],[[7643,8875],[-1,18]],[[7487,8806],[-8,15]],[[7398,8872],[20,10],[17,-35]],[[7402,8286],[-17,4],[-11,13],[-24,-4],[-14,-17]],[[7370,8406],[-3,-17],[-25,-10],[-15,9],[-24,-60]],[[7313,8369],[2,-10],[-12,-27]],[[7659,3843],[-22,4]],[[7145,2876],[18,15],[28,9],[17,44],[27,30],[9,-6],[18,10],[26,-36],[40,34],[16,25],[-4,40],[9,38],[3,57],[13,41],[25,39],[1,20]],[[7638,3862],[24,-16]],[[7810,3119],[-134,-95],[1,17],[-67,69],[-76,36]],[[7535,3127],[-19,-30],[3,-38],[-28,-30],[-19,-29],[2,-24],[-15,-8],[-10,-38],[15,-54],[15,-8],[0,-33],[5,-17]],[[7449,9074],[-11,-2]],[[7438,9072],[-5,1]],[[7433,9073],[-1,-14]],[[7422,9060],[7,-1]],[[7433,9073],[-3,0]],[[7430,9073],[-6,-1]],[[7424,9072],[-4,1]],[[7420,9073],[2,-13]],[[7422,9060],[-3,1]],[[7419,9061],[0,-6]],[[7419,9061],[-8,10]],[[7411,9071],[-5,-5]],[[7420,9073],[-1,0]],[[7411,9076],[0,-5]],[[7440,9095],[-2,-23]],[[7432,9086],[-2,-13]],[[7427,9087],[-3,-15]],[[7422,9089],[-2,-10]],[[4148,5704],[-34,6],[-5,19]],[[4109,5729],[-3,-55]],[[4106,5674],[41,-1],[1,31]],[[4084,5807],[12,-20],[10,21],[-22,-1]],[[4052,5642],[19,77]],[[4071,5719],[1,20]],[[4072,5739],[-5,23]],[[4067,5762],[-10,11],[-60,2]],[[3997,5775],[-5,-112]],[[3992,5663],[25,-15],[35,-6]],[[4072,5739],[20,19]],[[4092,5758],[0,1]],[[4092,5759],[-17,9]],[[4075,5768],[-8,-6]],[[3978,5523],[37,34],[23,32]],[[4038,5589],[14,50]],[[4052,5639],[0,3]],[[3992,5663],[-27,-21],[-122,8]],[[3839,5530],[139,-7]],[[4098,5737],[0,20]],[[4098,5757],[-6,1]],[[4071,5719],[27,18]],[[4109,5729],[-11,8]],[[4052,5639],[45,-3],[9,38]],[[4098,5737],[20,3],[30,-10]],[[4148,5730],[2,32]],[[4150,5762],[-46,-4]],[[4104,5758],[-6,-1]],[[4104,5758],[-5,9]],[[4099,5767],[-7,-8]],[[3997,5775],[1,27],[-25,1],[-3,46],[-15,2],[12,31]],[[3967,5882],[-18,10],[-18,24],[-2,22],[-29,-2],[-6,-25],[-22,-6],[-20,6]],[[4075,5768],[13,3]],[[4088,5771],[-7,14],[-24,28],[8,17],[-7,34]],[[4058,5864],[-18,1],[0,25],[-22,-3],[-5,-15],[-25,-1],[-21,11]],[[4137,5353],[0,20],[71,-4]],[[4208,5369],[2,99],[4,29],[22,0],[11,24],[12,6]],[[4259,5527],[-69,3],[3,66],[-24,1]],[[4169,5597],[-25,-20],[-1,-31],[-66,4],[-15,-7],[-13,10],[3,23],[-14,13]],[[3978,5523],[-41,-36],[-42,-72],[-18,-53]],[[3877,5362],[65,-4],[0,7],[195,-12]],[[4099,5767],[0,3]],[[4099,5770],[-11,1]],[[4382,5470],[-76,0],[1,80],[-9,10],[-37,1],[-2,-34]],[[4208,5369],[171,-7]],[[4385,5544],[-12,15],[-17,42],[-16,20],[-32,-15],[0,27],[-8,-3],[1,42],[-19,1],[1,76],[-7,11]],[[4276,5760],[-15,-22],[8,-16],[-2,-56],[-23,9],[-1,-23],[-13,7],[-31,2]],[[4199,5661],[-28,1],[-2,-65]],[[4392,5769],[-17,-16],[-51,10],[-38,34]],[[4286,5797],[-10,-37]],[[4199,5661],[3,25],[-25,13],[4,10],[-22,1],[4,17]],[[4163,5727],[-15,-23]],[[4058,5864],[0,4]],[[4058,5868],[-4,74],[23,1],[4,67],[11,20],[1,82]],[[4099,5770],[18,30],[18,13],[9,19]],[[4144,5832],[-8,16],[-2,37],[-46,-21],[-30,4]],[[4163,5727],[-15,3]],[[4144,5832],[6,-12],[49,41],[34,1]],[[4233,5862],[19,4],[-7,-52],[12,-13],[29,-4]],[[4233,5862],[0,-10],[-57,-47],[-1,-45],[-25,2]],[[5870,5215],[127,-16],[21,20],[-8,48],[16,11]],[[6026,5278],[-10,29],[10,31],[-5,40],[6,28]],[[6027,5406],[-106,17]],[[5921,5423],[-41,6]],[[5880,5429],[-19,-213],[9,-1]],[[5987,4941],[68,45],[2,-4],[45,39],[19,-7],[-10,19],[-7,43],[-12,39],[-14,22],[-16,71],[-7,1],[-23,46],[-6,23]],[[5870,5215],[5,-128]],[[5875,5087],[68,-15],[0,-33],[-9,-6],[14,-27],[-3,-15],[4,-44],[27,-14],[11,8]],[[5881,5700],[-1,14]],[[5880,5714],[-4,12]],[[5876,5726],[-11,15],[-13,-7]],[[5852,5734],[4,-18],[25,-16]],[[5899,5693],[3,27],[13,-2],[1,17],[18,-1],[-10,12],[-24,-2]],[[5900,5744],[-19,-16]],[[5881,5728],[13,-2],[5,-33]],[[5487,5844],[57,-8],[-2,-14],[62,-7],[-3,-43],[14,-1],[-3,24],[42,-8]],[[5654,5787],[-8,26],[9,-1],[7,117]],[[5876,5726],[5,2]],[[5900,5744],[-30,20],[-29,-8],[-9,22],[-6,-9],[19,-13],[7,-22]],[[6067,5418],[40,-42],[5,-20],[44,-117],[39,-13],[12,-38],[23,-8],[-18,-33],[25,-21],[5,-65],[32,-12],[27,-4],[47,38],[10,-19],[21,-12]],[[6416,5278],[-54,47],[-91,50],[-84,38],[-82,4]],[[6105,5417],[-38,1]],[[5880,5714],[8,-16]],[[5888,5698],[11,-5]],[[5648,4998],[119,9],[108,80]],[[5880,5429],[3,23],[-131,19]],[[5752,5471],[-39,5],[-1,-13],[-41,7],[-95,12],[1,9],[-36,5]],[[5752,5471],[-67,213],[-31,103]],[[5881,5700],[7,-2]],[[6067,5418],[-16,19],[-11,-26],[-13,-5]],[[5987,4941],[33,-70]],[[6105,5417],[-102,285]],[[5995,5704],[-29,0],[12,-14],[-16,-6],[-22,-32],[10,-44],[-35,4],[9,-44],[-29,4]],[[5895,5572],[28,-130],[-2,-19]],[[5820,5838],[-10,-17],[-18,-51],[2,-115],[86,-14],[15,-69]],[[147,6347],[58,0]],[[205,6347],[91,1]],[[296,6348],[-2,153],[0,227]],[[294,6728],[-81,-1],[-212,1],[-1,-3],[0,-188]],[[0,6537],[147,1],[0,-191]],[[422,6349],[11,14],[15,-8],[18,53],[11,13],[17,33]],[[494,6454],[1,76]],[[495,6530],[-18,8],[2,190]],[[479,6728],[-83,1],[-102,-1]],[[296,6348],[126,1]],[[697,6559],[34,0],[0,-22]],[[731,6537],[150,0]],[[877,6727],[-36,-1],[-180,1]],[[661,6727],[0,-168]],[[661,6559],[36,0]],[[658,6534],[5,-9]],[[663,6525],[12,12],[20,0]],[[695,6537],[2,22]],[[661,6559],[-6,0]],[[655,6559],[3,-25]],[[147,6021],[0,16],[0,310]],[[0,6537],[0,-409]],[[0,6128],[31,-16],[72,-51],[44,-40]],[[495,6530],[89,0]],[[584,6530],[2,30],[40,0]],[[626,6560],[29,-1]],[[661,6727],[-182,1]],[[584,6487],[0,43]],[[494,6454],[32,25],[21,-5],[37,13]],[[778,5474],[-48,27]],[[730,5501],[-88,50],[-55,35]],[[587,5586],[-19,12]],[[568,5598],[-56,35]],[[512,5633],[-25,28]],[[487,5661],[-47,55]],[[440,5716],[-33,36],[-21,37],[-65,68],[-28,26]],[[293,5883],[-146,138]],[[0,6128],[0,-221],[0,-309],[358,-240],[206,-135]],[[568,5657],[0,30],[-17,0]],[[551,5687],[-8,-23]],[[543,5664],[25,-7]],[[731,6347],[0,190]],[[695,6537],[0,-43]],[[695,6494],[1,-28],[-27,0]],[[669,6466],[-16,0]],[[653,6466],[-19,0],[-19,16]],[[615,6482],[-31,-14]],[[584,6468],[0,-120]],[[584,6348],[147,-1]],[[615,6535],[23,3],[4,-8]],[[642,6530],[16,4]],[[626,6560],[-11,-25]],[[731,6347],[0,-190]],[[731,6157],[148,1]],[[622,6498],[14,13]],[[636,6511],[6,19]],[[615,6535],[6,-1],[1,-36]],[[615,6482],[7,16]],[[584,6487],[0,-19]],[[695,6494],[-14,-2],[-13,19]],[[668,6511],[-3,-7]],[[665,6504],[4,-38]],[[828,5496],[0,13],[-38,55],[-21,25],[-22,16],[-15,0]],[[732,5605],[0,-87],[-2,-17]],[[665,6504],[-9,0]],[[656,6504],[-3,-38]],[[656,6504],[-20,7]],[[668,6511],[-5,14]],[[512,5633],[18,0],[5,33]],[[535,5666],[3,35],[-7,1]],[[531,5702],[-19,0],[0,-23],[-12,0],[-13,-18]],[[535,5666],[8,-2]],[[551,5687],[-2,40]],[[549,5727],[-12,0]],[[537,5727],[-7,0]],[[530,5727],[1,-25]],[[530,5727],[-9,0]],[[521,5727],[-20,0],[-1,69],[12,19],[52,-8]],[[564,5807],[7,-10],[1,-45],[-7,-24],[-16,-1]],[[568,5657],[0,-59]],[[587,5586],[-1,187],[-2,2]],[[584,5775],[0,188]],[[584,5963],[-116,1],[-28,2]],[[440,5966],[-2,-226],[2,-24]],[[440,5966],[-145,107]],[[295,6073],[-2,-190]],[[732,5605],[0,74],[-20,0],[2,96]],[[714,5775],[-130,0]],[[714,5775],[163,-1]],[[731,6157],[-147,0]],[[584,6157],[0,-194]],[[564,5807],[-28,-57]],[[536,5750],[1,-23]],[[536,5750],[-15,-11],[0,-12]],[[295,6073],[-22,16]],[[273,6089],[-12,10],[-2,22],[-15,3],[-10,28],[1,31],[-18,16],[-2,29],[-11,15],[1,104]],[[403,6229],[4,-1]],[[407,6228],[28,74],[13,26],[25,31],[50,-35],[61,0],[0,24]],[[422,6349],[-9,-41],[-17,-33],[-12,-31],[19,-15]],[[584,6157],[0,48],[-74,-1],[0,-23],[-89,0],[0,47],[-14,0]],[[403,6229],[-10,-19],[-13,8],[-20,-59],[-23,-8],[-14,20],[-16,-18],[-20,-49],[-14,-15]],[[3870,5335],[7,27]],[[3759,5534],[-6,-186],[50,-2],[0,-9],[67,-2]],[[3505,4813],[31,6],[2,-13],[22,-34],[20,-10],[51,-14]],[[3631,4748],[23,3]],[[3654,4751],[2,47],[53,-3]],[[3709,4795],[-1,6],[47,7],[0,-10],[50,6]],[[3805,4804],[8,72],[-2,41],[-12,39]],[[3799,4956],[-102,-14],[0,12],[-95,6],[-112,4]],[[3642,4651],[2,63],[12,-1],[-2,38]],[[3631,4748],[0,-17],[-14,-4],[-54,3],[-8,-37],[0,-35]],[[3555,4658],[87,-7]],[[3817,4479],[0,21],[-9,14],[1,28],[-10,17],[0,26],[-10,13],[-3,20]],[[3786,4618],[2,25]],[[3788,4643],[-101,5]],[[3687,4648],[-45,3]],[[3555,4658],[-34,2],[-16,-10]],[[3838,5228],[12,21],[20,86]],[[3575,5240],[55,-1],[208,-11]],[[3799,4956],[-2,4]],[[3797,4960],[-11,25],[-1,40],[9,123],[16,45],[28,35]],[[3788,4643],[2,16]],[[3790,4659],[-35,9],[-13,41],[-27,24]],[[3715,4733],[-19,-14],[-9,-71]],[[3790,4659],[-4,34],[2,55],[17,56]],[[3709,4795],[6,-62]],[[3815,4389],[12,-6],[31,18],[23,-24],[1,41],[-11,1],[4,97],[98,-7]],[[3973,4509],[24,-2]],[[3997,4507],[-1,32],[5,94]],[[4001,4633],[-28,2],[-7,-13],[-6,14]],[[3960,4636],[-70,3],[-13,-33],[-11,-5],[-47,3],[1,12],[-34,2]],[[3960,4636],[5,3],[2,44]],[[3967,4683],[1,29]],[[3968,4712],[0,19]],[[3968,4731],[1,33],[-53,4],[6,157]],[[3922,4925],[-50,31],[-75,4]],[[4001,4633],[3,0]],[[4004,4633],[-2,44]],[[4002,4677],[-24,-3],[-11,9]],[[4004,4633],[32,-2],[1,25]],[[4037,4656],[-35,21]],[[4037,4656],[1,20]],[[4038,4676],[-23,3],[-1,14]],[[4014,4693],[-12,-13]],[[4002,4680],[0,-3]],[[4038,4676],[1,18]],[[4039,4694],[-20,1]],[[4019,4695],[-5,-2]],[[4019,4695],[8,40]],[[4027,4735],[-23,-7]],[[4004,4728],[-1,-45]],[[4003,4683],[-1,-3]],[[4004,4728],[-36,3]],[[3968,4712],[35,-29]],[[3959,4366],[19,-4],[14,-15],[19,28],[46,-7],[18,-13],[10,-40]],[[4095,4498],[-98,9]],[[3973,4509],[-5,-96],[-11,0],[2,-47]],[[3959,4366],[-2,-34],[18,-1],[-6,-169]],[[3969,4162],[-5,-76],[-5,-116]],[[3825,4174],[144,-12]],[[4027,4735],[26,73],[13,75]],[[4066,4883],[15,75],[21,43],[23,58]],[[4125,5059],[-23,8],[-176,10],[-4,-152]],[[4125,5059],[3,9],[4,144]],[[4132,5212],[5,141]],[[4132,5212],[119,-8],[-6,-190],[117,-9]],[[4066,4883],[54,-3],[27,-7]],[[4039,4694],[100,-6]],[[3807,3768],[29,-3],[19,-20],[16,-29],[32,-70],[18,-33],[18,-10]],[[3768,3011],[24,-53]],[[7414,9488],[3,-5]],[[7417,9483],[5,5]],[[7422,9488],[2,9]],[[7424,9497],[-2,2]],[[7422,9499],[-8,-11]],[[7480,9754],[21,-2]],[[7501,9752],[4,19]],[[7505,9771],[-23,6]],[[7482,9777],[-2,-23]],[[7548,9453],[9,6]],[[7557,9459],[5,1]],[[7562,9460],[-1,13]],[[7556,9476],[-2,-1]],[[7554,9475],[-1,-7]],[[7553,9468],[-7,-3]],[[7546,9465],[-1,-1]],[[7545,9464],[3,-11]],[[7577,9456],[2,11]],[[7562,9460],[0,-3]],[[7562,9457],[15,-1]],[[7583,9445],[8,-4]],[[7577,9456],[-4,-8]],[[7573,9448],[10,-3]],[[7570,9431],[9,-8]],[[7579,9423],[4,22]],[[7573,9448],[-3,-17]],[[7579,9423],[10,-10]],[[7557,9438],[5,19]],[[7557,9459],[0,-21]],[[7340,9543],[1,-4]],[[7341,9539],[8,1]],[[7349,9540],[7,-13]],[[7356,9527],[15,-7]],[[7371,9520],[0,0]],[[7371,9520],[6,-1]],[[7377,9519],[2,0]],[[7379,9519],[0,0]],[[7379,9519],[0,16]],[[7540,9471],[6,-6]],[[7553,9468],[-7,9]],[[7546,9477],[-1,0]],[[7545,9477],[-1,1]],[[7544,9478],[-4,-7]],[[7335,9539],[5,-8]],[[7340,9531],[3,4]],[[7343,9535],[-2,4]],[[7544,9478],[-6,4]],[[7538,9482],[-3,-5]],[[7535,9477],[5,-6]],[[7336,9525],[2,-1]],[[7338,9524],[3,0]],[[7341,9524],[7,-1]],[[7348,9523],[1,0]],[[7349,9523],[-5,9]],[[7344,9532],[-1,3]],[[7340,9531],[-4,-6]],[[7536,9464],[4,7]],[[7535,9477],[-2,-2]],[[7533,9475],[-3,-5]],[[7530,9470],[6,-6]],[[7334,9533],[2,-8]],[[7536,9464],[2,-3]],[[7538,9461],[7,3]],[[7327,9526],[4,-1]],[[7331,9525],[7,-1]],[[7348,9476],[1,0]],[[7349,9476],[3,-4]],[[7352,9472],[5,8]],[[7357,9480],[-9,7]],[[7348,9487],[0,-11]],[[7357,9480],[6,-5]],[[7363,9475],[2,4]],[[7365,9479],[-5,9]],[[7360,9488],[-2,2]],[[7358,9490],[-2,1]],[[7356,9491],[-8,-4]],[[7466,9476],[1,0]],[[7467,9476],[9,-6]],[[7476,9470],[2,14]],[[7478,9484],[-10,4]],[[7468,9488],[-6,3]],[[7462,9491],[-5,0]],[[7457,9491],[-1,-5]],[[7456,9486],[10,-10]],[[7365,9479],[10,-8]],[[7375,9471],[4,8]],[[7379,9479],[-10,8]],[[7369,9487],[-9,1]],[[7369,9487],[-11,3]],[[7546,9609],[8,11]],[[7554,9620],[-10,-6]],[[7544,9614],[2,-5]],[[7369,9487],[1,1]],[[7370,9488],[-4,5]],[[7366,9493],[-9,2]],[[7357,9495],[-1,-4]],[[7366,9493],[2,5]],[[7368,9498],[-2,0]],[[7366,9498],[-8,1]],[[7358,9499],[-1,-4]],[[7554,9597],[2,0]],[[7560,9624],[-6,-4]],[[7546,9609],[8,-12]],[[7506,9504],[0,1]],[[7506,9505],[1,6]],[[7507,9511],[1,8]],[[7508,9519],[-7,5]],[[7501,9524],[5,-20]],[[7390,9410],[1,0]],[[7391,9410],[4,13]],[[7395,9423],[-4,2]],[[7391,9425],[0,-1]],[[7391,9424],[-4,-13]],[[7387,9411],[3,-1]],[[7508,9519],[1,1]],[[7509,9520],[1,2]],[[7510,9522],[-5,10]],[[7505,9532],[0,0]],[[7505,9532],[-4,-8]],[[7397,9409],[1,12]],[[7398,9421],[-3,2]],[[7391,9410],[6,-1]],[[7510,9522],[3,6]],[[7513,9528],[1,6]],[[7514,9534],[-9,-2]],[[7397,9409],[3,-2]],[[7400,9407],[-2,14]],[[7514,9534],[0,3]],[[7514,9537],[0,6]],[[7514,9543],[-4,-1]],[[7510,9542],[-5,-10]],[[7523,9539],[-7,18]],[[7516,9557],[-2,-14]],[[7514,9543],[9,-4]],[[7530,9535],[4,-2]],[[7534,9533],[3,0]],[[7537,9533],[-2,7]],[[7535,9540],[-3,7]],[[7532,9547],[-5,-10]],[[7527,9537],[3,-2]],[[7398,9401],[2,6]],[[7390,9410],[-1,-8]],[[7389,9402],[9,-1]],[[7387,9402],[2,0]],[[7387,9411],[-2,1]],[[7385,9412],[-2,-3]],[[7383,9409],[0,-7]],[[7383,9402],[4,0]],[[7568,9425],[2,6]],[[7557,9438],[11,-13]],[[7540,9445],[9,-11]],[[7549,9434],[5,-9]],[[7554,9425],[14,0]],[[7548,9453],[-8,-7]],[[7540,9446],[0,-1]],[[7575,9397],[-10,7]],[[7565,9404],[-6,10]],[[7559,9414],[-7,-18]],[[7552,9396],[13,-8]],[[7542,9404],[10,-8]],[[7559,9414],[-5,11]],[[7549,9434],[-7,-30]],[[7545,9379],[4,-9]],[[7552,9396],[-7,-17]],[[7530,9388],[15,-9]],[[7542,9404],[-12,-16]],[[7542,9363],[-17,22]],[[7525,9385],[-7,-14]],[[7518,9371],[-2,-18]],[[7516,9353],[5,-17]],[[7533,9456],[5,5]],[[7530,9470],[-7,3]],[[7523,9473],[-2,-4]],[[7521,9469],[12,-13]],[[7336,9517],[0,1]],[[7336,9518],[4,2]],[[7340,9520],[1,4]],[[7331,9525],[5,-8]],[[7328,9523],[5,-9]],[[7333,9514],[3,3]],[[7533,9475],[-7,7]],[[7526,9482],[-3,-9]],[[7325,9518],[3,-5]],[[7328,9513],[3,-1]],[[7331,9512],[2,2]],[[7324,9509],[4,4]],[[7322,9513],[2,-4]],[[7538,9482],[4,6]],[[7542,9488],[-7,3]],[[7535,9491],[-5,2]],[[7530,9493],[-4,-11]],[[7535,9491],[11,9]],[[7546,9500],[-8,3]],[[7538,9503],[-3,1]],[[7535,9504],[-2,2]],[[7533,9506],[-3,-13]],[[7311,9495],[14,2]],[[7325,9497],[3,4]],[[7328,9501],[-4,8]],[[7538,9503],[3,15]],[[7541,9518],[-4,1]],[[7537,9519],[-2,-15]],[[7537,9519],[0,0]],[[7537,9519],[-4,-5]],[[7533,9514],[0,-8]],[[7381,9484],[3,-2]],[[7384,9482],[3,5]],[[7387,9487],[5,9]],[[7392,9496],[-13,9]],[[7379,9505],[-2,-8]],[[7377,9497],[-1,-10]],[[7376,9487],[5,-3]],[[7532,9613],[11,-16]],[[7543,9597],[11,0]],[[7544,9614],[-9,2]],[[7535,9616],[-5,-1]],[[7530,9615],[2,-2]],[[7527,9589],[3,-6]],[[7530,9583],[13,8]],[[7543,9591],[-3,6]],[[7540,9597],[-5,0]],[[7535,9597],[-8,-8]],[[7527,9589],[0,0]],[[7533,9576],[2,1]],[[7535,9577],[11,6]],[[7546,9583],[-3,8]],[[7530,9583],[3,-7]],[[7395,9501],[2,0]],[[7397,9501],[6,2]],[[7403,9503],[10,3]],[[7413,9506],[-15,5]],[[7398,9511],[-3,0]],[[7395,9511],[0,-10]],[[7379,9519],[8,-1]],[[7387,9518],[0,0]],[[7387,9518],[11,-7]],[[7413,9506],[7,2]],[[7420,9508],[0,8]],[[7420,9516],[-6,6]],[[7414,9522],[-1,2]],[[7413,9524],[-3,2]],[[7410,9526],[-5,3]],[[7405,9529],[-5,1]],[[7400,9530],[-7,2]],[[7393,9532],[-7,3]],[[7386,9535],[-7,1]],[[7404,9529],[-4,1]],[[7405,9529],[-1,0]],[[7387,9518],[8,-7]],[[7378,9403],[4,0]],[[7382,9403],[1,-1]],[[7383,9409],[-4,1]],[[7379,9410],[-1,1]],[[7378,9411],[-1,-8]],[[7377,9403],[1,0]],[[7523,9539],[0,-1]],[[7523,9538],[4,-1]],[[7532,9547],[0,1]],[[7532,9548],[-3,7]],[[7529,9555],[-2,4]],[[7527,9559],[-11,2]],[[7516,9561],[0,-4]],[[7374,9404],[2,0]],[[7376,9404],[1,-1]],[[7378,9411],[6,17]],[[7384,9428],[-3,1]],[[7381,9429],[0,-1]],[[7381,9428],[-2,-8]],[[7379,9420],[-5,-16]],[[7387,9394],[5,-1]],[[7392,9393],[6,8]],[[7387,9402],[-1,-7]],[[7386,9395],[1,-1]],[[7387,9384],[3,6]],[[7390,9390],[2,3]],[[7387,9394],[-5,-9]],[[7382,9385],[5,-1]],[[7510,9549],[-1,15]],[[7509,9564],[-6,-4]],[[7503,9560],[7,-11]],[[7386,9395],[-5,-2]],[[7381,9393],[-4,-1]],[[7377,9392],[0,-5]],[[7377,9387],[5,-2]],[[7516,9561],[-2,7]],[[7514,9568],[-5,-4]],[[7510,9549],[-1,-7]],[[7509,9542],[1,0]],[[7382,9403],[-1,-10]],[[7378,9403],[-1,-11]],[[7376,9404],[-5,-13]],[[7371,9391],[0,-3]],[[7371,9388],[6,-1]],[[7530,9388],[-5,-3]],[[7508,9389],[9,-1]],[[7517,9388],[2,8]],[[7519,9396],[-6,2]],[[7513,9398],[-7,3]],[[7506,9401],[-1,-4]],[[7505,9397],[3,-8]],[[7503,9390],[3,0]],[[7506,9390],[2,-1]],[[7505,9397],[-10,4]],[[7495,9401],[-3,-9]],[[7492,9392],[11,-2]],[[7495,9401],[-7,5]],[[7488,9406],[-1,-4]],[[7487,9402],[-3,-8]],[[7484,9394],[0,-1]],[[7484,9393],[8,-1]],[[7473,9402],[6,0]],[[7479,9402],[1,0]],[[7480,9402],[1,13]],[[7481,9415],[-8,2]],[[7473,9417],[0,-6]],[[7473,9411],[0,-5]],[[7473,9406],[0,-4]],[[7495,9401],[2,10]],[[7497,9411],[2,8]],[[7499,9419],[-5,2]],[[7494,9421],[-3,-10]],[[7491,9411],[-3,-5]],[[7491,9411],[-9,-9]],[[7482,9402],[5,0]],[[7506,9401],[2,5]],[[7508,9406],[-11,5]],[[7513,9398],[4,15]],[[7517,9413],[-6,0]],[[7511,9413],[-3,-7]],[[7311,9490],[16,-7]],[[7327,9483],[1,4]],[[7328,9487],[-3,10]],[[7541,9518],[0,1]],[[7541,9519],[-1,3]],[[7540,9522],[-3,11]],[[7534,9533],[-2,-7]],[[7532,9526],[5,-7]],[[7526,9514],[1,-1]],[[7527,9513],[5,13]],[[7530,9535],[-1,-8]],[[7529,9527],[-3,-13]],[[7523,9530],[4,-2]],[[7527,9528],[2,-1]],[[7523,9538],[-2,-7]],[[7521,9531],[2,-1]],[[7514,9537],[5,-6]],[[7519,9531],[2,0]],[[7513,9528],[5,-2]],[[7518,9526],[1,5]],[[7336,9480],[3,7]],[[7339,9487],[-6,1]],[[7333,9488],[-5,-1]],[[7327,9483],[9,-3]],[[7515,9517],[1,1]],[[7516,9518],[2,8]],[[7509,9520],[6,-3]],[[7516,9518],[3,-1]],[[7519,9517],[4,13]],[[7335,9476],[6,-1]],[[7341,9475],[0,12]],[[7341,9487],[-2,0]],[[7336,9480],[-1,-4]],[[7521,9516],[2,-1]],[[7523,9515],[4,13]],[[7519,9517],[2,-1]],[[7546,9583],[2,-2]],[[7548,9581],[9,-1]],[[7543,9597],[-3,0]],[[7392,9496],[3,5]],[[7387,9518],[-8,-8]],[[7379,9510],[0,-5]],[[7301,9367],[8,1]],[[7309,9368],[0,3]],[[7309,9371],[-3,5]],[[7306,9376],[-5,-4]],[[7301,9372],[-1,-2]],[[7300,9370],[1,-3]],[[7298,9374],[2,-4]],[[7301,9372],[-3,6]],[[7298,9378],[-1,4]],[[7297,9382],[-1,-1]],[[7296,9381],[2,-7]],[[7306,9376],[2,1]],[[7308,9377],[-3,6]],[[7305,9383],[-7,-5]],[[7305,9383],[-2,4]],[[7303,9387],[-6,-5]],[[7305,9383],[6,4]],[[7311,9387],[-3,5]],[[7308,9392],[-5,-5]],[[7308,9377],[5,5]],[[7313,9382],[-2,5]],[[7309,9371],[8,5]],[[7317,9376],[-1,8]],[[7316,9384],[-3,-2]],[[7309,9368],[2,-2]],[[7311,9366],[5,5]],[[7316,9371],[1,5]],[[7316,9384],[1,2]],[[7317,9386],[4,2]],[[7321,9388],[-2,5]],[[7319,9393],[-8,-6]],[[7525,9567],[10,5]],[[7535,9572],[-2,4]],[[7527,9589],[-5,-13]],[[7522,9576],[3,-9]],[[7374,9404],[-3,0]],[[7371,9404],[0,-10]],[[7371,9394],[0,-3]],[[7527,9559],[-2,8]],[[7522,9576],[-6,2]],[[7516,9578],[-5,1]],[[7511,9579],[3,-11]],[[7369,9393],[2,1]],[[7371,9404],[-1,1]],[[7370,9405],[-1,0]],[[7369,9405],[-1,-12]],[[7368,9393],[1,0]],[[7371,9372],[0,16]],[[7369,9393],[-12,-9]],[[7357,9384],[0,-1]],[[7357,9383],[14,-11]],[[7369,9405],[-3,0]],[[7366,9405],[-1,0]],[[7365,9405],[-2,-12]],[[7363,9393],[5,0]],[[7365,9405],[-2,1]],[[7363,9406],[-1,0]],[[7362,9406],[-2,-12]],[[7360,9394],[3,-1]],[[7498,9567],[13,14]],[[7511,9581],[-13,4]],[[7498,9585],[-6,-14]],[[7492,9571],[6,-4]],[[7501,9564],[2,-4]],[[7511,9579],[0,2]],[[7498,9567],[3,-3]],[[7378,9339],[13,18]],[[7391,9357],[9,14]],[[7400,9371],[-2,6]],[[7398,9377],[-8,13]],[[7387,9384],[-16,-12]],[[7357,9383],[-6,-20]],[[7351,9363],[9,-23]],[[7511,9413],[-4,2]],[[7507,9415],[-8,4]],[[7480,9402],[2,0]],[[7494,9421],[-11,5]],[[7483,9426],[-2,-11]],[[7494,9421],[3,12]],[[7497,9433],[-14,5]],[[7483,9438],[0,-12]],[[7499,9419],[3,12]],[[7502,9431],[-5,2]],[[7507,9415],[3,11]],[[7510,9426],[-3,1]],[[7507,9427],[-5,4]],[[7517,9413],[2,7]],[[7519,9420],[-9,6]],[[7540,9445],[-15,-10]],[[7525,9435],[10,-2],[-2,-19]],[[7533,9414],[-14,-18]],[[7517,9388],[8,-3]],[[7523,9515],[3,-1]],[[7332,9467],[15,4]],[[7347,9471],[2,5]],[[7348,9476],[-7,-1]],[[7335,9476],[-3,-9]],[[7332,9467],[0,0]],[[7527,9513],[6,1]],[[7340,9453],[2,-3]],[[7342,9450],[0,13]],[[7342,9463],[-8,1]],[[7334,9464],[6,-11]],[[7342,9450],[4,0]],[[7346,9450],[1,13]],[[7347,9463],[-5,0]],[[7527,9513],[-3,-16]],[[7524,9497],[0,-2]],[[7524,9495],[6,-2]],[[7347,9463],[0,8]],[[7332,9467],[2,-3]],[[7526,9514],[-5,-9]],[[7521,9505],[-2,-6]],[[7519,9499],[5,-2]],[[7518,9506],[3,-1]],[[7521,9516],[-3,-10]],[[7369,9462],[4,5]],[[7373,9467],[-10,5]],[[7363,9472],[-6,1]],[[7357,9473],[0,-7]],[[7357,9466],[12,-4]],[[7319,9393],[-3,5]],[[7316,9398],[-8,-6]],[[7316,9398],[-2,5]],[[7314,9403],[-8,-6]],[[7306,9397],[2,-5]],[[7401,9577],[11,-3]],[[7412,9574],[0,7]],[[7412,9581],[1,10]],[[7413,9591],[-18,-9]],[[7395,9582],[0,-7]],[[7395,9575],[6,2]],[[7314,9403],[-3,7]],[[7311,9410],[-6,-5]],[[7305,9405],[1,-8]],[[7301,9411],[4,-6]],[[7311,9410],[-2,4]],[[7309,9414],[-4,0]],[[7305,9414],[-4,-3]],[[7398,9568],[3,-6]],[[7401,9562],[5,3]],[[7406,9565],[5,1]],[[7411,9566],[1,8]],[[7401,9577],[-3,-9]],[[7305,9405],[-4,-3]],[[7301,9402],[2,-8]],[[7303,9394],[0,-7]],[[7398,9568],[-3,1]],[[7395,9569],[-2,-3]],[[7393,9566],[8,-4]],[[7301,9411],[-5,-5]],[[7296,9406],[5,-4]],[[7395,9575],[0,-6]],[[7298,9391],[5,3]],[[7301,9402],[-6,-5]],[[7295,9397],[3,-6]],[[7516,9578],[3,19]],[[7519,9597],[-11,-2]],[[7508,9595],[-6,-2]],[[7502,9593],[-4,-8]],[[7360,9394],[-2,0]],[[7358,9394],[-1,-10]],[[7527,9589],[-5,8]],[[7522,9597],[-3,0]],[[7357,9395],[1,-1]],[[7362,9406],[-2,0]],[[7360,9406],[-2,1]],[[7358,9407],[-1,-12]],[[7519,9597],[-2,5]],[[7517,9602],[0,10]],[[7517,9612],[-1,3]],[[7516,9615],[-5,7]],[[7511,9622],[-12,-11]],[[7499,9611],[9,-16]],[[7342,9379],[5,-7]],[[7347,9372],[1,-14]],[[7348,9358],[3,5]],[[7357,9383],[-9,1]],[[7348,9384],[-8,-2]],[[7340,9382],[2,-3]],[[7343,9397],[1,-4]],[[7344,9393],[6,3]],[[7350,9396],[0,12]],[[7350,9408],[-1,0]],[[7349,9408],[-6,2]],[[7343,9410],[0,-13]],[[7339,9381],[1,1]],[[7348,9384],[-4,9]],[[7343,9397],[-7,-12]],[[7336,9385],[3,-4]],[[7533,9414],[-14,6]],[[7525,9435],[-6,-15]],[[7525,9435],[-6,2]],[[7519,9437],[-8,5]],[[7511,9442],[-4,-15]],[[7497,9433],[3,15]],[[7500,9448],[-17,9]],[[7483,9457],[0,-19]],[[7483,9457],[-2,1]],[[7481,9458],[-6,3]],[[7475,9461],[-1,-6]],[[7474,9455],[-3,-12]],[[7471,9443],[12,-5]],[[7481,9458],[2,9]],[[7483,9467],[-7,3]],[[7476,9470],[-1,-9]],[[7500,9448],[-6,13]],[[7494,9461],[-11,6]],[[7533,9456],[7,-10]],[[7515,9508],[3,-2]],[[7515,9517],[-1,-9]],[[7514,9508],[1,0]],[[7371,9460],[6,3]],[[7377,9463],[-4,4]],[[7369,9462],[2,-2]],[[7507,9511],[7,-3]],[[7515,9508],[-2,-6]],[[7513,9502],[6,-3]],[[7506,9505],[7,-3]],[[7505,9500],[6,-3]],[[7511,9497],[13,-2]],[[7506,9504],[-4,-1]],[[7502,9503],[3,-3]],[[7355,9451],[14,7]],[[7369,9458],[2,2]],[[7357,9466],[-1,-5]],[[7356,9461],[-1,-10]],[[7352,9452],[3,-1]],[[7356,9461],[-5,-2]],[[7351,9459],[1,-7]],[[7524,9495],[-5,-9]],[[7519,9486],[7,-4]],[[7357,9473],[-5,-1]],[[7347,9471],[10,-5]],[[7293,9383],[3,-2]],[[7298,9391],[-3,-3]],[[7295,9388],[-2,-5]],[[7293,9383],[0,0]],[[7395,9582],[-5,-4]],[[7387,9569],[6,-3]],[[7295,9397],[-3,5]],[[7292,9402],[3,-14]],[[7387,9565],[13,-6]],[[7400,9559],[1,3]],[[7406,9565],[8,-4]],[[7414,9561],[2,4]],[[7416,9565],[1,3]],[[7417,9568],[-6,-2]],[[7401,9562],[13,-6]],[[7414,9556],[0,5]],[[7286,9399],[7,-16]],[[7293,9383],[-7,16]],[[7405,9557],[8,-4]],[[7413,9553],[1,3]],[[7400,9559],[5,-2]],[[7297,9372],[1,2]],[[7286,9399],[-2,3]],[[7284,9402],[-4,6]],[[7280,9408],[-3,-2]],[[7404,9554],[1,3]],[[7386,9563],[18,-9]],[[7333,9393],[3,-6]],[[7336,9387],[0,-2]],[[7343,9410],[-5,0]],[[7338,9410],[-3,1]],[[7335,9411],[-2,-14]],[[7333,9397],[-2,-1]],[[7331,9396],[2,-3]],[[7335,9411],[-7,1]],[[7328,9412],[5,-15]],[[7343,9410],[3,11]],[[7346,9421],[-2,-1]],[[7344,9420],[-4,-3]],[[7340,9417],[-2,-3]],[[7338,9414],[0,-4]],[[7349,9408],[2,17]],[[7351,9425],[-5,-4]],[[7350,9408],[2,0]],[[7352,9408],[0,17]],[[7352,9425],[0,0]],[[7352,9425],[-1,0]],[[7481,9563],[2,-6]],[[7483,9557],[5,2]],[[7488,9559],[4,12]],[[7492,9571],[-9,12]],[[7483,9583],[-5,-11]],[[7478,9572],[-2,-5]],[[7476,9567],[5,-4]],[[7356,9407],[1,17]],[[7357,9424],[-5,1]],[[7352,9408],[4,-1]],[[7356,9407],[2,0]],[[7358,9407],[1,17]],[[7359,9424],[-2,0]],[[7488,9559],[4,-3]],[[7492,9556],[3,-2]],[[7495,9554],[6,10]],[[7360,9406],[2,17]],[[7362,9423],[-3,1]],[[7511,9455],[12,-3]],[[7523,9452],[17,-6]],[[7521,9469],[-10,-14]],[[7511,9442],[0,13]],[[7521,9469],[-12,0]],[[7509,9469],[-14,9]],[[7495,9478],[-1,-17]],[[7581,9405],[-16,-1]],[[7460,9479],[6,-3]],[[7456,9486],[-1,-3]],[[7455,9483],[5,-4]],[[7457,9465],[3,14]],[[7455,9483],[-2,-9]],[[7453,9474],[0,-5]],[[7453,9469],[-1,-3]],[[7452,9466],[5,-1]],[[7468,9458],[6,-3]],[[7467,9476],[1,-18]],[[7462,9458],[6,0]],[[7457,9465],[5,-7]],[[7448,9443],[0,-1]],[[7448,9442],[7,1]],[[7455,9443],[-3,23]],[[7453,9469],[-5,-4]],[[7448,9465],[0,-8]],[[7448,9457],[0,-14]],[[7347,9463],[4,-4]],[[7346,9450],[6,2]],[[7519,9486],[0,-3]],[[7519,9483],[-9,-11]],[[7510,9472],[-1,-3]],[[7347,9439],[10,4]],[[7357,9443],[-2,8]],[[7346,9450],[0,-11]],[[7346,9439],[1,0]],[[7357,9437],[8,-1]],[[7365,9436],[1,1]],[[7366,9437],[3,6]],[[7369,9443],[-6,2]],[[7363,9445],[-6,-2]],[[7347,9439],[10,-2]],[[7511,9497],[-2,-7]],[[7509,9490],[10,-7]],[[7343,9438],[3,-4]],[[7346,9434],[6,-1]],[[7352,9433],[4,-1]],[[7356,9432],[1,5]],[[7346,9439],[-3,-1]],[[7505,9500],[-3,-8]],[[7502,9492],[7,-2]],[[7360,9431],[3,3]],[[7363,9434],[2,2]],[[7356,9432],[4,-1]],[[7391,9557],[7,-3]],[[7398,9554],[3,-2]],[[7401,9552],[2,-1]],[[7403,9551],[1,3]],[[7383,9561],[8,-4]],[[7403,9551],[2,-1]],[[7405,9550],[1,-1]],[[7406,9549],[4,-1]],[[7410,9548],[1,0]],[[7411,9548],[2,5]],[[7305,9414],[-7,2]],[[7298,9416],[-2,-10]],[[7406,9536],[4,12]],[[7406,9549],[-2,-12]],[[7404,9537],[2,-1]],[[7406,9536],[4,-1]],[[7410,9535],[2,0]],[[7412,9535],[2,11]],[[7414,9546],[-3,2]],[[7413,9524],[3,11]],[[7416,9535],[-4,0]],[[7410,9535],[0,-9]],[[7284,9402],[6,5]],[[7290,9407],[-4,6]],[[7286,9413],[-6,-5]],[[7406,9536],[-2,-7]],[[7404,9537],[-3,2]],[[7401,9539],[-1,-9]],[[7405,9550],[-4,-11]],[[7286,9413],[7,8]],[[7293,9421],[-7,13]],[[7286,9434],[-6,0]],[[7280,9434],[-4,-14]],[[7276,9420],[4,-12]],[[7495,9550],[2,1]],[[7497,9551],[6,9]],[[7495,9554],[0,-4]],[[7363,9406],[2,17]],[[7365,9423],[-3,0]],[[7494,9547],[1,3]],[[7492,9556],[-3,-6]],[[7489,9550],[-2,-4]],[[7487,9546],[7,1]],[[7366,9405],[2,17]],[[7368,9422],[-3,1]],[[7483,9557],[6,-7]],[[7370,9405],[1,17]],[[7371,9422],[-3,0]],[[7483,9549],[4,-3]],[[7483,9557],[-5,-6]],[[7478,9551],[5,-2]],[[7371,9404],[3,17]],[[7374,9421],[-3,1]],[[7371,9422],[0,0]],[[7481,9563],[-5,-10]],[[7476,9553],[2,-2]],[[7379,9420],[-3,1]],[[7376,9421],[-1,0]],[[7375,9421],[-1,0]],[[7474,9554],[2,-1]],[[7476,9567],[0,-5]],[[7476,9562],[-2,-8]],[[7365,9429],[3,-7]],[[7371,9422],[-6,14]],[[7363,9434],[2,-5]],[[7523,9452],[-4,-15]],[[7515,9724],[8,4]],[[7523,9728],[2,1]],[[7525,9729],[-1,8]],[[7524,9737],[-10,1]],[[7514,9738],[-12,4]],[[7502,9742],[-1,-19]],[[7501,9723],[14,1]],[[7455,9443],[5,0]],[[7460,9443],[2,15]],[[7460,9443],[11,0]],[[7448,9433],[23,2]],[[7471,9435],[0,8]],[[7448,9442],[0,-9]],[[7457,9418],[16,6]],[[7473,9424],[-2,11]],[[7448,9433],[1,-6]],[[7449,9427],[8,-9]],[[7457,9410],[3,1]],[[7460,9411],[13,0]],[[7473,9417],[0,7]],[[7457,9418],[-2,0]],[[7455,9418],[2,-8]],[[7440,9414],[3,-4]],[[7443,9410],[1,-1]],[[7444,9409],[5,9]],[[7449,9418],[-3,4]],[[7446,9422],[-6,-8]],[[7449,9418],[2,-2]],[[7451,9416],[4,2]],[[7449,9427],[-2,-3]],[[7447,9424],[-1,-2]],[[7447,9407],[6,2]],[[7453,9409],[-2,7]],[[7444,9409],[3,-2]],[[7453,9409],[1,-5]],[[7454,9404],[3,6]],[[7460,9411],[2,-6]],[[7462,9405],[11,1]],[[7499,9493],[3,-1]],[[7502,9503],[-2,1]],[[7500,9504],[-5,-9]],[[7495,9495],[4,-2]],[[7363,9445],[3,0]],[[7366,9445],[3,13]],[[7499,9493],[-2,-7]],[[7497,9486],[13,-14]],[[7497,9486],[-2,-8]],[[7366,9445],[7,6]],[[7373,9451],[6,4]],[[7379,9455],[-8,5]],[[7369,9443],[5,-2]],[[7374,9441],[0,3]],[[7374,9444],[1,5]],[[7375,9449],[-2,2]],[[7495,9495],[-4,1]],[[7491,9496],[-3,-6]],[[7488,9490],[-4,-8]],[[7484,9482],[11,-4]],[[7401,9552],[-3,-12]],[[7398,9540],[3,-1]],[[7398,9554],[-3,-7]],[[7395,9547],[0,-6]],[[7395,9541],[3,-1]],[[7395,9541],[-2,-9]],[[7395,9541],[-6,1]],[[7389,9542],[-2,0]],[[7387,9542],[-1,-7]],[[7395,9547],[-5,2]],[[7390,9549],[-1,-7]],[[7391,9557],[-1,-8]],[[7390,9549],[-8,4]],[[7381,9544],[6,-2]],[[7276,9420],[4,14]],[[7286,9434],[9,-5]],[[7295,9429],[-2,4]],[[7293,9433],[-11,12]],[[7472,9549],[7,-5]],[[7479,9544],[4,5]],[[7474,9554],[-2,-5]],[[7359,9424],[1,3]],[[7360,9427],[0,4]],[[7352,9433],[0,-8]],[[7490,9537],[1,3]],[[7491,9540],[3,7]],[[7487,9546],[3,-9]],[[7346,9434],[0,-13]],[[7480,9539],[8,-5]],[[7488,9534],[2,3]],[[7479,9544],[1,-5]],[[7293,9421],[5,-5]],[[7309,9414],[5,-2]],[[7314,9412],[5,-2]],[[7319,9410],[5,1]],[[7324,9411],[4,1]],[[7328,9412],[0,7]],[[7328,9419],[-11,0]],[[7317,9419],[-2,6]],[[7315,9425],[-2,0]],[[7313,9425],[-4,-1]],[[7309,9424],[-14,5]],[[7452,9556],[5,-3]],[[7457,9553],[0,5]],[[7457,9558],[-12,6]],[[7445,9564],[-1,-4]],[[7444,9560],[8,-4]],[[7328,9419],[0,3]],[[7328,9422],[-3,5]],[[7325,9427],[-2,0]],[[7323,9427],[-4,-1]],[[7319,9426],[-2,-7]],[[7445,9564],[1,4]],[[7446,9568],[1,3]],[[7447,9571],[1,4]],[[7448,9575],[1,2]],[[7449,9577],[-4,0]],[[7445,9577],[-4,-15]],[[7441,9562],[3,-2]],[[7436,9554],[4,3]],[[7440,9557],[1,5]],[[7445,9577],[-4,-1]],[[7441,9576],[-1,-9]],[[7440,9567],[-4,-13]],[[7517,9714],[-2,10]],[[7501,9723],[-6,-13]],[[7495,9710],[16,-1]],[[7524,9737],[1,11]],[[7525,9748],[-12,-1]],[[7513,9747],[1,-9]],[[7516,9353],[-8,5]],[[7508,9358],[-9,-18]],[[7499,9340],[-2,-19],[-8,11]],[[7489,9332],[0,4]],[[7489,9336],[-5,13]],[[7484,9349],[-6,-12]],[[7478,9337],[-4,-25]],[[7489,9336],[8,21]],[[7497,9357],[-11,6]],[[7486,9363],[-2,-14]],[[7489,9332],[10,8]],[[7508,9358],[-11,-1]],[[7480,9751],[19,-4]],[[7499,9747],[2,5]],[[7480,9754],[0,-3]],[[7480,9726],[15,-16]],[[7502,9742],[-3,5]],[[7480,9751],[0,-25]],[[7417,9386],[3,5]],[[7420,9391],[-2,13]],[[7418,9404],[-12,-15]],[[7406,9389],[11,-3]],[[7418,9775],[6,24]],[[7424,9799],[-10,6]],[[7414,9805],[-3,-12]],[[7411,9793],[7,-18]],[[7472,9401],[1,1]],[[7462,9405],[-2,-5]],[[7460,9400],[12,1]],[[7455,9399],[5,1]],[[7454,9404],[0,-5]],[[7454,9399],[1,0]],[[7447,9407],[-1,-5]],[[7446,9402],[8,-3]],[[7448,9396],[8,-1]],[[7456,9395],[-1,4]],[[7446,9402],[-1,-4]],[[7445,9398],[3,-2]],[[7457,9395],[9,3]],[[7466,9398],[6,3]],[[7456,9395],[1,0]],[[7479,9402],[-1,-7]],[[7478,9395],[6,-1]],[[7467,9386],[7,1]],[[7474,9387],[4,8]],[[7466,9398],[-1,-12]],[[7465,9386],[2,0]],[[7460,9385],[5,1]],[[7457,9395],[-5,-4]],[[7452,9391],[1,-7]],[[7453,9384],[7,1]],[[7449,9388],[3,3]],[[7448,9396],[-2,-6]],[[7446,9390],[3,-2]],[[7445,9383],[1,7]],[[7445,9398],[-7,-7]],[[7438,9391],[-1,-4]],[[7437,9387],[0,-2]],[[7437,9385],[8,-2]],[[7432,9386],[1,-11]],[[7433,9375],[3,0]],[[7436,9375],[1,10]],[[7437,9387],[-7,2]],[[7430,9389],[2,-3]],[[7366,9437],[2,-2]],[[7368,9435],[5,-2]],[[7373,9433],[1,1]],[[7374,9434],[-1,5]],[[7373,9439],[1,2]],[[7500,9504],[-8,3]],[[7492,9507],[-1,-11]],[[7452,9301],[-3,38]],[[7449,9339],[-3,-2]],[[7446,9337],[-14,-32]],[[7446,9337],[-8,-3]],[[7438,9334],[-10,-29]],[[7474,9733],[6,-7]],[[7482,9777],[-9,1]],[[7473,9778],[-3,-39],[4,-6]],[[7409,9337],[7,1]],[[7416,9338],[2,13]],[[7418,9351],[-1,0]],[[7417,9351],[-3,0]],[[7414,9351],[-4,-8]],[[7410,9343],[-1,-6]],[[7438,9334],[-3,17]],[[7435,9351],[-17,0]],[[7416,9338],[6,-30]],[[7445,9769],[19,-7]],[[7464,9762],[2,18]],[[7466,9780],[-21,9]],[[7445,9789],[-6,-10]],[[7439,9779],[6,-10]],[[7457,9743],[7,19]],[[7445,9769],[-4,-14]],[[7441,9755],[16,-12]],[[7478,9484],[0,1]],[[7478,9485],[-3,13]],[[7475,9498],[-7,-10]],[[7468,9488],[0,0]],[[7346,9434],[-5,-2]],[[7341,9432],[3,-12]],[[7472,9549],[-1,-2]],[[7471,9547],[9,-8]],[[7341,9432],[-1,-1]],[[7340,9431],[-4,-2]],[[7336,9429],[4,-12]],[[7468,9543],[8,-11]],[[7476,9532],[4,7]],[[7471,9547],[-3,-4]],[[7336,9429],[-3,-1]],[[7333,9428],[5,-14]],[[7483,9529],[5,5]],[[7476,9532],[7,-3]],[[7331,9427],[4,-16]],[[7333,9428],[-2,-1]],[[7331,9427],[-3,-5]],[[7328,9412],[0,0]],[[7333,9428],[-1,8]],[[7332,9436],[-7,-1]],[[7325,9435],[0,-8]],[[7448,9553],[4,3]],[[7440,9557],[8,-4]],[[7325,9406],[3,-5]],[[7328,9401],[3,-5]],[[7324,9411],[1,-5]],[[7322,9403],[3,3]],[[7319,9410],[3,-7]],[[7317,9400],[3,2]],[[7320,9402],[2,1]],[[7314,9412],[3,-12]],[[7314,9403],[3,-3]],[[7446,9541],[1,4]],[[7447,9545],[-2,1]],[[7445,9546],[-10,5]],[[7435,9551],[-2,-4]],[[7433,9547],[13,-6]],[[7321,9388],[1,1]],[[7322,9389],[1,8]],[[7323,9397],[-3,5]],[[7447,9537],[-1,4]],[[7433,9547],[0,-3]],[[7433,9544],[14,-7]],[[7323,9397],[1,0]],[[7324,9397],[4,4]],[[7449,9531],[2,5]],[[7451,9536],[2,6]],[[7453,9542],[-6,3]],[[7447,9537],[0,-3]],[[7447,9534],[-1,-2]],[[7446,9532],[3,-1]],[[7324,9397],[1,-5]],[[7325,9392],[6,4]],[[7432,9541],[15,-7]],[[7433,9544],[-1,-3]],[[7414,9768],[4,7]],[[7411,9793],[-13,-25]],[[7398,9768],[16,0]],[[7432,9409],[3,-2]],[[7435,9407],[1,1]],[[7436,9408],[3,4]],[[7439,9412],[-3,2]],[[7436,9414],[-3,2]],[[7433,9416],[-1,-7]],[[7453,9474],[-6,1]],[[7447,9475],[-2,-8]],[[7445,9467],[3,-2]],[[7439,9468],[6,-1]],[[7447,9475],[-6,3]],[[7441,9478],[-2,-10]],[[7437,9461],[11,-4]],[[7439,9468],[-2,-7]],[[7411,9466],[5,-2]],[[7416,9464],[5,15]],[[7421,9479],[-4,4]],[[7417,9483],[-3,-1]],[[7414,9482],[-3,-14]],[[7411,9468],[0,-2]],[[7421,9479],[6,15]],[[7427,9494],[-5,-6]],[[7385,9452],[8,-4]],[[7393,9448],[0,1]],[[7393,9449],[1,4]],[[7394,9453],[-8,6]],[[7386,9459],[-7,-4]],[[7379,9455],[6,-3]],[[7394,9453],[1,3]],[[7395,9456],[0,3]],[[7395,9459],[0,6]],[[7395,9465],[-1,-1]],[[7394,9464],[-3,-2]],[[7391,9462],[-5,-3]],[[7395,9465],[3,2]],[[7398,9467],[2,1]],[[7400,9468],[-2,6]],[[7398,9474],[-4,-1]],[[7394,9473],[0,-9]],[[7400,9468],[6,8]],[[7406,9476],[-8,-2]],[[7445,9373],[0,10]],[[7436,9375],[9,-2]],[[7445,9373],[4,-1]],[[7449,9372],[0,16]],[[7454,9372],[-1,12]],[[7449,9372],[5,0]],[[7460,9373],[0,12]],[[7454,9372],[6,1]],[[7465,9372],[2,14]],[[7460,9373],[5,-1]],[[7465,9372],[5,-5]],[[7470,9367],[2,2]],[[7472,9369],[3,6]],[[7475,9375],[-1,12]],[[7476,9378],[6,10]],[[7482,9388],[2,5]],[[7475,9375],[1,3]],[[7490,9382],[2,10]],[[7482,9388],[8,-6]],[[7490,9382],[8,-4]],[[7498,9378],[5,12]],[[7503,9376],[0,0]],[[7503,9376],[3,14]],[[7498,9378],[5,-2]],[[7503,9376],[15,-5]],[[7439,9779],[-7,-15]],[[7432,9764],[9,-9]],[[7409,9337],[-7,-25]],[[7445,9789],[-21,10]],[[7414,9768],[18,-4]],[[7410,9343],[-5,11]],[[7405,9354],[-14,3]],[[7414,9805],[-13,8]],[[7401,9813],[-10,-20],[1,-21]],[[7414,9351],[-9,3]],[[7401,9813],[-7,4]],[[7394,9817],[-11,-22],[1,-16]],[[7417,9351],[-6,18],[-11,2]],[[7394,9817],[-24,15]],[[7370,9832],[-7,-25]],[[7363,9807],[-5,-12]],[[7340,9431],[-1,6]],[[7339,9437],[-7,-1]],[[7343,9438],[-4,-1]],[[7466,9520],[8,-4]],[[7474,9516],[2,5]],[[7476,9521],[-8,8]],[[7468,9529],[-1,-2]],[[7467,9527],[-4,-6]],[[7463,9521],[3,-1]],[[7343,9438],[-13,9]],[[7330,9447],[2,-11]],[[7340,9453],[-10,-6]],[[7459,9515],[5,-2]],[[7464,9513],[2,7]],[[7463,9521],[-3,1]],[[7460,9522],[-8,-2]],[[7452,9520],[0,-1]],[[7452,9519],[7,-4]],[[7457,9509],[2,6]],[[7452,9519],[-1,-7]],[[7451,9512],[6,-3]],[[7460,9504],[3,4]],[[7463,9508],[1,5]],[[7457,9509],[-1,-4]],[[7456,9505],[4,-1]],[[7322,9434],[2,0]],[[7324,9434],[-5,16]],[[7319,9450],[-3,0]],[[7316,9450],[0,-5]],[[7316,9445],[1,-4]],[[7317,9441],[0,-4]],[[7317,9437],[0,-4]],[[7317,9433],[5,1]],[[7454,9498],[2,7]],[[7451,9512],[-5,-8]],[[7446,9504],[8,-6]],[[7322,9389],[3,3]],[[7433,9537],[13,-5]],[[7432,9541],[-2,-3]],[[7430,9538],[3,-1]],[[7322,9389],[2,-4]],[[7324,9385],[4,4]],[[7328,9389],[5,4]],[[7328,9389],[3,-6]],[[7331,9383],[5,4]],[[7430,9520],[3,9]],[[7433,9529],[0,8]],[[7430,9538],[-2,-13]],[[7428,9525],[-1,-3]],[[7427,9522],[3,-2]],[[7325,9378],[2,0]],[[7327,9378],[4,5]],[[7324,9385],[1,-7]],[[7433,9529],[5,-12]],[[7438,9517],[8,3]],[[7446,9520],[2,8]],[[7448,9528],[1,3]],[[7430,9520],[8,-3]],[[7327,9378],[12,3]],[[7427,9512],[9,4]],[[7436,9516],[2,1]],[[7427,9522],[-2,-3]],[[7425,9519],[2,-7]],[[7432,9502],[6,15]],[[7436,9516],[-7,-11]],[[7429,9505],[3,-3]],[[7395,9459],[8,3]],[[7403,9462],[2,2]],[[7405,9464],[-7,3]],[[7405,9464],[1,6]],[[7406,9470],[0,6]],[[7366,9498],[-1,13]],[[7365,9511],[-6,0]],[[7359,9511],[-3,-12]],[[7356,9499],[2,0]],[[7387,9434],[4,9]],[[7391,9443],[-7,4]],[[7384,9447],[0,-1]],[[7384,9446],[-2,-5]],[[7382,9441],[0,-5]],[[7382,9436],[5,-2]],[[7387,9433],[5,0]],[[7392,9433],[3,6]],[[7395,9439],[-4,4]],[[7387,9434],[0,-1]],[[7395,9439],[5,2]],[[7400,9441],[0,5]],[[7400,9446],[-7,3]],[[7393,9448],[-2,-5]],[[7400,9441],[1,-4]],[[7401,9437],[3,1]],[[7404,9438],[2,4]],[[7406,9442],[-6,4]],[[7476,9378],[11,-5]],[[7487,9373],[3,9]],[[7487,9373],[16,3]],[[7425,9741],[13,-8],[3,-27],[7,17],[-13,27],[-10,-9]],[[7448,9362],[14,2]],[[7462,9364],[8,3]],[[7449,9372],[-1,-10]],[[7437,9355],[11,2]],[[7448,9357],[0,5]],[[7433,9375],[4,-20]],[[7449,9339],[0,7]],[[7449,9346],[-1,11]],[[7437,9355],[-2,-4]],[[7449,9346],[13,9]],[[7462,9355],[0,9]],[[7370,9832],[-26,8]],[[7344,9840],[-6,-21],[25,-12]],[[7344,9840],[-51,13],[-4,-30],[17,-16]],[[7435,9351],[-10,22]],[[7425,9373],[-8,13]],[[7406,9389],[-8,-12]],[[7405,9604],[9,-7]],[[7414,9597],[8,47]],[[7422,9644],[-16,1]],[[7391,9622],[14,-18]],[[7425,9596],[0,3]],[[7425,9599],[10,45]],[[7435,9644],[-13,0]],[[7414,9597],[0,-4]],[[7414,9593],[-1,-2]],[[7413,9591],[12,5]],[[7420,9391],[12,1]],[[7432,9392],[1,4]],[[7433,9396],[-4,5]],[[7429,9401],[-10,8]],[[7419,9409],[-1,-5]],[[7438,9391],[1,3]],[[7439,9394],[-6,2]],[[7432,9392],[-2,-3]],[[7425,9571],[5,2]],[[7430,9573],[5,1]],[[7435,9574],[1,0]],[[7436,9574],[-3,8]],[[7433,9582],[0,8]],[[7433,9590],[-3,7]],[[7430,9597],[-5,-1]],[[7425,9596],[-5,-17]],[[7420,9579],[-3,-11]],[[7417,9568],[8,3]],[[7445,9398],[-4,1]],[[7441,9399],[-1,1]],[[7440,9400],[-1,-6]],[[7457,9492],[0,7]],[[7457,9499],[3,5]],[[7454,9498],[3,-6]],[[7324,9434],[1,1]],[[7332,9467],[-13,-3]],[[7319,9464],[0,-14]],[[7446,9491],[11,0]],[[7457,9491],[0,1]],[[7446,9504],[-5,3]],[[7441,9507],[5,-16]],[[7441,9490],[5,1]],[[7441,9507],[0,0]],[[7441,9507],[-8,-16]],[[7433,9491],[8,-1]],[[7306,9465],[13,-1]],[[7332,9467],[-5,16]],[[7305,9466],[1,-1]],[[7428,9494],[5,-3]],[[7441,9507],[5,13]],[[7432,9502],[-2,-3]],[[7430,9499],[-2,-5]],[[7452,9520],[-6,0]],[[7328,9377],[3,-4]],[[7331,9373],[5,1]],[[7336,9374],[2,1]],[[7338,9375],[4,4]],[[7327,9378],[1,-1]],[[7427,9512],[2,-7]],[[7341,9371],[6,1]],[[7338,9375],[3,-4]],[[7420,9508],[7,4]],[[7425,9519],[-4,-1]],[[7421,9518],[-1,-2]],[[7428,9525],[-4,3]],[[7424,9528],[-2,1]],[[7422,9529],[-1,-11]],[[7422,9529],[-2,3]],[[7420,9532],[-6,-10]],[[7420,9532],[-3,3]],[[7417,9535],[-1,0]],[[7417,9535],[1,9]],[[7418,9544],[-4,2]],[[7420,9532],[2,10]],[[7422,9542],[-3,1]],[[7419,9543],[-1,1]],[[7424,9528],[3,12]],[[7427,9540],[-5,2]],[[7334,9363],[2,-4]],[[7336,9359],[12,-1]],[[7341,9371],[-6,-6]],[[7335,9365],[-1,-2]],[[7430,9538],[-3,2]],[[7419,9409],[6,5]],[[7425,9414],[0,9]],[[7425,9423],[-4,10]],[[7421,9433],[0,0]],[[7421,9433],[3,27]],[[7424,9460],[3,5]],[[7427,9465],[6,16]],[[7433,9481],[11,7]],[[7444,9488],[-3,2]],[[7428,9494],[-1,0]],[[7416,9464],[-8,-22]],[[7408,9442],[-2,0]],[[7404,9438],[-4,-11]],[[7400,9427],[-2,-6]],[[7357,9395],[-7,1]],[[7360,9427],[5,2]],[[7322,9434],[1,-7]],[[7317,9433],[2,-7]],[[7309,9436],[2,0]],[[7311,9436],[3,1]],[[7314,9437],[3,0]],[[7317,9441],[-8,-1]],[[7309,9440],[0,-4]],[[7316,9445],[-7,-1]],[[7309,9444],[0,-4]],[[7523,9728],[10,-15]],[[7541,9728],[-7,3]],[[7534,9731],[-9,-2]],[[7449,9339],[8,2]],[[7457,9341],[6,0]],[[7463,9341],[-1,14]],[[7473,9341],[3,27]],[[7476,9368],[-4,1]],[[7463,9341],[10,0]],[[7534,9731],[3,22]],[[7526,9764],[-1,-16]],[[7473,9341],[5,-4]],[[7486,9363],[-10,5]],[[7443,9410],[-2,-9]],[[7441,9401],[0,-2]],[[7436,9408],[5,-7]],[[7440,9414],[-1,-2]],[[7435,9402],[5,-2]],[[7435,9407],[0,-5]],[[7435,9402],[-2,-6]],[[7432,9409],[-3,1]],[[7429,9410],[0,-9]],[[7430,9597],[21,-2]],[[7451,9595],[9,1]],[[7460,9596],[4,0]],[[7464,9596],[0,3]],[[7464,9599],[-13,5],[-26,-5]],[[7433,9590],[16,5]],[[7449,9595],[2,0]],[[7447,9424],[-11,-10]],[[7436,9574],[5,2]],[[7449,9577],[5,1]],[[7454,9578],[-3,9]],[[7451,9587],[-18,-5]],[[7451,9587],[-2,8]],[[7460,9522],[-12,6]],[[7467,9527],[-7,7]],[[7460,9534],[-9,2]],[[7460,9534],[-5,7]],[[7455,9541],[-2,1]],[[7468,9529],[-3,6]],[[7465,9535],[-8,10]],[[7457,9545],[-2,-4]],[[7457,9545],[3,4]],[[7460,9549],[0,1]],[[7460,9550],[-3,3]],[[7457,9553],[-4,-11]],[[7465,9535],[3,6]],[[7468,9541],[-8,8]],[[7468,9541],[0,2]],[[7472,9549],[-4,3]],[[7468,9552],[-1,0]],[[7467,9552],[-7,-2]],[[7468,9552],[3,8]],[[7471,9560],[-11,5]],[[7460,9565],[-1,-4]],[[7459,9561],[8,-9]],[[7476,9562],[-3,1]],[[7473,9563],[-2,-3]],[[7309,9436],[0,0]],[[7309,9444],[-5,1]],[[7304,9445],[-1,-10]],[[7303,9435],[6,1]],[[7336,9374],[-3,-5]],[[7333,9369],[2,-4]],[[7433,9547],[-3,1]],[[7430,9548],[-2,-5]],[[7428,9543],[-1,-3]],[[7331,9373],[2,-4]],[[7428,9543],[-3,8]],[[7425,9551],[-4,-2]],[[7421,9549],[-2,-6]],[[7328,9364],[5,5]],[[7328,9377],[-5,-5]],[[7323,9372],[5,-8]],[[7421,9549],[-1,4]],[[7420,9553],[-4,2]],[[7416,9555],[-2,-9]],[[7320,9368],[3,-4]],[[7323,9364],[2,-4]],[[7325,9360],[3,4]],[[7323,9372],[-3,-4]],[[7416,9555],[-2,1]],[[7328,9356],[6,7]],[[7325,9360],[3,-4]],[[7420,9553],[1,4]],[[7421,9557],[-5,8]],[[7330,9351],[6,8]],[[7328,9356],[0,-1]],[[7328,9355],[2,-4]],[[7425,9551],[2,4]],[[7427,9555],[-6,2]],[[7430,9548],[2,4]],[[7432,9552],[-5,3]],[[7315,9425],[-1,12]],[[7311,9436],[2,-11]],[[7309,9436],[0,-12]],[[7445,9546],[3,7]],[[7436,9554],[-1,-3]],[[7323,9377],[2,1]],[[7317,9386],[6,-9]],[[7317,9376],[6,1]],[[7414,9593],[-9,11]],[[7487,9373],[-1,-10]],[[7513,9747],[-2,23]],[[7511,9770],[-6,1]],[[7457,9341],[9,-33]],[[7379,9519],[0,-9]],[[7373,9511],[6,-1]],[[7377,9519],[-4,-8]],[[7370,9511],[3,0]],[[7371,9520],[-1,-9]],[[7538,9566],[5,3]],[[7543,9569],[5,12]],[[7535,9577],[3,-11]],[[7537,9559],[5,1]],[[7542,9560],[-4,6]],[[7535,9572],[2,-13]],[[7357,9522],[5,-1]],[[7362,9521],[5,0]],[[7367,9521],[4,-1]],[[7356,9527],[1,-5]],[[7448,9442],[-13,-7]],[[7435,9435],[1,-5]],[[7436,9430],[-3,-10]],[[7433,9420],[0,-4]],[[7454,9578],[5,1]],[[7459,9579],[1,17]],[[7464,9580],[1,6]],[[7465,9586],[-1,10]],[[7459,9579],[5,1]],[[7435,9441],[13,2]],[[7437,9461],[-10,4]],[[7424,9460],[11,-19]],[[7421,9433],[14,2]],[[7435,9441],[-14,-8]],[[7425,9423],[3,-3]],[[7428,9420],[8,10]],[[7428,9420],[5,0]],[[7476,9588],[0,7]],[[7476,9595],[-12,1]],[[7465,9586],[11,2]],[[7473,9563],[-13,6]],[[7460,9569],[0,-4]],[[7316,9450],[-3,2]],[[7313,9452],[-9,-7]],[[7473,9563],[-5,7]],[[7468,9570],[-6,3]],[[7462,9573],[-2,-4]],[[7478,9572],[-7,3]],[[7471,9575],[-3,-5]],[[7483,9583],[-2,0]],[[7481,9583],[-5,-1]],[[7476,9582],[-3,-1]],[[7473,9581],[-2,-6]],[[7473,9581],[-9,-1]],[[7464,9580],[-2,-7]],[[7454,9578],[8,-5]],[[7303,9435],[-10,-2]],[[7448,9575],[12,-6]],[[7330,9351],[-8,-10]],[[7322,9341],[-1,-1]],[[7440,9567],[-4,-3]],[[7436,9564],[-3,-9]],[[7433,9555],[-1,-3]],[[7328,9355],[-6,-14]],[[7436,9564],[-3,6]],[[7433,9570],[-3,-14]],[[7430,9556],[3,-1]],[[7325,9360],[-6,-8]],[[7319,9352],[-3,-4]],[[7435,9574],[-2,-4]],[[7323,9364],[-7,-9]],[[7316,9355],[3,-3]],[[7425,9558],[5,-2]],[[7430,9573],[-5,-15]],[[7316,9355],[-3,5]],[[7313,9360],[-2,6]],[[7311,9366],[-5,-5]],[[7425,9558],[-3,3]],[[7422,9561],[-1,-4]],[[7320,9368],[-7,-8]],[[7546,9500],[3,18]],[[7549,9518],[0,2]],[[7549,9520],[-8,-1]],[[7479,9510],[7,-2]],[[7486,9508],[6,-1]],[[7501,9524],[-2,1]],[[7499,9525],[-5,-7]],[[7494,9518],[-18,2]],[[7476,9520],[0,1]],[[7474,9516],[-1,-3]],[[7473,9513],[6,-3]],[[7476,9595],[4,1]],[[7480,9596],[22,-3]],[[7499,9611],[-35,-12]],[[7476,9520],[5,6]],[[7481,9526],[2,3]],[[7359,9512],[3,9]],[[7357,9522],[-1,-3]],[[7356,9519],[-1,-6]],[[7355,9513],[4,-1]],[[7529,9555],[8,4]],[[7365,9511],[2,10]],[[7359,9512],[0,-1]],[[7532,9548],[8,4]],[[7540,9552],[9,4]],[[7549,9556],[-3,7]],[[7546,9563],[-4,-3]],[[7365,9511],[5,0]],[[7546,9563],[2,8]],[[7548,9571],[-5,-2]],[[7368,9498],[3,-1]],[[7371,9497],[2,14]],[[7548,9571],[4,2]],[[7552,9573],[-4,8]],[[7552,9573],[5,-13]],[[7557,9560],[2,1]],[[7549,9556],[8,4]],[[7476,9582],[0,6]],[[7481,9583],[-1,13]],[[7444,9488],[1,-1]],[[7445,9487],[10,-4]],[[7445,9487],[-4,-9]],[[7433,9481],[8,-3]],[[7420,9508],[10,-9]],[[7371,9497],[6,0]],[[7432,9386],[-7,-13]],[[7413,9506],[1,-3]],[[7414,9503],[8,-4]],[[7424,9497],[4,-3]],[[7447,9571],[13,-6]],[[7446,9568],[13,-7]],[[7457,9558],[2,3]],[[7375,9421],[-7,14]],[[7486,9508],[-2,-9]],[[7484,9499],[7,-3]],[[7376,9421],[0,4]],[[7376,9425],[-3,8]],[[7484,9499],[-4,0]],[[7480,9499],[-4,-2]],[[7476,9497],[12,-7]],[[7381,9428],[-5,-3]],[[7478,9484],[6,-2]],[[7476,9497],[2,-12]],[[7381,9429],[1,4]],[[7382,9433],[-8,1]],[[7425,9571],[-3,-10]],[[7320,9368],[-4,3]],[[7301,9367],[-5,-7]],[[7412,9581],[8,-2]],[[7466,9780],[7,-2]],[[7511,9770],[11,4]],[[7505,9879],[-19,3],[-53,20],[-35,23],[-28,24],[-12,24],[-79,-76],[-116,34]],[[7457,9743],[17,-10]],[[7425,9414],[4,-4]],[[7413,9492],[1,-4]],[[7414,9503],[-4,-3]],[[7410,9500],[3,-8]],[[7373,9467],[2,4]],[[7363,9475],[0,-3]],[[7551,9541],[3,-7]],[[7554,9534],[3,-3]],[[7557,9531],[2,1]],[[7559,9553],[-8,-4]],[[7551,9549],[-1,-1]],[[7550,9548],[1,-7]],[[7549,9556],[2,-7]],[[7543,9544],[7,4]],[[7540,9552],[3,-8]],[[7535,9540],[8,4]],[[7537,9533],[4,2]],[[7541,9535],[4,2]],[[7545,9537],[-2,7]],[[7356,9499],[-9,-1]],[[7347,9498],[-3,-8]],[[7344,9490],[-2,-2]],[[7342,9488],[-1,-1]],[[7545,9537],[1,1]],[[7546,9538],[5,3]],[[7347,9498],[-7,0]],[[7340,9498],[-5,0]],[[7335,9498],[9,-8]],[[7334,9492],[8,-4]],[[7335,9498],[0,0]],[[7335,9498],[-1,-6]],[[7548,9531],[6,3]],[[7546,9538],[2,-7]],[[7334,9492],[-1,-4]],[[7540,9522],[5,3]],[[7545,9525],[-4,10]],[[7411,9466],[-2,-7]],[[7409,9459],[-3,-9]],[[7406,9450],[2,-8]],[[7406,9450],[-5,3]],[[7401,9453],[-1,-7]],[[7409,9459],[-6,3]],[[7403,9462],[-2,-9]],[[7411,9468],[-5,2]],[[7414,9482],[-3,-3]],[[7411,9479],[-5,-3]],[[7410,9484],[1,-5]],[[7413,9492],[-3,-8]],[[7405,9497],[5,3]],[[7403,9503],[2,-6]],[[7400,9492],[5,5]],[[7397,9501],[3,-9]],[[7395,9456],[6,-3]],[[7479,9510],[-3,-9]],[[7476,9501],[4,-2]],[[7382,9433],[0,3]],[[7382,9436],[-9,3]],[[7475,9502],[1,-1]],[[7473,9513],[-2,-4]],[[7471,9509],[-1,-4]],[[7470,9505],[5,-3]],[[7382,9441],[-8,3]],[[7475,9502],[0,-4]],[[7384,9446],[-9,3]],[[7516,9615],[14,11],[5,-10]],[[7533,9667],[1,-15],[-23,-30]],[[7385,9452],[-1,-5]],[[7509,9542],[-6,-1]],[[7503,9541],[-9,-4]],[[7494,9537],[5,-12]],[[7306,9465],[7,-13]],[[7292,9402],[-2,5]],[[7545,9525],[4,2]],[[7549,9527],[-1,4]],[[7335,9498],[-3,7]],[[7332,9505],[-4,-4]],[[7549,9527],[1,-4]],[[7550,9523],[7,8]],[[7340,9498],[3,8]],[[7343,9506],[-7,2]],[[7336,9508],[-3,-2]],[[7333,9506],[-1,-1]],[[7549,9518],[10,2]],[[7550,9523],[-1,-3]],[[7333,9506],[-2,6]],[[7336,9508],[3,6]],[[7339,9514],[-3,4]],[[7343,9506],[1,5]],[[7344,9511],[-5,3]],[[7344,9511],[2,3]],[[7346,9514],[1,3]],[[7347,9517],[-7,3]],[[7347,9517],[1,6]],[[7508,9689],[-62,-49],[-11,4]],[[7410,9484],[-7,0]],[[7403,9484],[-10,-5]],[[7393,9479],[-4,-9]],[[7389,9470],[5,3]],[[7403,9484],[-2,5]],[[7401,9489],[-7,1]],[[7394,9490],[-1,-11]],[[7401,9489],[-1,3]],[[7395,9501],[-1,-11]],[[7387,9487],[6,-8]],[[7386,9468],[3,2]],[[7384,9482],[-2,-5]],[[7382,9477],[4,-9]],[[7386,9468],[0,-1]],[[7386,9467],[5,-5]],[[7383,9465],[3,2]],[[7382,9477],[-4,-10]],[[7378,9467],[5,-2]],[[7470,9505],[-2,-3]],[[7468,9502],[0,-14]],[[7468,9502],[-4,-7]],[[7464,9495],[-2,-4]],[[7464,9495],[-7,4]],[[7468,9502],[-5,6]],[[7471,9509],[-7,4]],[[7494,9518],[-13,8]],[[7393,9431],[8,6]],[[7392,9433],[1,-2]],[[7494,9537],[-3,3]],[[7488,9534],[11,-9]],[[7503,9541],[-6,10]],[[7370,9488],[6,-1]],[[7355,9513],[-5,8]],[[7350,9521],[-4,-7]],[[7350,9521],[-1,2]],[[7546,9500],[11,2]],[[7356,9519],[-6,2]],[[7356,9527],[-7,-4]],[[7542,9488],[4,-2]],[[7546,9486],[8,-8]],[[7349,9540],[-5,-8]],[[7545,9477],[1,9]],[[7546,9477],[8,-2]],[[7517,9612],[13,3]],[[7383,9465],[3,-6]],[[7517,9602],[15,11]],[[7378,9467],[-1,-4]],[[7535,9597],[-13,0]],[[7381,9484],[-2,-5]],[[7393,9431],[0,-1]],[[7393,9430],[7,-3]],[[7393,9430],[-2,-5]],[[7386,9427],[1,-1]],[[7387,9426],[4,-2]],[[7387,9433],[-1,-6]],[[7384,9428],[2,-1]],[[7379,9410],[7,17]],[[7385,9412],[2,14]]],\"transform\":{\"scale\":[0.08631816198972374,0.06685414881068959],\"translate\":[53.74429534685805,16.76314585462842]}}","encoding":"utf-8"},"package.json":{"filename":"package.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/d4f61f1d4988300b17318e1e1666f090e3712dee/package.json","size":130,"truncated":false,"content":"{\n  \"name\": \"anonymous\",\n  \"version\": \"0.0.1\",\n  \"private\": true,\n  \"devDependencies\": {\n    \"d3\": \"3\",\n    \"topojson\": \"1\"\n  }\n}\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/8423351/raw/587a147a4050c6e55922fe0acd7360ed32784e69/thumbnail.png","size":22968,"truncated":false,"content":"iVBORw0KGgoAAAANSUhEUgAAAOYAAAB4CAIAAABpZBnfAAAKhmlDQ1BpY20A\nAEjHlZYHUJPZFsfv96U3WkIoUkLvvYP0Gor0KiohCSGUGAJBRERUxBVcCyIi\nWBZ0BUTBtdDWgohiYRFQsLsgi4C6LhZsqLwPecT35s3Omz0zZ77fnDnzv+fe\n796ZPwDkCpZQmAbLAJAuyBKF+XowYmLjGLjHAAIkQAMwoLHYmUL3kJBA8Lfx\nbgjpRuKWyZwW+Gchy+FmsgGAQhBO5GSy0xE+jWQBWyjKAgBljdS1V2UJ5zgG\nYZoIGRDhuXVovHkumOPEeS771hMR5olwHQB4Mosl4gFAQjQBI5vNQ3RItxE2\nF3D4AgDIaIRd2MksDsJeCBunp6+cYyHC+on/ocP7L81EiSaLxZPw/F6+Bd6L\nnylMY63+h8fx/yM9TbywhhqS5MzU8IC59ZAzy2GzvMMXOJnLDFxgYZZH2ALz\ns5gRkh6xX+QCi1Mj3Rc4dWWApF+QuCRYop/pGbfAuckR0QvM4Xp5L7BoZZik\nPzM73Pt7v+eSBU5h+YcsMEs0f15zzE3zDfs+c4hkTkHaEslekkQ+kh5u5vf9\nZiVH+EkYuQCSfr4PU7Jfkd93/bQQiaZIHCY5B64gUqLJYXlJzhbwQRBgAXYW\nNydrbmDPlcLVIj4vOYvhjtx6rjGDKWCbGjMszS2swdwbmv9Fb+jf3gZEv/69\nltEBgEMxUuR9r7G0AGh7CgD13fea1mvk9+4A4FwfWyzKnq/NXVeAAUQgjbxO\nJeQGaAF9YAIsgS1wAm7AG/iDYBABYsFywAbJIB2IwCqQB9aDIlACdoDdoBIc\nBIdAHTgOToIWcBZcBFfADdAHBsEDMAzGwHMwBd6BGQiCcBAFokJKkDqkAxlB\nlpA95AJ5Q4FQGBQLJUA8SACJoTxoI1QClUKVUDVUD/0CtUEXoWtQP3QPGoEm\nodfQJxgFk2EarArrwmawPewOB8AR8DKYB2fAuXAhvA2ugGvgY3AzfBG+AQ/C\nw/BzeBoFUCQUHaWBMkHZozxRwag4VBJKhMpHFaPKUTWoRlQ7qht1CzWMeoH6\niMaiqWgG2gTthPZDR6LZ6Ax0PnoruhJdh25Gd6FvoUfQU+ivGApGBWOEccQw\nMTEYHmYVpghTjjmCOYO5jBnEjGHeYbFYOlYPa4f1w8ZiU7BrsFux+7FN2A5s\nP3YUO43D4ZRwRjhnXDCOhcvCFeH24o7hLuAGcGO4D3gSXh1viffBx+EF+A34\ncvxR/Hn8AH4cP0OQIegQHAnBBA5hNWE74TChnXCTMEaYIcoS9YjOxAhiCnE9\nsYLYSLxMfEh8QyKRNEkOpFASn1RAqiCdIF0ljZA+kuXIhmRPcjxZTN5GriV3\nkO+R31AoFF2KGyWOkkXZRqmnXKI8pnyQokqZSjGlOFLrpKqkmqUGpF5KE6R1\npN2ll0vnSpdLn5K+Kf1ChiCjK+Mpw5LJl6mSaZO5IzMtS5W1kA2WTZfdKntU\n9prshBxOTlfOW44jVyh3SO6S3CgVRdWielLZ1I3Uw9TL1DEalqZHY9JSaCW0\n47Re2pS8nLy1fJR8jnyV/Dn5YTqKrktn0tPo2+kn6UP0TwqqCu4KXIUtCo0K\nAwrvFRcpuilyFYsVmxQHFT8pMZS8lVKVdiq1KD1SRisbKocqr1I+oHxZ+cUi\n2iKnRexFxYtOLrqvAqsYqoSprFE5pNKjMq2qpuqrKlTdq3pJ9YUaXc1NLUWt\nTO282qQ6Vd1Fna9epn5B/RlDnuHOSGNUMLoYUxoqGn4aYo1qjV6NGU09zUjN\nDZpNmo+0iFr2WklaZVqdWlPa6tpB2nnaDdr3dQg69jrJOnt0unXe6+rpRutu\n1m3RndBT1GPq5eo16D3Up+i76mfo1+jfNsAa2BukGuw36DOEDW0Mkw2rDG8a\nwUa2Rnyj/Ub9xhhjB2OBcY3xHROyibtJtkmDyYgp3TTQdINpi+lLM22zOLOd\nZt1mX81tzNPMD5s/sJCz8LfYYNFu8drS0JJtWWV524pi5WO1zqrV6pW1kTXX\n+oD1XRuqTZDNZptOmy+2drYi20bbSTttuwS7fXZ37Gn2IfZb7a86YBw8HNY5\nnHX46GjrmOV40vEvJxOnVKejThOL9RZzFx9ePOqs6cxyrnYedmG4JLj85DLs\nquHKcq1xfeKm5cZxO+I27m7gnuJ+zP2lh7mHyOOMx3tPR8+1nh1eKC9fr2Kv\nXm8570jvSu/HPpo+PJ8GnylfG981vh1+GL8Av51+d5iqTDaznjnlb+e/1r8r\ngBwQHlAZ8CTQMFAU2B4EB/kH7Qp6uERniWBJSzAIZgbvCn4UoheSEfJrKDY0\nJLQq9GmYRVheWHc4NXxF+NHwdxEeEdsjHkTqR4ojO6Oko+Kj6qPeR3tFl0YP\nx5jFrI25Eascy49tjcPFRcUdiZte6r1099KxeJv4ovihZXrLcpZdW668PG35\nuRXSK1grTiVgEqITjiZ8ZgWzaljTiczEfYlTbE/2HvZzjhunjDPJdeaWcseT\nnJNKkyZ4zrxdvMlk1+Ty5Bd8T34l/1WKX8rBlPepwam1qbNp0WlN6fj0hPQ2\ngZwgVdC1Um1lzsp+oZGwSDic4ZixO2NKFCA6kgllLstszaIhZqVHrC/eJB7J\ndsmuyv6wKmrVqRzZHEFOz2rD1VtWj+f65P68Br2GvaYzTyNvfd7IWve11flQ\nfmJ+5zqtdYXrxgp8C+rWE9enrv9tg/mG0g1vN0ZvbC9ULSwoHN3ku6mhSKpI\nVHRns9Pmgz+gf+D/0LvFasveLV+LOcXXS8xLyks+b2Vvvf6jxY8VP85uS9rW\nu912+4Ed2B2CHUM7XXfWlcqW5paO7gra1VzGKCsue7t7xe5r5dblB/cQ94j3\nDFcEVrTu1d67Y+/nyuTKwSqPqqZ9Kvu27Hu/n7N/4IDbgcaDqgdLDn76if/T\n3Wrf6uYa3ZryQ9hD2YeeHo463P2z/c/1R5SPlBz5UiuoHa4Lq+uqt6uvP6py\ndHsD3CBumDwWf6zvuNfx1kaTxuomelPJCXBCfOLZLwm/DJ0MONl5yv5U42md\n0/vOUM8UN0PNq5unWpJbhltjW/vb/Ns6253az/xq+mvtWY2zVefkz20/Tzxf\neH72Qu6F6Q5hx4uLvIujnSs6H1yKuXS7K7Sr93LA5atXfK5c6nbvvnDV+erZ\na47X2q7bX2+5YXujucem58xvNr+d6bXtbb5pd7O1z6GvvX9x//kB14GLt7xu\nXbnNvH1jcMlg/1Dk0N078XeG73LuTtxLu/fqfvb9mQcFDzEPix/JPCp/rPK4\n5neD35uGbYfPjXiN9DwJf/JglD36/I/MPz6PFT6lPC0fVx+vn7CcODvpM9n3\nbOmzsefC5zMviv6U/XPfS/2Xp/9y+6tnKmZq7JXo1ezrrW+U3tS+tX7bOR0y\n/fhd+ruZ98UflD7UfbT/2P0p+tP4zKrPuM8VXwy+tH8N+PpwNn12VsgSsb5Z\nARSScFISAK9rAaDEIt6hDwCi1LzH/RbQvC//RuDveN4HfwtbAGrdAIhE/HQg\n4lEOIKmDMBn5ztm1CDcAW1lJ8t+RmWRlOa9FRpwc5sPs7BtVAHDtAHwRzc7O\n7J+d/XIYGfYeAB0Z8956LrAyAJzAzFGPWv7/eNx/AXah8NjGtRXUAABO7UlE\nQVR42u29V48k53U+/nZVh+rqnHPunp68OTLKAi3DsIIhwzYgA76RL2zAN/4E\n/ga+FHxhXwg2DBiCKQOWTVkiKTEud2dnZ2Z3Z6anc07VuTpUdfpdPP+t/5iU\nKVLmcoerORcL7rKnu6fq1HnPec5zniNbLpfk3D6bLRYLiqL6/f7R0ZHT6RyP\nx6PR6OTkxO/3sywrCEImk1ldXRVFsVKp+P3+8XisVqulK7xcLhUKRTqd9vl8\nzWaTZVmHwzEcDofDYb/f53me5/mrV6+eviP4kWQy6Xa71Wr1fD5XKBTVanWx\nWDgcjnQ67XQ6dTrdYrFYLpdyubzVak0mk0AgMJ/PCSHT6RTvo1QqK5XKYrHw\neDzT6VQmk0lvnkgkvF4vwzCLxUL6NdfX17Va7XK5xCvPlMmf9Rf4KhlFUYQQ\nuVyu0+nq9bpCoWAYhmGY8Xis0+n6/b5SqZTJZIvFgud5mUym1+sJIdKNXywW\nCoVCq9Wm02lBEMxm82w26/f7crlcr9e7XK50Oj2dThUKxWmvlclkFEXNZjO8\nyXw+N5lMlUqlUCiYTCaTySQIgkwmk8lks9nMarXm8/lyuYyny+Fw4EcWi4VK\npeI4Ti6Xi6KId8YXUyqV8/kcf0oOqlQq8dHP+pL/Cjt32c9tLMuurq4mk8lS\nqSSKoslk6nQ6Foul1+utrq7O5/PpdMrzfCKRUKlUMpkMrqBUKtVqtUKhkMlk\n0+n09u3bxWJREAS/369SqebzOU3TCoViOp0qlcqPHX3wMzgQRVGdTocQ4vP5\n8vm80WikaRqvh9d6PJ5yuazRaARBSCQSGo3GbrfLZDKdTtdoNBKJRCgUksvl\ny+VyNpsRQpbLZavVms1mw+FwPp/zPK9UKv1+P77GGfTac5f93IYANp1Os9ms\n1+tNJpMymazb7c7n81qtxvP8fD6fzWYcx62vrysUCpqmF4vF9ImJojgej/f3\n96PRKE3T0+lUEARCCEVRNE2fDnWSKRQKRFn4EP5Uq9VWq7VYLEYiEemshwUC\nARwIhJBkMil94VAo9ODBAwRUfElCyHQ6lcvlg8FAo9F0Oh2VSuX3+xuNhtFo\nPIP+Ss5d9jcw3EiVShWNRm02m0qlms1mJpNJFMVer2exWJCkchy3XC7tdvtg\nMIBbMAzD87zBYKBpOp/P22w2vV6/XC5VKtVyuaQoSqlUwvlOhzdknJPJhDyJ\no9PptFQq2e12s9k8Ho8rlYrH45HCMCFkOp2Ox2NBEObzeaVSGQwG+KDFYmG3\n2wkhtVoNj5NcLpfL5XioFAoFXFmpVMrlcnIqpTlTdu6yn9twF4PBINzCYrHI\nZLLxeAwHxWusVutkMpnNZo1GI51O6/V6/JRareY4LhQKlcvlZrNpt9tHo1Gx\nWETM63Q6brf7tJfAfWmans1mi8VCLpfn83mFQrG2toZsweVyZTKZbrdrMBhQ\nbMnl8kQiQQjRaDR4Za1WMxqNhBC9Xq/VavP5fCAQMJvNeAyQySC1EEVRoVAs\nFgu8/mzaucv+hiaTyQaDwWw2k8vlarU6m82inEfdTdP0aDSaTqdms3l9fV3C\nDSiKGg6HhUJhbW1tb29PLpcPh0Or1apWq/V6/emyXTJEWbw5RVEURSkUCpfL\nNR6PCSHz+dzn82WzWbVajWCJP6PRKN5NJpOZTKZCoUBRVLfbBbhRKpWcTiee\nAfwKyLknk4nVatXpdGazmZyXX8+Zwfm63S4hRCaTtVqtq1evMgwznU4BMHU6\nnUQicfXq1cVigaKeELJcLtVqNcMwhUKBpmmr1erxeJAYyGQylmXxhqdNSgzK\n5bIgCJPJxGg0TiYT/AjczuVy5fP5lZWV6XRaLBabzabX64Xv4qsGg0GFQnF8\nfDwajUwmU7fbrVarwWCw3W7jm3i93vl8jizFYDCQs5oVkHOX/Y1NJpMFg0FR\nFOE0yWRyNBopFApCCE3TAMI8Hg8hZDabScUQklGbzWYymer1OsMwcrkcBzpN\n0yiMPgYXwGXxQSzL2u12pVKJ8Cm9oV6vH41GuVxuPp9bLJZQKDSZTPR6PV62\nXC6RIkvv4/F49vb2RFGcz+fRaHQ2m1UqlVarFY/HKYqSsDlyJgMt9ay/wFfV\nptPp4eFhPp/neZ7juOFwKJXzhJD5fE5RFBD+X3nXNRoNRVHtdhsQFU3TFEU1\nm83hcPgrX6/X6x0Oh81mk3IPyWQymSiKTqez2+1aLBa73f5J5AFfxmAwzGaz\n2WxWKpWQv0ajUYqidDqdWq2OxWIGgwGBtlQq7e/vj0Yj8sR3z46du+xnteUp\nw1/9fn+hUNjZ2RmNRt1ul2XZ044iZQKfdEFAs1ardTAYAOQfj8fJZBK9Calr\nIH0ujvjRaDSbzf43B1oulzqdDqgZ8F3pq6LRQFGUwWAoFAonJydWq3V1dRXI\nK03ThUKhVquhdhyNRr1er9vtTiaTwWDwrK/6r7DzxODX28eOSPx1PB4DHNXp\ndKPRCAmrRqOZTCaItRRFSU7zScMpr1Kp2u32ZDKpVCrb29sqlSqRSEiHvmQy\nmQyBk6IoJMqfNPwIOltKpRJZymKxWCwWs9lsPp8Ph8PBYGC32wEIpNNphmFk\nMhnP84PBwOfzHR8fW63WZrOpVCqRpSDNtdlsZyqvPXfZX2PS3ep2u6lUKhqN\nqlSqfD5/cnLidrsvXbpUKBREUbx48WI6nZ7NZqhdCCE0TZMnGcKvfE+5XD6f\nzxOJRDweNxqN+CtOcHSnTv8ISnvyqVUR3Hq5XDIM02w24al4H5qmVSqV2+3W\n6XRHR0e9Xm8ymdhsNrlc3u12zWazx+PRaDSPHz+ORqNKpXI2m6FRh9zgTNm5\ny36awT9EUSwUCoPB4OTkZDKZ0DRdKpUMBkOpVAqHw6ChKJXKeDx+fHy8trYG\nkgCwfRRkcJ3TZBRBEE5OTmiavn79ukqlarVagiCwLLtcLoFnfYwcI3UZPuWr\noklGCKEoSqVSORwOdAqoJ4b2m16v73Q6PM9ns1m/34+qazQa6fV6v98/mUzm\n8zkg5+FwiO9/puzcZf9XQ5/z7bffLpVKNpvN5/MB+1SpVIQQl8tVLpd3d3eV\nSiUaYDKZzGg0glDCcVytVptMJvl83mw2sywLNIAQQlFUq9XKZrNmszkSiYAO\nJgVjIAAf+yYymWwymaA2+pQQS9M0wFqKotRqtVqtlkpAvCdN02CNGY1Gk8lk\ns9kODg4QU/FIMAyTzWY7nc5gMPB6vTKZjGGYZ30fPm7nLvtpVqlU3nnnHY7j\n/vAP/1ClUsnl8kKhEAwGwY0KBALoghJC5HJ5o9FAIETLPh6Pgw2IM1qlUplM\nJoVCUS6XtVptOBzudDpgDAL/Zxjmk+UXcmLEPJPJ9LHKDIZEAjWTx+OZzWZA\nIQRBAOKLlyEhrtfrPp8PObRcLne73SqVajgcarVatJ3BL8tms4FAQBRFjUbz\nrG/Cx+1Zuuzpq/l5f+Rz/dRvYKIo7u7uqlSq11577YMPPuj1eqlUajAYKBSK\nvb295XJZLBbRboXjghMoimIymaQoqtfrBYNBuVwOHxJFcTgc5nI5lUoVDAZB\ns8pms/V6HYGw3+8fHh4Gg0GO42iaRgGHM325XBYKBavV+it/X4qiGIbp9XrI\nUoAVgBQmk8nAEcN1m81mANGGwyFaxIAREIZpmhYEod1uDwaDyWQyHA7B1/lk\nN+6Z25ftsqer79P3QDoZUS+jNEYFI11T8r+46Rdbz+LdCoXC8fFxPB5HfZ3P\n5zc2NsLhsCAIDMP4fL5qtbq7u0tRFMuyer2eZVmtVqvRaBaLRTqdxjssFgs0\nP0Fd7fV6/X6/WCyCHRuLxQ4ODmw2m1arjUQi/X4f/AHYdDrtdrso50ejUTAY\n/Fgui2vS7XaBOSB/RQINq1ar/X5/PB6DO6bVakejERiGsFwu1263DQYDx3F4\nGc/za2trFEUVi0U8DL+9uexpgFD6R47j+v0+RVGj0WgymdTrdb/fj7MPSZXF\nYjEYDOCXKBQKtVrdaDQsFoter6coymq14rZ9If56+hvikJ3NZtVqled5hUKB\nxM5kMh0dHel0OoZhWJZ1Op3hcPjg4KBWq2m1WoVCYTabQWC9cOECYm232z0+\nPl5dXeV5fjweRyIRgE3z+dxoNAYCAb1ej7PY4XAgzU0kEmjM4hMxgCA1yU7/\nsjRNNxoNtNnwAqmXASjAYDAYDAaGYcrlssvl0mq12WzW5XKxLJtOp2u1GkVR\ngUBALpcHg0GZTJbJZFiWBbcLubhWqwVP/OzY03XZj3mqIAiCINTrdbAz0+k0\n7iIQ8n6/j5MIYXW5XOZyuUgkIooi6hsUuXK5PJPJEEI8Hg/HcQgDL774IsLz\nx+LQJwOwVLZ/7F/w52w2+8UvfqHX62ma1uv18Xi8Xq9PJhOTyfT6669/97vf\nnc/nHMcZDIZut2u1WhmGUavVGxsb2Wx2uVx2Op1SqTQcDs1ms0ajsVqtVqv1\n8ePHFEUhqTAYDBRF8TxPnuSp0+mUoqjJZIKCrFaroctvs9lQ2IEGoFAodDod\nirPTv5RardZoNBqNRpo1wDszDGO3291uNwJwIBDIZrPRaJQQ0mw2tVqtUqnU\n6/X1ev1nP/sZSN8gx/A8b7VaRVFst9tGo/G3rvySrmy73e52u+l0Gow7juNw\nF3HD0KqpVqtSp3E4HILBCYbUYDDA4z6bzUajUbPZDIfDuVzu8PAQTNBwOOx2\nu1EMSUj+xzz4V34xQggeklwuRwgRRZHjOI1Gg5EYdOorlcpkMhmNRuVyGURS\ntItomt7Z2QHnfzqdrq6u4gugkatSqViWFUVRqVRqNJrRaAS3KBaLnU4nGAzi\nAYYrFwoFo9H44MEDm822vb0tgQb4cbvd3ul0qtWq1Wo1GAyo7qVoOhqNjEaj\n9MSCK6NUKrvdLlgEs9lMo9EA2/L7/YlEAn1aURTRvJ1MJq1WKxKJoOl1cnKi\n0WhWVlaAPDxrF/24PUWXnc1myOdEUaxWq61WKxqNWiyWRqOB2tZms/X7/UAg\nADLybDbz+/04lVKpFBKA4XDIMEwqldLpdL1ebzAYlMtlHIi5XE6r1SJ7+/d/\n//etra3t7W1QOkClWywWhUIB5MB+v79YLPR6PWh4Xq8XPyuKYr/fn0wmR0dH\nZrPZ6XSiZkfdw/M8elQul+v73/9+IpGgaXpzcxM+OhwODQaDyWRC8gAPQ9z1\n+XxIDCaTSbfbzWazGFY5PDxstVoajebo6Gg6nWq1WpZlj4+PY7EYCIrxeHwy\nmTSbzVKp5Ha7bTbbeDwOh8Oo6w8ODjQajdlstlqtSqUS6aYgCEDWCCHIDTDg\nIHV3ARTUajWZTNZut3u9HiYf8YBdvnwZ4X8wGFy+fHmxWCSTyZWVFUT0T/ZB\nnrk9RZelKOrOnTsej8dsNiM9xX0F/mI2m0ejEcMwuNxyuRyU5F6vZzabARbu\n7u6Wy+WLFy8CIWIYZj6fr66uKhQKzAOurKzk8/nd3d3BYHD37l2lUvnXf/3X\nbrc7mUx2Op1utzsajUKhkEajSaVScrncbrcjmlarVbhLNpuNxWKYIlQqlfiG\nGCIQRRHDVe12W6vVwg8ajQYhRKPRYD4R8WwwGBgMBuC4qGyQZFssFofDMZ/P\nHzx40Gw2Q6GQxWJRq9WFQkEQBI/Hs729XSgU/H4/phjS6bRcLrdarYIgGAwG\nlUp1dHRECFEoFKifHA6H0WjEKK9WqzWZTKPRCEOIgP19Pt90Oj06OprP56fH\nEkulUjAYZFm21+slEolsNktR1Pr6ejgcpmm6Uqm4XK5ms4kHVYIdABg/axf9\nslwWR7NarU4mky6Xi+f5arUqCAL4SgaDYTQaobgZjUbL5XI4HObz+Xq9vr+/\nf/PmzcFgcPHixevXr3/44YdmszmVSgmCIJfLs9nswcEBIp/T6URBLYoiCByT\nyeSHP/whSNCiKKJUn81mmNTT6/UajWY+nxsMBrPZ3Gq1qtUqecKE6vf71WoV\n569WqyWEsCxrs9lQFdVqNXSnJpPJ7u6u0Wh0u92g/HW73Vqt9uKLL6IQhL/C\nd1FZ5vP5wWCwtraWzWan02mz2Xz33Xc3NzcxVl4oFCwWiyAI4FXNZrP79+/b\nbDbkwWDWStRYQgiogw6HY2dnp9PpIMxPp1PQBrrdLkYkbt68eXh4iItGCGEY\nxmKx4D9ee+21drvd7/c9Hg9oNDgKEJJVKlW320UmNp/PY7HYs3bRL9FlcbKM\nx2MMmhJC3G43y7IMw7Tb7WQyiajmdrtBUxoMBrFYzOPxmEwmQJiiKN64cWM+\nn7MsG4vF5HL5ZDKpVqtOpxOE5Tt37mi1Wq1W2263eZ4HmghAFFdfEAS1Wg2g\nSiq8XC6XyWQyGAydTmd/fz+dTs/nc7lcHo/H0d8iT0pGQRCQePj9fp/Px/P8\nZDLZ2NgAXIV7fHJyUq/XVSqV0Wi0WCwajYamabVaDVwTD8DGxoZer0cbttvt\n3rp1y2azcRx3//79tbW16XQKlODixYvFYvHy5ctITsbjMaBZiSAGvgsSWQAO\naMUh7+90OizLms1msB3wiwCgRYZK0zRSHfwJjuza2houDmYfENd9Pp/NZpvP\n50i0zpQ93fILPSGPxzMajUB0QhWcSCRqtVokEtnc3EShyjCMy+UC13M6narV\napVKJSlKIIABG//2t78tCEIul3vllVfAeyoWi/BmhAedTre5uYmqSKFQsCyL\n1I2iKL/fv1wuj4+PjUbjcrmcTCZms3lrawuZAKA0lUqVyWRwLKDniUwmm83m\ncrl8Ph+LxdAfstlsnU6HoqiXX35Zq9XeuXMnHA7D0U9OTkAomc1m8XgcZzQO\neo1G43K52u12IBBIJBIffPDBN7/5zV6vh8HGUqnEsiz8DBcQkRtXAMNhUnE5\nHo9Pc7swzatSqcC+nc/nqVRKo9FMp9NOp2M2m00m03A4dLlcgCCsVitN05D/\nqNVqhJB2uw2sAxAbYv+zdtEvy2WlqGCz2RKJBC768fExHAX+NJvNer2e3+/H\nXUGHCUVDpVI5zdwrl8vIDjmOe/jwYavVQiTjeR5pgNfrLZVKwGt1Ot3BwYHB\nYHjppZd4nm82m3q9Hmz88XhcrVb9fr/JZAJzJZlMZrPZxWKBck0mk9XrdYfD\nEYlE8MwQQlBI2Wy2a9eugVkSCoWazeZoNKrX64joBoPhypUrrVZrc3Oz1+uh\nVL9w4cIHH3zw4Ycf3rx5UxRFu93earUQ4yuVCmCBTqdTq9VyuRzgz0uXLjWb\nTWTYGo1GmilgGKZYLMpkMrPZjE7saYUEibEliqJarZ5MJoeHhxj3tdvtGBpD\nMxZ5lM1my2azCK7D4VAURavVarfbMQiEMXee57Va7ad0cJ4rl0VWIAjCj370\nI5/PhzL8ypUrzWaz0+lcvXp1PB5/9NFHEHoQBAGJJgb37Hb7dDodjUanEezx\neIyc0uVyURQlCALm9URRHI1GSqWS4zi73X779u18Pu9yudACrVarGo0GTXwU\neTqdjmVZJCd4ijD00u/3NRqNWq3GQYxpaXw0wDiMZNlstlu3bn300UePHz82\nGo1HR0ez2Wxra6vRaJRKJYhrSMpCgGldLte77747Ho8vXrwINy0UCgzDOByO\n999/n2VZjuP+7u/+zmg0UhT1ne98B08dz/P1ej0UCklz248fP67Vaq+88orU\nAwNqoVarj46ORqMRy7Lj8Rg1Ps/z165d6/V6y+XSbDaDCDYajTAKUavVRqNR\nrVYzmUzI5hH7RVF0OByVSsXr9Yqi2O12m82mx+MBv+zseC39t3/7t0/jfXFs\nVavVbrd7cHAQCAQwbadUKuGj8EI0h7Ra7dHRUbPZdLlcBoNBrVYPh0PIqMAP\nhsMhRKmQI06n00gkgsMxHA7funWrWCxqNBqVSoWgAsABGJDX60VTajwex2Ix\ncOr0ej3P8w8ePGAYZm1t7f79+2az2eVyYUCA4ziLxZLL5eCs/X7/xo0boAEg\nl5jP51qtFugbwzCo83Aon5ycAHZIp9O9Xq9cLvv9/maziVmAjY0NRLV2u12v\n1zUaTaVSabfbKpVqfX0d/V6GYUql0mg0arVajUaj0+mAYKDT6dxuNyYfMe5S\nqVSq1apMJotEIlqtFtHd6/V2u1273T6fz4vF4mQyabfbqCzH4/Hh4eFisbh/\n/34kEpHL5Q6HIxwOd7tdn8/HMAwUltbW1gRBwGwj4BpylgLtU3FZ/HoKheLW\nrVtKpRLNzLt37xaLReimYCQ1Ho+vra2Jori9ve1yuTqdDo57jUaTyWSGw2Gn\n0xkOh4hhNE33+/12u53NZgkhy+Wy0WhUKhWVSoUz2uVyzWYz1Fv1eh03kud5\nuVyOWP6zn/3MaDRWKpV0Ot3pdBwOR7VaRYLrdDollKrRaHAcp1Kp1Gq1yWSy\n2+2gOCEjj8ViSGqPjo5yuRzHcWiLTCYTPFFo84J4KpfLjUajTqfb2Ngol8sO\nh8NkMimVSqTgk8nE7XYbjcabN2+urKxcvHjR4XDgzQHzWSwWmqaLxWKxWLx2\n7VqhUCCEABacz+cMw9A0PZlM1tfX5XL5m2++ube3t7m56XA4+v2+SqXS6XTo\nPuh0OvwVNAOtVmswGNBcCIVCeNgUCkUgEMCN6/V6oPJcunQJAPPZ8den5bKn\nfXc4HCaTyVgslk6n8Y+j0QgUabS4QDR5//33BUFwOp2YoEfuqFKpgC5JjBO5\nXG6xWNDaBekTSR6kVrRaLTAg1BbSj2g0mna7HYlE7HY7z/OAP00mk0qlghZB\np9Npt9udTgdtDofDASpJt9ulKAoSV71er16vl8vlTCZD0zTy0Vardfny5Zs3\nb0LTCrAU8kuapq9cuWK32+Vyeb1e93g8QNA6nQ5SfEJIp9MBxsdxHB4Yl8t1\ncHCAryQhA+hXj0YjkDEGgwHOH/ASLRbLbDbb399/7bXXOp1Or9eDWgwABwga\nADRgGOb+/fuNRuOFF17geR48Co7jms0mqrpKpRKLxTiOG41G8XicYRir1XrW\nuglP0WVxfqEHCBCnXC4rlUp4Kq44AFoAWwzDSAACz/PhcJiiqP/6r//qdrtX\nr171+/0KhQJyPcBHcSOn0+lisdjY2EAfeHNz0+fzCYKg0+nQ97JYLJFIBNWe\nz+dbLBZmsxnTz0iL3W43Qg5Yz7PZDKcqy7LtdttisSgUilwuZzKZoBQE3YDZ\nbHb9+vVWqwXnG41GIGuDHM1xHJQEoL9iNpstFgsGCQOBAMdxaEH1er1YLBYI\nBMbjsUajGQ6H7XYbHnP16tVgMNjr9TY2Nrxer0KhaDQaIOMuFotUKgU0Gpd0\nb2+vUqlAl8DpdFosFqVSCaouwzD1eh1EBULIdDp1OBwej6dSqaysrKAfO5lM\n/H4/x3GCIHi93slkArSOEOJwOM5UiCVfAscgHA4jGTg4OOh2u0gBceyCuSyT\nyRqNhlwulw79xWLRaDTgUi+//HKr1Uomk0Cg9vf3g8EgwzDoC6DGb7fboARg\n1iUajY5Go06nAz5rLpcbDoc48dEH2traglNKeS1mD5fLZa/XKxaL4/HYZDKh\nONPpdE6nczabOZ3OXq8HXU6dTre6uvrGG294vV5woNBcxYwNyCh2u11CPIDW\nMQwDlYCLFy8SQlQqFdoEuCZGoxHfBJwstCFQiVIUpdFoLBYLDvfHjx+vrq6i\nC41fPBKJOJ1OlmXBwEKKtb293el0IGfkcDgAk924caNUKqF5BvZPOp0OBALT\n6RRHQTabLRQK6+vrPM+fQU7MU3dZQghFUaurq4vF4p//+Z8ZhgENimEYHE/L\n5XJnZ8dgMNy+fRvNcWROkUgEP95oNPDfyIPj8TiYoJcuXcL5+/Dhw2QyaTQa\ngQ9AvA08LNBJtVrteDyG1+IewCGAGNTr9W63ixxXr9dXq1WXy7W6ulqr1fL5\n/M9//vNyuXzt2rV8Po8RAxBKoB174cKFTqcjl8uBZWJQkWGYXC73/vvvo80m\nEVxomm6322Bc8DwPpAJHEM/z5XIZDHGlUrmystLv9/GAARJBfws6nizLAi1x\nOp1GoxGDAxzHAdvCkVWtVvf29q5fvx4KhYAegplQLpcxJwPMRCaTlctl/OL9\nfh+ZD03TPp+vXq/PZjO0qZ+1i37pLotjJRqNarXaZrNJCMFJWiwWd3Z2rl+/\nHolEgsFguVymKCoUCn1sVmQ4HDqdTiDeoigaDIZMJiMIAsdxoijK5XLUOuFw\neDweb29v5/N5rVZrNptBWZS0BzudTjgc9nq90JWAdtp8PsfBVywWdTqdUqkE\nz1Umk3k8nl6v5/F43G63QqFwOBzoIKCSm0wmgiCkUim9Xr+5uQmqF8iBwMhC\noRAC52lMqtVqhUIhlUqFE8BsNmNMABOO0+lUpVKl02m1Wu10OkOhEPLyx48f\no35CVwVJtsTjQfK9trYG2A6P6Ne//vVIJFKr1Uql0vr6utVqTSaTaEqD6dHp\ndDwez8OHD9vt9re+9S1BEDCjFgqFqtWqw+Go1WpyuTwWi50peOvLc1ngghcv\nXvzv//5vcJYRG1iWHQwGOAqr1SpAGUD6qEUIIdVqFdmtXC5XqVQ8z1cqlc3N\nTWQFhBCe58FqRVgFwRTsb1TlqVSqWCym02m32w2lNEABJycnu7u7drt9a2tr\ndXW12WwOBgPUi36/H6nI9773PYD8YDzyPO90OqvVajgchtaQ0+lEKEKrAnIB\n6HaC3yO5rFwu73Q6Go0GBbsgCCincHZns9m1tTU0UAAwud1ug8GAt83n8wAN\ntVptLpfT6/XhcBj69263G0lOo9FgWRYosslkWltbA8KVTCbRxCoWi/1+f3Nz\nExkRyj7MURaLRULI6uoqIWS5XI5GIwnYOmv++mW4rGR//ud/LpPJ7ty5o1Ao\nkJY5HA4c4uPx2O12E0Iwei+TyUqlksvlQolGCMFrkHEiqZWEBBUKBeBSg8Gw\nv7+PevzBgwfz+Vyn0zWbzXg8vrm5+d5779Xr9el0ioLJarXimF5dXQXQ43a7\nEXfz+Ty6TXq9HrHt8PCw2+1iWlCr1V66dKnRaGAfwePHjzmO63a7kJ8nhHS7\nXbAm4G1o1aJdzPO8KIp4lnDuYzgM/blGo6FUKoE3DwYDjuOQdVit1mAwWKlU\n5vP5zs4OxnjgTHa7PRwO93q9o6Mjg8HQbrdxbdFGGY1Gfr/fbDY/fvwY07+z\n2QzA2dHREWpWaDYmk8mbN2+Cw6XT6cC7B8X5WfvnM3JZPKnIvRB0O53OysqK\nz+eDBFo4HC6VSmq12mazgfYmimIwGFQqlVAJgBTFeDxWKpXj8bjRaIA4AhxX\nEIRYLGa1WnGcbW5unpycSAkxyAN2uz0WiwEuaDQakFa9deuWSqVCsS/BQJja\na7Va4E2j4oaivMfjabVaZrPZYDAcHBzwPA9AXqPRxGKxyWTCsmwmkzk5OdFq\ntaAmnma0tFqtxWJx9epVsATRF8BEoclkgktB0RutLDx1mBGw2+0SGeCDDz7w\n+Xwcx3k8HjwABoNhY2MDl65Wq3EcFwgEZrNZPp/v9/vf+MY3fvSjH3300Uca\njcbn84GKpFKpGo0GLiAkZJBrdbvdbreLcQ+/30/OngTilxRlcdBDFDIcDuNY\nx+wRWEXNZhPMQJykqCfkcjn0dpRKJTIEhUJRr9eVSqUoiu+++y5FUX/0R3+k\nUqkwrAeOEjpDyInBpMFkCySowMeD5KBarW632wjtgNPr9Xq/3wdfBH18jEJA\nQwBJxeHh4cbGBpzSbrejfQVuP0pDj8fj8XhwHEs4PNr3nU4HyhoYSRBFEbKv\nQElZljUYDAqFIpPJ4EnARZOmLSDbzbIsaD2gjet0usFgUK/XRVGcTqflcvnK\nlStIJPA7Pnr0aDAY1Go1KUllGAZM89MELjANAoGAyWSaTCbhcBhVx1mzp+6y\nYLcAshkOh2j/tNttvV6vVqt//vOfe71ezDmVSiVJPNBkMo3HY1DrcV4LggCt\ndEKIx+Ox2+2ZTAbMgXq9vlgsBoNBs9m0WCzIGaRp5mw22+/3nU7nyckJztzh\ncJhIJMDWxcgheaK20mq1QHTM5XLNZhMs1WazuVwuI5FIOp0GiXZ3d9fhcCiV\nynw+j5QUKASo6IQQHAuSLBf+m6bplZUVSYYIr5FOczg02nKdTicWi+l0umw2\nm81mNzc3QfLSarX1eh2ZtN/vF0Wx2WxWq1XgZdA6QDjAoAGGQWq12mKxWFtb\nw+RZoVCIx+MOh+Po6Kher//Zn/0Z8AfIi2PE3Gg0QjPmWfvns3BZhDqe5994\n441GowHWVb/f12q10WjUbrc3m01AmxRFRaNRqb5Gmjufz8EOmU6n0JtGfbaz\ns7O+vo6kEG0zq9Xa6XSQWgAsE0UR6mjoi6Ikx5CTWq3GSQ03BRqFdwYiBmgM\nnBuLxQJ0AhMyaF4AQECrFlu+0DUAyZ9hGGjLwdDHGo1GPM+3Wi2e50GHBQJ1\n+fJlaf1Ls9k8ODgIh8NAAABgg8uCGIzsAu8JIAVaL4VCAWNqIG6Xy2VgXsB9\nEVCdTifG5iAoC9AXzw+23GA6CGrJ4/EYiQ3IXGfHnqLL4h5kMpm7d++CQ80w\nDEqKbreLWRGMiLRaLUJIv9/nOA6BTSLhI2FQKpVg0sDDILWi0+kwK4YT02Kx\ngFoAwii0+2azGcuy0HeBE2OYG8UyBv0Gg4HD4cDEBCo2rLgIBAKEEJwP2EeA\nwW6w/tCFR6KMHFSatZJaJPgmSqUS9POLFy8CpkUijickl8tB9gIPLcZjMFqo\n0+na7fbq6up4PG6322Co+Hw+sAplMlm32y0UCizLTqfTwWAAGmcikUCihY7J\n/v6+2Wx2u90ofLG5yWg0BoNBAHOQBen3+7ho5XLZYrHwPI+T8LcOl0VHHpWT\nSqUKBAI2mw1hD4U2ZqzVajVuAHwXQcXlcslkMovFgi4o2uUQsJ5Opy+//PIv\nf/nLbre7sbEBGBzBALek2WxOp1OdToc3JIRAYgh/RecTMwtms7lare7v76MM\nQgutWCzijkp6Kv1+H3xcIPZ4qPAjkkax7MleLqvV6vf7ITuABACcAeQ5arW6\nUqmAr9NoNILBoJTvgjPQ6XQQYtPpdCQSWSwWR0dHfr8f7WWWZavVKniGx8fH\n0WgUMrdIS4CgRaNR9MnwTRChdTpdPp8XBKFUKrVarUKhEI1Go9FooVBwu92r\nq6t49sbjMUaFp9MpbsFvRfmFX3I4HP7bv/2by+Waz+co/zGFjL42y7JAy+Vy\nObJJmUwWi8Wkq4MkAeEW9HAMQysUChRqmIdOpVI4+1Kp1MrKCpyV53mME9br\nda/XS57Is5nN5kqlApk0aYIUqJDX60XisVwuU6kUKi24JjoOa2trkvwlHo98\nPu92uz+m+oaQiaAr3W9stMMwXDqdHg6HDocD6CzLsh8TlHU6nbFYjOd5jCqc\nnJw4nU6wGhaLRafTqVQqKBZBQoALKpVKaCkggUGkx2zmYDDI5XL1eh17RBQK\nxb1796B+cOnSpUqlotPpKpWKlAhhMARd4mftn1+Ky+Imzefz/f39arUKQhYG\nToDte73ebDYLpBD1MsSswTaEYnW/30dElPBXdIzAj+73+4ia6+vrCISEkFQq\nBfAIQzUYRpXkMuH90kaNUqnk9/tTqRSeGaANIOSDXCYpJEBvq91uI4VFVl2v\n1+fz+b1791ZWVjBOjVdKKgqyU7ZYLECnxGsEQdjY2JBeA0q4pPKCWh46xqC9\no4GHgWHUr4FAAPRWhUJxdHSEgZ9gMNjtdiHS2Ol04MRyuVyr1Xo8HoPB4PF4\ngM8oFIqLFy9i1lyr1QYCAWBqoVCI4zie5/FI0zS9tbVFzhJT9qm4rEQEefjw\n4aNHj27dugVVIlxr+FY6nUZDFQEPjzggG8BVhBApSZD0ZgwGw87Ozng83tra\nQsqLwxElGnoNvV4P5yMAI3ALoX8h9YEFQcBEvzQ5Q56ob+BfAMGenJxgSQsh\nhKbpQCCQTqch4gIFVp/P9/rrr29tbV28ePHBgwcURSGrxim//J+75nCmY6pM\nOnbxzRHLwR8ASlWv15G1TyaTe/fuMQyTTCaXyyXcDmtvAZOlUim1Wr2ystLp\ndA4ODuLx+LVr16CWcPXqVY1GAy4O5mpu377d7/fv37/vdrsxxTCfzzFouVwu\nAX2g7gRf1uFwnEFBri/SZSW1ElzTnZ0dSfUcIF8wGESPvlQqraysAEMpFovx\neBzHPVrzeBOKok4nCbjx/X7/1q1bGo0GDTAclGAzYmis3W4jOdZoNM1m8/Dw\nEFwTScoPERGpBcL56Tl9uNp4PAZPtFgsYmcn+NSYQYecBzDaW7du2e12fCg0\nPkBekfSLpHdWKBQmk8lqtcJTgVKjTj86OoLXQtENHy2TySBGhKwAPWFclnw+\nb7FYwJTAzo/JZIIBw1KpBMqvw+HAWSQIwnQ6RYcZh0Y8HrfZbO12G3jFYDAI\nBoP5fP7mzZsGg+H4+DgcDiP5RkJ11hLZL8ZlpbN7NpsNBoODg4N+v48mO/In\naMKh4YRACO0tFCiSnAzHcUh8CSFYqSVdLNCgMAiF2hY3A/8Xd8vr9W5tbaHH\nGI/HCSHHx8dqtRoZMyJ9JBKBc6Pgk9CJWq2GPHU8HmMgwul0jkajZDKp1Wrh\n5Zj/aTQaa2tr6NOiZ1soFPBrIsAjEUROKXuiuYkDRC6Xv/XWW9/4xjcg5prJ\nZCKRCIbFwU5cWVlhWTaVSqG2QxvFZrNhMB3cSKwdRZ5gNBqxyAB6NuDFS3M4\nvV6PEOLxeAKBQC6Xm0wmQLiRnLRarUuXLoGboVarocqBBgq6OSzLPmvnfDou\nK2WuOzs7oOVj1O7q1ascxyWTyV6vB4IsmBYGgwH9m729vUQigRlOSAwtFguo\nxIH0JJE1cdchiYX2rLRMHm/b6XRu3rwJ2Q64EYa8QWRGDirpfoLYD14BZhIB\n3+JpUSgUoNg6nU4QXvf29tbW1nq93mg0eu211zKZDDQW8FQQQtDmABMcH9Rs\nNqHoCN9VKBQgE4ZCoWAwmEqlrFYrlGUxnAMRGkgmttvtZrPZbreBXlutVjzM\n0HwolUo6nS4UCuFKSkkRKJRQo1EoFJhcB0kATd1erwd0dvzEwA5TKpW1Wm0w\nGKjVaoAteCuWZS9cuEDOXiJL/o9TCfDX0Wj0L//yL//5n/8ZjUZxie12O4B9\nh8Phcrl+9rOfNZvNGzdu4EQrFos8z2NIdW1tzeVyYTIEQuxmsxnzgHg3i8WC\nsVtBEMLhsM/nM5lM7XZ7c3Oz3++DaNLtdl0uVyAQgOogVmg/evSoVCohu4BO\nG14GQhaieL1eB/cU8yrSRoNsNouBdY7jCCHtdhvjFZj0grOCWw2QAdQnYFgU\nRQHDgsQQuF3Y3sHz/MWLF7GnoFgsYtYAn1itVn0+Xy6Xa7VaarXa7/dXKhVU\nmTKZLBAIoIbz+/2j0QigLEIjTdOYTYAWJ5INlUoFUKXdboMSifFaq9VqMplS\nqRTHcSD7FotFfCJGGlFvAP3FE3sGXfY3j7JIyMrlciqVSqfTAER4nu/3+2az\nGWK8hBCr1frCCy9kMhmMFgKQ9/l8X//61/V6PbAqeAxuM8pqhEb8VaFQYFpL\nr9dPp1OEbZlM5vP5oJ2INGMymayurv7yl790uVyHh4c0TUPWCic+Bvw/+OAD\nSHRhbGY8HmOwG11WSUfIZrOtrKwsl8tkMmmxWH7605/2+/1vfvObIItBVNDt\ndkPhAvFbKr+wVxG7X6SqDh2TfD4/HA6hloeQDIWBbrcLHgVgkP/4j/+4cOGC\nKIp+vx99wVarNRgMer1eNBo1mUz5fD4aje7s7LAsGwgE0HuDxplMJoMyH9oi\naBZCP0pqhSC5TyQSy+XS6XSKooiwjckLIN9Op/NZe+YX7bKogkVR3Nvbm06n\nKysrJycnhUIB66bQmEVrfjqdRqNRbKAMhUIejwfegNYobj8KZ9w5EP+QB4Nl\nB6o8ZlaBR+J+Ax5H9CJPiqerV6/euXNndXU1Go0+ePCg3W77fD4gEpcuXZIG\nddBZhW+B+4yZKnge0mtBELrdLtDKS5cu4f+CICEIAtISuGO32wV5BVO1tVpN\nFEWj0djpdICsQXHjpZdeQjIql8ttNlsul1Or1cfHx91u99q1a8vlUq1WZzIZ\nXJ9YLOZyuUBBBIbV7/fT6fT6+rogCO+++y5oK7lcDokvlGNQZQ6Hw3q9jqkh\nKGgQQobDIRaEr62tlctlScQTY0ioUFFZEkJWVlaetWd+cS4rAYrNZrNSqRBC\ndDqd1+sFbxpCfxLzEpD+vXv3wBPQ6/WgYxJCQHuDehwmvHu9Xi6Xs1gspVIJ\n9NNMJoPRrq2tLfSiwAZEn4YQgpMX3S+glf1+PxgMQkgZXrtcLsvlcjQahU+A\n3Yd+1Ww263a7KpWqWq2i4YSQDMXmRCKBmvLGjRsgaKfT6a997WvlchkJNNx3\nsVhYrdbZbHZwcGA2mzHdIBXdaB9IXV/0e3u9HgaMy+UyVF1x2oii6Ha7w+Ew\nVJQLhYJOp8PsEITihsMh8F2LxVIsFmmaDofDeM6l563dbqPFjTxBLpdHIpHJ\nZPL48WPcGjRj/X7/o0ePMIoD2rHFYonFYjiOJM3TZ+2f/2eXlYCbjz76CPwS\nQgh6ORJzRSrkEYFwxLTbbWyzBsKPnS2tViuXywWDQXC9QbCS6m6ICOFGAi+U\nUFK8ObS6cKzb7fZkMkkIgWoGMkjAQJjtTqVSmBGQNO2Wy6VOpzs5OQGWnkql\noNgFSu79+/exQx4DkhD/QYDE0+jz+TQaTavV4jgOzwPGb7B2BtO8eAZwpGi1\nWrVa7XK54FWPHj26fPkyPKNUKlUqlUwm4/V6oecArirabLiekLHR6/UHBweb\nm5vhcHh3dxf6c0ajEfQXnU6HNrVKpfL7/eg/NxoNHHcAH6fTKZ4ELADzer0H\nBwcnJycAKNB8sVqt5EzCW7DPWn5JkD4K6mw2i05jtVrFwF2tVjObzVASQEqH\n3BSqsRaLxWw2Y+wYARVzSGjtSHWMz+fD0rbRaOR0OnU6HfLOYrEI4hywz+Fw\nCB0kQgjqJFCi0Ib1+Xw0TUO6Z3t7mxCSSqU2NzcXi0Wv14PLolgG0onRK4VC\nAc0VtVotiqLL5QLVBlU2GrMAR1Gx4cCFDgDoY1Bim8/nKGug86xWq6H3jXED\nJJd6vR4C82q1+uTkxGQyQexWWj0uiqJer8cJk81m0VYoFouABRwOB9rXoVDI\nZDIlEgmDwQDYGP/Y7/cLhQJ6BIlEghAyGo36/X4sFrPZbNVqVRRFaJVqtVq/\n3w8hXqvVCrXaYDCI0cuz6bKfI8rKZLLj42OpB1soFEwmUygUAhcbJRHsY5sI\nwKKqVCpyuXx7e/vBgweIIthmsXyyJxui7IIgxONxKM8BrURLDBEOhylmryEt\niLY4wzC1Wm19fd3pdAJzVSqViBmVSuXGjRuQwABvC01aSC1hGmwwGKBRiabG\nbDazWq3o3Foslk6ngz0zYHsBqfX7/WhkQBSx1+vhycEALeYNMc6KXBkjvpKc\nG0VRqFCNRqPX6wUAjKkbg8GAolav1wuCsLq6+vDhQ1EUL1y4gBh/eHg4n89X\nVlbw/e12O74M/kR5NxwOHz16hDFgjuPcbrfVar13757D4YCPulwugDBQW0K9\niCiAg/Fs+uvncFkwAw8PD/GLZTKZYDAoLW0Df4A82XxJnkzuo6DG6dbtdgOB\nABhM0C4FiqlUKnu9XqvVQgJw4cIFuDhcBwsBZTIZ2vSCIPA87/f7aZpGeEYJ\nCGktNCwMBgNqIAh4oasErhO8BGV1r9fDNDaeBzQUhsMhEsGHDx+i4zCdTjmO\nAwS2vr4OUBMBFUu+AeVubW1Vq1WILYOOjRWh4DE+fvzYbrcjYGPeWkpOwLiV\n1sZiPRhkEPDAICuFVBnycoqikKwzDHN4eDgcDpGggw6BcQatVmu327GfFrP4\nvV5vZWUFOEmlUgHIyLIsFDyr1SqYEtDuPbNZwWd1WQim4vRELIzH451OJ5PJ\nIJ8zGAyIUmi6SMRTi8WCv5IntH+4Na4sqNAgYcCJESBxrDMMg8ZVPp8HkQU6\n1IIggIAM3b/j42O5XA5SPdS1EHfJk4acx+OBR2azWRBEUN5B0A/7t5D2ocrZ\n39/3er14kKBhv7m5ifCPnpDZbAalQa/XAy5tNpuZTAawA56xTqeDNhtOj16v\n5/V6UTsGg0FocoVCIVEU0cfq9XogBg0GA6xCgGIXlHUIIViaQFFUqVSKRCIg\nD/T7fZlMtra2Rp4ERehrwEHRbwMhAQCIRPXCKqVwONxoNGq1Wr/fh64eypJn\n7ZNfhMtK8VL2ZFcM4P3Hjx8/fvz49u3bIG5fuHBBq9VCSCcUCoGgCV4VeKg4\nkSUp/sViUalUwuEwlvgQQoBiiqJYKpWAQ2G8++TkxOFwWCyW4+NjbF+C5ua9\ne/ewIw4KsvP5HEAj+kkQDZA2t4iiiEoLY4AIQhIQgdCCsx7El1gsRtM0RCuw\n8QveA6xtOBxKyrI4NyBQB1FlfPNGo8HzfCAQgLaXNHqAmRy8DGLiPM9vbGws\nFgts2gFECJJDq9UCRQtw2/b2NsdxiUQCnGNs1pWGIsHVQvsKIeDBgwcWiwVa\nRovF4sGDB6FQ6Pbt291uV6/X6/V6kLYQtpfLZTAYJGc4K/isLguvxTmO1h9a\nhT6fT9IswhjJaSodRlJDoRC4m6VSCRdCp9NNJpPlcomzezweHx8fI29TKpVO\npxO36sqVK+12G3qU0WjU6XS22+12uy17smoec7MMwwAkQoMqm83CX0GGQmQi\nhPR6PWQIyHDQcOc4Dt9qNBqBhA+oNRqNAjaSdhXBlfHQArjFlgSoXWDk6+bN\nmyjG0SDV6XQcx+n1eqfT2Wg0EokExncBtOGd0QHBOY78G+GgXq8DmcKGTnw6\n2nvdbjcYDA4GAzRyIbuLqw2XhTwoTgxQDlAtADIHLRivxy+IcgKdNiieP2uf\n/IJcljzR4AWHGiuDUTLfv3/f5XJhZtBms9VqNQwTE0IwYYImkIRJgaGCuQN0\nBdGF2tjYaLVajx49wo/TNA0pA6BaNE1L+4wsFgtQ4XA4XC6X4VJQ/oGrGQwG\nbK1gGAZAAYi2qVTK6/UyDPPgwYPr16/jRyKRSKlU+vGPf/zd7353c3MT640I\nIdJWTpRf+A9CCPQY8S/T6RQiX3B9nNQnJycYUEFAxVYcRG7UAMPhUBqXwAcB\n9wXYB8IkYjAeAMR1CWoAuhKNRr1e7+PHjxEjJS0SPL3Q1ICcciaTyWazkNnC\nHAeo4vfu3UNrBkyj0WgE+aaznMh+PpclTwS2vF5vKpWiadrj8Xi93kwmEwgE\n4BwYk5dcXNoXB79EKoa9r6jTMaqBg1Wn0+n1eo/HAzjivffei0ajSB4wWarV\nalUqVblcnk6njUYD1NXTlH4UZEgZh8Phw4cPI5GIzWbDTk3MzMCH3nrrrXQ6\nfevWLdwthUJx6dIldJvB38NDksvlANOWSiXAdsvlslqtLhYLMFPBqyoUCkCa\nMNCGnm2/3/f7/Zj8Bu6BMgtonbQdBM8bOECIu3a7fWdnBxOdg8EAYB9KUoji\no6QbDAZYx2w0Gnd3d51Op8fjQc4DSQTIfvV6PQg/4oByu90gLeFUhCBNrVZb\nWVkZDocYDznj9lldVqLqSUuQ0aKEcPZHH30ESts777zjdrtBHMHzSp4UXmgS\n4vnG/T4+PoYYFs5HnE2YOuz3+xjqUigUV65cmc1myWQS+wv29vYwXmuxWKRd\nBviS0rgVvqHT6azVarh/PM+r1WoMcHMc99JLL2GlgrRxBLpdIPSg0kLf3+/3\nQ/0FikaYmHjvvffAmAFbL5FIQIL83r17QJpffvnlwWCQz+eRmuMxLpfL2OMs\n8W+kQIBdN0i0KpVKIBDA5fX5fKlUKhaLqVSq/f19j8eDjUvQ3/T5fEajsVar\nQZgDJw8Yc4QQEBiq1aperw8EApBi1ul0+FnU0FLCgMABoshZDrG/3mWl0SWs\njcUZB8eVZoURMHAAYdUJy7JIGVF+wt2xpU2tVmMmG2hUtVrN5/OhUIim6Z/8\n5Cccx7322mtYJYDCmRAC0SG73Y67rlAoXnjhhUePHkFI5vT1lf5b+kQMhyFb\nKBQKkHifTCZA7MFgAp+QoqhUKvX1r38dByhcFuPsgEsRL5H/YdQCKBh2dcfj\nca1Wi6a/zWZ7/Pixw+FwOByABdBUA3ogKRtIVxhH0Gw2S6VSpVIJVaw0AokM\nYblc+v1+9LSRJ+ABRpV28eJFiD+gk4yFj+gSQ/js/fffbzQaeOQsFksmk8H4\nbqlU4jgO9C6bzXb2E9lf77KSOE8wGFw+Wcst0QykdfQbGxsajSYUCuXzeZ/P\nB6V5FK3IDSDG7fV6WZbFNAH0/dAVA4xACIFGmsPhAEIEwAu7WL1eL2ZfV1dX\nsSykVquhwSs1xGX/czMtTdNra2uoS3BEQkxJ2vc5Ho+xrxVDfC+88AKGC6CL\nDT8D00VCkeFkoVAoEok0m827d+9OJhPMqMjl8mvXrv3pn/5ppVJxOp3IgNHv\nAOQiYdXSMYX+CCEEwzAYhQWfGCQKpLD9ft/hcNhsNgCoKysrIMFh387W1pYE\nh2NlEiSYsI7BaDReunTp9ddfB9SDhLvVan3rW9/CiC+ohuDcYAfYc5LL4opI\nJxoKXlxWyJwrlUrwqoBWEkLAN8Bez+l0ipAJghz+LwR88LJeryeXy69fvw4N\nHxQraORC9hU3AJkuBhwQie/du4cy/7TKJ0oWjDjjm6MQHI1G2FsLJ8bXRg/P\nYDB4vV5BELBNE0QFdBx6vV6j0QiHw0gYoAGPsnJzcxNUHixGzGazKLwgf4TV\nIHq9HpkleJIQkQXNV6vVDodDiGEZjUa0UTAbh4cQGh+1Wm1/fx+/MhY5AciT\nQDd8KJhcyBMIITs7Oxiz+fDDD0F4t1qtKpWqXq+zLLu/vw8UD5k3akqJH3KW\n7X80V/83m06nIG2RJzMC2HdqMBjA5kRrfrFY1Ot11ECIjuBqpNNpq9UKVgre\nRJrpw3+Lolgul41GI8jdIHPYbDapRQSHxpYfOBySE6haYHniaZfFO0DlT2JH\noHOGTiyOC2i3A/rFk4D+03A4BI26WCzW63VklkajUUJkx+MxJljA6pcSmEaj\n4Xa7K5UKloJgugHJOjY9QWpAJpNhCBabwlFC4fsolUocNRBahHNj+RSaveiH\nSU+dKIrFYpFhGBBnwUEDGogEHVcVIR/8d5/PBw3kbDZrMpk6nQ5G3KrV6re+\n9S1gFGc5yn4mlz23L9zgFqVSqVarAU0jTzCWyWRSLpdXV1cBjECn1ul0YiC2\n1WqBgSWN6ULtEJXl6uoq9tXs7e1dvXr16OgIm0pzuZy0ilEUxVu3btE0XSgU\nsLSn1+sdHh6urKx87Wtfw1zuWXbZz5cY/F9uz2d5/zN4pZ7e/Vsul+gMFwoF\n6SOQL0GhgxACTTtMwMtkMiyRa7fboihaLBacLaIoejyeWq2G7glUP7DmfGVl\n5ejo6P3338fqFCxdQkGJjacg76pUKkw0PeuL/Znsc4Bcv/FnfJafPYPO+uV8\nMZvN1mw2EQKRaWCyHAoDmCVGX0DaJrm1tSUIAkRCoRQL4jZ4lUgtsM0Z8s6D\nwQDTaZVKJRKJIF9nWTYajUJwBAoJKDTP8r34/+7IeWLwDA0hPJlMtlotjI5B\nc8RkMgWDwQcPHkhypWiJg4WDjRJYeYBdqtj3CTIxmAzQEj05OYEAj/SJNE2v\nrq5iVyho4BzHHR0dYQPP7/3e75219Z+ftC9PeP7cPmnwDLfbbbFY5HL5gwcP\nsPBMrVZjDAsLSzAVfPPmzb29PfRyAVyAWo6JmsuXL6PNAfE5DNUhuOIBODg4\ngJgf5vIh7IX5Np1OB1qFJAb1rC/Mp9nT3a54bp/FsKcXypBoZY/H42QyCSE9\nYCmQ57bb7SAQYoYRYMLW1ha4EHq9Hl2YbDYL4djBYIA1dKCrGwwGzCZJCy4x\ngYfddCqVyul0nnF/JYScOfXQ30KT+mEymQyp7b179zDkCPF4iR4J4QWFQqFW\nq3O53L179zAi5vF4dDrd8fEx0GIQxjHyBbxvNBpVKpVKpQLNhHw+j8V6UPVD\nw0Kaijvjdp4YPHuT4GdCyHQ6hbzIcDjEHA4CMLiRLMu2Wq1YLNbr9fL5vNPp\nzOfzRqMRjY/xeHxwcGAwGPx+P1Z3qFQqjuOwaGQwGIDbCYk0bAEBPj2fzzEq\n95Ww8yh7Vgy9Fb1ejyFbqI17vd61tTUw3KEcRQhJJpMfffQRBCJAq713714u\nl7t+/TpEwEEOBmEXgh3oudA0zXHcYDDAQBHmJT/88EP089BLO/vl+LnLnjnD\nDFypVDo+Poa6Wzwef+GFF9BiDAQCxWLRbrcrlcpUKjUcDl0uF7p68PiHDx/y\nPH/9+nVME2HHOYQ4s9mshGehtQaGscfjuXDhAlavnX07TwzOnKF9AN43qDM8\nzx8cHFAU5XQ60aTVaDQmk0mn0x0eHvr9frvdjulwjuOsVqvL5VosFjqdDvpc\nxWIRVVcmkzEYDK+88gr2ozscDrxPuVzmeR7yoGffznHZM2SSYP/bb79ts9nq\n9brNZkOYzGQy8Xg8lUolk8mrV6+WSiWWZbGXL5FItNttKPYRQiQN7kajYTKZ\nXC4XRJDS6bRWqwU5WKfTQXTH5XJVq9V4PH54eBiPx69cuXLGQVlyHmXPlElT\nshqNJplMgvNuMBgwjzkej+Px+HA4nEwmv/u7vwtBO/A/IZuMPWGTycTj8YBY\njN3TYIWDhQeyL9bWQUAEtZfBYDibmxE+aee47BkyRDhIOkCltNlsQgYechsQ\nI8OURLvdjsVi2DWJtd+pVAqLEUG1QcDOZDKY18UaMBBtA4EAOmpQ58QgWiQS\nOcsiMZKdl19nyOArSDGhIGswGLa3t9FliMfjHo8nFouZTKZCoWC326G0N5/P\n7969G41Gb9y4ATpyIBBoNBoYIwNbkmEYo9EI9S5pgL7RaIBSI4oi9MSf9QX4\nTHbusmfLUFqAapjL5YxGI6iJWAmB/eWQjoTMlMFgAO0VauDYt4rZIYg+iaII\nmRKsP+n3+1g24fP5Njc3sSgFu1S/Evxucp7LnjUDOostz1CmwbhvNBqFLg50\n7jmOKxaLUCjD0KJGoykUCoPBAGNkFosF03XD4XB3dxdxGmMX4HaBpC8IQiKR\n2NrawraPZ/3bfyY7j7Jn1FZXV9fW1iaTSaPR8Hg8hBAM9mDW0uVyHR0dYYcP\n+DQ//elPISyuVqvNZvP29vaNGzew4Uer1VosFrvd7nK5vF4vx3F2u93j8cTj\ncUzOQYT5zO7z+JidR9kzZ8ho9Xq9JB0nCT96vV6IOw0GA5/PBzWkVCr13nvv\nvfDCC8fHx5A1zuVyBwcHSHZbrZbFYvH5fIFAAAopCLQMw2DJgkajwb67M151\n/f/X5xyXPbMGAAF8WZ7nIXZ2cnKyvr6+t7en1+sbjQbDMLlcDrlpr9eDolS1\nWk2lUjzPb29vQwg1kUiIovjqq6/u7OxcuXKlVCrlcjlML/b7fSg8v/LKK2dt\nKfivtPMoe3YNYQ8iRQzD2Gy2d955B5rSFotFp9NBVgIi9y6X6+7du51Op1qt\nXrt2jRACtUPsubVYLJABBZtRJpOB341Yi1mGr0rwOs9lvwImSXWsr68XCgU0\nV6GxnM1mkaf6/f5QKDSdTlmWHQ6HjUZDLpfncjnADhRFGY1GpVK5traGFxSL\nRSjsAmQAT/zZ/naf0c4Tg6+MIU+o1+uDwSCRSCBS7u/vD4dDiD/MZjPsoUgm\nk48ePXr11VdRrm1ubr777rvXrl2bz+cAs+r1ukajgfLS5cuXAdmurq4+k9/o\n8/7Uuct+JQ141tHRESSUwXmVPVmFfnBwMJlMer3eSy+91Gq1IA8liiLkbw0G\nQ6PR8Hq9drsdIiaiKMbj8ZdeeumZEAzG43G/30ew/yyvP89lv2KGEOP3+9HB\nwqmaz+exJNHj8dy5cycYDEL3ThAErVa7vb1tsVh+/OMfYxOTWq0Gh4ZhGDTJ\nIOQP0f0v83fp9XrFYhHCYRDI+Sx27rJfMZNGGJRK5fb29ng8/vDDDyEFjs3U\nWN9gtVq3t7ehILuxsXHv3j2ZTHbt2jVsbLXZbKPRCOukTSYTNP9YloUc3VMN\ntKcFK7CAd3V19XP1is8Tg6+wSShYq9VKJBLYrY6JcJZlC4UChLn39vaq1SoU\n9LErGIv1VlZWIB7jdDrdbne5XP6DP/iDpzcUftpZoRctSRF/LjtHDL7CBgeV\ny+UOh+PmzZtms9nlckm7TAACZDKZUqk0GAx0Ol0gEDg8PIQKNFZOhEIhr9eL\nTYAXLlxANvmUoiykKZEM1Go19Ic/L1xAzqPs82FSXOx2u++//z7Isi+//PIv\nfvELTIeXy2XQaN577z2v1xsKhUKhULvdBugbDAavXr36lEAu6SjAior5fO5w\nOLCs9Dd7Ns5d9vkxaajh0aNHjx49Qs8MKp8ajQY7JjKZzPr6eq1Wk8vloVDI\n7XZfu3YNVPGnkQ9IwFypVBIEwePxBAIBQgiGJSX59c9l54nB82PIE1iWvXHj\nxne+8x1pwzJFURsbG4QQrFmEHgdFUbdu3bp+/TrWYn7h/iopM9y9e/cf//Ef\nj46O3G53IBDAPohUKoUFmuSUdPFnfOdzxOC5Mjjfcrk0m81/+Zd/WavVtra2\nfvGLX2D/T7VaRYKr1WobjUYmk4GQzG8W7T7F4Kz9fr9Wq3344YdOp/PSpUuQ\nEacoCs8MhLUhsgQ1fbPZLO0y+hQ7H6R53kwS4IcedSQSgbJBs9lkWRaa+icn\nJ4hqdrvdbDZ/ISFWyjChbVMqlQ4ODkqlkgT6oi7UaDTlclkQBKPRCK5ZKpXq\n9XoymcxoNOp0ul//C57nss+xSbjSYDB46623Go0G2mYcxxkMhtXVVUEQ/uZv\n/kaKsvDdT/Fg6X99ih4wVlR/9NFHW1tbiUQCER3zktvb21jDxrJsKBQql8vL\n5dJqtdpsNoPB8Bm7X+e57PNs0uorjUbz7W9/+9VXXx0MBlh2js1kGGMkp1JP\nciq7kBAoLH7CAA8hBAta0CXG4hOAEvl8vlgsvvHGG81m02AwYEdxu91+8cUX\nbTYbz/Nutxv7+jBYwbJsMBhcX1+32Wyf0V/JeS7722DQmyeElMvlQqFA07TD\n4VgsFoeHh3/yJ3/SaDSkXVTdbletVqPjD3lkuKwoiru7u4VCQRRFv9+PozwU\nChFCfD4flrAC3MWGcuyGPjg4aLfbcFbw0x8+fIgdT/F43OVySXMQnyszOXfZ\n3wqDQ7z55pulUslut2Pbx8bGhsViwY4WbI18++23VSoV9OowE+Hz+bBdbHd3\nt1KpYJO61Wp1u92Hh4d2u73dbhuNRr/fj5VSWq12fX29UqlAijkej+t0ut3d\n3WAw6PV633rrra2tra997WvSCjTyie1Xv9bOXfa3wrCsqtPpGI3GTqeDPX7o\nmfX7/TfffBPLc+bz+XQ6ffvtt7HC3GazDQYDh8Oh0+n29vZsNptcLoeMfbvd\nhsI4doxhdc+1a9cw5GMymTQaDZbztFotsHINBsP3v/99vV4PDPg3rvnOXfb5\nN0BLDx482Nvbw37327dvUxT12muvVSqVv//7v+90OmazGXp177zzDvaI7+7u\narVarLybTCYsy3Y6HY7jIpHIYrHgOG5jY8Pv97/11luxWGxtbY0QotPpeJ6f\nzWaZTEatVmMtFMMwr776aiAQgK7H/8VZYecu+/wb/OOf/umfyuWyyWTCTveX\nXnrpX//1X7GXZmVlJRQKHRwc1Ot1nU53dHSEbWG1Wk2r1bbbbZzgvV7P4XBg\n855Sqex0OqVS6fr161C7xybuxWIxm820Wq3T6Ww0Gqurqzdu3EBaTL6g9T7n\nLvucmxRi33rrrWAwiN19mGs4OjqazWZOp1MURSwmv3v37tramt1ux+JBhmEY\nhplOp5PJhOM4rVZLCIFUqMPh6Ha7vV7v4OCAENJsNlF19Xq9CxcuXL58+dKl\nSwqFAnuAf7Oc9X+zc5d9zg1e8g//8A8URQUCAavVenh4eO/evXQ6vVgstFot\nz/PBYPDo6IjjOLSjoCIzn887nc7JyQkhxG63v/jii/l8vlwuezweILuQseE4\nzuVyQR9co9Hcvn17ZWVFoooDC/tiW8HnLvs8G0JsKpW6c+cOwzC7u7uAt6BU\nZ7fb+/3+aDRaLpeYL2cYBoq2iURiNBphuAU7ybCBWq/Xdzodq9XK87zP5xuN\nRmtrazdv3rRarTqdDnOR+GjkAF94K5icu+zzbTiR33vvvW63GwwGKYpqNpvA\nsMbjcT6f12g0drsdztrtdhUKxf3796PRKLoGjUbDbrfDEfP5vMlkUqlUFy5c\n0Ol0EP0MBAJXr16VZmBAeYGbPr3RhnOXfT5tsVhIvStBEORyebfbpSgKrkkI\nwWCjTCar1Wr1eh1hstVqjcdj+Ot8PjcajSsrK9D9dLvdXq8X+7IpijKbzTab\nTa1W4+O+2Gz10+3cZZ9Pk/ivcEEIdEJiAxtsGo0GRllomlYoFDzPQ1aREALB\n+1u3blEUtb6+bjabM5kMFo4uFguz2YzATE6lql/mXO65yz6Htlgs3njjjVQq\n1W63W63W4eEhouNisbh161YkEtna2vrpT396cHBgMpl4nhcEwefz0TQdCoVs\nNttsNovH4xaLBWRFjUbjdDqXy2UwGITaPXkSVp9Gqvpr7dxln0NbLpdvvvnm\n+++/j74rulM0TV+4cOH3f//3Dw8Pf/KTn5ycnNy6dQu6s1euXLHb7ZDzxnEf\nj8dlMpkk8YncQHrzLzmsfszOyYfPlUnS9T/4wQ/q9Xqn0/mrv/orp9P5F3/x\nF1ardWNjA7KyKysrHo/HYDDcvXvXZrN94xvfGI1GWq0WjVzsc/zkO5OzoUl/\n7rLPlcFlf/CDH7z++utqtfp73/veH//xH4uiOJ1Ol8vl3bt3oWT/6dPYknee\nHTc9becu+/wYAKadnZ0f/vCHNpvtd37nd1544YVPzskAiiJPfPH0FAM5ew76\nSTt32efHEGL39vZomt7a2jrtgvhf8NRnUjN9gXbuss+nAZT9qnvnr7T/B1NB\nrKOSGqpBAAAAAElFTkSuQmCC\n","encoding":"base64"}},"public":true,"created_at":"2014-01-14T18:38:24Z","updated_at":"2021-03-30T06:17:25Z","description":"New York Census Tracts","comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/8423351/comments","owner":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"forks":[{"url":"https://api.github.com/gists/8460692","user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Bostock","company":"@observablehq ","blog":"https://observablehq.com/@mbostock","location":"San Francisco, CA","email":"mike@ocks.org","hireable":null,"bio":"Building a better computational medium. Co-founder @observablehq. Creator @d3. Former @nytgraphics. Pronounced BOSS-tock.","twitter_username":"mbostock","public_repos":88,"public_gists":1043,"followers":23371,"following":0,"created_at":"2010-03-25T22:02:56Z","updated_at":"2026-04-10T07:01:19Z"},"id":"8460692","created_at":"2014-01-16T18:37:49Z","updated_at":"2020-02-01T08:57:15Z"},{"url":"https://api.github.com/gists/db17b68902437d0e3279","user":{"login":"dholstius","id":825962,"node_id":"MDQ6VXNlcjgyNTk2Mg==","avatar_url":"https://avatars.githubusercontent.com/u/825962?v=4","gravatar_id":"","url":"https://api.github.com/users/dholstius","html_url":"https://github.com/dholstius","followers_url":"https://api.github.com/users/dholstius/followers","following_url":"https://api.github.com/users/dholstius/following{/other_user}","gists_url":"https://api.github.com/users/dholstius/gists{/gist_id}","starred_url":"https://api.github.com/users/dholstius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dholstius/subscriptions","organizations_url":"https://api.github.com/users/dholstius/orgs","repos_url":"https://api.github.com/users/dholstius/repos","events_url":"https://api.github.com/users/dholstius/events{/privacy}","received_events_url":"https://api.github.com/users/dholstius/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"David Holstius","company":"Bay Area Air District","blog":"","location":"San Francisco Bay Area","email":"dholstius@baaqmd.gov","hireable":null,"bio":null,"twitter_username":"dholstius","public_repos":43,"public_gists":65,"followers":23,"following":8,"created_at":"2011-06-02T18:34:58Z","updated_at":"2026-03-12T22:11:54Z"},"id":"db17b68902437d0e3279","created_at":"2014-11-13T17:26:14Z","updated_at":"2015-08-29T14:09:28Z"},{"url":"https://api.github.com/gists/686065d9a31ab309b5dff75df430b62b","user":{"login":"mingderwang","id":47238,"node_id":"MDQ6VXNlcjQ3MjM4","avatar_url":"https://avatars.githubusercontent.com/u/47238?v=4","gravatar_id":"","url":"https://api.github.com/users/mingderwang","html_url":"https://github.com/mingderwang","followers_url":"https://api.github.com/users/mingderwang/followers","following_url":"https://api.github.com/users/mingderwang/following{/other_user}","gists_url":"https://api.github.com/users/mingderwang/gists{/gist_id}","starred_url":"https://api.github.com/users/mingderwang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mingderwang/subscriptions","organizations_url":"https://api.github.com/users/mingderwang/orgs","repos_url":"https://api.github.com/users/mingderwang/repos","events_url":"https://api.github.com/users/mingderwang/events{/privacy}","received_events_url":"https://api.github.com/users/mingderwang/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ming-der Wang","company":null,"blog":"","location":"Taipei, Taiwan","email":null,"hireable":true,"bio":"# Ming-der Wang\r\n\r\n- **GitHub Username:** [mingderwang](https://github.com/mingderwang)\r\n- **Bio:** I'm back!\r\n- **Location:** Taipei, Taiwan\r\n- **Hireable:** Y","twitter_username":"mingderwang","public_repos":1455,"public_gists":1885,"followers":198,"following":556,"created_at":"2009-01-17T03:05:09Z","updated_at":"2026-04-08T01:39:12Z"},"id":"686065d9a31ab309b5dff75df430b62b","created_at":"2020-02-03T04:00:18Z","updated_at":"2020-02-03T04:00:19Z"},{"url":"https://api.github.com/gists/08a511b257e9a06f109143faf1b8f489","user":{"login":"curran","id":68416,"node_id":"MDQ6VXNlcjY4NDE2","avatar_url":"https://avatars.githubusercontent.com/u/68416?v=4","gravatar_id":"","url":"https://api.github.com/users/curran","html_url":"https://github.com/curran","followers_url":"https://api.github.com/users/curran/followers","following_url":"https://api.github.com/users/curran/following{/other_user}","gists_url":"https://api.github.com/users/curran/gists{/gist_id}","starred_url":"https://api.github.com/users/curran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/curran/subscriptions","organizations_url":"https://api.github.com/users/curran/orgs","repos_url":"https://api.github.com/users/curran/repos","events_url":"https://api.github.com/users/curran/events{/privacy}","received_events_url":"https://api.github.com/users/curran/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Curran Kelleher","company":"VizHub, Inc.","blog":"https://vizhub.com/curran","location":"Albany, NY","email":null,"hireable":true,"bio":"Fascinated by data visualization as a means to better understand our world and communicate that understanding to others.","twitter_username":"currankelleher","public_repos":303,"public_gists":438,"followers":1960,"following":32,"created_at":"2009-03-29T19:24:25Z","updated_at":"2026-03-25T13:40:44Z"},"id":"08a511b257e9a06f109143faf1b8f489","created_at":"2021-01-26T16:56:13Z","updated_at":"2021-01-29T22:35:53Z"},{"url":"https://api.github.com/gists/543ea13517c101eef9a4e8f476a9a94a","user":{"login":"as77jc","id":73576315,"node_id":"MDQ6VXNlcjczNTc2MzE1","avatar_url":"https://avatars.githubusercontent.com/u/73576315?v=4","gravatar_id":"","url":"https://api.github.com/users/as77jc","html_url":"https://github.com/as77jc","followers_url":"https://api.github.com/users/as77jc/followers","following_url":"https://api.github.com/users/as77jc/following{/other_user}","gists_url":"https://api.github.com/users/as77jc/gists{/gist_id}","starred_url":"https://api.github.com/users/as77jc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/as77jc/subscriptions","organizations_url":"https://api.github.com/users/as77jc/orgs","repos_url":"https://api.github.com/users/as77jc/repos","events_url":"https://api.github.com/users/as77jc/events{/privacy}","received_events_url":"https://api.github.com/users/as77jc/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Amir","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":16,"public_gists":2,"followers":1,"following":1,"created_at":"2020-10-28T06:22:46Z","updated_at":"2026-02-15T08:11:55Z"},"id":"543ea13517c101eef9a4e8f476a9a94a","created_at":"2021-03-30T06:17:25Z","updated_at":"2021-03-30T06:17:25Z"}],"history":[{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"fb182232861027a6adecf8b2182ee7b3ef41c751","committed_at":"2016-02-09T01:58:53Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/8423351/fb182232861027a6adecf8b2182ee7b3ef41c751"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"cc37c20d919aace5b1f945f1dc94d351c332247d","committed_at":"2015-10-31T02:06:26Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/8423351/cc37c20d919aace5b1f945f1dc94d351c332247d"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"b60235956b58c6120134aa2338a724d390c08710","committed_at":"2015-06-11T19:09:02Z","change_status":{"total":6,"additions":4,"deletions":2},"url":"https://api.github.com/gists/8423351/b60235956b58c6120134aa2338a724d390c08710"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"c91aa4e0c12aabdc51dbd117dbd665baf79add22","committed_at":"2014-03-31T05:17:25Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/8423351/c91aa4e0c12aabdc51dbd117dbd665baf79add22"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"ad144f90c25ccfc0e2afa6e1ce1aa831183d5cee","committed_at":"2014-03-18T18:58:06Z","change_status":{"total":12,"additions":3,"deletions":9},"url":"https://api.github.com/gists/8423351/ad144f90c25ccfc0e2afa6e1ce1aa831183d5cee"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"bfa63fa09ea386f639fb9125a402aea42f5f62c9","committed_at":"2014-01-16T18:43:00Z","change_status":{"total":3,"additions":3,"deletions":0},"url":"https://api.github.com/gists/8423351/bfa63fa09ea386f639fb9125a402aea42f5f62c9"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"17a7f353c80ea94613819ef5263ea60779b59f7b","committed_at":"2014-01-15T19:06:03Z","change_status":{"total":10,"additions":8,"deletions":2},"url":"https://api.github.com/gists/8423351/17a7f353c80ea94613819ef5263ea60779b59f7b"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"a6cb2df0ed2171bc8a6c7e10906417b31574a255","committed_at":"2014-01-15T18:42:07Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/8423351/a6cb2df0ed2171bc8a6c7e10906417b31574a255"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"6cb8eb17198f12509712d56c6b82a9e1e245c9cb","committed_at":"2014-01-14T18:38:24Z","change_status":{"total":95,"additions":95,"deletions":0},"url":"https://api.github.com/gists/8423351/6cb8eb17198f12509712d56c6b82a9e1e245c9cb"}],"truncated":false}