Skip to content

Instantly share code, notes, and snippets.

@nitaku
Last active January 2, 2016 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitaku/8289840 to your computer and use it in GitHub Desktop.
Save nitaku/8289840 to your computer and use it in GitHub Desktop.
Fractal treemap of Kyupapa (321 leaves)
from __future__ import print_function
from itertools import izip
import csv
import json
from shapely.geometry.polygon import Polygon
import shapely.wkt
from fiona import collection
from shapely.geometry import mapping
import re
import os
# yield the leaves of the tree, also computing each leaf path
def leafify(node, path=()):
if 'c' not in node:
node['path'] = path + (node,)
yield node
else:
for c in node['c']:
for l in leafify(c, path + (node,)):
yield l
def gosperify(tree_path, hexes_path, output_regions_dir_path, depth_filename):
leaves_done = 0
layers = {}
depth_levels = {}
print('Reading the tree...')
with open(tree_path, 'rb') as tree_file:
tree = json.loads(tree_file.read())
print('Reading hexes...')
# iterate over the hexes taken from the file
with open(hexes_path, 'rb') as hexes_file:
hexes_reader = csv.reader(hexes_file, delimiter=';', quotechar='#')
for leaf, hexes_row in izip(leafify(tree), hexes_reader):
path = leaf['path']
hex = shapely.wkt.loads(hexes_row[0])
for depth in xrange(len(path)):
# add the hex to its political regions
ancestor_or_self = path[depth]
if depth not in layers:
layers[depth] = {}
if id(ancestor_or_self) not in layers[depth]:
layers[depth][id(ancestor_or_self)] = {
'geometry': hex,
'node': ancestor_or_self
}
else:
layers[depth][id(ancestor_or_self)]['geometry'] = layers[depth][id(ancestor_or_self)]['geometry'].union(hex)
# add the hex to all the depth levels with d <= depth
if depth not in depth_levels:
depth_levels[depth] = hex
else:
depth_levels[depth] = depth_levels[depth].union(hex)
# logging
leaves_done += 1
print('%d leaves done' % leaves_done, end='\r')
print('Writing political regions...')
schema = {'geometry': 'Polygon', 'properties': {'label': 'str'}}
if not os.path.exists(output_regions_dir_path):
os.makedirs(output_regions_dir_path)
for depth, regions in layers.items():
with collection(output_regions_dir_path+'/'+str(depth)+'.json', 'w', 'GeoJSON', schema) as output:
for _, region_obj in regions.items():
output.write({
'properties': {
'label': region_obj['node']['l']
},
'geometry': mapping(region_obj['geometry'])
})
print('Writing depth_levels...')
schema = {'geometry': 'Polygon', 'properties': {'depth': 'int'}}
with collection(depth_filename, 'w', 'GeoJSON', schema) as output:
for depth, region in depth_levels.items():
output.write({
'properties': {
'depth': depth
},
'geometry': mapping(region)
})
concat = (a) -> a.reduce ((a,o) -> a.concat(o)), []
window.main = () ->
### "globals" ###
vis = null
width = 960
height = 500
svg = d3.select('body').append('svg')
.attr('width', width)
.attr('height', height)
### ZOOM and PAN ###
### create container elements ###
container = svg.append('g')
.attr('transform','translate(470, 136)')
container.call(d3.behavior.zoom().scaleExtent([1, 49]).on('zoom', (() -> vis.attr('transform', "translate(#{d3.event.translate})scale(#{d3.event.scale})"))))
vis = container.append('g')
### create a rectangular overlay to catch events ###
### WARNING rect size is huge but not infinite. this is a dirty hack ###
vis.append('rect')
.attr('class', 'overlay')
.attr('x', -500000)
.attr('y', -500000)
.attr('width', 1000000)
.attr('height', 1000000)
### END ZOOM and PAN ###
### custom projection to make hexagons appear regular (y axis is also flipped) ###
radius = 6
dx = radius * 2 * Math.sin(Math.PI / 3)
dy = radius * 1.5
path_generator = d3.geo.path()
.projection d3.geo.transform({
point: (x,y) ->
this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2)
})
### depth scale ###
whiteness = 0.6
whiten = (color) -> d3.interpolateHcl(color, d3.hcl(undefined,0,100))(whiteness)
colorify = d3.scale.quantize()
.domain([0..9])
.range(['#396353','#0DB14B','#6DC067','#ABD69B','#DAEAC1','#DFCCE4','#C7B2D6','#9474B4','#754098','#504971'].map(whiten))
# .range(['#59A80F','#9ED54C','#C4ED68','#E2FF9E','#F0F2DD','#F8CA8C','#E9A189','#D47384','#AC437B','#8C286E'])
# .range(['#FFFCF6','#FFF7DB','#FFF4C2','#FEECAE','#F8CA8C','#F0A848','#C07860','#A86060','#784860','#604860'])
### legend ###
legend = svg.append('g')
.attr('id','legend')
.attr('transform', 'translate(30,20)')
scale = [colorify.domain()[0]..colorify.domain()[1]]
categories = legend.selectAll('.category')
.data(scale)
.enter().append('g')
.attr('class', 'category')
.attr('transform', (d,i) -> "translate(0,#{i*22})")
categories.append('rect')
.attr('x', 0).attr('y', 0)
.attr('width', 22).attr('height', 22)
.attr('fill', (d) -> colorify(d))
categories.append('text')
.attr('y', 11)
.attr('dx', -4)
.attr('dy', '0.35em')
.text((d) -> d)
### load topoJSON data ###
d3.json 'regions_depth.topo.json', (error, data) ->
### write the name of the land ###
title = svg.append('text')
.attr('class', 'title')
.text(topojson.feature(data, data.objects['0']).features[0].properties.label)
.attr('transform', 'translate(80,40)')
### define the level zero region (the land) ###
defs = svg.append('defs')
defs.append('path')
.datum(topojson.feature(data, data.objects['0']).features[0])
.attr('id', 'land')
.attr('d', path_generator)
### faux land glow (using filters takes too much resources) ###
vis.append('use')
.attr('class', 'land-glow-outer')
.attr('xlink:href', '#land')
vis.append('use')
.attr('class', 'land-glow-inner')
.attr('xlink:href', '#land')
### draw the depth levels ###
vis.selectAll('.contour')
.data(topojson.feature(data, data.objects.depth).features)
.enter().append('path')
.attr('class', 'contour')
.attr('d', path_generator)
.attr('fill', (d) -> colorify(d.properties.depth))
### draw the land border ###
vis.append('use')
.attr('class', 'land-fill')
.attr('xlink:href', '#land')
### draw the political boundaries ###
for depth in [1..2]
vis.append('path')
.datum(topojson.mesh(data, data.objects[depth], ((a,b) -> a isnt b)))
.attr('d', path_generator)
.attr('class', 'boundary')
.style('stroke-width', "#{1.8/depth}px")
### draw the other labels ###
vis.selectAll('.label')
.data(concat((topojson.feature(data, data.objects[depth]).features.map((d) -> {feature: d, depth: depth}) for depth in [2..1])))
.enter().append('text')
.attr('class', 'label')
.attr('dy','0.35em')
.attr('transform', ((d) ->
centroid = path_generator.centroid(d.feature)
area = path_generator.area(d.feature)
return "translate(#{centroid[0]},#{centroid[1]}) scale(#{10/d.depth})"
))
.text((d) -> d.feature.properties.label)
#land {
fill: none;
}
.land-glow-outer {
stroke: #eeeeee;
stroke-width: 16px;
}
.land-glow-inner {
stroke: #dddddd;
stroke-width: 8px;
}
.land-fill {
stroke: #444444;
stroke-width: 2px;
}
.contour {
stroke: none;
}
.category text {
text-anchor: end;
fill: #444444;
font-family: sans-serif;
font-weight: bold;
font-size: 14px;
pointer-events: none;
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.boundary {
stroke: #444444;
fill: none;
pointer-events: none;
}
@font-face {
font-family: "Lacuna";
src: url("lacuna.ttf");
}
.label {
text-transform: capitalize;
text-anchor: middle;
font-size: 2.5px;
fill: #444444;
pointer-events: none;
font-family: "Lacuna";
text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white, -1px -1px white, 1px -1px white, 1px 1px white, -1px 1px white;
}
.title {
text-transform: capitalize;
text-anchor: start;
font-size: 24pt;
fill: #444444;
pointer-events: none;
font-family: "Lacuna";
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.overlay {
fill: transparent;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fractal treemap - Kyupapa (321)</title>
<link type="text/css" href="index.css" rel="stylesheet"/>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="index.js"></script>
</head>
<body onload="main()">
</body>
</html>
(function() {
var concat;
concat = function(a) {
return a.reduce((function(a, o) {
return a.concat(o);
}), []);
};
window.main = function() {
/* "globals"
*/
var categories, colorify, container, dx, dy, height, legend, path_generator, radius, scale, svg, vis, whiten, whiteness, width, _i, _ref, _ref2, _results;
vis = null;
width = 960;
height = 500;
svg = d3.select('body').append('svg').attr('width', width).attr('height', height);
/* ZOOM and PAN
*/
/* create container elements
*/
container = svg.append('g').attr('transform', 'translate(470, 136)');
container.call(d3.behavior.zoom().scaleExtent([1, 49]).on('zoom', (function() {
return vis.attr('transform', "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
})));
vis = container.append('g');
/* create a rectangular overlay to catch events
*/
/* WARNING rect size is huge but not infinite. this is a dirty hack
*/
vis.append('rect').attr('class', 'overlay').attr('x', -500000).attr('y', -500000).attr('width', 1000000).attr('height', 1000000);
/* END ZOOM and PAN
*/
/* custom projection to make hexagons appear regular (y axis is also flipped)
*/
radius = 6;
dx = radius * 2 * Math.sin(Math.PI / 3);
dy = radius * 1.5;
path_generator = d3.geo.path().projection(d3.geo.transform({
point: function(x, y) {
return this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2);
}
}));
/* depth scale
*/
whiteness = 0.6;
whiten = function(color) {
return d3.interpolateHcl(color, d3.hcl(void 0, 0, 100))(whiteness);
};
colorify = d3.scale.quantize().domain([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]).range(['#396353', '#0DB14B', '#6DC067', '#ABD69B', '#DAEAC1', '#DFCCE4', '#C7B2D6', '#9474B4', '#754098', '#504971'].map(whiten));
/* legend
*/
legend = svg.append('g').attr('id', 'legend').attr('transform', 'translate(30,20)');
scale = (function() {
_results = [];
for (var _i = _ref = colorify.domain()[0], _ref2 = colorify.domain()[1]; _ref <= _ref2 ? _i <= _ref2 : _i >= _ref2; _ref <= _ref2 ? _i++ : _i--){ _results.push(_i); }
return _results;
}).apply(this);
categories = legend.selectAll('.category').data(scale).enter().append('g').attr('class', 'category').attr('transform', function(d, i) {
return "translate(0," + (i * 22) + ")";
});
categories.append('rect').attr('x', 0).attr('y', 0).attr('width', 22).attr('height', 22).attr('fill', function(d) {
return colorify(d);
});
categories.append('text').attr('y', 11).attr('dx', -4).attr('dy', '0.35em').text(function(d) {
return d;
});
/* load topoJSON data
*/
return d3.json('regions_depth.topo.json', function(error, data) {
/* write the name of the land
*/
var defs, depth, title;
title = svg.append('text').attr('class', 'title').text(topojson.feature(data, data.objects['0']).features[0].properties.label).attr('transform', 'translate(80,40)');
/* define the level zero region (the land)
*/
defs = svg.append('defs');
defs.append('path').datum(topojson.feature(data, data.objects['0']).features[0]).attr('id', 'land').attr('d', path_generator);
/* faux land glow (using filters takes too much resources)
*/
vis.append('use').attr('class', 'land-glow-outer').attr('xlink:href', '#land');
vis.append('use').attr('class', 'land-glow-inner').attr('xlink:href', '#land');
/* draw the depth levels
*/
vis.selectAll('.contour').data(topojson.feature(data, data.objects.depth).features).enter().append('path').attr('class', 'contour').attr('d', path_generator).attr('fill', function(d) {
return colorify(d.properties.depth);
});
/* draw the land border
*/
vis.append('use').attr('class', 'land-fill').attr('xlink:href', '#land');
/* draw the political boundaries
*/
for (depth = 1; depth <= 2; depth++) {
vis.append('path').datum(topojson.mesh(data, data.objects[depth], (function(a, b) {
return a !== b;
}))).attr('d', path_generator).attr('class', 'boundary').style('stroke-width', "" + (1.8 / depth) + "px");
}
/* draw the other labels
*/
return vis.selectAll('.label').data(concat((function() {
var _results2;
_results2 = [];
for (depth = 2; depth >= 1; depth--) {
_results2.push(topojson.feature(data, data.objects[depth]).features.map(function(d) {
return {
feature: d,
depth: depth
};
}));
}
return _results2;
})())).enter().append('text').attr('class', 'label').attr('dy', '0.35em').attr('transform', (function(d) {
var area, centroid;
centroid = path_generator.centroid(d.feature);
area = path_generator.area(d.feature);
return "translate(" + centroid[0] + "," + centroid[1] + ") scale(" + (10 / d.depth) + ")";
})).text(function(d) {
return d.feature.properties.label;
});
});
};
}).call(this);
@mixin halo($color)
text-shadow: -1px 0 $color, 0 1px $color, 1px 0 $color, 0 -1px $color
@mixin halo_double($color)
text-shadow: -2px 0 $color, 0 2px $color, 2px 0 $color, 0 -2px $color, -1px -1px $color, 1px -1px $color, 1px 1px $color, -1px 1px $color
#land
fill: none
.land-glow-outer
stroke: #EEE
stroke-width: 16px
.land-glow-inner
stroke: #DDD
stroke-width: 8px
.land-fill
stroke: #444
stroke-width: 2px
.contour
stroke: none
.category text
text-anchor: end
fill: #444
font-family: sans-serif
font-weight: bold
font-size: 14px
pointer-events: none
@include halo(white)
.boundary
stroke: #444
fill: none
// avoid blinking when hovering regions
pointer-events: none
@font-face
font-family: 'Lacuna'
src: url('lacuna.ttf')
.label
text-transform: capitalize
text-anchor: middle
font-size: 2.5px
fill: #444
pointer-events: none
font-family: 'Lacuna'
@include halo_double(white)
.title
text-transform: capitalize
text-anchor: start
font-size: 24pt
fill: #444
pointer-events: none
font-family: 'Lacuna'
@include halo(white)
// zoom and pan
.overlay
fill: transparent
{"c": [{"c": [{"c": [{"c": [{"c": [{"l": "fokata"}, {"c": [{"l": "pasizoma"}, {"l": "arfusiopa"}], "l": "pafle"}, {"c": [{"l": "piibotri"}, {"l": "anflebugolu"}, {"l": "kyana"}, {"l": "koflenopi"}, {"c": [{"l": "aressibi"}], "l": "kyasu"}, {"l": "busifoko"}], "l": "sipa"}, {"l": "esse"}, {"l": "kanapakyu"}], "l": "kasuleno"}, {"c": [{"l": "sefle"}, {"l": "oo"}], "l": "boes"}, {"l": "mabu"}, {"l": "subuisu"}], "l": "sebu"}, {"l": "noketrike"}], "l": "gokafu"}, {"l": "zoosulu"}], "l": "gofunelu"}, {"c": [{"l": "luflenonopa"}, {"c": [{"c": [{"l": "fugonoango"}], "l": "esflesulupe"}, {"l": "lufo"}], "l": "pakasubono"}, {"c": [{"l": "kabutazo"}, {"l": "iboilui"}, {"l": "kyasufo"}, {"l": "futafufo"}, {"c": [{"l": "fletrikonape"}, {"c": [{"c": [{"l": "nokyanapa"}, {"c": [{"l": "komasuanne"}, {"l": "learbimano"}, {"l": "keflo"}, {"l": "flekekezo"}], "l": "tabu"}, {"l": "annoluarfo"}, {"l": "arseluflo"}, {"l": "taisi"}, {"l": "pifuanpa"}, {"c": [{"l": "tapi"}, {"l": "luopa"}], "l": "flepearnai"}], "l": "trisebibobi"}, {"c": [{"l": "estri"}, {"l": "fubifle"}, {"l": "nafubu"}, {"l": "nopale"}, {"c": [{"l": "napi"}, {"l": "zoflenafo"}], "l": "okyukyu"}, {"l": "kyukebole"}, {"l": "tase"}], "l": "pamasesi"}, {"l": "koespi"}, {"l": "tanepaflean"}, {"l": "notritai"}, {"l": "osi"}], "l": "artrikepa"}, {"l": "nakefotale"}, {"l": "kyapa"}], "l": "bumalu"}, {"l": "buanmago"}], "l": "koboarma"}, {"c": [{"l": "sigofumatri"}, {"c": [{"l": "lusike"}, {"l": "fogo"}, {"c": [{"c": [{"l": "flepiespibu"}, {"l": "okaarzosi"}, {"l": "floanta"}, {"c": [{"l": "kataan"}, {"l": "zonoluta"}, {"l": "anbu"}, {"l": "nosina"}], "l": "sekyubupe"}, {"l": "omabu"}, {"l": "esma"}, {"l": "nofumaflo"}], "l": "nobu"}], "l": "kyaflofupina"}], "l": "nesibo"}, {"c": [{"c": [{"c": [{"l": "flomaflepi"}, {"l": "butaflean"}, {"l": "trisibimafo"}, {"l": "lekakafu"}], "l": "arsegotako"}, {"l": "mabubotrise"}, {"c": [{"l": "seno"}, {"l": "fuan"}, {"c": [{"l": "anlebies"}, {"l": "fobule"}, {"l": "arbifoneno"}, {"l": "pekyatribule"}], "l": "manakaluflo"}, {"l": "peflolebiko"}, {"l": "kyuan"}], "l": "sikale"}, {"c": [{"c": [{"l": "pesuzofu"}, {"l": "goigo"}, {"l": "segoikeno"}, {"l": "peibigo"}, {"l": "keesgoeses"}, {"l": "nole"}], "l": "suifose"}, {"c": [{"l": "fokoesar"}, {"l": "nakyu"}, {"l": "buo"}, {"l": "sigotrise"}, {"l": "kana"}, {"l": "boanflefo"}], "l": "trinose"}], "l": "senesupe"}], "l": "tritaesfle"}, {"c": [{"c": [{"c": [{"l": "flolu"}, {"l": "flelunearne"}, {"l": "kokaise"}, {"l": "lupaflo"}, {"l": "bufufono"}], "l": "trikyusefle"}, {"l": "koflo"}, {"l": "masesepepi"}, {"l": "kose"}], "l": "sumapifo"}], "l": "paluar"}], "l": "esfukezobi"}, {"c": [{"l": "ibi"}, {"l": "zobi"}, {"c": [{"l": "anpebufloi"}, {"c": [{"c": [{"l": "nenope"}, {"l": "subuneno"}, {"l": "nabuzo"}, {"l": "arisitripe"}, {"l": "flear"}, {"l": "neke"}, {"l": "lese"}], "l": "piesanle"}, {"c": [{"l": "konake"}], "l": "buko"}, {"c": [{"l": "kyupebina"}, {"l": "selene"}], "l": "kyutatrio"}, {"l": "fosi"}, {"l": "keo"}], "l": "ifleanse"}, {"l": "anma"}, {"l": "estri"}], "l": "itrika"}, {"c": [{"l": "kyupikoesse"}, {"c": [{"l": "talukyaka"}], "l": "sepabule"}], "l": "peimakaes"}, {"c": [{"c": [{"l": "takakyuflo"}, {"c": [{"l": "pakyu"}, {"l": "kago"}, {"l": "floflokyanezo"}, {"l": "arpaigo"}, {"l": "nefle"}], "l": "arsu"}, {"c": [{"l": "near"}], "l": "osesu"}, {"l": "bieskyaka"}, {"l": "flokapitano"}, {"l": "fupaflofletri"}], "l": "nasi"}, {"l": "zosubuke"}, {"l": "kesipian"}, {"l": "fuzo"}, {"c": [{"l": "sufoopibi"}], "l": "biipa"}], "l": "zoes"}], "l": "suseo"}], "l": "fuzotrisilu"}, {"c": [{"l": "keseotries"}, {"l": "petafopasi"}, {"c": [{"c": [{"c": [{"l": "piose"}, {"l": "luko"}, {"l": "imaes"}, {"l": "anpego"}], "l": "esna"}, {"c": [{"l": "futri"}, {"l": "keoarkya"}, {"l": "bobimape"}, {"l": "paanfoitri"}], "l": "pekotrisu"}, {"l": "nalugonesi"}, {"l": "pao"}, {"l": "bisugogo"}, {"c": [{"l": "ipaar"}, {"c": [{"l": "fleke"}, {"l": "siflo"}], "l": "makya"}, {"l": "mamakaoma"}, {"l": "obu"}, {"l": "noopalena"}], "l": "suoneflole"}], "l": "okya"}, {"c": [{"l": "bunakolui"}, {"l": "lukeole"}, {"l": "fosinaflo"}], "l": "pikobi"}, {"l": "sule"}, {"l": "zopitrii"}, {"l": "okeke"}, {"l": "bubi"}, {"c": [{"l": "noarkyuna"}, {"l": "kako"}, {"c": [{"c": [{"l": "bisukyubopi"}, {"l": "sukya"}, {"l": "naesar"}, {"l": "kyuo"}, {"l": "otrika"}, {"l": "flepa"}], "l": "kyafoflekya"}, {"l": "kyunozo"}, {"c": [{"l": "tanekata"}, {"l": "trinoarar"}, {"l": "koluo"}, {"l": "ianle"}, {"l": "kyusu"}, {"l": "nenama"}], "l": "ifuar"}, {"c": [{"l": "legonomasi"}, {"l": "kyubosu"}, {"l": "leanifle"}], "l": "anpakyaneflo"}, {"c": [{"l": "zofosetri"}, {"l": "nokesusi"}, {"l": "kyuzo"}, {"l": "lenoanne"}, {"l": "senafle"}, {"l": "noeszopi"}], "l": "tamabi"}], "l": "gokyasugona"}, {"c": [{"l": "bigosi"}, {"c": [{"l": "sunotabuo"}, {"l": "peika"}], "l": "osemakyu"}], "l": "kyakear"}, {"c": [{"l": "bunao"}, {"c": [{"l": "koseko"}, {"l": "sunefusu"}, {"l": "nearoan"}], "l": "kyasi"}], "l": "fleflofle"}, {"l": "gokyuse"}], "l": "lubuflezo"}], "l": "lekyubose"}, {"c": [{"l": "triflo"}, {"c": [{"c": [{"c": [{"l": "eskafle"}, {"l": "sufopa"}, {"l": "sekeansisi"}, {"l": "zolunono"}, {"l": "tafu"}, {"l": "nokyakyu"}], "l": "lelepees"}, {"l": "seko"}], "l": "zotrikyaanle"}, {"l": "mago"}, {"c": [{"l": "luesbinosi"}, {"c": [{"l": "mabinosuar"}], "l": "kosu"}], "l": "nafloluzo"}], "l": "takya"}, {"l": "kyafleibibo"}, {"c": [{"c": [{"c": [{"l": "lekoflolulu"}, {"l": "pafo"}, {"l": "lupama"}], "l": "papi"}, {"l": "makyu"}, {"l": "butripesi"}, {"l": "lulugoma"}, {"c": [{"l": "boeskyanaflo"}, {"l": "sitabofuar"}, {"l": "bofleartase"}, {"l": "zobupafle"}], "l": "zokokesebi"}, {"l": "nozo"}], "l": "nabuseikya"}, {"l": "sisebu"}, {"c": [{"l": "penezo"}, {"l": "eskya"}], "l": "flozofletri"}, {"l": "funafleo"}], "l": "ketri"}, {"l": "arsubugo"}], "l": "fokasuflo"}, {"c": [{"c": [{"l": "sinabikesi"}, {"l": "nasufle"}, {"c": [{"l": "kyaflobo"}], "l": "kyunakasian"}], "l": "kyakaluflene"}, {"c": [{"l": "arse"}, {"c": [{"l": "tailees"}, {"l": "kotrifle"}], "l": "ikonezo"}, {"c": [{"l": "lesupifo"}], "l": "kamakakao"}], "l": "tako"}], "l": "supiflenoke"}, {"l": "koeslubuar"}, {"c": [{"c": [{"c": [{"l": "arfle"}], "l": "suta"}, {"l": "konesumalu"}, {"c": [{"l": "nean"}, {"c": [{"l": "nebi"}, {"l": "luogo"}, {"l": "foka"}, {"l": "nesubikyu"}, {"l": "kebo"}], "l": "neke"}, {"l": "flopabiflole"}, {"c": [{"l": "kona"}], "l": "kane"}], "l": "kope"}, {"l": "bipakyubu"}], "l": "tafotrinana"}, {"l": "lefofo"}], "l": "estribubian"}], "l": "mana"}], "l": "esfle"}, {"c": [{"c": [{"l": "zokearse"}, {"l": "bupipifle"}, {"c": [{"l": "kobiarflo"}, {"c": [{"l": "leta"}, {"l": "floikekyubo"}, {"l": "fofulu"}, {"l": "bolusunao"}, {"l": "fleluno"}, {"l": "kyafosusefo"}], "l": "pekasi"}, {"c": [{"l": "nafugo"}, {"c": [{"l": "sesi"}, {"l": "tribo"}, {"l": "sukyuse"}, {"l": "zotrina"}, {"l": "pefoka"}, {"l": "naar"}, {"c": [{"l": "gokya"}, {"l": "flesetri"}, {"l": "kyutri"}, {"l": "luflosikyu"}, {"l": "taar"}], "l": "esboko"}], "l": "piotalu"}, {"l": "supabitrisu"}, {"c": [{"l": "kosu"}], "l": "sekobi"}, {"l": "kyunebi"}, {"c": [{"l": "kyuflosipeke"}, {"c": [{"l": "kyasunano"}, {"l": "artano"}, {"l": "arnele"}, {"l": "oankya"}, {"l": "lenekyaizo"}], "l": "omale"}, {"l": "tako"}], "l": "zoka"}, {"l": "nofloanpi"}], "l": "sususunoar"}, {"l": "kyutatriko"}], "l": "flokyaflefokyu"}], "l": "fubigobo"}, {"c": [{"c": [{"c": [{"c": [{"l": "flenatafleke"}, {"l": "butritrikese"}, {"l": "bibugofo"}, {"l": "trike"}], "l": "siluanfu"}, {"c": [{"l": "floke"}, {"l": "neflesu"}, {"l": "taibu"}, {"l": "kyaesarfofu"}, {"l": "kefo"}, {"l": "tai"}], "l": "flees"}, {"l": "ipapalena"}, {"c": [{"l": "buonafle"}, {"c": [{"l": "kyukobokyu"}, {"l": "bokyu"}, {"l": "fleflofo"}, {"l": "bulene"}, {"l": "naan"}], "l": "peflotritri"}, {"l": "fletana"}, {"l": "nosenopa"}, {"l": "tritane"}, {"c": [{"l": "taflo"}, {"l": "nalubuna"}, {"l": "kona"}, {"l": "trizoobi"}, {"l": "pabo"}, {"l": "arkokefu"}, {"l": "anna"}], "l": "kosi"}, {"l": "zosina"}], "l": "zogo"}, {"l": "tribi"}, {"l": "sibobiesar"}], "l": "palukekyuka"}, {"c": [{"l": "fogotataes"}, {"l": "seseflelu"}, {"l": "nozooo"}, {"l": "ilema"}], "l": "leesflo"}, {"l": "koflofuflofu"}, {"l": "zopezoko"}], "l": "luosu"}, {"c": [{"l": "goflolukyu"}], "l": "lufoansipe"}, {"l": "makyanabu"}, {"l": "setri"}, {"l": "mapepeko"}], "l": "fomanoseo"}, {"c": [{"c": [{"l": "tasikyu"}, {"l": "flekaflozosu"}, {"c": [{"l": "sukyukyu"}], "l": "naleno"}, {"c": [{"l": "fupaleka"}, {"c": [{"l": "nefobi"}], "l": "arbi"}, {"c": [{"l": "zoflelefuna"}, {"l": "flezopebio"}, {"c": [{"l": "lekoikyu"}, {"l": "gobuta"}, {"l": "sugole"}, {"l": "neopago"}, {"l": "zobukekyu"}], "l": "koanflekabu"}], "l": "kyuzoflokyako"}], "l": "flokekalupe"}], "l": "kasekaselu"}], "l": "masinanoma"}], "l": "pemapeo"}], "l": "kyupapa"}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[1,1],"translate":[0,0]},"objects":{"0":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77]],"properties":{"label":"kyupapa"}}]},"1":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,137,138,139,140,141,142,143,144]],"properties":{"label":"esfle"}},{"type":"Polygon","arcs":[[0,1,2,3,4,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-145,-144,-143,-142,-141,-140,-139,-138,75,76,77]],"properties":{"label":"gofunelu"}},{"type":"Polygon","arcs":[[-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46]],"properties":{"label":"pemapeo"}}]},"2":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[145,-87,-86,-85,-84,-83]],"properties":{"label":"zoosulu"}},{"type":"Polygon","arcs":[[-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,20,21,22,23,24,25,26,146,147,148]],"properties":{"label":"masinanoma"}},{"type":"Polygon","arcs":[[149,150,151,83,84,85,86,87,88,89,90,91,92,93,94,95,5,6,7,8,9,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,72,73,74,137,138,139,140]],"properties":{"label":"koboarma"}},{"type":"Polygon","arcs":[[78,79,80,184,185,-150,141,142,143,144]],"properties":{"label":"pakasubono"}},{"type":"Polygon","arcs":[[186,46,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217]],"properties":{"label":"fubigobo"}},{"type":"Polygon","arcs":[[218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,126,127,128,129,130,131,132,133,134,135,136,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257]],"properties":{"label":"mana"}},{"type":"Polygon","arcs":[[-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-114,-113,-112,-111,-110,-109,-108,-149,-148,-147,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,-187,-218,-217,-216,-215,-214]],"properties":{"label":"fomanoseo"}},{"type":"Polygon","arcs":[[-185,81,82,-152,-151,-186]],"properties":{"label":"luflenonopa"}},{"type":"Polygon","arcs":[[-156,-155,-154,-153,10,11,12,13,14,15,16,17,18,19,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157]],"properties":{"label":"fuzotrisilu"}},{"type":"Polygon","arcs":[[0,1,2,3,4,-96,-95,-94,-93,-92,-91,-90,-89,-88,-146,-82,-81,-80,-79,-145,-144,-143,-142,-141,-140,-139,-138,75,76,77]],"properties":{"label":"gokafu"}}]},"3":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[27,258,259,260,-147]],"properties":{"label":"setri"}},{"type":"Polygon","arcs":[[151,83,261,262,263,264]],"properties":{"label":"iboilui"}},{"type":"Polygon","arcs":[[250,251,252,265,218,266]],"properties":{"label":"petafopasi"}},{"type":"Polygon","arcs":[[-263,267,268,269,270,271]],"properties":{"label":"kyasufo"}},{"type":"Polygon","arcs":[[-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-114,-113,-112,-111,-110,-109,272,273,-260,274,275,276,277,278,279,280,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,-187,-218,-217,-216,-215,-214]],"properties":{"label":"luosu"}},{"type":"Polygon","arcs":[[-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,281,282]],"properties":{"label":"flokyaflefokyu"}},{"type":"Polygon","arcs":[[-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,20,21,22,23,24,25,26,146,147,148]],"properties":{"label":"kasekaselu"}},{"type":"Polygon","arcs":[[283,-280,-279,-278,-277,-276]],"properties":{"label":"lufoansipe"}},{"type":"Polygon","arcs":[[28,-281,-284,-275,-259]],"properties":{"label":"makyanabu"}},{"type":"Polygon","arcs":[[249,-267,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,63,64,65,66,67,68,69,70,71,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,240,241,242,243,244,245,246,247,248]],"properties":{"label":"lekyubose"}},{"type":"Polygon","arcs":[[0,1,2,3,4,-96,-95,-94,-93,-92,-91,-90,300,-80,-79,-145,-144,-143,-142,-141,-140,-139,-138,75,76,77]],"properties":{"label":"sebu"}},{"type":"Polygon","arcs":[[301,-264,-272,302,303,138]],"properties":{"label":"futafufo"}},{"type":"Polygon","arcs":[[-301,-89,-88,-146,-82,-81]],"properties":{"label":"noketrike"}},{"type":"Polygon","arcs":[[15,16,17,18,19,96,97,98,99,100,101,102,103,304,305,306,307,-246,-245,-244,-243,-242,-241,-166,-165,-164,-163,-162,-161,308,309,310,311,312,313,314,315,316,317,318,319,320]],"properties":{"label":"esfukezobi"}},{"type":"Polygon","arcs":[[217,186,46,-137,-136,321]],"properties":{"label":"zokearse"}},{"type":"Polygon","arcs":[[215,216,-322,-135,-283,-282]],"properties":{"label":"bupipifle"}},{"type":"Polygon","arcs":[[322,323,324,325,326,327,328,329,54,55,56,330,331,332,333]],"properties":{"label":"supiflenoke"}},{"type":"Polygon","arcs":[[-266,253,254,255,256,257]],"properties":{"label":"keseotries"}},{"type":"Polygon","arcs":[[137,-304,-303,-271,-270,-269,-268,-262,84,85,86,87,88,89,90,91,92,93,94,95,5,6,7,8,334,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,72,73,74]],"properties":{"label":"bumalu"}},{"type":"Polygon","arcs":[[152,153,154,155,-335,9]],"properties":{"label":"buanmago"}},{"type":"Polygon","arcs":[[78,79,80,184,335,144]],"properties":{"label":"esflesulupe"}},{"type":"Polygon","arcs":[[-156,336,337,-159,-158,-157]],"properties":{"label":"sigofumatri"}},{"type":"Polygon","arcs":[[-337,-155,-154,-153,10,11,12,13,14,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-160,-338]],"properties":{"label":"nesibo"}},{"type":"Polygon","arcs":[[338,339,340,341,342,343,132,133,134,135,136,47,48,49,50,51,52,344,345,-328,-327]],"properties":{"label":"estribubian"}},{"type":"Polygon","arcs":[[-346,-345,53,-330,-329]],"properties":{"label":"koeslubuar"}},{"type":"Polygon","arcs":[[143,-336,185,-150,141,142]],"properties":{"label":"lufo"}},{"type":"Polygon","arcs":[[-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,-288,-287,-286,-285,234,235,236,237,238,239,126,127,128,129,130,131,-344,-343,-342,-341,-340,-339,-326,-325,-324,-323,-334,-333,-332,-331,57,58,59,60,61,62,-300,-299]],"properties":{"label":"fokasuflo"}},{"type":"Polygon","arcs":[[-148,-261,-274,-273,-108,-149]],"properties":{"label":"mapepeko"}},{"type":"Polygon","arcs":[[104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-308,-307,-306,-305]],"properties":{"label":"suseo"}},{"type":"Polygon","arcs":[[149,150,-265,-302,139,140]],"properties":{"label":"kabutazo"}}]},"4":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[106,107,108,346,347,348]],"properties":{"label":"zobi"}},{"type":"Polygon","arcs":[[349,350,351,352,353,329,54,55,56,330,331]],"properties":{"label":"tako"}},{"type":"Polygon","arcs":[[-296,-295,-294,-293,-292,-291,-290,-289,354,355,356,357,358,58,59,60,61,359,360,-298,-297]],"properties":{"label":"takya"}},{"type":"Polygon","arcs":[[361,-311,-310,-309,-160,-338]],"properties":{"label":"lusike"}},{"type":"Polygon","arcs":[[287,288,289,290,291,292,293,294,295,296,297,298,299,63,64,65,66,67,68,69,70,71,-184,-183,-182,-181,-180,-179,362,363,364,365,366,367,368,369,370,371,372,373,374]],"properties":{"label":"lubuflezo"}},{"type":"Polygon","arcs":[[230,231,375,-371,376,377]],"properties":{"label":"zopitrii"}},{"type":"Polygon","arcs":[[338,339,340,341,342,343,132,133,134,135,378,379,380,48,49,50,51,52,344,345,-328,-327]],"properties":{"label":"tafotrinana"}},{"type":"Polygon","arcs":[[381,382,383,384,-145,-144,385,386,387,388]],"properties":{"label":"boes"}},{"type":"Polygon","arcs":[[389,390,391,-323,392,393]],"properties":{"label":"arsubugo"}},{"type":"Polygon","arcs":[[394,157,395,396,7]],"properties":{"label":"nakefotale"}},{"type":"Polygon","arcs":[[397,-377,-370,-369,-368,398]],"properties":{"label":"sule"}},{"type":"Polygon","arcs":[[-94,-93,399,-79,-385,400]],"properties":{"label":"mabu"}},{"type":"Polygon","arcs":[[401,402,-100,-99,-98,-97,20,21,22,23,24,25,26,146,147,403,404]],"properties":{"label":"flokekalupe"}},{"type":"Polygon","arcs":[[137,-304,405,74]],"properties":{"label":"fletrikonape"}},{"type":"Polygon","arcs":[[-92,-91,-90,300,-80,-400]],"properties":{"label":"subuisu"}},{"type":"Polygon","arcs":[[29,406,407,408,-191,-190,-189,-188,-114,-113,-112,409,410,276,277,278,279,280]],"properties":{"label":"leesflo"}},{"type":"Polygon","arcs":[[249,-267,219,220,221,222,223,224,225,226,227,228,229,-378,-398,411,412,413,414,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,240,241,242,243,244,245,246,247,248]],"properties":{"label":"okya"}},{"type":"Polygon","arcs":[[415,-154,-153,10,11,12,13,14,-321,-320,-319,-318,-317,-316,-315,-314]],"properties":{"label":"kyaflofupina"}},{"type":"Polygon","arcs":[[-131,-130,-129,-128,-127,-126,-125,-124,-123,416,417,418,419,213,214,281,420,421]],"properties":{"label":"pekasi"}},{"type":"Polygon","arcs":[[232,233,284,422,-372,-376]],"properties":{"label":"okeke"}},{"type":"Polygon","arcs":[[-303,-271,-270,-269,-268,-262,84,85,86,87,88,89,90,91,92,93,94,95,5,6,-397,-396,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,72,73,-406]],"properties":{"label":"artrikepa"}},{"type":"Polygon","arcs":[[-423,285,286,-375,-374,-373]],"properties":{"label":"bubi"}},{"type":"Polygon","arcs":[[-416,-313,-312,-362,-337,-155]],"properties":{"label":"fogo"}},{"type":"Polygon","arcs":[[109,110,111,112,113,114,115,116,117,118,119,120,121,122,423,424,425,426,427,428,-255,-254,-253,-252,-251,-250,-249,-248,-247,-308,-307,429,-348,-347]],"properties":{"label":"itrika"}},{"type":"Polygon","arcs":[[-102,430,431,-105,-104,-103]],"properties":{"label":"flekaflozosu"}},{"type":"Polygon","arcs":[[334,156,-395,8]],"properties":{"label":"kyapa"}},{"type":"Polygon","arcs":[[-403,-402,-405,432,-431,-101]],"properties":{"label":"naleno"}},{"type":"Polygon","arcs":[[322,323,324,325,326,327,328,-354,-353,-352,-351,-350,332,333]],"properties":{"label":"kyakaluflene"}},{"type":"Polygon","arcs":[[433,434,435,210,211,436]],"properties":{"label":"kyutatriko"}},{"type":"Polygon","arcs":[[-421,282,-134,-133,-132,-422]],"properties":{"label":"kobiarflo"}},{"type":"Polygon","arcs":[[437,-333,-332,-331,57,-359]],"properties":{"label":"kyafleibibo"}},{"type":"Polygon","arcs":[[-120,-119,-118,-117,-116,-115,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,-436,-435,-434,-437,212,-420,-419,-418,-417,-122,-121]],"properties":{"label":"sususunoar"}},{"type":"Polygon","arcs":[[-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-409,-408,-407,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,-187,-218,-217,-216,-215,-214]],"properties":{"label":"palukekyuka"}},{"type":"Polygon","arcs":[[283,-280,-279,-278,-277,-276]],"properties":{"label":"goflolukyu"}},{"type":"Polygon","arcs":[[-433,-404,148,-107,-106,-432]],"properties":{"label":"tasikyu"}},{"type":"Polygon","arcs":[[78,79,80,184,335,144]],"properties":{"label":"fugonoango"}},{"type":"Polygon","arcs":[[272,438,-410,-111,-110,-109]],"properties":{"label":"koflofuflofu"}},{"type":"Polygon","arcs":[[-356,-355,-288,-287,-286,-285,234,235,236,237,238,239,126,127,128,129,130,131,-344,-343,-342,-341,-340,-339,-326,-325,-324,-392,-391,-390,-394,-393,-334,-438,-358,-357]],"properties":{"label":"ketri"}},{"type":"Polygon","arcs":[[-260,274,275,-411,-439,273]],"properties":{"label":"zopezoko"}},{"type":"Polygon","arcs":[[123,124,125,-240,-239,439,440,441,-425,-424]],"properties":{"label":"peimakaes"}},{"type":"Polygon","arcs":[[104,105,-349,-430,-306,-305]],"properties":{"label":"ibi"}},{"type":"Polygon","arcs":[[442,443,444,445,446,447,448,449,450,451,102,103,304,305,306,307,-246,-245,-244,-243,-242,-241,-166,452]],"properties":{"label":"paluar"}},{"type":"Polygon","arcs":[[136,47,-381,-380,-379]],"properties":{"label":"lefofo"}},{"type":"Polygon","arcs":[[-361,-360,62,-300,-299]],"properties":{"label":"triflo"}},{"type":"Polygon","arcs":[[-427,-426,-442,-441,-440,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-258,-257,-256,-429,-428]],"properties":{"label":"zoes"}},{"type":"Polygon","arcs":[[0,1,2,3,4,-96,-95,-401,-384,-383,-382,-389,-388,-387,-386,-143,-142,-141,-140,-139,-138,75,76,77]],"properties":{"label":"kasuleno"}},{"type":"Polygon","arcs":[[-415,-414,-413,-412,-399,-367,-366,-365,-364,-363,-178,-177]],"properties":{"label":"pikobi"}},{"type":"Polygon","arcs":[[15,16,17,18,19,96,97,98,99,100,101,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-453,-165,-164,-163,-162,-161,308,309,310,311,312,313,314,315,316,317,318,319,320]],"properties":{"label":"tritaesfle"}}]},"5":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[381,382,453,386,387,388]],"properties":{"label":"sefle"}},{"type":"Polygon","arcs":[[162,163,164,165,166,167,168,169,170,171,454,455,456,457,458,459,90,91,92,460,461,462,463,464]],"properties":{"label":"pamasesi"}},{"type":"Polygon","arcs":[[465,466,222,467,468,469]],"properties":{"label":"nalugonesi"}},{"type":"Polygon","arcs":[[-120,470,471,-417,-122,-121]],"properties":{"label":"nafugo"}},{"type":"Polygon","arcs":[[-303,-271,-270,-269,-268,-262,84,85,86,87,88,89,-460,-459,-458,-457,-456,-455,172,173,174,175,176,177,178,179,180,181,182,183,72,73,-406]],"properties":{"label":"trisebibobi"}},{"type":"Polygon","arcs":[[472,-412,-399,-367,-366,473]],"properties":{"label":"fosinaflo"}},{"type":"Polygon","arcs":[[158,159,160,474,475,-396]],"properties":{"label":"osi"}},{"type":"Polygon","arcs":[[476,477,478,479,480,481]],"properties":{"label":"mabubotrise"}},{"type":"Polygon","arcs":[[482,-95,-401,-384,-383,483]],"properties":{"label":"kanapakyu"}},{"type":"Polygon","arcs":[[484,121,122,423,424,425]],"properties":{"label":"estri"}},{"type":"Polygon","arcs":[[485,327,328,-354,-353,-352]],"properties":{"label":"kyunakasian"}},{"type":"Polygon","arcs":[[-213,-212,-211,-210,-209,-208,486,487,44,45,-187,-218,-217,-216,-215,-214]],"properties":{"label":"siluanfu"}},{"type":"Polygon","arcs":[[488,489,77]],"properties":{"label":"fokata"}},{"type":"Polygon","arcs":[[195,196,490,491,492,493]],"properties":{"label":"sekobi"}},{"type":"Polygon","arcs":[[4,-96,-483,494]],"properties":{"label":"esse"}},{"type":"Polygon","arcs":[[495,408,-191,-190,496,278]],"properties":{"label":"seseflelu"}},{"type":"Polygon","arcs":[[497,498,499,500,1,2,3,-495,-484,-382,-389,-388,-387,-386,-143,-142,-141,-140,-139,-138,75,501]],"properties":{"label":"sipa"}},{"type":"Polygon","arcs":[[-415,-414,-413,-473,502,-177]],"properties":{"label":"bunakolui"}},{"type":"Polygon","arcs":[[-501,-500,-499,-498,-502,76,-490,-489,0]],"properties":{"label":"pafle"}},{"type":"Polygon","arcs":[[503,-343,-342,504,505,506]],"properties":{"label":"sisebu"}},{"type":"Polygon","arcs":[[507,214,281,420,508,509]],"properties":{"label":"bolusunao"}},{"type":"Polygon","arcs":[[429,-348,510,511,512,513,110,111,112,113,114,115,116,117,118,119,514,515,516,427,428,-255,-254,-253,-252,-251,-250,-249,-248,-247,-308,-307]],"properties":{"label":"ifleanse"}},{"type":"Polygon","arcs":[[517,-509,421,-131,-130,518]],"properties":{"label":"leta"}},{"type":"Polygon","arcs":[[418,419,213,-508,519,520]],"properties":{"label":"fleluno"}},{"type":"Polygon","arcs":[[521,225,226,227,522,523]],"properties":{"label":"bisugogo"}},{"type":"Polygon","arcs":[[322,323,524,-350,332,333]],"properties":{"label":"sinabikesi"}},{"type":"Polygon","arcs":[[415,-154,-153,10,11,12,13,14,-321,-320,-319,-318,-317,-316,-315,-314]],"properties":{"label":"nobu"}},{"type":"Polygon","arcs":[[-397,-476,525,-462,526,6]],"properties":{"label":"tanepaflean"}},{"type":"Polygon","arcs":[[410,276,527,-113,-112,409]],"properties":{"label":"ilema"}},{"type":"Polygon","arcs":[[-347,109,-514,-513,-512,-511]],"properties":{"label":"anpebufloi"}},{"type":"Polygon","arcs":[[277,-497,-189,-188,-114,-528]],"properties":{"label":"nozooo"}},{"type":"Polygon","arcs":[[528,373,529,291,530,531]],"properties":{"label":"kako"}},{"type":"Polygon","arcs":[[532,533,-507,534,-391,535]],"properties":{"label":"funafleo"}},{"type":"Polygon","arcs":[[370,371,372,-529,-532,-531,292,293,294,295,536,537,538,539,540,541,542,67,68,69,70,71,-184,-183,-182,-181,-180,-179,362,363,364,365,366,367,368,369]],"properties":{"label":"gokyasugona"}},{"type":"Polygon","arcs":[[-220,-219,-258,543,544,-221]],"properties":{"label":"kesipian"}},{"type":"Polygon","arcs":[[-448,-447,-446,-445,-444,-443,-453,-165,-164,-163,-162,-161,308,309,310,311,312,313,314,315,316,317,545,-481,546,547,548,549]],"properties":{"label":"senesupe"}},{"type":"Polygon","arcs":[[550,206,207,208,209,-436]],"properties":{"label":"nofloanpi"}},{"type":"Polygon","arcs":[[30,551,552,553,-407]],"properties":{"label":"sibobiesar"}},{"type":"Polygon","arcs":[[-222,-545,554,555,-224,-223]],"properties":{"label":"zosubuke"}},{"type":"Polygon","arcs":[[-118,-117,-116,-115,187,188,189,190,191,192,193,194,-494,556,557,558,559,560,561,562,-437,212,-420,-419,-418,-472,-471,-119]],"properties":{"label":"piotalu"}},{"type":"Polygon","arcs":[[-428,-427,-426,-442,-441,-440,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-556,563,564,565,566,567]],"properties":{"label":"nasi"}},{"type":"Polygon","arcs":[[249,-267,219,220,221,-467,-466,568,569,570,571,572,247,248]],"properties":{"label":"esna"}},{"type":"Polygon","arcs":[[416,417,-521,573,-124,-123]],"properties":{"label":"kyafosusefo"}},{"type":"Polygon","arcs":[[574,575,576,577,340,341,342,343,132,133,134,135,378,379,578,579,49,50,51,52,344,580]],"properties":{"label":"kope"}},{"type":"Polygon","arcs":[[200,201,202,203,204,205,-551,-435,-434,-563,-562,-561,-560,581,582,-492,583,584]],"properties":{"label":"zoka"}},{"type":"Polygon","arcs":[[330,585,586,352,587,55,56]],"properties":{"label":"ikonezo"}},{"type":"Polygon","arcs":[[-290,588,589,590,591,592]],"properties":{"label":"mago"}},{"type":"Polygon","arcs":[[197,198,199,-585,-584,-491]],"properties":{"label":"kyunebi"}},{"type":"Polygon","arcs":[[15,16,17,593,-477,-482,-546,318,319,320]],"properties":{"label":"arsegotako"}},{"type":"Polygon","arcs":[[-578,-577,-576,-575,594,339]],"properties":{"label":"konesumalu"}},{"type":"Polygon","arcs":[[-178,-503,-474,-365,-364,-363]],"properties":{"label":"lukeole"}},{"type":"Polygon","arcs":[[595,596,25,597,401,598]],"properties":{"label":"arbi"}},{"type":"Polygon","arcs":[[324,325,326,-486,-351,-525]],"properties":{"label":"nasufle"}},{"type":"Polygon","arcs":[[-468,223,224,-522,599,600]],"properties":{"label":"pao"}},{"type":"Polygon","arcs":[[-544,-257,601,-565,-564,-555]],"properties":{"label":"fuzo"}},{"type":"Polygon","arcs":[[-98,-97,20,21,22,23,24,-597,-596,-599,402,-100,-99]],"properties":{"label":"kyuzoflokyako"}},{"type":"Polygon","arcs":[[-356,-355,-288,-287,-286,-285,234,235,236,237,238,239,126,127,128,129,130,131,-344,-504,-534,-533,-536,-390,-394,-393,-334,-438,-358,-357]],"properties":{"label":"nabuseikya"}},{"type":"Polygon","arcs":[[349,350,351,-587,-586,331]],"properties":{"label":"arse"}},{"type":"Polygon","arcs":[[441,-425,602,-239,439,440]],"properties":{"label":"sepabule"}},{"type":"Polygon","arcs":[[-296,-295,-294,-293,-292,-291,-593,-592,-591,603,59,60,61,359,360,-298,-297]],"properties":{"label":"zotrikyaanle"}},{"type":"Polygon","arcs":[[297,298,604,605,64,65,606,607,608,609,610]],"properties":{"label":"fleflofle"}},{"type":"Polygon","arcs":[[-341,-340,-339,-326,-325,-324,-392,-535,-506,-505]],"properties":{"label":"flozofletri"}},{"type":"Polygon","arcs":[[442,443,444,445,446,447,448,449,450,451,102,103,304,305,306,307,-246,-245,-244,-243,-242,-241,-166,452]],"properties":{"label":"sumapifo"}},{"type":"Polygon","arcs":[[-126,611,-519,-129,-128,-127]],"properties":{"label":"floikekyubo"}},{"type":"Polygon","arcs":[[374,287,288,289,290,-530]],"properties":{"label":"noarkyuna"}},{"type":"Polygon","arcs":[[380,48,-580,-579]],"properties":{"label":"bipakyubu"}},{"type":"Polygon","arcs":[[244,245,246,-573,-572,-571,-570,-569,-470,612,-170,-169,-168,-167,240,241,242,243]],"properties":{"label":"pekotrisu"}},{"type":"Polygon","arcs":[[18,19,96,97,98,99,100,101,-452,-451,-450,-449,-550,-549,-548,-547,-480,-479,-478,-594]],"properties":{"label":"sikale"}},{"type":"Polygon","arcs":[[383,384,-145,-144,385,-454]],"properties":{"label":"oo"}},{"type":"Polygon","arcs":[[-256,-429,-568,-567,-566,-602]],"properties":{"label":"biipa"}},{"type":"Polygon","arcs":[[-605,299,63,-606]],"properties":{"label":"gokyuse"}},{"type":"Polygon","arcs":[[31,613,-552]],"properties":{"label":"tribi"}},{"type":"Polygon","arcs":[[338,-595,-581,345,-328,-327]],"properties":{"label":"suta"}},{"type":"Polygon","arcs":[[354,355,356,357,358,58,-604,-590,-589,-289]],"properties":{"label":"nafloluzo"}},{"type":"Polygon","arcs":[[-598,26,146,147,403,404]],"properties":{"label":"fupaleka"}},{"type":"Polygon","arcs":[[-516,-515,120,-485,426,-517]],"properties":{"label":"anma"}},{"type":"Polygon","arcs":[[-403,-402,-405,432,-431,-101]],"properties":{"label":"sukyukyu"}},{"type":"Polygon","arcs":[[-199,-198,-197,-196,-195,-194,-193,-192,-409,-408,-554,-553,-614,32,33,34,35,36,37,38,39,614,615,616,617,-201,-200]],"properties":{"label":"zogo"}},{"type":"Polygon","arcs":[[-424,123,124,125,-240,-603]],"properties":{"label":"kyupikoesse"}},{"type":"Polygon","arcs":[[29,406,407,-496,279,280]],"properties":{"label":"fogotataes"}},{"type":"Polygon","arcs":[[353,329,54,-588]],"properties":{"label":"kamakakao"}},{"type":"Polygon","arcs":[[-574,-520,-510,-518,-612,-125]],"properties":{"label":"fofulu"}},{"type":"Polygon","arcs":[[-475,161,-465,-464,-463,-526]],"properties":{"label":"notritai"}},{"type":"Polygon","arcs":[[-542,-541,-540,-539,-538,-537,296,-611,-610,-609,-608,-607,66,-543]],"properties":{"label":"kyakear"}},{"type":"Polygon","arcs":[[-557,-493,-583,-582,-559,-558]],"properties":{"label":"supabitrisu"}},{"type":"Polygon","arcs":[[-618,-617,618,619,-203,-202]],"properties":{"label":"ipapalena"}},{"type":"Polygon","arcs":[[-613,-469,-601,-600,-524,-523,228,229,-378,-398,411,412,413,414,-176,-175,-174,-173,-172,-171]],"properties":{"label":"suoneflole"}},{"type":"Polygon","arcs":[[-205,-204,-620,-619,-616,-615,40,41,42,43,-488,-487,-207,-206]],"properties":{"label":"flees"}},{"type":"Polygon","arcs":[[5,-527,-461,93,94,95]],"properties":{"label":"koespi"}}]},"6":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[586,352,587,55,620]],"properties":{"label":"kotrifle"}},{"type":"Polygon","arcs":[[621,622,623,624,625,626]],"properties":{"label":"kyunozo"}},{"type":"Polygon","arcs":[[627,628,629,630,458,631]],"properties":{"label":"estri"}},{"type":"Polygon","arcs":[[632,633,634,-419,-418,-472]],"properties":{"label":"tribo"}},{"type":"Polygon","arcs":[[570,635,636,-466,568,569]],"properties":{"label":"imaes"}},{"type":"Polygon","arcs":[[461,462,637,91,92,460]],"properties":{"label":"tase"}},{"type":"Polygon","arcs":[[-542,638,-608,-607,66,-543]],"properties":{"label":"bigosi"}},{"type":"Polygon","arcs":[[-456,-455,172,639,640,641]],"properties":{"label":"pifuanpa"}},{"type":"Polygon","arcs":[[463,642,-632,459,90,-638]],"properties":{"label":"kyukebole"}},{"type":"Polygon","arcs":[[643,644,645,646,647,-227]],"properties":{"label":"osesu"}},{"type":"Polygon","arcs":[[648,649,650,43,-488,651]],"properties":{"label":"taibu"}},{"type":"Polygon","arcs":[[3,-495,-484,-382,652]],"properties":{"label":"busifoko"}},{"type":"Polygon","arcs":[[653,-140,-139,-138,75,501]],"properties":{"label":"piibotri"}},{"type":"Polygon","arcs":[[654,655,37,38,39,614,615,616,656,657,658]],"properties":{"label":"peflotritri"}},{"type":"Polygon","arcs":[[248,249,-267,219,659,660]],"properties":{"label":"piose"}},{"type":"Polygon","arcs":[[97,98,99,100,101,-452,-451,661,662,663,-479,664,665,666]],"properties":{"label":"manakaluflo"}},{"type":"Polygon","arcs":[[667,-523,228,668,413,669]],"properties":{"label":"obu"}},{"type":"Polygon","arcs":[[670,-658,-657,617,-201,-200]],"properties":{"label":"buonafle"}},{"type":"Polygon","arcs":[[671,103,304,672,673,674]],"properties":{"label":"koflo"}},{"type":"Polygon","arcs":[[-296,-295,-294,-293,-292,-291,-593,-592,675,676,60,61,359,360,-298,-297]],"properties":{"label":"lelepees"}},{"type":"Polygon","arcs":[[610,297,298,604,677,678]],"properties":{"label":"bunao"}},{"type":"Polygon","arcs":[[679,169,170,171,454,680]],"properties":{"label":"nafubu"}},{"type":"Polygon","arcs":[[-256,-429,-568,-567,-566,-602]],"properties":{"label":"sufoopibi"}},{"type":"Polygon","arcs":[[-209,681,45,-187,682]],"properties":{"label":"bibugofo"}},{"type":"Polygon","arcs":[[-556,563,683,-644,-226,-225]],"properties":{"label":"fupaflofletri"}},{"type":"Polygon","arcs":[[684,685,686,179,687,688]],"properties":{"label":"annoluarfo"}},{"type":"Polygon","arcs":[[689,690,-482,-546,318,319]],"properties":{"label":"lekakafu"}},{"type":"Polygon","arcs":[[-211,-210,-683,-218,-217,691]],"properties":{"label":"butritrikese"}},{"type":"Polygon","arcs":[[-205,692,-652,-487,-207,-206]],"properties":{"label":"floke"}},{"type":"Polygon","arcs":[[693,694,695,-633,-471,-119]],"properties":{"label":"sesi"}},{"type":"Polygon","arcs":[[696,17,593,-477,-691,697]],"properties":{"label":"trisibimafo"}},{"type":"Polygon","arcs":[[-640,173,174,698,-686,699]],"properties":{"label":"taisi"}},{"type":"Polygon","arcs":[[700,-498,-502,76,-490]],"properties":{"label":"arfusiopa"}},{"type":"Polygon","arcs":[[240,701,-570,702,-168,-167]],"properties":{"label":"bobimape"}},{"type":"Polygon","arcs":[[703,704,705,11]],"properties":{"label":"floanta"}},{"type":"Polygon","arcs":[[442,443,444,445,446,447,448,449,450,451,102,-672,-675,706,707,708,-244,-243,-242,-241,-166,452]],"properties":{"label":"trikyusefle"}},{"type":"Polygon","arcs":[[709,-142,-141,-654,497,498]],"properties":{"label":"anflebugolu"}},{"type":"Polygon","arcs":[[710,711,712,713,714,-646]],"properties":{"label":"bieskyaka"}},{"type":"Polygon","arcs":[[18,715,-665,-478,-594]],"properties":{"label":"seno"}},{"type":"Polygon","arcs":[[716,717,718,719,720,721,722,515,723,724]],"properties":{"label":"kyutatrio"}},{"type":"Polygon","arcs":[[-616,-615,40,725,726,-619]],"properties":{"label":"tai"}},{"type":"Polygon","arcs":[[14,-321,-320,727,728,729]],"properties":{"label":"nofumaflo"}},{"type":"Polygon","arcs":[[-699,175,176,177,178,-687]],"properties":{"label":"arseluflo"}},{"type":"Polygon","arcs":[[429,-348,510,511,512,513,110,111,112,113,114,115,116,730,-722,-721,-720,-719,-718,731,-252,-251,-250,-249,-248,-247,-308,-307]],"properties":{"label":"piesanle"}},{"type":"Polygon","arcs":[[-669,229,-378,-398,411,412]],"properties":{"label":"noopalena"}},{"type":"Polygon","arcs":[[-728,-319,-318,-317,732,733]],"properties":{"label":"esma"}},{"type":"Polygon","arcs":[[734,735,205,-551,-435,736]],"properties":{"label":"tako"}},{"type":"Polygon","arcs":[[-540,-539,-538,-537,296,-611,-610,-609,-639,-541]],"properties":{"label":"osemakyu"}},{"type":"Polygon","arcs":[[737,127,128,129,738,-533,-536,-390,739,740,741,742,743,744]],"properties":{"label":"zokokesebi"}},{"type":"Polygon","arcs":[[745,-733,-316,-315,746,747]],"properties":{"label":"omabu"}},{"type":"Polygon","arcs":[[748,749,-599,402,-100,-99]],"properties":{"label":"zoflelefuna"}},{"type":"Polygon","arcs":[[-270,-269,-268,-262,84,85,750,-641,-700,-685,-689,-688,180,181,182,183,72,751]],"properties":{"label":"tabu"}},{"type":"Polygon","arcs":[[564,565,752,-711,-645,-684]],"properties":{"label":"flokapitano"}},{"type":"Polygon","arcs":[[-673,305,306,307,-246,753]],"properties":{"label":"kose"}},{"type":"Polygon","arcs":[[370,371,372,-529,-532,-531,292,293,294,295,536,537,538,539,754,755,756,-626,-625,757,758,759,760,761,368,369]],"properties":{"label":"kyafoflekya"}},{"type":"Polygon","arcs":[[486,487,44,-682,-208]],"properties":{"label":"trike"}},{"type":"Polygon","arcs":[[-535,-506,762,-325,-324,-392]],"properties":{"label":"eskya"}},{"type":"Polygon","arcs":[[15,763,-698,-690,320]],"properties":{"label":"flomaflepi"}},{"type":"Polygon","arcs":[[338,-595,-581,345,-328,-327]],"properties":{"label":"arfle"}},{"type":"Polygon","arcs":[[130,131,-344,-504,-534,-739]],"properties":{"label":"nozo"}},{"type":"Polygon","arcs":[[236,764,-745,-744,765,235]],"properties":{"label":"butripesi"}},{"type":"Polygon","arcs":[[-653,-389,766,2]],"properties":{"label":"kyasu"}},{"type":"Polygon","arcs":[[767,768,769,770,-756,-755,540,541,542,67,68,69,70]],"properties":{"label":"tamabi"}},{"type":"Polygon","arcs":[[485,327,328,-354,-353,-352]],"properties":{"label":"kyaflobo"}},{"type":"Polygon","arcs":[[566,771,-441,-440,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-648,-647,-715,-714,-713,-712,-753]],"properties":{"label":"arsu"}},{"type":"Polygon","arcs":[[772,773,774,775,-446,-445,-444,-443,-453,-165,-164,-163,-162,-161,308,309,310,311]],"properties":{"label":"trinose"}},{"type":"Polygon","arcs":[[776,42,-651]],"properties":{"label":"kyaesarfofu"}},{"type":"Polygon","arcs":[[354,355,356,777,-589,-289]],"properties":{"label":"luesbinosi"}},{"type":"Polygon","arcs":[[778,379,578,779,780,781]],"properties":{"label":"kane"}},{"type":"Polygon","arcs":[[584,200,201,782,783,784]],"properties":{"label":"kyuflosipeke"}},{"type":"Polygon","arcs":[[-505,-341,-340,-339,-326,-763]],"properties":{"label":"penezo"}},{"type":"Polygon","arcs":[[165,166,785,-629,-628,-643,464,162,163,164]],"properties":{"label":"okyukyu"}},{"type":"Polygon","arcs":[[-706,786,787,-153,10]],"properties":{"label":"okaarzosi"}},{"type":"Polygon","arcs":[[238,239,126,-738,-765,237]],"properties":{"label":"lulugoma"}},{"type":"Polygon","arcs":[[-631,788,-681,455,456,457]],"properties":{"label":"fubifle"}},{"type":"Polygon","arcs":[[21,22,23,24,-597,-596,-750,789,790]],"properties":{"label":"koanflekabu"}},{"type":"Polygon","arcs":[[12,13,-730,-729,-734,-746,-748,791,-787,-705,-704]],"properties":{"label":"sekyubupe"}},{"type":"Polygon","arcs":[[-387,-386,-143,-710,499,792]],"properties":{"label":"kyana"}},{"type":"Polygon","arcs":[[793,575,576,577,340,341,342,343,132,794,-782,-781,-780,579,49,50,51,795]],"properties":{"label":"neke"}},{"type":"Polygon","arcs":[[595,596,25,597,401,598]],"properties":{"label":"nefobi"}},{"type":"Polygon","arcs":[[234,-766,-743,796,-286,-285]],"properties":{"label":"makyu"}},{"type":"Polygon","arcs":[[134,135,378,-779,-795,133]],"properties":{"label":"flopabiflole"}},{"type":"Polygon","arcs":[[330,585,-621,56]],"properties":{"label":"tailees"}},{"type":"Polygon","arcs":[[-428,-427,-426,-442,-772,567]],"properties":{"label":"takakyuflo"}},{"type":"Polygon","arcs":[[797,798,-670,414,-176,-175]],"properties":{"label":"mamakaoma"}},{"type":"Polygon","arcs":[[244,245,246,-573,799,243]],"properties":{"label":"futri"}},{"type":"Polygon","arcs":[[800,801,-659,-671,-199,802]],"properties":{"label":"nosenopa"}},{"type":"Polygon","arcs":[[202,203,204,-736,-735,-737,-434,-563,-562,-561,-560,581,582,-492,583,-785,-784,-783]],"properties":{"label":"omale"}},{"type":"Polygon","arcs":[[19,96,-667,-666,-716]],"properties":{"label":"fuan"}},{"type":"Polygon","arcs":[[-448,-447,-776,-775,-774,-773,312,313,314,315,316,317,545,-481,546,547,548,549]],"properties":{"label":"suifose"}},{"type":"Polygon","arcs":[[36,-656,-655,-802,803]],"properties":{"label":"fletana"}},{"type":"Polygon","arcs":[[-303,-271,-752,73,-406]],"properties":{"label":"nokyanapa"}},{"type":"Polygon","arcs":[[804,-660,220,221,-467,-637]],"properties":{"label":"luko"}},{"type":"Polygon","arcs":[[195,196,490,491,492,493]],"properties":{"label":"kosu"}},{"type":"Polygon","arcs":[[16,-697,-764]],"properties":{"label":"butaflean"}},{"type":"Polygon","arcs":[[-792,-747,-314,415,-154,-788]],"properties":{"label":"flepiespibu"}},{"type":"Polygon","arcs":[[20,-791,-790,-749,-98,-97]],"properties":{"label":"flezopebio"}},{"type":"Polygon","arcs":[[441,-425,602,-239,439,440]],"properties":{"label":"talukyaka"}},{"type":"Polygon","arcs":[[-591,603,59,-677,-676]],"properties":{"label":"seko"}},{"type":"Polygon","arcs":[[574,-794,-796,52,344,580]],"properties":{"label":"nean"}},{"type":"Polygon","arcs":[[-726,41,-777,-650,805]],"properties":{"label":"kefo"}},{"type":"Polygon","arcs":[[187,188,189,190,191,192,193,194,-494,556,557,806,807,808,-116,-115]],"properties":{"label":"esboko"}},{"type":"Polygon","arcs":[[-786,167,168,-680,-789,-630]],"properties":{"label":"nopale"}},{"type":"Polygon","arcs":[[809,-600,-524,-668,-799,810]],"properties":{"label":"ipaar"}},{"type":"Polygon","arcs":[[-213,-212,-692,-216,-215,-214]],"properties":{"label":"flenatafleke"}},{"type":"Polygon","arcs":[[88,89,-460,-459,-458,-457,-642,-751,86,87]],"properties":{"label":"flepearnai"}},{"type":"Polygon","arcs":[[-614,32,811,812,813,-553]],"properties":{"label":"zosina"}},{"type":"Polygon","arcs":[[-180,-179,362,814,815,816,817,-768,71,-184,-183,-182,-181]],"properties":{"label":"anpakyaneflo"}},{"type":"Polygon","arcs":[[608,609,-679,-678,605,64,65,606,607]],"properties":{"label":"kyasi"}},{"type":"Polygon","arcs":[[-778,357,358,58,-604,-590]],"properties":{"label":"kosu"}},{"type":"Polygon","arcs":[[-707,-674,-754,-245,-709,-708]],"properties":{"label":"masesepepi"}},{"type":"Polygon","arcs":[[818,-662,-450,-449,-550,-549]],"properties":{"label":"kyuan"}},{"type":"Polygon","arcs":[[819,820,-803,-198,-197,821]],"properties":{"label":"tritane"}},{"type":"Polygon","arcs":[[-623,-622,-627,-757,-771,-770,-769,-818,-817,-816,-815,363,364,365,366,367,-762,-761,-760,-759,-758,-624]],"properties":{"label":"ifuar"}},{"type":"Polygon","arcs":[[-767,-388,-793,500,1]],"properties":{"label":"koflenopi"}},{"type":"Polygon","arcs":[[-703,-569,-470,612,-170,-169]],"properties":{"label":"paanfoitri"}},{"type":"Polygon","arcs":[[572,247,-661,-805,-636,571]],"properties":{"label":"anpego"}},{"type":"Polygon","arcs":[[-480,-664,-663,-819,-548,-547]],"properties":{"label":"peflolebiko"}},{"type":"Polygon","arcs":[[-809,-808,822,-694,-118,-117]],"properties":{"label":"naar"}},{"type":"Polygon","arcs":[[-731,117,118,119,514,-723]],"properties":{"label":"buko"}},{"type":"Polygon","arcs":[[242,-800,-572,-571,-702,241]],"properties":{"label":"keoarkya"}},{"type":"Polygon","arcs":[[-356,-355,-288,-287,-797,-742,-741,-740,-394,-393,-334,-438,-358,-357]],"properties":{"label":"papi"}},{"type":"Polygon","arcs":[[-193,-192,-409,-408,-554,-814,-813,-812,33,34,35,-804,-801,-821,-820,-822,-196,-195,-194]],"properties":{"label":"kosi"}},{"type":"Polygon","arcs":[[-807,558,559,823,-695,-823]],"properties":{"label":"pefoka"}},{"type":"Polygon","arcs":[[353,329,54,-588]],"properties":{"label":"lesupifo"}},{"type":"Polygon","arcs":[[-501,-500,-499,-701,-489,0]],"properties":{"label":"pasizoma"}},{"type":"Polygon","arcs":[[824,-724,516,427,428,-255]],"properties":{"label":"keo"}},{"type":"Polygon","arcs":[[-824,560,561,825,-634,-696]],"properties":{"label":"zotrina"}},{"type":"Polygon","arcs":[[-620,-727,-806,-649,-693,-204]],"properties":{"label":"neflesu"}},{"type":"Polygon","arcs":[[-732,-717,-725,-825,-254,-253]],"properties":{"label":"fosi"}},{"type":"Polygon","arcs":[[-613,-469,-601,-810,-811,-798,-174,-173,-172,-171]],"properties":{"label":"makya"}},{"type":"Polygon","arcs":[[-826,562,-437,212,-420,-635]],"properties":{"label":"sukyuse"}}]},"7":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-538,-537,296,-611,-610,826]],"properties":{"label":"peika"}},{"type":"Polygon","arcs":[[827,549,-448,-447,-776,828]],"properties":{"label":"pesuzofu"}},{"type":"Polygon","arcs":[[829,830,-748,791,-787,-705]],"properties":{"label":"nosina"}},{"type":"Polygon","arcs":[[364,365,831,-622,832,833]],"properties":{"label":"koluo"}},{"type":"Polygon","arcs":[[366,367,-762,834,-623,-832]],"properties":{"label":"trinoarar"}},{"type":"Polygon","arcs":[[13,-730,835,836]],"properties":{"label":"zonoluta"}},{"type":"Polygon","arcs":[[-647,-715,837,-233,-232,838]],"properties":{"label":"arpaigo"}},{"type":"Polygon","arcs":[[-270,839,182,183,72,751]],"properties":{"label":"komasuanne"}},{"type":"Polygon","arcs":[[-835,-761,-760,-759,-758,-624]],"properties":{"label":"tanekata"}},{"type":"Polygon","arcs":[[316,840,841,842,843,315]],"properties":{"label":"keesgoeses"}},{"type":"Polygon","arcs":[[664,665,844,845,663,-479]],"properties":{"label":"pekyatribule"}},{"type":"Polygon","arcs":[[446,846,707,847,444,445]],"properties":{"label":"kokaise"}},{"type":"Polygon","arcs":[[22,848,849]],"properties":{"label":"gobuta"}},{"type":"Polygon","arcs":[[162,163,850,-628,-643,464]],"properties":{"label":"zoflenafo"}},{"type":"Polygon","arcs":[[851,852,853,615,616,656]],"properties":{"label":"bokyu"}},{"type":"Polygon","arcs":[[-180,-179,362,814,854,-181]],"properties":{"label":"legonomasi"}},{"type":"Polygon","arcs":[[128,129,738,-533,855,856]],"properties":{"label":"zobupafle"}},{"type":"Polygon","arcs":[[-848,708,-244,-243,857,443]],"properties":{"label":"flelunearne"}},{"type":"Polygon","arcs":[[858,-688,180,181,-840,-269]],"properties":{"label":"learbimano"}},{"type":"Polygon","arcs":[[859,24,-597,860]],"properties":{"label":"zobukekyu"}},{"type":"Polygon","arcs":[[861,115,116,730,-722,-721]],"properties":{"label":"lese"}},{"type":"Polygon","arcs":[[-813,862,863,864,-193,865]],"properties":{"label":"arkokefu"}},{"type":"Polygon","arcs":[[767,768,866,867,70]],"properties":{"label":"zofosetri"}},{"type":"Polygon","arcs":[[868,50,869,793,575]],"properties":{"label":"luogo"}},{"type":"Polygon","arcs":[[112,113,114,-862,-720,870]],"properties":{"label":"neke"}},{"type":"Polygon","arcs":[[871,-784,872,-735,873,874]],"properties":{"label":"artano"}},{"type":"Polygon","arcs":[[875,721,722,515,723,724]],"properties":{"label":"kyupebina"}},{"type":"Polygon","arcs":[[-294,876,877,878,879,-295]],"properties":{"label":"sufopa"}},{"type":"Polygon","arcs":[[21,-850,880,881,790]],"properties":{"label":"lekoikyu"}},{"type":"Polygon","arcs":[[-625,757,882,537,538,883]],"properties":{"label":"otrika"}},{"type":"Polygon","arcs":[[512,884,-718,731,-252,885]],"properties":{"label":"arisitripe"}},{"type":"Polygon","arcs":[[886,-874,-737,-434,-563,-562]],"properties":{"label":"lenekyaizo"}},{"type":"Polygon","arcs":[[12,-837,887,-830,-704]],"properties":{"label":"kataan"}},{"type":"Polygon","arcs":[[888,511,-886,-251,-250,889]],"properties":{"label":"nabuzo"}},{"type":"Polygon","arcs":[[-653,-389,766,2]],"properties":{"label":"aressibi"}},{"type":"Polygon","arcs":[[890,891,68]],"properties":{"label":"senafle"}},{"type":"Polygon","arcs":[[608,609,-679,892,893,607]],"properties":{"label":"koseko"}},{"type":"Polygon","arcs":[[-843,894,-829,-775,-774,895]],"properties":{"label":"goigo"}},{"type":"Polygon","arcs":[[33,896,897,-863,-812]],"properties":{"label":"pabo"}},{"type":"Polygon","arcs":[[-460,-459,-458,898,88,89]],"properties":{"label":"luopa"}},{"type":"Polygon","arcs":[[666,97,98,899,900,-845]],"properties":{"label":"anlebies"}},{"type":"Polygon","arcs":[[-899,-457,-642,-751,86,87]],"properties":{"label":"tapi"}},{"type":"Polygon","arcs":[[314,-844,-896,-773,312,313]],"properties":{"label":"nole"}},{"type":"Polygon","arcs":[[448,901,-675,706,-847,447]],"properties":{"label":"lupaflo"}},{"type":"Polygon","arcs":[[902,-445,-444,-443,903,904]],"properties":{"label":"buo"}},{"type":"Polygon","arcs":[[164,165,166,785,-629,-851]],"properties":{"label":"napi"}},{"type":"Polygon","arcs":[[34,905,906,-897]],"properties":{"label":"trizoobi"}},{"type":"Polygon","arcs":[[368,907,-532,908,760,761]],"properties":{"label":"sukya"}},{"type":"Polygon","arcs":[[-836,-729,-734,-746,-831,-888]],"properties":{"label":"anbu"}},{"type":"Polygon","arcs":[[-865,909,-822,-196,-195,-194]],"properties":{"label":"taflo"}},{"type":"Polygon","arcs":[[750,-641,-700,-685,910,85]],"properties":{"label":"flekekezo"}},{"type":"Polygon","arcs":[[-900,99,100,101,-452,911]],"properties":{"label":"fobule"}},{"type":"Polygon","arcs":[[769,770,-756,912,913,-867]],"properties":{"label":"nokesusi"}},{"type":"Polygon","arcs":[[756,-626,-884,539,754,755]],"properties":{"label":"flepa"}},{"type":"Polygon","arcs":[[-846,-901,-912,-451,661,662]],"properties":{"label":"arbifoneno"}},{"type":"Polygon","arcs":[[-554,-814,-866,-192,-409,-408]],"properties":{"label":"anna"}},{"type":"Polygon","arcs":[[-492,583,-785,-872,914,582]],"properties":{"label":"arnele"}},{"type":"Polygon","arcs":[[654,915,916,-852,657,658]],"properties":{"label":"kyukobokyu"}},{"type":"Polygon","arcs":[[643,644,645,646,647,-227]],"properties":{"label":"near"}},{"type":"Polygon","arcs":[[-778,357,358,58,-604,-590]],"properties":{"label":"mabinosuar"}},{"type":"Polygon","arcs":[[-714,917,-236,-235,-234,-838]],"properties":{"label":"floflokyanezo"}},{"type":"Polygon","arcs":[[918,547,548,-828,-895,-842]],"properties":{"label":"segoikeno"}},{"type":"Polygon","arcs":[[919,-856,-536,-390,739,920]],"properties":{"label":"bofleartase"}},{"type":"Polygon","arcs":[[-870,51,795]],"properties":{"label":"nebi"}},{"type":"Polygon","arcs":[[442,-858,-242,-241,-166,452]],"properties":{"label":"flolu"}},{"type":"Polygon","arcs":[[921,-904,-453,-165,-164,922]],"properties":{"label":"boanflefo"}},{"type":"Polygon","arcs":[[743,923,-921,740,741,742]],"properties":{"label":"sitabofuar"}},{"type":"Polygon","arcs":[[924,676,60,925]],"properties":{"label":"nokyakyu"}},{"type":"Polygon","arcs":[[778,379,578,779,780,781]],"properties":{"label":"kona"}},{"type":"Polygon","arcs":[[737,127,-857,-920,-924,744]],"properties":{"label":"boeskyanaflo"}},{"type":"Polygon","arcs":[[-296,-880,926,360,-298,-297]],"properties":{"label":"eskafle"}},{"type":"Polygon","arcs":[[-879,927,-926,61,359,-927]],"properties":{"label":"tafu"}},{"type":"Polygon","arcs":[[110,111,-871,-719,-885,513]],"properties":{"label":"flear"}},{"type":"Polygon","arcs":[[450,451,102,-672,-902,449]],"properties":{"label":"bufufono"}},{"type":"Polygon","arcs":[[-898,-907,928,-820,-910,-864]],"properties":{"label":"nalubuna"}},{"type":"Polygon","arcs":[[929,-592,675,-925,-928,-878]],"properties":{"label":"zolunono"}},{"type":"Polygon","arcs":[[930,-440,-238,-237,-918,-713]],"properties":{"label":"kago"}},{"type":"Polygon","arcs":[[-228,-648,-839,-231,-230,-229]],"properties":{"label":"nefle"}},{"type":"Polygon","arcs":[[774,775,-446,-903,931,932]],"properties":{"label":"nakyu"}},{"type":"Polygon","arcs":[[566,771,-441,-931,-712,-753]],"properties":{"label":"pakyu"}},{"type":"Polygon","arcs":[[933,-932,-905,-922,934,309]],"properties":{"label":"sigotrise"}},{"type":"Polygon","arcs":[[935,-781,936,577,340,341]],"properties":{"label":"nesubikyu"}},{"type":"Polygon","arcs":[[-909,-531,292,293,937,759]],"properties":{"label":"naesar"}},{"type":"Polygon","arcs":[[938,939,542,67,-892]],"properties":{"label":"noeszopi"}},{"type":"Polygon","arcs":[[-780,579,49,-869,576,-937]],"properties":{"label":"foka"}},{"type":"Polygon","arcs":[[-797,-742,940,-355,-288,-287]],"properties":{"label":"lupama"}},{"type":"Polygon","arcs":[[-783,202,203,204,-736,-873]],"properties":{"label":"kyasunano"}},{"type":"Polygon","arcs":[[-172,941,-811,-798,-174,-173]],"properties":{"label":"siflo"}},{"type":"Polygon","arcs":[[-913,-755,540,541,-940,942]],"properties":{"label":"kyuzo"}},{"type":"Polygon","arcs":[[-893,-678,605,64,943]],"properties":{"label":"nearoan"}},{"type":"Polygon","arcs":[[370,371,372,-529,-908,369]],"properties":{"label":"bisukyubopi"}},{"type":"Polygon","arcs":[[-613,-469,-601,-810,-942,-171]],"properties":{"label":"fleke"}},{"type":"Polygon","arcs":[[37,944,-916,655]],"properties":{"label":"naan"}},{"type":"Polygon","arcs":[[718,719,720,-876,716,717]],"properties":{"label":"selene"}},{"type":"Polygon","arcs":[[-945,38,945,-853,-917]],"properties":{"label":"bulene"}},{"type":"Polygon","arcs":[[-946,39,614,-854]],"properties":{"label":"fleflofo"}},{"type":"Polygon","arcs":[[-292,-291,-593,-930,-877,-293]],"properties":{"label":"sekeansisi"}},{"type":"Polygon","arcs":[[-308,946,-890,-249,-248,-247]],"properties":{"label":"subuneno"}},{"type":"Polygon","arcs":[[-906,35,-804,-801,-821,-929]],"properties":{"label":"kona"}},{"type":"Polygon","arcs":[[947,948,557,806,807,949]],"properties":{"label":"taar"}},{"type":"Polygon","arcs":[[84,-911,-689,-859,-268,-262]],"properties":{"label":"keflo"}},{"type":"Polygon","arcs":[[545,-481,546,-919,-841,317]],"properties":{"label":"peibigo"}},{"type":"Polygon","arcs":[[132,794,-782,-936,342,343]],"properties":{"label":"kebo"}},{"type":"Polygon","arcs":[[950,194,-494,556,-949,951]],"properties":{"label":"luflosikyu"}},{"type":"Polygon","arcs":[[191,192,193,-951,952,190]],"properties":{"label":"kyutri"}},{"type":"Polygon","arcs":[[-184,953,817,-768,71]],"properties":{"label":"leanifle"}},{"type":"Polygon","arcs":[[606,-894,-944,65]],"properties":{"label":"sunefusu"}},{"type":"Polygon","arcs":[[-882,954,-861,-596,-750,789]],"properties":{"label":"neopago"}},{"type":"Polygon","arcs":[[772,773,-933,-934,310,311]],"properties":{"label":"fokoesar"}},{"type":"Polygon","arcs":[[-540,-539,-827,-609,-639,-541]],"properties":{"label":"sunotabuo"}},{"type":"Polygon","arcs":[[955,-393,-334,-438,-358,-357]],"properties":{"label":"lekoflolulu"}},{"type":"Polygon","arcs":[[187,956,-950,808,-116,-115]],"properties":{"label":"gokya"}},{"type":"Polygon","arcs":[[-182,-855,815,816,-954,-183]],"properties":{"label":"kyubosu"}},{"type":"Polygon","arcs":[[308,-935,-923,-163,-162,-161]],"properties":{"label":"kana"}},{"type":"Polygon","arcs":[[429,-348,510,-889,-947,-307]],"properties":{"label":"nenope"}},{"type":"Polygon","arcs":[[758,-938,294,295,536,-883]],"properties":{"label":"kyuo"}},{"type":"Polygon","arcs":[[581,-915,-875,-887,-561,-560]],"properties":{"label":"oankya"}},{"type":"Polygon","arcs":[[-741,-740,-394,-956,-356,-941]],"properties":{"label":"pafo"}},{"type":"Polygon","arcs":[[-815,363,-834,957,958,-816]],"properties":{"label":"nenama"}},{"type":"Polygon","arcs":[[189,-953,-952,-948,-957,188]],"properties":{"label":"flesetri"}},{"type":"Polygon","arcs":[[-849,23,-860,-955,-881]],"properties":{"label":"sugole"}},{"type":"Polygon","arcs":[[-817,-959,959,-770,-769,-818]],"properties":{"label":"kyusu"}},{"type":"Polygon","arcs":[[-731,117,118,119,514,-723]],"properties":{"label":"konake"}},{"type":"Polygon","arcs":[[-868,-914,-943,-939,-891,69]],"properties":{"label":"lenoanne"}},{"type":"Polygon","arcs":[[-958,-833,-627,-757,-771,-960]],"properties":{"label":"ianle"}}]},"depth":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77]],"properties":{"depth":0}},{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77]],"properties":{"depth":1}},{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77]],"properties":{"depth":2}},{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77],[-82,184,185,150,151,83,84,85,86,-146]],"properties":{"depth":3}},{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,334,156,157,158,-338,-337,-155,-154,-153,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,146,147,148,107,272,273,-260,274,283,280,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,-187,-218,-217,-216,281,282,134,135,136,47,48,49,50,51,52,344,345,328,329,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77],[-258,-257,-256,-255,-254,-253,-252,-251,-267,-219],[80,184,335,-144,-143,-142,-141,-140,-139,-304,-303,-271,-270,-269,-268,-262,84,85,86,87,88,300]],"properties":{"depth":4}},{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,-397,-396,158,159,308,309,310,311,312,415,-154,-153,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,146,147,403,432,-431,101,102,103,304,305,429,-348,-347,109,110,409,410,276,277,278,279,280,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,-187,-218,-217,-216,281,420,421,131,132,133,134,135,378,379,380,48,49,50,51,52,344,345,328,329,54,55,56,330,331,332,-438,358,58,59,60,61,359,360,298,299,63,64,65,66,67,68,69,70,71,72,73,-406,-303,-271,-270,-269,-268,-262,84,85,86,87,88,89,90,91,92,93,-401,384,-145,-144,-143,-142,-141,-140,-139,-138,75,76,77],[-435,-434,-437,-212,-211,-436],[-391,-390,-394,-393,322,-392],[-233,-232,-231,-378,-398,-399,367,368,369,370,371,372,373,374,-287,-286,-285,-234],[-258,-257,-256,-255,-254,-253,-252,-251,-267,-219]],"properties":{"depth":5}},{"type":"MultiPolygon","arcs":[[[1,2,3,-495,-484,-382,-389,-388,-387,-386,-143,-142,-141,-140,-139,-138,75,76,-490,-489,0]],[[-303,-271,-270,-269,-268,-262,84,85,86,87,88,89,90,91,92,460,461,462,463,464,-162,-161,308,309,310,311,312,415,-154,-153,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,597,401,402,100,101,102,103,304,305,429,-348,510,511,512,513,110,111,112,113,187,188,189,190,-409,-408,-554,-553,-614,32,33,34,35,36,37,38,39,40,41,42,43,44,45,-187,-218,-217,-216,-215,-214,-420,-419,-418,-472,-471,119,514,515,516,-427,-426,-425,602,239,126,127,128,129,130,131,132,133,134,135,378,379,578,579,49,50,51,52,344,345,328,329,54,55,56,330,585,586,-352,485,-327,-326,-325,-324,-392,-535,-506,-505,341,342,-504,-534,-533,-536,-390,-394,-393,-334,-438,358,58,59,60,61,359,360,298,604,605,64,65,66,67,68,69,70,71,72,73,-406],[583,584,-200,-199,-198,490],[201,202,-620,-619,616,617],[-435,-434,-437,-212,-211,-210,-209,-208,-207,-551],[492,556,557,558,581,582],[-233,-232,-231,-378,-398,411,412,413,414,176,177,362,363,364,365,366,367,368,369,370,371,372,-529,-532,-531,-292,-291,-593,-592,-591,-590,-589,-289,-288,-287,-286,-285,-234],[-227,-226,-225,-556,563,564,-602,-256,-255,-254,-253,-252,-251,-267,219,220,221,-467,-466,-470,-469,-601,-600,-524,-523,-228],[-479,-478,-477,-482,-481,-480],[-595,574,575,576,577,-340]]],"properties":{"depth":6}},{"type":"MultiPolygon","arcs":[[[-653,-389,766,2]],[[-270,-269,-268,-262,84,85,86,87,88,89,-460,-459,-458,-457,-642,-641,-700,-685,-689,-688,-180,-179,362,363,364,365,366,367,368,369,370,371,372,-529,-532,-531,-292,-291,-593,-592,675,676,60,61,359,360,-298,-611,-679,-678,605,64,65,606,607,-639,541,542,67,68,69,70,71,72,751],[-625,-624,-623,-622,-627,-626]],[[785,-629,-628,-643,464,-162,-161,308,309,310,311,312,313,314,315,316,317,545,-481,546,547,548,549,448,449,661,662,663,-479,664,665,666,97,98,99,100,101,102,-672,-675,706,707,708,-244,-243,-242,-241,166]],[[12,13,-730,-729,-734,-746,-748,791,-787,-705,-704]],[[429,-348,510,511,512,513,110,111,112,113,187,188,189,190,-409,-408,-554,-814,-813,-812,33,34,35,-804,-801,-821,-820,-822,-196,-494,556,557,806,807,808,116,117,118,119,514,515,723,724,716,731,-252,-251,-250,-249,-248,-247,-308,-307]],[[566,771,-441,-440,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,643,644,645,-715,-714,-713,-712,-753]],[[-613,-469,-601,-810,-811,-798,-174,-173,-172,-171]],[[-778,-357,-356,-355,-288,-287,-797,742,743,744,737,127,128,129,738,-533,-536,-390,-394,-393,-334,-438,358,58,-604,-590]],[[793,575,576,577,340,341,342,343,132,794,778,379,578,579,49,50,51,795]],[[202,203,204,-736,-735,-737,-434,-563,-562,-561,-560,581,582,-492,583,-785,-784,-783]],[[654,655,37,38,39,614,615,616,656,657,658]],[[21,22,23,24,-597,-596,-750,789,790]]],"properties":{"depth":7}}]}},"arcs":[[[1,0],[1,-1]],[[2,-1],[1,1],[1,-1]],[[4,-1],[1,1],[1,-1],[0,-1]],[[6,-2],[1,-1],[0,-1]],[[7,-4],[1,-1],[0,-1],[-1,-1]],[[7,-7],[0,-1]],[[7,-8],[1,-1]],[[8,-9],[1,1],[1,-1]],[[10,-9],[1,1],[1,-1],[0,-1]],[[12,-10],[1,-1]],[[13,-11],[1,1],[1,-1]],[[15,-11],[1,1],[1,-1],[0,-1]],[[17,-12],[1,-1],[0,-1]],[[18,-14],[1,-1],[0,-1],[-1,-1]],[[18,-17],[0,-1]],[[18,-18],[1,-1],[0,-1]],[[19,-20],[1,-1],[0,-1],[-1,-1],[-1,1]],[[18,-22],[-1,-1]],[[17,-23],[0,-1],[-1,-1]],[[16,-25],[0,-1],[-1,-1]],[[15,-27],[0,-1]],[[15,-28],[1,-1],[0,-1]],[[16,-30],[1,-1],[0,-1],[-1,-1],[-1,1]],[[15,-32],[-1,-1],[-1,1]],[[13,-32],[-1,-1],[-1,1],[0,1]],[[11,-31],[-1,1]],[[10,-30],[-1,-1]],[[9,-31],[0,-1],[-1,-1]],[[8,-33],[0,-1],[-1,-1]],[[7,-35],[0,-1]],[[7,-36],[1,-1],[0,-1]],[[8,-38],[1,-1],[0,-1],[-1,-1],[-1,1]],[[7,-40],[-1,-1]],[[6,-41],[0,-1],[-1,-1]],[[5,-43],[0,-1],[-1,-1],[-1,1]],[[3,-44],[-1,-1]],[[2,-45],[0,-1],[-1,-1]],[[1,-47],[0,-1],[-1,-1],[-1,1]],[[-1,-48],[-1,-1],[-1,1]],[[-3,-48],[-1,-1],[-1,1],[0,1]],[[-5,-47],[-1,1]],[[-6,-46],[-1,-1],[-1,1]],[[-8,-46],[-1,-1],[-1,1],[0,1],[1,1]],[[-9,-44],[0,1]],[[-9,-43],[-1,1],[0,1]],[[-10,-41],[-1,1],[0,1]],[[-11,-39],[-1,1]],[[-12,-38],[-1,-1],[-1,1]],[[-14,-38],[-1,-1],[-1,1],[0,1]],[[-16,-37],[-1,1]],[[-17,-36],[-1,-1],[-1,1]],[[-19,-36],[-1,-1],[-1,1],[0,1],[1,1]],[[-20,-34],[0,1]],[[-20,-33],[-1,1],[0,1]],[[-21,-31],[-1,1],[0,1],[1,1]],[[-21,-28],[0,1],[1,1]],[[-20,-26],[0,1],[1,1],[1,-1]],[[-18,-25],[1,1]],[[-17,-24],[0,1]],[[-17,-23],[-1,1],[0,1]],[[-18,-21],[-1,1],[0,1],[1,1]],[[-18,-18],[0,1]],[[-18,-17],[-1,1],[0,1]],[[-19,-15],[-1,1],[0,1],[1,1]],[[-19,-12],[0,1],[1,1]],[[-18,-10],[0,1],[1,1],[1,-1]],[[-16,-9],[1,1]],[[-15,-8],[0,1],[1,1]],[[-14,-6],[0,1],[1,1],[1,-1],[0,-1]],[[-12,-6],[1,-1]],[[-11,-7],[1,1],[1,-1]],[[-9,-7],[1,1],[1,-1]],[[-7,-7],[1,1]],[[-6,-6],[0,1],[1,1]],[[-5,-4],[0,1],[1,1],[1,-1]],[[-3,-3],[1,1]],[[-2,-2],[0,1],[1,1]],[[-1,0],[0,1],[1,1],[1,-1],[0,-1]],[[3,-7],[0,-1]],[[3,-8],[-1,-1]],[[2,-9],[-1,1]],[[1,-8],[-1,-1]],[[0,-9],[-1,1]],[[-1,-8],[-1,-1]],[[-2,-9],[0,-1]],[[-2,-10],[1,-1]],[[-1,-11],[1,1]],[[0,-10],[1,-1]],[[1,-11],[1,1]],[[2,-10],[1,-1]],[[3,-11],[1,1]],[[4,-10],[0,1]],[[4,-9],[1,1]],[[5,-8],[0,1]],[[5,-7],[1,1]],[[6,-6],[1,-1]],[[15,-27],[-1,1]],[[14,-26],[-1,-1]],[[13,-27],[-1,1]],[[12,-26],[-1,-1]],[[11,-27],[-1,1]],[[10,-26],[0,1]],[[10,-25],[-1,1]],[[9,-24],[-1,-1]],[[8,-25],[0,-1]],[[8,-26],[-1,-1]],[[7,-27],[0,-1]],[[7,-28],[-1,-1]],[[6,-29],[-1,1]],[[5,-28],[-1,-1]],[[4,-29],[0,-1]],[[4,-30],[-1,-1]],[[3,-31],[0,-1]],[[3,-32],[-1,-1]],[[2,-33],[-1,1]],[[1,-32],[-1,-1]],[[0,-33],[-1,1]],[[-1,-32],[-1,-1]],[[-2,-33],[-1,1]],[[-3,-32],[0,1]],[[-3,-31],[-1,1]],[[-4,-30],[-1,-1]],[[-5,-31],[-1,1]],[[-6,-30],[-1,-1]],[[-7,-31],[-1,1]],[[-8,-30],[0,1]],[[-8,-29],[-1,1]],[[-9,-28],[-1,-1]],[[-10,-29],[0,-1]],[[-10,-30],[-1,-1]],[[-11,-31],[0,-1]],[[-11,-32],[-1,-1]],[[-12,-33],[0,-1]],[[-12,-34],[1,-1]],[[-11,-35],[0,-1]],[[-11,-36],[-1,-1]],[[-12,-37],[0,-1]],[[-3,-3],[0,-1]],[[-3,-4],[1,-1]],[[-2,-5],[1,1]],[[-1,-4],[1,-1]],[[0,-5],[1,1]],[[1,-4],[1,-1]],[[2,-5],[0,-1]],[[2,-6],[1,-1]],[[0,-9],[0,-1]],[[9,-31],[-1,1]],[[8,-30],[0,1]],[[8,-29],[-1,1]],[[0,-5],[0,-1]],[[0,-6],[-1,-1]],[[-1,-7],[0,-1]],[[13,-11],[0,-1]],[[13,-12],[-1,-1]],[[12,-13],[-1,1]],[[11,-12],[0,1]],[[11,-11],[-1,1]],[[10,-10],[-1,-1]],[[9,-11],[0,-1]],[[9,-12],[-1,-1]],[[8,-13],[-1,1]],[[7,-12],[-1,-1]],[[6,-13],[0,-1]],[[6,-14],[-1,-1]],[[5,-15],[0,-1]],[[5,-16],[-1,-1]],[[4,-17],[-1,1]],[[3,-16],[-1,-1]],[[2,-17],[-1,1]],[[1,-16],[-1,-1]],[[0,-17],[-1,1]],[[-1,-16],[0,1]],[[-1,-15],[-1,1]],[[-2,-14],[-1,-1]],[[-3,-15],[-1,1]],[[-4,-14],[-1,-1]],[[-5,-15],[-1,1]],[[-6,-14],[0,1]],[[-6,-13],[1,1]],[[-5,-12],[0,1]],[[-5,-11],[-1,1]],[[-6,-10],[0,1]],[[-6,-9],[-1,1]],[[-7,-8],[0,1]],[[1,-8],[0,1]],[[1,-7],[-1,1]],[[-10,-38],[-1,-1]],[[2,-33],[0,-1]],[[2,-34],[1,-1]],[[3,-35],[0,-1]],[[3,-36],[1,-1]],[[4,-37],[0,-1]],[[4,-38],[-1,-1]],[[3,-39],[-1,1]],[[2,-38],[-1,-1]],[[1,-39],[0,-1]],[[1,-40],[-1,-1]],[[0,-41],[0,-1]],[[0,-42],[-1,-1]],[[-1,-43],[-1,1]],[[-2,-42],[-1,-1]],[[-3,-43],[-1,1]],[[-4,-42],[-1,-1]],[[-5,-43],[-1,1]],[[-6,-42],[0,1]],[[-6,-41],[-1,1]],[[-7,-40],[-1,-1]],[[-8,-41],[-1,1]],[[-9,-40],[0,1]],[[-9,-39],[1,1]],[[-8,-38],[0,1]],[[-8,-37],[1,1]],[[-7,-36],[0,1]],[[-7,-35],[-1,1]],[[-8,-34],[-1,-1]],[[-9,-35],[0,-1]],[[-9,-36],[-1,-1]],[[-10,-37],[0,-1]],[[0,-25],[1,1]],[[1,-24],[0,1]],[[1,-23],[-1,1]],[[0,-22],[0,1]],[[0,-21],[-1,1]],[[-1,-20],[-1,-1]],[[-2,-21],[-1,1]],[[-3,-20],[-1,-1]],[[-4,-21],[-1,1]],[[-5,-20],[0,1]],[[-5,-19],[-1,1]],[[-6,-18],[-1,-1]],[[-7,-19],[0,-1]],[[-7,-20],[-1,-1]],[[-8,-21],[0,-1]],[[-8,-22],[-1,-1]],[[-9,-23],[0,-1]],[[-9,-24],[1,-1]],[[-8,-25],[0,-1]],[[-8,-26],[1,-1]],[[-7,-27],[0,-1]],[[-7,-28],[-1,-1]],[[4,-17],[0,-1]],[[4,-18],[1,-1]],[[5,-19],[0,-1]],[[5,-20],[1,-1]],[[6,-21],[0,-1]],[[6,-22],[-1,-1]],[[5,-23],[-1,1]],[[4,-22],[-1,-1]],[[3,-23],[0,-1]],[[3,-24],[-1,-1]],[[2,-25],[0,-1]],[[2,-26],[-1,-1]],[[1,-27],[-1,1]],[[0,-26],[-1,-1]],[[-1,-27],[-1,1]],[[-2,-26],[0,1]],[[-2,-25],[1,1]],[[-1,-24],[1,-1]],[[8,-33],[-1,1]],[[7,-32],[0,1]],[[7,-31],[1,1]],[[-2,-9],[-1,1]],[[-3,-8],[0,1]],[[-3,-7],[1,1]],[[-2,-6],[1,-1]],[[0,-26],[0,1]],[[1,-24],[1,-1]],[[-3,-8],[-1,-1]],[[-4,-9],[-1,1]],[[-5,-8],[0,1]],[[-5,-7],[1,1]],[[-4,-6],[1,-1]],[[6,-29],[0,-1]],[[6,-30],[1,-1]],[[7,-32],[-1,-1]],[[6,-33],[-1,1]],[[5,-32],[-1,-1]],[[4,-33],[0,-1]],[[4,-34],[1,-1]],[[5,-35],[1,1]],[[6,-34],[1,-1]],[[-9,-35],[-1,1]],[[-10,-34],[-1,-1]],[[6,-33],[0,-1]],[[-9,-23],[-1,1]],[[-10,-22],[-1,-1]],[[-11,-23],[-1,1]],[[-12,-22],[-1,-1]],[[-13,-23],[-1,1]],[[-14,-22],[0,1]],[[-14,-21],[1,1]],[[-13,-20],[0,1]],[[-13,-19],[-1,1]],[[-14,-18],[0,1]],[[-14,-17],[-1,1]],[[-15,-16],[0,1]],[[-15,-15],[-1,1]],[[-16,-14],[-1,-1]],[[-17,-15],[-1,1]],[[-18,-14],[-1,-1]],[[2,-10],[0,1]],[[-2,-5],[0,-1]],[[-4,-6],[0,1]],[[-4,-5],[1,1]],[[8,-25],[-1,1]],[[7,-24],[-1,-1]],[[6,-25],[-1,1]],[[5,-24],[0,1]],[[8,-13],[0,-1]],[[8,-14],[1,-1]],[[9,-15],[1,1]],[[10,-14],[1,-1]],[[11,-15],[1,1]],[[12,-14],[1,-1]],[[13,-15],[0,-1]],[[13,-16],[1,-1]],[[14,-17],[0,-1]],[[14,-18],[1,-1]],[[15,-19],[1,1]],[[16,-18],[1,-1]],[[17,-19],[1,1]],[[-11,-36],[1,-1]],[[-15,-27],[0,-1]],[[-15,-28],[-1,-1]],[[-16,-29],[0,-1]],[[-16,-30],[-1,-1]],[[-17,-31],[-1,1]],[[-18,-30],[-1,-1]],[[-19,-31],[-1,1]],[[-20,-30],[-1,-1]],[[-18,-25],[0,-1]],[[-18,-26],[1,-1]],[[-17,-27],[1,1]],[[-16,-26],[1,-1]],[[12,-10],[-1,-1]],[[1,-7],[1,1]],[[11,-12],[-1,-1]],[[10,-13],[-1,1]],[[-17,-31],[0,-1]],[[-17,-32],[1,-1]],[[-16,-33],[1,1]],[[-15,-32],[1,-1]],[[-14,-33],[1,1]],[[-13,-32],[1,-1]],[[-20,-33],[1,1]],[[-19,-32],[0,1]],[[5,-28],[0,1]],[[5,-27],[1,1]],[[6,-26],[1,-1]],[[-17,-27],[0,-1]],[[-17,-28],[-1,-1]],[[-18,-29],[-1,1]],[[-19,-28],[-1,-1]],[[-20,-29],[0,-1]],[[-13,-23],[0,-1]],[[-13,-24],[-1,-1]],[[-14,-25],[-1,1]],[[-15,-24],[-1,-1]],[[-16,-25],[-1,1]],[[-18,-17],[1,1]],[[-17,-16],[0,1]],[[10,-13],[0,-1]],[[-6,-13],[-1,1]],[[-7,-12],[-1,-1]],[[-8,-13],[0,-1]],[[-8,-14],[-1,-1]],[[-9,-15],[0,-1]],[[-9,-16],[-1,-1]],[[-10,-17],[0,-1]],[[-10,-18],[1,-1]],[[-9,-19],[0,-1]],[[-9,-20],[-1,-1]],[[-10,-21],[-1,1]],[[-11,-20],[-1,-1]],[[-12,-21],[0,-1]],[[-8,-21],[-1,1]],[[-9,-19],[1,1]],[[-8,-18],[1,-1]],[[-12,-37],[-1,1]],[[-13,-36],[-1,-1]],[[-14,-37],[0,-1]],[[5,-3],[0,-1]],[[5,-4],[-1,-1]],[[4,-5],[0,-1]],[[4,-6],[-1,-1]],[[2,-5],[1,1]],[[3,-4],[0,1]],[[3,-3],[1,1]],[[4,-2],[1,-1]],[[-13,-27],[0,-1]],[[-13,-28],[-1,-1]],[[-14,-29],[-1,1]],[[-15,-27],[1,1]],[[-14,-26],[1,-1]],[[10,-9],[0,-1]],[[9,-11],[-1,1]],[[8,-10],[0,1]],[[-8,-17],[0,-1]],[[-9,-16],[1,-1]],[[4,-9],[-1,1]],[[4,-6],[1,-1]],[[10,-29],[1,1]],[[11,-28],[0,1]],[[8,-29],[1,1]],[[9,-28],[1,-1]],[[-4,-5],[-1,1]],[[7,-36],[-1,-1]],[[6,-37],[-1,1]],[[5,-36],[-1,-1]],[[4,-30],[1,-1]],[[5,-31],[0,-1]],[[-8,-17],[1,1]],[[-7,-16],[1,-1]],[[-6,-17],[1,1]],[[-5,-16],[0,1]],[[12,-14],[0,1]],[[-5,-31],[0,-1]],[[-5,-32],[-1,-1]],[[-6,-33],[0,-1]],[[-6,-34],[-1,-1]],[[-10,-34],[0,1]],[[-10,-33],[-1,1]],[[-10,-22],[0,1]],[[-6,-30],[0,1]],[[-6,-29],[1,1]],[[-5,-28],[1,-1]],[[-4,-29],[1,1]],[[-3,-28],[0,1]],[[-3,-27],[1,1]],[[6,-25],[0,-1]],[[10,-26],[-1,-1]],[[9,-27],[-1,1]],[[9,-28],[0,1]],[[-6,-37],[0,-1]],[[-6,-38],[-1,-1]],[[-7,-39],[-1,1]],[[-7,-36],[1,-1]],[[-16,-25],[0,-1]],[[6,-30],[-1,-1]],[[-7,-27],[1,1]],[[-6,-26],[1,-1]],[[-5,-27],[0,-1]],[[6,-17],[0,-1]],[[6,-18],[1,-1]],[[7,-19],[1,1]],[[8,-18],[1,-1]],[[9,-19],[0,-1]],[[9,-20],[1,-1]],[[10,-21],[0,-1]],[[10,-22],[1,-1]],[[11,-23],[0,-1]],[[11,-24],[-1,-1]],[[5,-16],[1,-1]],[[4,-5],[-1,1]],[[-1,-15],[1,1]],[[0,-14],[0,1]],[[0,-13],[1,1]],[[1,-12],[1,-1]],[[2,-13],[1,1]],[[3,-12],[0,1]],[[5,-8],[1,-1]],[[6,-9],[0,-1]],[[6,-10],[-1,-1]],[[5,-11],[0,-1]],[[5,-12],[1,-1]],[[1,-19],[0,-1]],[[1,-20],[-1,-1]],[[-1,-20],[0,1]],[[-1,-19],[1,1]],[[0,-18],[1,-1]],[[-3,-32],[-1,-1]],[[-4,-33],[-1,1]],[[-7,-15],[0,-1]],[[-8,-14],[1,-1]],[[7,-12],[0,1]],[[7,-11],[1,1]],[[16,-21],[0,-1]],[[16,-22],[-1,-1]],[[15,-23],[-1,1]],[[14,-22],[0,1]],[[14,-21],[1,1]],[[15,-20],[1,-1]],[[6,-5],[0,-1]],[[5,-4],[1,-1]],[[-4,-29],[0,-1]],[[-18,-29],[0,-1]],[[-8,-41],[0,-1]],[[-8,-42],[-1,-1]],[[1,0],[-1,-1]],[[0,-1],[-1,1]],[[0,-41],[-1,1]],[[-1,-40],[0,1]],[[-1,-39],[1,1]],[[0,-38],[1,-1]],[[6,-5],[1,1]],[[5,-35],[0,-1]],[[3,-35],[1,1]],[[-1,-3],[1,1]],[[0,-2],[1,-1]],[[1,-3],[1,1]],[[2,-2],[0,1]],[[-2,-2],[1,-1]],[[-7,-15],[1,1]],[[-13,-31],[0,-1]],[[-15,-32],[0,1]],[[-15,-31],[1,1]],[[-14,-30],[1,-1]],[[-8,-33],[0,-1]],[[-10,-33],[1,1]],[[-9,-32],[1,-1]],[[5,-27],[-1,1]],[[4,-26],[-1,-1]],[[3,-27],[0,-1]],[[3,-28],[1,-1]],[[-3,-31],[1,1]],[[-2,-30],[0,1]],[[-2,-29],[-1,1]],[[-9,-31],[0,-1]],[[-10,-30],[1,-1]],[[-8,-33],[1,1]],[[-7,-32],[1,-1]],[[-3,-19],[0,-1]],[[-5,-19],[1,1]],[[-4,-18],[1,-1]],[[-16,-29],[-1,1]],[[7,-11],[-1,1]],[[6,-9],[1,1]],[[4,-33],[-1,1]],[[-11,-19],[0,-1]],[[-12,-21],[-1,1]],[[-13,-19],[1,1]],[[-12,-18],[1,-1]],[[-12,-29],[0,-1]],[[-12,-30],[-1,-1]],[[-14,-30],[0,1]],[[-13,-28],[1,-1]],[[-15,-15],[1,1]],[[-14,-14],[0,1]],[[-14,-13],[1,1]],[[-13,-12],[0,1]],[[-13,-11],[-1,1]],[[-14,-10],[0,1]],[[-14,-9],[-1,1]],[[-1,-24],[0,1]],[[-1,-23],[1,1]],[[15,-19],[0,-1]],[[14,-21],[-1,1]],[[13,-20],[-1,-1]],[[12,-21],[-1,1]],[[11,-20],[-1,-1]],[[-7,-39],[0,-1]],[[8,-38],[-1,-1]],[[7,-39],[-1,1]],[[6,-38],[0,1]],[[-1,-23],[-1,1]],[[-2,-22],[0,1]],[[0,-38],[0,1]],[[0,-37],[-1,1]],[[-1,-36],[-1,-1]],[[-2,-37],[-1,1]],[[-3,-36],[-1,-1]],[[-4,-37],[-1,1]],[[-5,-36],[-1,-1]],[[-2,-22],[-1,-1]],[[-3,-23],[0,-1]],[[-3,-24],[-1,-1]],[[-4,-25],[0,-1]],[[-4,-26],[1,-1]],[[1,-19],[1,1]],[[2,-18],[1,-1]],[[3,-19],[0,-1]],[[3,-20],[1,-1]],[[4,-21],[0,-1]],[[-7,-32],[0,1]],[[-18,-33],[0,-1]],[[-18,-34],[1,-1]],[[-17,-35],[1,1]],[[-16,-34],[0,1]],[[-14,-37],[-1,1]],[[-15,-36],[-1,-1]],[[-19,-32],[1,-1]],[[-2,-37],[0,-1]],[[-2,-38],[1,-1]],[[-1,-40],[-1,-1]],[[-2,-41],[0,-1]],[[-18,-26],[-1,-1]],[[-19,-27],[0,-1]],[[-20,-29],[-1,1]],[[-14,-22],[-1,-1]],[[-15,-23],[-1,1]],[[-16,-22],[0,1]],[[-16,-21],[1,1]],[[-15,-20],[1,-1]],[[17,-23],[-1,1]],[[-18,-33],[1,1]],[[12,-29],[0,-1]],[[12,-30],[-1,-1]],[[10,-30],[0,1]],[[11,-28],[1,-1]],[[-3,-19],[1,1]],[[-2,-18],[1,-1]],[[-2,-25],[-1,1]],[[-6,-29],[-1,1]],[[-16,-22],[-1,-1]],[[-18,-14],[0,1]],[[-18,-13],[-1,1]],[[-16,-9],[0,-1]],[[-16,-10],[1,-1]],[[-15,-11],[0,-1]],[[-15,-12],[-1,-1]],[[-16,-13],[0,-1]],[[-8,-30],[-1,-1]],[[0,-18],[0,1]],[[7,-40],[0,1]],[[-5,-47],[1,1]],[[-4,-46],[0,1]],[[-4,-45],[1,1]],[[-3,-44],[0,1]],[[-4,-45],[-1,1]],[[-5,-44],[0,1]],[[-20,-26],[1,-1]],[[-10,-13],[0,-1]],[[-10,-14],[-1,-1]],[[-11,-15],[-1,1]],[[-12,-14],[0,1]],[[-12,-13],[1,1]],[[-11,-12],[1,-1]],[[4,-13],[0,-1]],[[4,-14],[-1,-1]],[[3,-15],[-1,1]],[[2,-14],[0,1]],[[3,-12],[1,-1]],[[-4,-33],[0,-1]],[[-4,-34],[-1,-1]],[[-5,-35],[-1,1]],[[3,-20],[-1,-1]],[[2,-21],[-1,1]],[[5,-11],[-1,1]],[[-14,-10],[-1,-1]],[[-2,-14],[0,1]],[[-2,-13],[1,1]],[[-1,-12],[1,-1]],[[5,-12],[-1,-1]],[[-4,-21],[0,-1]],[[-4,-22],[-1,-1]],[[-5,-23],[-1,1]],[[-6,-22],[0,1]],[[-6,-21],[1,1]],[[-7,-43],[0,-1]],[[-7,-44],[-1,-1]],[[-8,-45],[-1,1]],[[-8,-42],[1,-1]],[[5,-3],[1,1]],[[-1,-3],[0,-1]],[[0,-45],[0,-1]],[[0,-46],[1,-1]],[[-3,-44],[1,-1]],[[-2,-45],[1,1]],[[-1,-44],[1,-1]],[[1,-23],[1,1]],[[2,-22],[1,-1]],[[11,-23],[1,1]],[[12,-22],[1,-1]],[[13,-23],[1,1]],[[15,-23],[0,-1]],[[15,-24],[-1,-1]],[[14,-25],[0,-1]],[[-4,-17],[0,-1]],[[-6,-18],[0,1]],[[-5,-16],[1,-1]],[[-1,-43],[0,-1]],[[9,-23],[0,-1]],[[7,-24],[0,1]],[[7,-23],[1,1]],[[8,-22],[1,-1]],[[-16,-21],[-1,1]],[[-17,-20],[-1,-1]],[[-18,-13],[1,1]],[[-17,-12],[1,-1]],[[1,-15],[0,-1]],[[0,-14],[1,-1]],[[-9,-40],[-1,-1]],[[-10,-38],[1,-1]],[[-3,-23],[-1,1]],[[-3,-11],[0,-1]],[[-3,-12],[-1,-1]],[[-4,-13],[-1,1]],[[-5,-11],[1,1]],[[-4,-10],[1,-1]],[[17,-19],[0,-1]],[[17,-20],[-1,-1]],[[-9,-36],[1,-1]],[[-6,-42],[-1,-1]],[[-2,-33],[0,-1]],[[-2,-34],[-1,-1]],[[-3,-35],[-1,1]],[[18,-21],[0,-1]],[[17,-20],[1,-1]],[[-4,-14],[0,1]],[[-3,-12],[1,-1]],[[0,-1],[0,-1]],[[4,-18],[-1,-1]],[[2,-18],[0,1]],[[17,-12],[-1,-1]],[[16,-13],[-1,1]],[[15,-12],[0,1]],[[8,-22],[0,1]],[[8,-21],[-1,1]],[[7,-20],[-1,-1]],[[1,-3],[0,-1]],[[-5,-23],[0,-1]],[[-5,-24],[-1,-1]],[[-6,-25],[-1,1]],[[-7,-24],[0,1]],[[-7,-23],[1,1]],[[16,-25],[-1,1]],[[0,-29],[1,1]],[[1,-28],[1,-1]],[[2,-29],[0,-1]],[[2,-30],[-1,-1]],[[1,-31],[-1,1]],[[0,-30],[-1,-1]],[[-1,-31],[-1,1]],[[-2,-29],[1,1]],[[-1,-28],[1,-1]],[[-6,-46],[0,1]],[[-6,-45],[1,1]],[[16,-18],[0,1]],[[16,-17],[1,1]],[[17,-16],[1,-1]],[[-1,-32],[0,1]],[[1,-28],[0,1]],[[14,-17],[1,1]],[[15,-16],[1,-1]],[[-5,-39],[0,-1]],[[-5,-40],[-1,-1]],[[-6,-38],[1,-1]],[[-9,-27],[0,-1]],[[-11,-31],[-1,1]],[[-13,-27],[1,1]],[[-12,-26],[0,1]],[[-12,-25],[1,1]],[[-11,-24],[1,-1]],[[-10,-25],[0,-1]],[[-10,-26],[1,-1]],[[15,-15],[0,-1]],[[13,-15],[1,1]],[[14,-14],[1,-1]],[[13,-27],[0,-1]],[[13,-28],[-1,-1]],[[-1,-11],[0,-1]],[[-6,-6],[1,-1]],[[-4,-25],[-1,1]],[[6,-22],[1,-1]],[[-13,-11],[1,1]],[[-12,-10],[1,-1]],[[-11,-11],[0,-1]],[[-12,-14],[-1,-1]],[[-13,-15],[0,-1]],[[-13,-16],[1,-1]],[[-12,-17],[1,1]],[[-11,-16],[1,-1]],[[-15,-31],[-1,1]],[[19,-20],[-1,-1]],[[-8,-26],[-1,-1]],[[-10,-25],[1,1]],[[4,-2],[0,1]],[[-9,-7],[0,-1]],[[-9,-8],[-1,-1]],[[-10,-9],[0,-1]],[[-10,-10],[-1,-1]],[[-4,-26],[-1,-1]],[[11,-15],[0,-1]],[[11,-16],[-1,-1]],[[10,-17],[0,-1]],[[10,-18],[-1,-1]],[[-8,-45],[0,-1]],[[-15,-24],[0,1]],[[-13,-35],[0,-1]],[[-15,-36],[0,1]],[[-15,-35],[1,1]],[[-14,-34],[1,-1]],[[-4,-42],[0,1]],[[-4,-41],[1,1]],[[-3,-40],[1,-1]],[[3,-16],[0,1]],[[15,-12],[-1,-1]],[[14,-13],[-1,1]],[[2,-14],[-1,-1]],[[13,-28],[1,-1]],[[14,-29],[1,1]],[[14,-14],[0,1]],[[2,-2],[1,-1]],[[-19,-35],[1,1]],[[-12,-34],[-1,-1]],[[-20,-34],[1,-1]],[[-11,-24],[0,1]],[[-3,-15],[0,-1]],[[-3,-16],[-1,-1]],[[4,-21],[1,1]],[[1,-43],[0,-1]],[[1,-44],[-1,-1]],[[0,-42],[1,-1]],[[1,-44],[1,-1]],[[2,-21],[0,-1]],[[-7,-44],[1,-1]],[[-1,-36],[0,1]],[[-1,-35],[1,1]],[[0,-34],[0,1]],[[-2,-17],[0,-1]],[[-3,-16],[1,-1]],[[6,-41],[-1,1]],[[5,-40],[0,1]],[[5,-39],[1,1]],[[-7,-12],[0,1]],[[-7,-11],[-1,1]],[[-8,-10],[0,1]],[[-8,-9],[-1,1]],[[12,-21],[0,-1]],[[2,-41],[0,-1]],[[2,-42],[-1,-1]],[[1,-40],[1,-1]],[[-1,-35],[-1,1]],[[-3,-36],[0,1]],[[-1,-27],[0,-1]],[[-5,-36],[0,1]],[[-15,-12],[1,-1]],[[11,-19],[0,-1]],[[10,-18],[1,-1]],[[16,-13],[0,-1]],[[16,-14],[-1,-1]],[[-9,-15],[-1,1]],[[-10,-13],[1,1]],[[-9,-12],[1,-1]],[[-11,-16],[0,1]],[[17,-16],[0,1]],[[17,-15],[1,1]],[[-7,-23],[-1,1]],[[-7,-20],[1,-1]],[[-5,-8],[-1,-1]],[[14,-18],[-1,-1]],[[13,-19],[-1,1]],[[12,-18],[0,1]],[[12,-17],[1,1]],[[14,-25],[-1,1]],[[13,-24],[0,1]],[[9,-20],[-1,-1]],[[7,-20],[0,1]],[[15,-32],[0,1]],[[15,-31],[1,1]],[[5,-15],[-1,1]],[[-2,-45],[0,-1]],[[-2,-46],[-1,-1]],[[-3,-47],[-1,1]],[[-7,-11],[1,1]],[[-12,-29],[1,1]],[[-11,-28],[1,-1]],[[5,-19],[1,1]],[[-4,-9],[0,-1]],[[13,-31],[0,-1]],[[12,-30],[1,-1]],[[1,-31],[0,-1]],[[5,-40],[-1,-1]],[[4,-41],[-1,1]],[[3,-40],[0,1]],[[4,-38],[1,-1]],[[-10,-9],[-1,1]],[[-11,-8],[0,1]],[[-17,-35],[0,-1]],[[-19,-36],[0,1]],[[2,-30],[1,-1]],[[-3,-39],[0,-1]],[[-4,-41],[-1,1]],[[-5,-39],[1,1]],[[-4,-38],[1,-1]],[[0,-29],[0,-1]],[[-14,-18],[-1,-1]],[[-15,-19],[-1,1]],[[-16,-18],[0,1]],[[-16,-17],[1,1]],[[15,-31],[-1,1]],[[14,-30],[0,1]],[[-13,-15],[-1,1]],[[-13,-12],[1,-1]],[[3,-28],[-1,-1]],[[2,-26],[1,-1]],[[-4,-37],[0,-1]],[[17,-15],[-1,1]],[[4,-25],[0,-1]],[[3,-24],[1,-1]],[[-12,-6],[-1,-1]],[[-13,-7],[-1,1]],[[-17,-12],[0,1]],[[-17,-11],[1,1]],[[12,-18],[-1,-1]],[[11,-16],[1,-1]],[[5,-43],[-1,1]],[[4,-42],[0,1]],[[1,-12],[0,1]],[[12,-26],[0,1]],[[12,-25],[1,1]],[[10,-22],[-1,-1]],[[8,-17],[0,-1]],[[6,-17],[1,1]],[[7,-16],[1,-1]],[[3,-44],[0,1]],[[3,-43],[1,1]],[[-10,-18],[-1,-1]],[[-12,-18],[0,1]],[[3,-40],[-1,-1]],[[-3,-11],[1,1]],[[11,-24],[1,-1]],[[-12,-10],[0,1]],[[-12,-9],[1,1]],[[-3,-39],[1,1]],[[0,-46],[-1,-1]],[[-1,-47],[-1,1]],[[-7,-24],[-1,-1]],[[13,-19],[0,-1]],[[-11,-27],[0,-1]],[[-12,-26],[1,-1]],[[7,-15],[0,-1]],[[6,-14],[1,-1]],[[-10,-26],[-1,-1]],[[-17,-19],[0,-1]],[[-18,-18],[1,-1]],[[-16,-17],[-1,1]],[[-16,-18],[-1,-1]],[[3,-43],[-1,1]],[[-15,-19],[0,-1]],[[-6,-25],[0,-1]],[[8,-17],[1,1]],[[9,-16],[1,-1]],[[9,-15],[0,-1]],[[7,-15],[1,1]],[[-14,-33],[0,-1]],[[-15,-35],[-1,1]],[[-14,-17],[1,1]],[[-13,-7],[0,-1]],[[-13,-8],[-1,-1]],[[-12,-25],[-1,1]],[[-1,-16],[-1,-1]],[[-13,-8],[1,-1]],[[-18,-10],[1,-1]],[[-1,-48],[0,1]],[[-3,-48],[0,1]],[[5,-24],[-1,-1]],[[1,-35],[0,-1]],[[1,-36],[-1,-1]],[[0,-34],[1,-1]],[[2,-37],[0,-1]],[[1,-36],[1,-1]],[[2,-37],[1,1]],[[-7,-8],[-1,-1]],[[14,-30],[-1,-1]],[[-14,-25],[0,-1]],[[2,-34],[-1,-1]],[[-9,-12],[0,1]],[[-9,-11],[1,1]],[[-9,-11],[-1,1]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment