Skip to content

Instantly share code, notes, and snippets.

@serdaradali
Last active March 29, 2018 09:43
Show Gist options
  • Save serdaradali/11276011 to your computer and use it in GitHub Desktop.
Save serdaradali/11276011 to your computer and use it in GitHub Desktop.
Choropleth map zoom
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.background {
fill: none;
pointer-events: all;
}
.choropleth {
margin: 20px 20px;
}
.cities {
stroke: #fff;
stroke-width: 1px;
stroke-linejoin: round;
}
.districts {
stroke: #fff;
stroke-width: 0.5px;
stroke-linejoin: round;
}
.choro_outline {
opacity: 1;
stroke: #000;
stroke-width: 1.5px;
}
.tooltip {
width: 60px;
height:20px;
position: absolute;
opacity: 0;
padding: 6px 8px;
font: 8px/10px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.zoomout {
width: 50px;
height: 50px;
background: url("left-arrow-icon.jpg");
background-size: contain;
position: absolute;
top: 10px;
left: 30px;
z-index: 5;
}
#switch{
position:absolute;
left:650px;
top:130px;
width: 120px;
height: 30px;
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
}
</style>
<body>
<link type="text/css" rel="stylesheet" href="jquery.switchButton.css"/>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="jquery.switchButton.js"></script>
<div id="map"></div>
<div id="switch"><input type="checkbox" id = "levelSwitch" value="1" checked></div>
<script>
function randomData(n)
{
var data = [];
for(var i=0; i<n;i++)
{
data[i] = Math.floor((Math.random())*100);
}
return data;
}
var width=960,height=600,centered;
var div = document.createElement("div");
var cityMapJSON = {}, districtMapJSON={};
var selectedCity,selectedCityDistricts, selectedNeighborCity, selectedNeighborCityDistricts, districtVotes,turkeyTotal = [0.44,0.28,0.15,0.09,0.03,0.01];
var cityScale = d3.scale.quantile(),districtScale = d3.scale.quantile(), barScale = d3.scale.linear().domain([0,100]).range([0,200]);
var colors7 = ["rgb(254,229,217)", "rgb(252,187,161)", "rgb(252,146,114)", "rgb(251,106,74)", "rgb(239,59,44)", "rgb(203,24,29)", "rgb(153,0,13)"];
var projection = d3.geo.mercator()
.scale(1)
.translate([0, 0]);
var zoomedIn = false;
var path = d3.geo.path()
.projection(projection);
var svg,citiG,barSvg,districtGregCenters = [];
var cityPath,districtPath;
var country,cityFeatures,districtFeatures;
var mapMode = 1; // variable holding detail type: 1=city level, -1=district level
queue()
.defer(d3.json, "turkeyCitiesTopoSimplified.json")
.defer(d3.json, "turkeyDistrictsTopoSimplified.json")
.await(readMapData);
function readMapData(error,cityJSON,districtJSON) {
var cityData = randomData(cityJSON.objects.turkeyCities.geometries.length),districtData=randomData(districtJSON.objects.turkeyDistricts.geometries.length);
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height)
.attr("class", "choropleth");
var div = d3.select("#statDetails").html("<p align=\"center\">Turkiye Geneli</p>");
svg.append("rect")
.attr("class", "background")
.attr("width", width)
.attr("height", height)
.on("click", clickedCity);
cityScale.domain(cityData)
.range(d3.range(6));
country = topojson.mesh(cityJSON, cityJSON.objects.turkeyCities),
cityFeatures = topojson.feature(cityJSON, cityJSON.objects.turkeyCities).features,
districtFeatures = topojson.feature(districtJSON, districtJSON.objects.turkeyDistricts).features;
var b = path.bounds(country),
s = .95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height),
t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2];
projection
.scale(s)
.translate(t);
g = svg.append("g");
// draw city geometry and fill colors according to city election data
cityPath = g.selectAll("path.cities")
.data(cityFeatures)
.enter().append("path")
.attr("class","cities")
.attr("fill", function(d,i){
return colors7[cityScale(cityData[i])];})
.attr("d", path)
.on("click", clickedCity)
.on("mouseover", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">" + d.properties.NAME_1 + "</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#000'});
})
.on("mouseout", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">Turkiye Geneli</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#FFF'})
});
districtScale.domain(districtData)
.range(d3.range(6));
// draw district geometry and fill colors according to district election data. Hidden in the beginning
districtPath = g.selectAll("path.districts")
.data(districtFeatures)
.enter().append("path")
.attr("class","districts")
.attr("fill", function(m,i){
return colors7[districtScale(districtData[i])];})
.attr("d", path)
.on("mouseover", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">" + d.properties.NAME_2 + "," + d.properties.NAME_1 +"</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#000'});
})
.on("mouseout", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">" + d.properties.NAME_1 + "</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#FFF'});
})
.style("display","none");
$("#levelSwitch").change(function(){
mapMode *= -1;
if(mapMode == 1)
{
d3.selectAll("path.districts").style("display","none");
d3.selectAll("path.cities").style("display","inline");
}
else if(mapMode == -1)
{
d3.selectAll("path.cities").style("display","none");
d3.selectAll("path.districts").style("display","inline");
}
});
}
function clickedCity(d,i) {
var x, y, k;
// if not already zoomed, zoom in. If clicked on a neighbor, change focus
if (d && centered !== d) {
d3.select("#switch").style("display","none");
// fade out all cities except the clicked one
g.selectAll("path.cities")
.filter(function(m){
return m.properties.ID_1 != d.properties.ID_1})
.style("fill-opacity", 0.1);
// store selected city & its districts for later use
selectedCity = d3.selectAll("path.cities").filter(function(m){ return m == d});
selectedCityDistricts = g.selectAll("path.districts")
.filter(function(m){return m.properties.ID_1 == d.properties.ID_1});
// set translate&scale parameters for zooming into city
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 4;
centered = d;
// if zoomed into a city from country level
if(!zoomedIn)
{
// create(or show) zoom out div
d3.select("#map").append("div")
.attr("class","zoomout")
.on("click",clickedCity);
}
else //already zoomed in, clicked to a neighbor city
{
// display previously hidden cities
d3.selectAll("path.cities").style("display","inline");
}
// hide all districts
g.selectAll("path.districts")
.style("display","none")
.style("fill-opacity",0.1);
// Only display selected city districts
selectedCityDistricts.style("display","inline");
// zoomed into district level
zoomedIn = true;
}
else { // zoom out
d3.select("#switch").style("display","inline");
zoomedIn = false;
x = width / 2;
y = height / 2;
k = 1;
centered = null;
// hide all visible districts
selectedCityDistricts.style("display","none");
g.selectAll("path.districts")
.style("fill-opacity",1);
// set display for hidden city
selectedCity.style("display","inline");
// restore all city opacities
g.selectAll("path.cities")
.transition()
.duration(750)
.style("fill-opacity", 1);
// remove zoom out div
d3.select("div.zoomout").remove();
}
g.selectAll("path")
.classed("active", centered && function(d) { return d === centered; });
g.transition()
.duration(750)
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")scale(" + k + ")translate(" + -x + "," + -y + ")")
.each("end",function(d)
{
if(zoomedIn)
{
// show all districts of selected city
selectedCityDistricts
.style("display","inline")
.style("fill-opacity", 1);
// slowly make zoomed city disappear so that disctrict can be seen. At the end, disable city for allowing mouse operations on districts
selectedCity.style("display","none")
.style("fill-opacity", 0.1)
.style("stroke-width", 1.5 / k + "px");
}
});
}
$("#levelSwitch").switchButton({
on_label: 'District',
off_label: 'City',
checked: false
});
d3.select(self.frameElement).style("height", height + "px");
</script>
</body>
.switch-button-label {
float: left;
font-size: 10pt;
cursor: pointer;
}
.switch-button-label.off {
color: #adadad;
}
.switch-button-label.on {
color: #0088CC;
}
.switch-button-background {
float: left;
position: relative;
background: #ccc;
border: 1px solid #aaa;
margin: 1px 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
cursor: pointer;
}
.switch-button-button {
position: absolute;
left: -1px;
top : -1px;
background: #FAFAFA;
border: 1px solid #aaa;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/**
* jquery.switchButton.js v1.0
* jQuery iPhone-like switch button
* @author Olivier Lance <olivier.lance@sylights.com>
*
* Copyright (c) Olivier Lance - released under MIT License {{{
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
* }}}
*/
/*
* Meant to be used on a <input type="checkbox">, this widget will replace the receiver element with an iPhone-style
* switch button with two states: "on" and "off".
* Labels of the states are customizable, as are their presence and position. The receiver element's "checked" attribute
* is updated according to the state of the switch, so that it can be used in a <form>.
*
*/
(function($) {
$.widget("sylightsUI.switchButton", {
options: {
checked: undefined, // State of the switch
show_labels: true, // Should we show the on and off labels?
labels_placement: "both", // Position of the labels: "both", "left" or "right"
on_label: "ON", // Text to be displayed when checked
off_label: "OFF", // Text to be displayed when unchecked
width: 25, // Width of the button in pixels
height: 11, // Height of the button in pixels
button_width: 12, // Width of the sliding part in pixels
clear: true, // Should we insert a div with style="clear: both;" after the switch button?
clear_after: null, // Override the element after which the clearing div should be inserted (null > right after the button)
on_callback: undefined, //callback function that will be executed after going to on state
off_callback: undefined //callback function that will be executed after going to off state
},
_create: function() {
// Init the switch from the checkbox if no state was specified on creation
if (this.options.checked === undefined) {
this.options.checked = this.element.prop("checked");
}
this._initLayout();
this._initEvents();
},
_initLayout: function() {
// Hide the receiver element
this.element.hide();
// Create our objects: two labels and the button
this.off_label = $("<span>").addClass("switch-button-label");
this.on_label = $("<span>").addClass("switch-button-label");
this.button_bg = $("<div>").addClass("switch-button-background");
this.button = $("<div>").addClass("switch-button-button");
// Insert the objects into the DOM
this.off_label.insertAfter(this.element);
this.button_bg.insertAfter(this.off_label);
this.on_label.insertAfter(this.button_bg);
this.button_bg.append(this.button);
// Insert a clearing element after the specified element if needed
if(this.options.clear)
{
if (this.options.clear_after === null) {
this.options.clear_after = this.on_label;
}
$("<div>").css({
clear: "left"
}).insertAfter(this.options.clear_after);
}
// Call refresh to update labels text and visibility
this._refresh();
// Init labels and switch state
// This will animate all checked switches to the ON position when
// loading... this is intentional!
this.options.checked = !this.options.checked;
this._toggleSwitch();
},
_refresh: function() {
// Refresh labels display
if (this.options.show_labels) {
this.off_label.show();
this.on_label.show();
}
else {
this.off_label.hide();
this.on_label.hide();
}
// Move labels around depending on labels_placement option
switch(this.options.labels_placement) {
case "both":
{
// Don't move anything if labels are already in place
if(this.button_bg.prev() !== this.off_label || this.button_bg.next() !== this.on_label)
{
// Detach labels form DOM and place them correctly
this.off_label.detach();
this.on_label.detach();
this.off_label.insertBefore(this.button_bg);
this.on_label.insertAfter(this.button_bg);
// Update label classes
this.on_label.addClass(this.options.checked ? "on" : "off").removeClass(this.options.checked ? "off" : "on");
this.off_label.addClass(this.options.checked ? "off" : "on").removeClass(this.options.checked ? "on" : "off");
}
break;
}
case "left":
{
// Don't move anything if labels are already in place
if(this.button_bg.prev() !== this.on_label || this.on_label.prev() !== this.off_label)
{
// Detach labels form DOM and place them correctly
this.off_label.detach();
this.on_label.detach();
this.off_label.insertBefore(this.button_bg);
this.on_label.insertBefore(this.button_bg);
// update label classes
this.on_label.addClass("on").removeClass("off");
this.off_label.addClass("off").removeClass("on");
}
break;
}
case "right":
{
// Don't move anything if labels are already in place
if(this.button_bg.next() !== this.off_label || this.off_label.next() !== this.on_label)
{
// Detach labels form DOM and place them correctly
this.off_label.detach();
this.on_label.detach();
this.off_label.insertAfter(this.button_bg);
this.on_label.insertAfter(this.off_label);
// update label classes
this.on_label.addClass("on").removeClass("off");
this.off_label.addClass("off").removeClass("on");
}
break;
}
}
// Refresh labels texts
this.on_label.html(this.options.on_label);
this.off_label.html(this.options.off_label);
// Refresh button's dimensions
this.button_bg.width(this.options.width);
this.button_bg.height(this.options.height);
this.button.width(this.options.button_width);
this.button.height(this.options.height);
},
_initEvents: function() {
var self = this;
// Toggle switch when the switch is clicked
this.button_bg.click(function(e) {
e.preventDefault();
e.stopPropagation();
self._toggleSwitch();
return false;
});
this.button.click(function(e) {
e.preventDefault();
e.stopPropagation();
self._toggleSwitch();
return false;
});
// Set switch value when clicking labels
this.on_label.click(function(e) {
if (self.options.checked && self.options.labels_placement === "both") {
return false;
}
self._toggleSwitch();
return false;
});
this.off_label.click(function(e) {
if (!self.options.checked && self.options.labels_placement === "both") {
return false;
}
self._toggleSwitch();
return false;
});
},
_setOption: function(key, value) {
if (key === "checked") {
this._setChecked(value);
return;
}
this.options[key] = value;
this._refresh();
},
_setChecked: function(value) {
if (value === this.options.checked) {
return;
}
this.options.checked = !value;
this._toggleSwitch();
},
_toggleSwitch: function() {
this.options.checked = !this.options.checked;
var newLeft = "";
if (this.options.checked) {
// Update the underlying checkbox state
this.element.prop("checked", true);
this.element.change();
var dLeft = this.options.width - this.options.button_width;
newLeft = "+=" + dLeft;
// Update labels states
if(this.options.labels_placement == "both")
{
this.off_label.removeClass("on").addClass("off");
this.on_label.removeClass("off").addClass("on");
}
else
{
this.off_label.hide();
this.on_label.show();
}
this.button_bg.addClass("checked");
//execute on state callback if its supplied
if(typeof this.options.on_callback === 'function') this.options.on_callback.call(this);
}
else {
// Update the underlying checkbox state
this.element.prop("checked", false);
this.element.change();
newLeft = "-1px";
// Update labels states
if(this.options.labels_placement == "both")
{
this.off_label.removeClass("off").addClass("on");
this.on_label.removeClass("on").addClass("off");
}
else
{
this.off_label.show();
this.on_label.hide();
}
this.button_bg.removeClass("checked");
//execute off state callback if its supplied
if(typeof this.options.off_callback === 'function') this.options.off_callback.call(this);
}
// Animate the switch
this.button.animate({ left: newLeft }, 250, "easeInOutCubic");
}
});
})(jQuery);
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0009766104919882155,0.000694384288053075],"translate":[25.66705351412827,35.820459359549844]},"objects":{"turkeyDistricts":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4]],"properties":{"ID_1":35,"NAME_1":"Gumushane","NAME_2":"Torul"}},{"type":"Polygon","arcs":[[5,6]],"properties":{"ID_1":36,"NAME_1":"Hakkari","NAME_2":"Semdinli"}},{"type":"Polygon","arcs":[[7,8,9,10,11]],"properties":{"ID_1":36,"NAME_1":"Hakkari","NAME_2":"Cukurca"}},{"type":"Polygon","arcs":[[12,13,-9,14,15]],"properties":{"ID_1":36,"NAME_1":"Hakkari","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[16,17,-7,18,-10,-14,19]],"properties":{"ID_1":36,"NAME_1":"Hakkari","NAME_2":"Yuksekova"}},{"type":"Polygon","arcs":[[20,21,22,23,24,25]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Iskenderun"}},{"type":"Polygon","arcs":[[26,27,28,29]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Altinozu"}},{"type":"Polygon","arcs":[[30,31,-22]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Belen"}},{"type":"Polygon","arcs":[[32,33,-26,34,35,36]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Dortyol"}},{"type":"Polygon","arcs":[[37,-36,38,39,40]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Erzin"}},{"type":"Polygon","arcs":[[41,42,-34,43]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Hassa"}},{"type":"Polygon","arcs":[[44,45,46,47,-31,-21,-43]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Kirikhan"}},{"type":"Polygon","arcs":[[-46,48,49]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Kumlu"}},{"type":"Polygon","arcs":[[-48,50,-30,51,52,-23,-32]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-27,-51,-47,-50,53]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Reyhanli"}},{"type":"Polygon","arcs":[[-24,-53,54,55]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Samandag"}},{"type":"Polygon","arcs":[[-52,-29,56,-55]],"properties":{"ID_1":37,"NAME_1":"Hatay","NAME_2":"Yayladagi"}},{"type":"Polygon","arcs":[[57,58,59,60]],"properties":{"ID_1":38,"NAME_1":"Igdir","NAME_2":"Aralik\r\n"}},{"type":"Polygon","arcs":[[-58,61,62]],"properties":{"ID_1":38,"NAME_1":"Igdir","NAME_2":"Karakoyunlu"}},{"type":"Polygon","arcs":[[-62,-61,63,64,65]],"properties":{"ID_1":38,"NAME_1":"Igdir","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[66,67,-65,68,69,70,71]],"properties":{"ID_1":38,"NAME_1":"Igdir","NAME_2":"Tuzluca\r\n"}},{"type":"Polygon","arcs":[[72,73,74,75,76,77,78]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Sarkikaraagac"}},{"type":"Polygon","arcs":[[79,80,81,82]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Aksu"}},{"type":"Polygon","arcs":[[83,84,85,86,87]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Atabey"}},{"type":"Polygon","arcs":[[88,-77,89,-80,90,91,92,93,-86,94,95]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Egirdir"}},{"type":"Polygon","arcs":[[-78,-89,96]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Gelendost"}},{"type":"Polygon","arcs":[[97,-88,98,99]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Gonen"}},{"type":"Polygon","arcs":[[100,101,102,103,104]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Imamoglu"}},{"type":"Polygon","arcs":[[105,106,107,-105,108,109,110]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Aladag"}},{"type":"Polygon","arcs":[[-102,111,112,113,-40,114,115,116]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Ceyhan"}},{"type":"Polygon","arcs":[[117,118,119,-107,120]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Feke"}},{"type":"Polygon","arcs":[[-104,121,122,123,124,-109]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Karaisali"}},{"type":"Polygon","arcs":[[125,126,127,128,129,130]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Karatas"}},{"type":"Polygon","arcs":[[131,132,133,134,135,-112,-101,-108,-120]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Kozan"}},{"type":"Polygon","arcs":[[136,-110,-125,137,138]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Pozanti"}},{"type":"Polygon","arcs":[[139,140,141,-132,-119,142]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Saimbeyli"}},{"type":"Polygon","arcs":[[143,-130,144,-123]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Seyhan"}},{"type":"Polygon","arcs":[[145,146,-140,147,148]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Tufanbeyli"}},{"type":"MultiPolygon","arcs":[[[149,150,151]],[[152,153,154,155,-126,-116,156]]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Yumurtalik"}},{"type":"Polygon","arcs":[[-103,-117,-131,-144,-122]],"properties":{"ID_1":1,"NAME_1":"Adana","NAME_2":"Yuregir"}},{"type":"Polygon","arcs":[[157,158,159,160,161,162,163]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Besni"}},{"type":"Polygon","arcs":[[164,165,166,167,168]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Celikhan"}},{"type":"Polygon","arcs":[[169,170,171,172,173,174]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Gerger"}},{"type":"Polygon","arcs":[[175,-164,176,177,178,179]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Golbasi"}},{"type":"Polygon","arcs":[[180,-173,181,182,183,184]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Kahta"}},{"type":"Polygon","arcs":[[-167,185,-185,186,187,-159,188,189]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[190,191,-187,-184]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Samsat"}},{"type":"Polygon","arcs":[[192,193,-174,-181,-186,-166]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Sincik"}},{"type":"Polygon","arcs":[[-189,-158,-176,194]],"properties":{"ID_1":2,"NAME_1":"Adiyaman","NAME_2":"Tut"}},{"type":"Polygon","arcs":[[195,196,197,198,199]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Ihsaniye"}},{"type":"Polygon","arcs":[[200,201,202,-197,203,204]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Iscehisar"}},{"type":"Polygon","arcs":[[205,206,207,208,209,210,211,212]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Suhut"}},{"type":"Polygon","arcs":[[213,214,215,216,217,218]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Basmakci"}},{"type":"Polygon","arcs":[[219,220,-201,221,222]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Bayat"}},{"type":"Polygon","arcs":[[223,224,225,226,227,-221]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Bolvadin"}},{"type":"Polygon","arcs":[[228,229,-207,230,-227]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Cay"}},{"type":"Polygon","arcs":[[-202,-228,-231,-206,231]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Cobanlar"}},{"type":"Polygon","arcs":[[232,233,-219,234,235,236]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Dazkiri"}},{"type":"Polygon","arcs":[[237,-210,238,239,-215,240,241,242]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Dinar"}},{"type":"Polygon","arcs":[[243,244,245,-224,-220,246]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Emirdag"}},{"type":"Polygon","arcs":[[247,-241,-214,-234]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Evciler"}},{"type":"Polygon","arcs":[[248,249,250,251,252,253]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Hocalar"}},{"type":"Polygon","arcs":[[254,-243,255]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Kiziloren"}},{"type":"Polygon","arcs":[[-198,-203,-232,-213,256,257]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[258,-211,-238,-255,259,-250]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Sandikli"}},{"type":"Polygon","arcs":[[-257,-212,-259,-249,260,261]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Sinanpasa"}},{"type":"Polygon","arcs":[[262,263,264,265,-229,-226]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar","NAME_2":"Sultandagi"}},{"type":"Polygon","arcs":[[266,267,268,269,270]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Diyadin"}},{"type":"Polygon","arcs":[[-64,-60,271,272,-268,273,-69]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Dogubeyazit"}},{"type":"Polygon","arcs":[[274,275,276,277,278,279]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Eleskirt"}},{"type":"Polygon","arcs":[[280,281,282,283,284]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Hamur"}},{"type":"Polygon","arcs":[[-71,285,-281,286,-275,287]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[288,289,290,291,-284]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Patnos"}},{"type":"Polygon","arcs":[[-274,-267,292,-282,-286,-70]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Taslicay"}},{"type":"Polygon","arcs":[[-287,-285,-292,293,294,-276]],"properties":{"ID_1":4,"NAME_1":"Agri","NAME_2":"Tutak"}},{"type":"Polygon","arcs":[[295,296,297,298]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Agacoren"}},{"type":"Polygon","arcs":[[299,300,301,302,303]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Eskil"}},{"type":"Polygon","arcs":[[304,305,306,307]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Gulagac"}},{"type":"Polygon","arcs":[[308,309,310,-306]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Guzelyurt"}},{"type":"Polygon","arcs":[[-298,311,312,-307,-311,313,314,-300,315,316]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[317,318,319,-312,-297,320]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Ortakoy"}},{"type":"Polygon","arcs":[[321,-321,-296,322,323]],"properties":{"ID_1":5,"NAME_1":"Aksaray","NAME_2":"Sariyahsi\r\n"}},{"type":"Polygon","arcs":[[324,325,326,327,328]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Goynucek"}},{"type":"Polygon","arcs":[[329,330,331,332,333]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Gumushacikoy"}},{"type":"Polygon","arcs":[[-332,334,335,336]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Hamamozu"}},{"type":"Polygon","arcs":[[337,338,-325,339,340,341,342]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[343,344,-341,345,-330,346]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Merzifon"}},{"type":"Polygon","arcs":[[347,-342,-345,348]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Suluova"}},{"type":"Polygon","arcs":[[349,350,351,352,-338,353,354]],"properties":{"ID_1":6,"NAME_1":"Amasya","NAME_2":"Tasova"}},{"type":"Polygon","arcs":[[355,356,357,358,-323,-299,-317,359,360,361]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Sereflikochisar"}},{"type":"Polygon","arcs":[[362,363,364,365]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Akyurt"}},{"type":"Polygon","arcs":[[366,-366,367,368,369,370]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Altindag"}},{"type":"Polygon","arcs":[[371,372,373,374,375,376]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Ayas"}},{"type":"Polygon","arcs":[[377,378,379,380,381,-362,382,383,384]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Bala"}},{"type":"Polygon","arcs":[[385,386,-376,387,388,389,390,391,392]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Beypazari"}},{"type":"Polygon","arcs":[[393,394,-386,395]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Camlidere"}},{"type":"Polygon","arcs":[[396,397,398,-370]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Cankaya"}},{"type":"Polygon","arcs":[[399,400,-363,-367,401,402,403,404]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Cubuk"}},{"type":"Polygon","arcs":[[405,406,407,-379,408,-368,-365]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Elmadag"}},{"type":"Polygon","arcs":[[409,410]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Etimesgut"}},{"type":"Polygon","arcs":[[411,412,-324,-359]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Evren"}},{"type":"Polygon","arcs":[[-398,413,-385,414,415]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Golbasi"}},{"type":"Polygon","arcs":[[-395,416,-377,-387]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Gudul"}},{"type":"Polygon","arcs":[[-384,417,418,419,420,-415]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Haymana"}},{"type":"Polygon","arcs":[[421,422,-404,423,-372,-417,-394,424]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Kizilcahamam"}},{"type":"Polygon","arcs":[[425,426,427,-406,-364,-401,428,429]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Kalecik"}},{"type":"Polygon","arcs":[[-424,-403,430,431,432,-373]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Kazan"}},{"type":"Polygon","arcs":[[-402,-371,433,-431]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Kecioren"}},{"type":"Polygon","arcs":[[-409,-378,-414,-397,-369]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Mamak"}},{"type":"Polygon","arcs":[[434,-390,435,436,437,438,439,440]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Nallihan"}},{"type":"Polygon","arcs":[[-375,441,442,-421,443,444,445,446,-388]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Polatli"}},{"type":"Polygon","arcs":[[447,-410,448,-442,-374,-433]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Sincan"}},{"type":"Polygon","arcs":[[-434,-399,-416,-443,-449,-411,-448,-432]],"properties":{"ID_1":7,"NAME_1":"Ankara","NAME_2":"Yenimahalle"}},{"type":"Polygon","arcs":[[449,450,451]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Ibradi"}},{"type":"Polygon","arcs":[[452,453,454,455,456,-450]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Akseki"}},{"type":"Polygon","arcs":[[457,458,459,460,461,462,463]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Alanya"}},{"type":"Polygon","arcs":[[464,465,466,467,468]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Elmali"}},{"type":"Polygon","arcs":[[469,470,471,-467,472]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Finike"}},{"type":"Polygon","arcs":[[473,474,475,476,-461]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Gazipasa"}},{"type":"Polygon","arcs":[[477,478,-464,479,-456]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Gundogmus"}},{"type":"Polygon","arcs":[[483,484,-468,-472,485]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Kas"}},{"type":"MultiPolygon","arcs":[[[486,487,488,489],[490,491,-489,492]],[[497,-496,498,499,500,501,-486,-471]]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Kale"}},{"type":"Polygon","arcs":[[502,503,504]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Kemer"}},{"type":"Polygon","arcs":[[505,506,507,-465,508,509,510,511]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Korkuteli"}},{"type":"Polygon","arcs":[[512,-503,513,-473,-466,-508]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Kumluca"}},{"type":"Polygon","arcs":[[-457,-480,-463,514,515,516,517,-451]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Manavgat"}},{"type":"Polygon","arcs":[[518,519,-504,-513,-507,520]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-516,521,-519,522,523]],"properties":{"ID_1":8,"NAME_1":"Antalya","NAME_2":"Serik"}},{"type":"Polygon","arcs":[[524,525,526,527,528,529]],"properties":{"ID_1":9,"NAME_1":"Ardahan","NAME_2":"Cildir"}},{"type":"Polygon","arcs":[[-530,530,531,532]],"properties":{"ID_1":9,"NAME_1":"Ardahan","NAME_2":"Damal"}},{"type":"Polygon","arcs":[[533,534,535,536,537]],"properties":{"ID_1":9,"NAME_1":"Ardahan","NAME_2":"Gole"}},{"type":"Polygon","arcs":[[538,-531,-529,539,540]],"properties":{"ID_1":9,"NAME_1":"Ardahan","NAME_2":"Hanak"}},{"type":"Polygon","arcs":[[-528,541,-534,542,543,544,-540]],"properties":{"ID_1":9,"NAME_1":"Ardahan","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-532,-539,545,546]],"properties":{"ID_1":9,"NAME_1":"Ardahan","NAME_2":"Posof"}},{"type":"Polygon","arcs":[[-546,-541,-545,547,548,549,550]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Savsat"}},{"type":"Polygon","arcs":[[-548,-544,551,552]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Ardanuc"}},{"type":"Polygon","arcs":[[553,554,555,556]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Arhavi"}},{"type":"Polygon","arcs":[[-550,557,558,559,560]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Borcka"}},{"type":"Polygon","arcs":[[-560,561,-554,562]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Hopa"}},{"type":"Polygon","arcs":[[-549,-553,563,564,565,-558]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-559,-566,566,567,-555,-562]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Murgul"}},{"type":"Polygon","arcs":[[-565,568,569,570,571,572,573,574,575,-567]],"properties":{"ID_1":10,"NAME_1":"Artvin","NAME_2":"Yusufeli"}},{"type":"Polygon","arcs":[[576,577,578,579]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Incirliova"}},{"type":"Polygon","arcs":[[580,581,582,583,584,585,586,587]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Bozdogan"}},{"type":"Polygon","arcs":[[588,589,590]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Buharkent"}},{"type":"Polygon","arcs":[[591,-587,592,593,594,595,596,597]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Cine"}},{"type":"Polygon","arcs":[[598,599,600]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Didim"}},{"type":"Polygon","arcs":[[-579,601,602,603,604,605]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Germencik"}},{"type":"Polygon","arcs":[[606,607,608,609,610,-583]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Karacasu"}},{"type":"Polygon","arcs":[[611,-596,612]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Karpuzlu"}},{"type":"Polygon","arcs":[[613,614,615,616,617]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Kosk"}},{"type":"Polygon","arcs":[[-578,618,-597,-612,619,620,-602]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Kocarli"}},{"type":"Polygon","arcs":[[-604,621,622,623]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Kusadasi"}},{"type":"Polygon","arcs":[[624,-590,625,-607,626,627]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Kuyucak"}},{"type":"Polygon","arcs":[[-617,628,-598,-619,-577,629,630]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-627,-582,631,632,633,634,635]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Nazilli"}},{"type":"Polygon","arcs":[[-621,636,-601,637,638,639,-622,-603]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Soke"}},{"type":"Polygon","arcs":[[-632,-581,640,-615,641]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Sultanhisar"}},{"type":"Polygon","arcs":[[-588,-592,-629,-616,-641]],"properties":{"ID_1":11,"NAME_1":"Aydin","NAME_2":"Yenipazar"}},{"type":"Polygon","arcs":[[642,643,644,645,646,647]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Ivrindi"}},{"type":"MultiPolygon","arcs":[[[652,653,654,655]],[[-651,656,657,658]]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Ayvalik"}},{"type":"Polygon","arcs":[[659,660,-643,661,662,663]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Balya"}},{"type":"Polygon","arcs":[[664,665,666,667,668,669]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Bandirma"}},{"type":"Polygon","arcs":[[670,671,672,673]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Bigadic"}},{"type":"Polygon","arcs":[[674,675,676,677,678]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Burhaniye"}},{"type":"Polygon","arcs":[[679,680,681,682,683,-672,684,685]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Dursunbey"}},{"type":"Polygon","arcs":[[686,-675,687,688,689,690]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Edremit"}},{"type":"Polygon","arcs":[[-669,691]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Erdek"}},{"type":"Polygon","arcs":[[692,-653,693,-678]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Gomec"}},{"type":"Polygon","arcs":[[694,-667,695,-664,696,697]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Gonen"}},{"type":"Polygon","arcs":[[-662,-648,-676,-687,698]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Havran"}},{"type":"Polygon","arcs":[[-685,-671,699,700,701]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Kepsut"}},{"type":"Polygon","arcs":[[702,703,704,-660,-696,-666]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Manyas"}},{"type":"MultiPolygon","arcs":[[[705]],[[706]],[[707]]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Marmara"}},{"type":"Polygon","arcs":[[708,-700,-674,709,710,711,-644,-661,-705]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-673,-684,712,713,714,715,716,-710]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Sindirgi"}},{"type":"Polygon","arcs":[[-712,717,718,-645]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Savastepe"}},{"type":"Polygon","arcs":[[719,-701,-709,-704,720]],"properties":{"ID_1":12,"NAME_1":"Balikesir","NAME_2":"Susurluk"}},{"type":"Polygon","arcs":[[721,722,723]],"properties":{"ID_1":13,"NAME_1":"Bartin","NAME_2":"Amasra"}},{"type":"Polygon","arcs":[[724,725,-722,726]],"properties":{"ID_1":13,"NAME_1":"Bartin","NAME_2":"Kurucasile"}},{"type":"Polygon","arcs":[[727,728,729,730,731,732,-723,-726,733]],"properties":{"ID_1":13,"NAME_1":"Bartin","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[734,735,736,-728,737]],"properties":{"ID_1":13,"NAME_1":"Bartin","NAME_2":"Ulus"}},{"type":"Polygon","arcs":[[738,739,740,741,742]],"properties":{"ID_1":14,"NAME_1":"Batman","NAME_2":"Besiri"}},{"type":"Polygon","arcs":[[743,744,745,746,747,748]],"properties":{"ID_1":14,"NAME_1":"Batman","NAME_2":"Gercus"}},{"type":"Polygon","arcs":[[749,750,751,-745,752,-741]],"properties":{"ID_1":14,"NAME_1":"Batman","NAME_2":"Hasankeyf"}},{"type":"Polygon","arcs":[[753,754,755,756,-739,757]],"properties":{"ID_1":14,"NAME_1":"Batman","NAME_2":"Kozluk"}},{"type":"Polygon","arcs":[[-742,-753,-744,758]],"properties":{"ID_1":14,"NAME_1":"Batman","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[759,-754,760,761,762]],"properties":{"ID_1":14,"NAME_1":"Batman","NAME_2":"Sason"}},{"type":"Polygon","arcs":[[763,764,765]],"properties":{"ID_1":15,"NAME_1":"Bayburt","NAME_2":"Aydintepe"}},{"type":"Polygon","arcs":[[766,767,768,769,770]],"properties":{"ID_1":15,"NAME_1":"Bayburt","NAME_2":"Demirozu"}},{"type":"Polygon","arcs":[[771,772,773,774,775,-767,776,777,-764,778,779]],"properties":{"ID_1":15,"NAME_1":"Bayburt","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[780,781,782,783,784]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Inhisar"}},{"type":"Polygon","arcs":[[785,786,787,788,789,790,791,792]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Bozuyuk"}},{"type":"Polygon","arcs":[[793,794,795,796,797,798]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Golpazari"}},{"type":"Polygon","arcs":[[799,-797,800,-786,801,802,803]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[804,805,-798,-800,806,807]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Osmaneli"}},{"type":"Polygon","arcs":[[-793,808,-802]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Pazaryeri"}},{"type":"Polygon","arcs":[[-784,809,810,-787,-801,-796]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Sogut"}},{"type":"Polygon","arcs":[[811,812,813,-785,-795]],"properties":{"ID_1":16,"NAME_1":"Bilecik","NAME_2":"Yenipazar"}},{"type":"Polygon","arcs":[[814,815,816,817,818]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Adakli"}},{"type":"Polygon","arcs":[[819,820,821,822,823,824,825]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Genc"}},{"type":"Polygon","arcs":[[826,827,828,829,-816,830,831]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Karliova"}},{"type":"Polygon","arcs":[[-818,832,833,834,835]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Kigi"}},{"type":"Polygon","arcs":[[-817,-830,836,-820,837,838,-833]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[839,840,841,-821,-837,-829]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Solhan"}},{"type":"Polygon","arcs":[[-835,842,843,844]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Yayladere"}},{"type":"Polygon","arcs":[[845,-831,-815,846,847]],"properties":{"ID_1":17,"NAME_1":"Bingol","NAME_2":"Yedisu"}},{"type":"Polygon","arcs":[[848,849,850,851,852,853,-290]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Adilcevaz"}},{"type":"Polygon","arcs":[[-853,854,855,856,857,858,859]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Ahlat"}},{"type":"Polygon","arcs":[[860,861,862,863,-856]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Guroymak"}},{"type":"Polygon","arcs":[[864,865,866,867,868,869]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Hizan\r\n"}},{"type":"Polygon","arcs":[[870,-870,871,872,873,-862]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-863,-874,874,-755,-760,875,876]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Mutki"}},{"type":"Polygon","arcs":[[-852,877,878,-865,-871,-861,-855]],"properties":{"ID_1":18,"NAME_1":"Bitlis","NAME_2":"Tatvan"}},{"type":"Polygon","arcs":[[879,880,881,882]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Dortdivan"}},{"type":"Polygon","arcs":[[883,884,885,-425,-396,-393,886,-881,887]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Gerede"}},{"type":"Polygon","arcs":[[888,889,-440,890,-813,891]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Goynuk"}},{"type":"Polygon","arcs":[[892,-882,-887,-392,893]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Kibriscik"}},{"type":"Polygon","arcs":[[894,895,896,-884,897,898,899]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Mengen"}},{"type":"Polygon","arcs":[[900,-899,901,-883,-893,902,903,904,905]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[906,907,-904,908,-441,-890,909]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Mudurnu"}},{"type":"Polygon","arcs":[[-894,-391,-435,-909,-903]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Seben"}},{"type":"Polygon","arcs":[[-888,-880,-902,-898]],"properties":{"ID_1":19,"NAME_1":"Bolu","NAME_2":"Yenicaga"}},{"type":"Polygon","arcs":[[-93,910,911,912,913]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Aglasun"}},{"type":"Polygon","arcs":[[914,915,-509,916,917]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Altinyayla"}},{"type":"Polygon","arcs":[[-92,918,-523,-521,-506,919,920,921,-911]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Bucak"}},{"type":"Polygon","arcs":[[922,-510,-916,923,924]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Cavdir"}},{"type":"Polygon","arcs":[[-922,925,-912]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Celtikci"}},{"type":"Polygon","arcs":[[-924,-915,926]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Golhisar"}},{"type":"Polygon","arcs":[[927,928,929,930,931]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Karamanli"}},{"type":"Polygon","arcs":[[932,-920,-512,933,-929]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Kemer"}},{"type":"Polygon","arcs":[[-913,-926,-921,-933,-928,934,935,936]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-930,-934,-511,-923,937]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Tefenni"}},{"type":"Polygon","arcs":[[938,-935,-932,939,940,941,-217]],"properties":{"ID_1":20,"NAME_1":"Burdur","NAME_2":"Yesilova"}},{"type":"Polygon","arcs":[[-803,-809,-792,942,943,944,945,946]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Inegol"}},{"type":"Polygon","arcs":[[947,948,-808,949,950,951,952]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Iznik"}},{"type":"Polygon","arcs":[[953,954,955,-680]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Buyukorhan"}},{"type":"Polygon","arcs":[[956,957,958,959,960,961,962,963,964,965]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Gemlik"}},{"type":"Polygon","arcs":[[966,967,968,-960]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Gursu"}},{"type":"Polygon","arcs":[[969,970,-681,-956,971]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Harmancik"}},{"type":"MultiPolygon","arcs":[[[972,973,974,-721,-703,-665,975]],[[976]]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Karacabey"}},{"type":"Polygon","arcs":[[977,-944,978,979,-970,980]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Keles"}},{"type":"Polygon","arcs":[[981,-946,982,983,-967,-959]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Kestel"}},{"type":"Polygon","arcs":[[984,985,-973]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Mudanya"}},{"type":"Polygon","arcs":[[986,987,-954,-686,-702,-720,-975]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"MustafaKemalpasa"}},{"type":"Polygon","arcs":[[988,-961,-969,989,990,991,-987,-974,-986]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Nilufer"}},{"type":"Polygon","arcs":[[992,-981,-972,-955,-988,-992]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Orhaneli"}},{"type":"Polygon","arcs":[[993,994,-951,995,-957,996,997]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Orhangazi"}},{"type":"Polygon","arcs":[[998,-983,-945,-978,-993,-991]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Osmangazi"}},{"type":"Polygon","arcs":[[-968,-984,-999,-990]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Yildirim"}},{"type":"Polygon","arcs":[[-950,-807,-804,-947,-982,-958,-996]],"properties":{"ID_1":21,"NAME_1":"Bursa","NAME_2":"Yenisehir"}},{"type":"Polygon","arcs":[[999,-689,1000,1001]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Ayvacik"}},{"type":"Polygon","arcs":[[1002,1003,-690,-1000,1004,1005]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Bayramic"}},{"type":"Polygon","arcs":[[-698,1006,1007,1008,1009]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Biga"}},{"type":"Polygon","arcs":[[1010]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Bozcaada"}},{"type":"Polygon","arcs":[[-1008,1011,-1003,1012,1013]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Can"}},{"type":"Polygon","arcs":[[1014,1015]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Eceabat"}},{"type":"Polygon","arcs":[[1016,-1005,-1002,1017]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Ezine"}},{"type":"Polygon","arcs":[[1018,1019,-1015,1020,1021,1022]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Gelibolu"}},{"type":"Polygon","arcs":[[1023]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Gokceada"}},{"type":"Polygon","arcs":[[-1009,-1014,1024,1025]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Lapseki"}},{"type":"Polygon","arcs":[[-1025,-1013,-1006,-1017,1026]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-697,-663,-699,-691,-1004,-1012,-1007]],"properties":{"ID_1":22,"NAME_1":"Canakkale","NAME_2":"Yenice"}},{"type":"Polygon","arcs":[[1027,1028,-429,-400,1029]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Sabanozu"}},{"type":"Polygon","arcs":[[1030,1031,1032,1033]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Atkaracalar"}},{"type":"Polygon","arcs":[[1034,1035,-1031,1036,1037]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Bayramoren"}},{"type":"Polygon","arcs":[[-1037,-1034,1038,-422,-886,1039,1040]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Cerkes"}},{"type":"Polygon","arcs":[[1041,1042,-430,-1029]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Eldivan"}},{"type":"Polygon","arcs":[[1043,1044,1045,1046,1047,1048,1049,1050]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Ilgaz"}},{"type":"Polygon","arcs":[[1051,1052,1053,1054]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Kizilirmak"}},{"type":"Polygon","arcs":[[1055,-1042,-1028,1056,1057,-1047]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Korgun"}},{"type":"Polygon","arcs":[[-1048,-1058,1058,-1032,-1036,1059]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Kursunlu"}},{"type":"Polygon","arcs":[[1060,1061,-1054,1062,-426,-1043,-1056,-1046]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1059,-1057,-1030,-405,-423,-1039,-1033]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Orta"}},{"type":"Polygon","arcs":[[1063,1064,-1061,-1045]],"properties":{"ID_1":23,"NAME_1":"Cankiri","NAME_2":"Yaprakli"}},{"type":"Polygon","arcs":[[1065,1066,1067,1068,1069,1070,1071]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Iskilip"}},{"type":"Polygon","arcs":[[1072,1073,1074,1075,1076,1077,1078]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Alaca"}},{"type":"Polygon","arcs":[[-1070,1079,1080,-1055,-1062,-1065,1081]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Bayat"}},{"type":"Polygon","arcs":[[1082,1083,-1078]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Bogazkale"}},{"type":"Polygon","arcs":[[1084,1085,1086]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Dodurga"}},{"type":"Polygon","arcs":[[1087,1088,-1072,1089,1090,1091]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Kargi"}},{"type":"Polygon","arcs":[[1092,-336,1093,1094,-1086]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Lacin"}},{"type":"Polygon","arcs":[[-346,-340,-329,1095,1096]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Mecitozu"}},{"type":"Polygon","arcs":[[-335,-331,-1097,-1073,1097,1098,-1068,1099,-1094]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1087,-1095,-1100,-1067,1100]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Oguzlar"}},{"type":"Polygon","arcs":[[-328,1101,-1074,-1096]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Ortakoy"}},{"type":"Polygon","arcs":[[1102,-333,-337,-1093,-1085,-1101,-1066,-1089,1103]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Osmancik"}},{"type":"Polygon","arcs":[[1104,-1098,-1079,-1084,1105,1106,1107,1108,-1052,-1081]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Sungurlu"}},{"type":"Polygon","arcs":[[-1069,-1099,-1105,-1080]],"properties":{"ID_1":24,"NAME_1":"Corum","NAME_2":"Ugurludag"}},{"type":"Polygon","arcs":[[1109,-940,-931,-938,-925,-927,1110,1111,1112,1113,1114,1115,1116]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Acipayam"}},{"type":"Polygon","arcs":[[1117,1118,1119,1120]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Akkoy"}},{"type":"Polygon","arcs":[[1121,1122,-609,1123]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Babadag"}},{"type":"Polygon","arcs":[[1124,-237,1125,1126,1127]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Baklan"}},{"type":"Polygon","arcs":[[1128,1129,1130,1131]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Bekilli"}},{"type":"Polygon","arcs":[[1132,1133,-1114,1134,1135]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Beyagac"}},{"type":"Polygon","arcs":[[-236,1136,-941,-1110,1137,-1126]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Bozkurt"}},{"type":"Polygon","arcs":[[1138,1139,-1120,1140,-591,-625]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Buldan"}},{"type":"Polygon","arcs":[[-1131,1141,-1128,1142,1143,1144,1145]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Cal"}},{"type":"Polygon","arcs":[[-918,1146,1147,-1111]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Cameli"}},{"type":"Polygon","arcs":[[-218,-942,-1137,-235]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Cardak"}},{"type":"Polygon","arcs":[[-260,-256,-242,-248,-233,-1125,-1142,-1130,1148,1149,-251]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Civril"}},{"type":"Polygon","arcs":[[1150,1151,-1145,1152,-1121,-1140]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Guney"}},{"type":"Polygon","arcs":[[-1143,-1127,-1138,-1117,1153,1154]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Honaz"}},{"type":"Polygon","arcs":[[-611,1155,-1133,1156,-584]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Kale"}},{"type":"Polygon","arcs":[[-1144,-1155,1157,1158,-1122,1159,-1118,-1153]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1119,-1160,-1124,-608,-626,-589,-1141]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Saraykoy"}},{"type":"Polygon","arcs":[[-1116,1160,-1158,-1154]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Serinhisar"}},{"type":"Polygon","arcs":[[-1123,-1159,-1161,-1115,-1134,-1156,-610]],"properties":{"ID_1":25,"NAME_1":"Denizli","NAME_2":"Tavas\r\n"}},{"type":"Polygon","arcs":[[1161,-759,-749,1162,1163,1164]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Bismil"}},{"type":"Polygon","arcs":[[1165,-1164,1166,1167,1168,1169]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Cinar"}},{"type":"Polygon","arcs":[[1170,1171,1172,-171]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Cermik"}},{"type":"Polygon","arcs":[[1173,1174,-1171,-170,1175,1176]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Cungus"}},{"type":"Polygon","arcs":[[1177,1178,1179,1180,1181,1182]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Dicle"}},{"type":"Polygon","arcs":[[1183,1184,-1180]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Egil"}},{"type":"Polygon","arcs":[[-1181,-1185,1185,1186,-1172,-1175,1187,1188]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Ergani"}},{"type":"Polygon","arcs":[[1189,1190,-1178,-824]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Hani"}},{"type":"Polygon","arcs":[[1191,1192,1193,1194]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Hazro"}},{"type":"Polygon","arcs":[[1195,-1195,1196,-1191]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Kocakoy"}},{"type":"Polygon","arcs":[[1197,-762,1198,1199,-822,-842]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Kulp"}},{"type":"Polygon","arcs":[[-1200,1200,-1192,-1196,-1190,-823]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Lice"}},{"type":"Polygon","arcs":[[-1197,-1194,1201,-1165,-1166,1202,-1186,-1184,-1179]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1199,-761,-758,-743,-1162,-1202,-1193,-1201]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir","NAME_2":"Silvan"}},{"type":"Polygon","arcs":[[1203,1204,1205,1206,1207,1208,1209]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Akcakoca"}},{"type":"Polygon","arcs":[[1210,1211,1212,1213,-1207]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Cilimli"}},{"type":"Polygon","arcs":[[-1214,1214,1215,-1208]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Cumayeri"}},{"type":"Polygon","arcs":[[-1212,1216,1217,-907,1218,1219]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Golyaka"}},{"type":"Polygon","arcs":[[-1213,-1220,1220,-1215]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Gumusova"}},{"type":"Polygon","arcs":[[1221,-905,-908,-1218]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Kaynasli"}},{"type":"Polygon","arcs":[[1222,-906,-1222,-1217,-1211,-1206]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1223,-900,-901,-1223,-1205,1224]],"properties":{"ID_1":27,"NAME_1":"Duzce","NAME_2":"Yigilca"}},{"type":"Polygon","arcs":[[1225,1226,1227,1228,1229]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Ipsala"}},{"type":"Polygon","arcs":[[1230,-1227,1231]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Enez"}},{"type":"Polygon","arcs":[[1232,1233,1234,1235,1236,1237]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Havsa"}},{"type":"Polygon","arcs":[[1238,-1232,-1226,1239,1240,-1022]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Kesan"}},{"type":"Polygon","arcs":[[1241,1242,1243,1244,1245]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Lalapasa"}},{"type":"Polygon","arcs":[[1246,-1229,1247]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Meric"}},{"type":"Polygon","arcs":[[1248,-1238,1249,1250,-1245]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1251,-1233,-1249,-1244]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Suleoglu"}},{"type":"Polygon","arcs":[[-1237,1252,1253,1254,-1240,-1230,-1247,1255,-1250]],"properties":{"ID_1":28,"NAME_1":"Edirne","NAME_2":"Uzunkopru"}},{"type":"Polygon","arcs":[[1256,1257,1258,1259]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Agin"}},{"type":"Polygon","arcs":[[1260,-1182,-1189,1261,1262]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Alacakaya"}},{"type":"Polygon","arcs":[[-825,-1183,-1261,1263]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Aricak"}},{"type":"Polygon","arcs":[[1264,1265,1266,1267,1268,1269,1270,1271]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Baskil"}},{"type":"Polygon","arcs":[[-839,1272,1273,1274,-843,-834]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Karakocan"}},{"type":"Polygon","arcs":[[1275,-1265,1276,-1258,1277]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Keban"}},{"type":"Polygon","arcs":[[-1273,1278,1279,1280,1281]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Kovancilar"}},{"type":"Polygon","arcs":[[1282,-1262,-1188,-1174,1283]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Maden"}},{"type":"Polygon","arcs":[[1284,-1280,1285,-1283,1286,-1266,-1276,1287]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-838,-826,-1264,-1263,-1286,-1279]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Palu"}},{"type":"Polygon","arcs":[[-1287,-1284,-1177,1288,1289,1290,-1267]],"properties":{"ID_1":29,"NAME_1":"Elazig","NAME_2":"Sivrice"}},{"type":"Polygon","arcs":[[1291,1292,1293,1294,1295,1296]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Ilic"}},{"type":"Polygon","arcs":[[-769,1297,1298,1299,1300,1301]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Cayirli"}},{"type":"Polygon","arcs":[[1302,1303,1304,-1292]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Kemah"}},{"type":"Polygon","arcs":[[-1294,1305,1306,-1260,1307,1308]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Kemaliye"}},{"type":"Polygon","arcs":[[1309,-1301,1310,1311,1312,-1304,1313]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-776,1314,1315,-1298,-768]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Otlukbeli"}},{"type":"Polygon","arcs":[[1316,1317,1318,-1314,-1303,-1297,1319,1320,1321]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Refahiye"}},{"type":"Polygon","arcs":[[1322,1323,-848,1324,1325,-1299,-1316]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"Tercan"}},{"type":"Polygon","arcs":[[-1326,1326,-1311,-1300]],"properties":{"ID_1":30,"NAME_1":"Erzincan","NAME_2":"uzumlu"}},{"type":"Polygon","arcs":[[1327,-537,1328,1329,1330,1331,1332]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Senkaya"}},{"type":"Polygon","arcs":[[1333,-573,1334,1335,-773,1336,1337]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Ispir"}},{"type":"Polygon","arcs":[[-775,1338,1339,-1323,-1315]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Askale"}},{"type":"Polygon","arcs":[[1340,-832,-846,-1324,-1340,1341,1342]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Cat"}},{"type":"Polygon","arcs":[[1343,1344,1345,1346,1347]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Hinis"}},{"type":"Polygon","arcs":[[-1331,1348,-278,1349,1350,1351,1352]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Horasan"}},{"type":"Polygon","arcs":[[-1336,1353,1354,-1342,-1339,-774]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Aziziye"}},{"type":"Polygon","arcs":[[1355,1356,-1345,1357]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Karacoban"}},{"type":"Polygon","arcs":[[-277,-295,1358,-1358,-1344,1359,1360,1361,-1350]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Karayazi"}},{"type":"Polygon","arcs":[[-1362,1362,-1351]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Koprukoy"}},{"type":"Polygon","arcs":[[1363,1364,1365,-1343,-1355]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Yakutiye"}},{"type":"Polygon","arcs":[[1366,-1332,-1353,1367,1368]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Narman"}},{"type":"Polygon","arcs":[[1369,-1333,-1367,1370,1371,-570]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Oltu"}},{"type":"Polygon","arcs":[[-543,-538,-1328,-1370,-569,-564,-552]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Olur"}},{"type":"Polygon","arcs":[[1372,-1368,-1352,-1363,-1361,1373,-1365]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Pasinler"}},{"type":"Polygon","arcs":[[1374,-1337,-772]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Pazaryolu"}},{"type":"Polygon","arcs":[[-1374,-1360,-1348,1375,-827,-1341,-1366]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Tekman"}},{"type":"Polygon","arcs":[[1376,-1371,-1369,-1373,-1364,-1354,-1335,-572]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Tortum"}},{"type":"Polygon","arcs":[[-1372,-1377,-571]],"properties":{"ID_1":31,"NAME_1":"Erzurum","NAME_2":"Uzundere"}},{"type":"Polygon","arcs":[[1377,1378,-788,-811]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Inonu"}},{"type":"Polygon","arcs":[[1379,1380,1381,1382,-437]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Alpu"}},{"type":"Polygon","arcs":[[1383,1384,1385,-1381]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Beylikova"}},{"type":"Polygon","arcs":[[1386,-247,-223,1387,1388,1389]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Cifteler"}},{"type":"Polygon","arcs":[[1390,-446,1391,1392]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Gunyuzu"}},{"type":"Polygon","arcs":[[-1388,-222,-205,1393]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Han"}},{"type":"Polygon","arcs":[[-1386,1394,-1390,1395,1396,-1382]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Mahmudiye"}},{"type":"Polygon","arcs":[[-1383,-1397,1397,1398,-1378,-810,-783,1399,1400,-438]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-389,-447,-1391,1401,-1384,-1380,-436]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Mihaliccik"}},{"type":"Polygon","arcs":[[1402,-1400,-782]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Mihalgazi"}},{"type":"Polygon","arcs":[[-891,-439,-1401,-1403,-781,-814]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Saricakaya"}},{"type":"Polygon","arcs":[[-1396,-1389,-1394,-204,-196,1403,-1398]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Seyitgazi"}},{"type":"Polygon","arcs":[[-1393,1404,-244,-1387,-1395,-1385,-1402]],"properties":{"ID_1":32,"NAME_1":"Eskisehir","NAME_2":"Sivrihisar"}},{"type":"Polygon","arcs":[[1405,1406,1407,1408,1409,1410]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Sahinbey"}},{"type":"Polygon","arcs":[[1411,1412,1413,-1406,1414,1415]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Sehitkamil"}},{"type":"Polygon","arcs":[[1416,1417,1418,1419,-44,-33,1420,1421]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Islahiye"}},{"type":"Polygon","arcs":[[1422,1423,1424,-162]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Araban"}},{"type":"Polygon","arcs":[[1425,1426,1427,1428]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Karkamis"}},{"type":"Polygon","arcs":[[1429,1430,1431,-1428,1432,-1413]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Nizip"}},{"type":"Polygon","arcs":[[1433,-1415,-1411,1434,-1417,1435,1436]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Nurdagi"}},{"type":"Polygon","arcs":[[-1414,-1433,-1427,1437,1438,1439,-1407]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Oguzeli\r\n"}},{"type":"Polygon","arcs":[[-1424,1440,-1430,-1412,1441]],"properties":{"ID_1":33,"NAME_1":"Gaziantep","NAME_2":"Yavuzeli"}},{"type":"Polygon","arcs":[[1442,1443,1444,1445,1446,1447,1448,1449]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Sultankarahisar"}},{"type":"Polygon","arcs":[[1450,1451,1452,-3,1453,1454,-1445,1455]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Alucra"}},{"type":"Polygon","arcs":[[1456,1457,1458,1459,1460,1461]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Bulancak"}},{"type":"Polygon","arcs":[[1462,-1317,1463,-1446,-1455]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Camoluk"}},{"type":"Polygon","arcs":[[1464,1465,1466,1467,1468]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Canakci"}},{"type":"Polygon","arcs":[[1469,1470,-1456,-1444,1471,-1459,1472]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Dereli"}},{"type":"Polygon","arcs":[[1473,-1468,1474,1475]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Dogankent"}},{"type":"Polygon","arcs":[[1476,1477,1478,1479,1480]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Espiye"}},{"type":"Polygon","arcs":[[1481,1482,1483,1484]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Eynesil"}},{"type":"Polygon","arcs":[[1485,-1469,-1474,1486,-1478,1487]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Gorele"}},{"type":"Polygon","arcs":[[-1476,1488,-1452,1489,-1479,-1487]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Guce"}},{"type":"Polygon","arcs":[[-1481,1490,-1470,1491,1492]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Kesap"}},{"type":"Polygon","arcs":[[1493,-1492,-1473,-1458]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1494,-1462,1495,1496,1497]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Piraziz"}},{"type":"Polygon","arcs":[[1498,-1485,1499,-1465,-1486]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Tirebolu"}},{"type":"Polygon","arcs":[[-1490,-1451,-1471,-1491,-1480]],"properties":{"ID_1":34,"NAME_1":"Giresun","NAME_2":"Yaglidere"}},{"type":"Polygon","arcs":[[1500,-1318,-1463,-1454,-2,1501]],"properties":{"ID_1":35,"NAME_1":"Gumushane","NAME_2":"Siran"}},{"type":"Polygon","arcs":[[1502,1503,-770,-1302,-1310,-1319,-1501]],"properties":{"ID_1":35,"NAME_1":"Gumushane","NAME_2":"Kelkit"}},{"type":"Polygon","arcs":[[-777,-771,-1504,1504]],"properties":{"ID_1":35,"NAME_1":"Gumushane","NAME_2":"Kose"}},{"type":"Polygon","arcs":[[1505,1506,-4,-1453,-1489,-1475,-1467]],"properties":{"ID_1":35,"NAME_1":"Gumushane","NAME_2":"Kurtun\r\n"}},{"type":"Polygon","arcs":[[1507,1508,1509,1510,-765,-778,-1505,-1503,-1502,-1,1511,1512,1513]],"properties":{"ID_1":35,"NAME_1":"Gumushane","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1514,-100,1515,-936,-939,-216,-240]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Keciborlu"}},{"type":"Polygon","arcs":[[-94,-914,-937,-1516,-99,-87]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1516,-95,-85,1517,-209]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Senirkent"}},{"type":"Polygon","arcs":[[1518,1519,-517,-524,-919,-91,-83]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Sutculer"}},{"type":"Polygon","arcs":[[-1518,-84,-98,-1515,-239]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Uluborlu"}},{"type":"Polygon","arcs":[[-266,1520,-79,-97,-96,-1517,-208,-230]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Yalvac"}},{"type":"Polygon","arcs":[[1521,1522,-81,-90,-76]],"properties":{"ID_1":39,"NAME_1":"Isparta","NAME_2":"Yenisarbademli"}},{"type":"MultiPolygon","arcs":[[[1523,1524,1525]],[[1526,1527,1528,1529]]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Sisli"}},{"type":"Polygon","arcs":[[1530,1531,1532,1533,1534,1535,1536]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Sile"}},{"type":null,"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Adalar"}},{"type":"Polygon","arcs":[[1537,1538,1539,1540,1541,1542]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Arnavutkoy"}},{"type":"Polygon","arcs":[[1543,1544,1545,1546,1547]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Atasehir"}},{"type":"Polygon","arcs":[[1548,1549,1550,1551,1552,1553]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Avcilar"}},{"type":"Polygon","arcs":[[1554,1555,1556,1557,1558]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Bagcilar"}},{"type":"Polygon","arcs":[[-1557,1559,1560,1561]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Bahcelievler"}},{"type":"Polygon","arcs":[[1562,1563,1564,-1551,1565,-1561]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Bakirkoy"}},{"type":"Polygon","arcs":[[1566,1567,1568,-1559,1569,-1549,1570,-1540]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Basaksehir"}},{"type":"Polygon","arcs":[[1571,1572,1573,1574]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Bayrampasa"}},{"type":"Polygon","arcs":[[-1528,1575,1576,1577,-1526,1578]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Besiktas"}},{"type":"Polygon","arcs":[[-1537,1579,1580,1581,1582]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Beykoz"}},{"type":"Polygon","arcs":[[1583,-1553,1584,1585]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Beylikduzu"}},{"type":"Polygon","arcs":[[1586,-1524,-1578,1587]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Beyoglu"}},{"type":"Polygon","arcs":[[1588,-1586,1589,1590,1591,-1542]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Buyukcekmece"}},{"type":"Polygon","arcs":[[1592,-1543,-1592,1593,1594,1595,1596]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Catalca"}},{"type":"Polygon","arcs":[[-1536,1597,1598,-1599,1599,1600,-1580]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Cekmekoy"}},{"type":"Polygon","arcs":[[1601,1602,-1575,1603,1604,-1555,-1569]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Esenler"}},{"type":"Polygon","arcs":[[-1571,-1554,-1584,-1589,-1541]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Esenyurt"}},{"type":"Polygon","arcs":[[1605,1606,-1530,1607,1608,1609,1610,-1573,1611,1612,-1567,-1539]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Eyup"}},{"type":"Polygon","arcs":[[1613,1614,-1610]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Fatih"}},{"type":"Polygon","arcs":[[1615,-1612,-1572,-1603]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Gaziosmanpasa"}},{"type":"Polygon","arcs":[[1616,-1563,-1560,-1556,-1605]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Gungoren"}},{"type":"Polygon","arcs":[[-1529,-1579,-1525,-1587,1617,-1608]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Kagithane"}},{"type":"Polygon","arcs":[[1618,-1548,1619,1620]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Kadikoy"}},{"type":"Polygon","arcs":[[1621,1622,1623,1624,1625]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Kartal"}},{"type":"Polygon","arcs":[[-1558,-1562,-1566,-1550,-1570]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Kucukcekmece"}},{"type":"Polygon","arcs":[[1626,-1626,1627,-1620,-1547]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Maltepe"}},{"type":"Polygon","arcs":[[-1599,-1598,-1535,1628,1629,1630,-1624,1631,1632]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Pendik"}},{"type":"Polygon","arcs":[[-1600,1598,-1633,1633,-1622,-1627,-1546,1634]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Sancaktepe"}},{"type":"Polygon","arcs":[[1635,-1576,-1527,-1607]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Sariyer"}},{"type":"Polygon","arcs":[[-1632,-1623,-1634]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Sultanbeyli"}},{"type":"Polygon","arcs":[[-1613,-1616,-1602,-1568]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Sultangazi"}},{"type":"Polygon","arcs":[[1636,1637,-1630]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Tuzla"}},{"type":"Polygon","arcs":[[-1601,-1635,-1545,1638,-1581]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"umraniye"}},{"type":"MultiPolygon","arcs":[[[-1639,-1544,-1619,1639,-1582]],[[-1591,1640,1641,1642,-1594]]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"uskudar"}},{"type":"Polygon","arcs":[[-1611,-1615,1643,-1564,-1617,-1604,-1574]],"properties":{"ID_1":40,"NAME_1":"Istanbul","NAME_2":"Zeytinburnu"}},{"type":"Polygon","arcs":[[1644,1645,1646,1647,1648]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Aliaga"}},{"type":"Polygon","arcs":[[1649,1650,1651]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Balcova"}},{"type":"Polygon","arcs":[[1652,1653,1654,1655,1656]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Bayindir"}},{"type":"Polygon","arcs":[[1657,1658,1659,-1649,1660,1661,1662,-654,-693,-677,-647]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Bergama"}},{"type":"Polygon","arcs":[[-633,-642,-614,1663,1664]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Beydag"}},{"type":"Polygon","arcs":[[1665,1666,1667,1668,1669,1670]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Bornova\r\n"}},{"type":"Polygon","arcs":[[1671,1672,1673,1674,-1667]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Buca"}},{"type":"Polygon","arcs":[[1677,1678,1679,1680,1681]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Cesme"}},{"type":"Polygon","arcs":[[1682,1683,1684]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Cigli\r\n"}},{"type":"Polygon","arcs":[[1685,1686,-655,-1663]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Dikili"}},{"type":"Polygon","arcs":[[-1647,1687,1688]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Foca"}},{"type":"Polygon","arcs":[[-1674,1689,1690,1691]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Gaziemir"}},{"type":"Polygon","arcs":[[1692,1693,1694,1695]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Guzelbahce"}},{"type":"Polygon","arcs":[[1696,1697,1698,-1659,1699]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Kinik"}},{"type":"Polygon","arcs":[[-1669,1700,1701,-1685,1702]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Karsiyaka"}},{"type":"Polygon","arcs":[[1703,1704]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Karaburun"}},{"type":"Polygon","arcs":[[1705,-1656,1706,-1672,-1666,1707]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Kemalpasa"}},{"type":"Polygon","arcs":[[1708,-634,-1665,1709,1710]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Kiraz"}},{"type":"Polygon","arcs":[[-1701,-1668,-1675,-1692,1711,1712,-1651,1713]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Konak"}},{"type":"Polygon","arcs":[[1714,1715,1716,1717,1718,-1695,1719,-1712,-1691]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Menderes"}},{"type":"Polygon","arcs":[[-1670,-1703,-1684,1720,-1688,-1646,1721]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Menemen"}},{"type":"Polygon","arcs":[[1722,-1652,-1713,-1720,-1694]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Narlidere"}},{"type":"Polygon","arcs":[[1723,-1710,-1664,-618,-631,1724,-1653,1725,1726]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Odemis"}},{"type":"Polygon","arcs":[[1729,-1728,1730,1731,-1718]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Seferihisar"}},{"type":"Polygon","arcs":[[1732,1733,-605,-624,1734,-1716]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Selcuk"}},{"type":"Polygon","arcs":[[-1654,-1725,-630,-580,-606,-1734,1735]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Tire"}},{"type":"Polygon","arcs":[[-1673,-1707,-1655,-1736,-1733,-1715,-1690]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Torbali"}},{"type":"MultiPolygon","arcs":[[[1741,-1696,-1719,-1732,1742,-1678,1743,-1704]],[[1744]]],"properties":{"ID_1":41,"NAME_1":"Izmir","NAME_2":"Urla"}},{"type":"Polygon","arcs":[[1745,1746,1747,1748]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Afsin"}},{"type":"Polygon","arcs":[[-142,1749,1750,1751,1752,-133]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Andirin"}},{"type":"Polygon","arcs":[[-178,1753,1754,1755]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Caglayancerit"}},{"type":"Polygon","arcs":[[1756,1757,1758,1759]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Ekinozu"}},{"type":"Polygon","arcs":[[1760,1761,1762,1763,-1757,1764,-1746,1765]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Elbistan"}},{"type":"Polygon","arcs":[[1766,-1747,-1765,-1760,1767,-1750,-141,-147]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Goksun"}},{"type":"Polygon","arcs":[[1768,-1755,1769,1770,1771,-1751,-1768,-1759]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1772,-179,-1756,-1769,-1758,-1764]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Nurhak"}},{"type":"Polygon","arcs":[[-1754,-177,-163,-1425,-1442,-1416,-1434,1773,-1770]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Pazarcik"}},{"type":"Polygon","arcs":[[-1774,-1437,1774,1775,-1771]],"properties":{"ID_1":42,"NAME_1":"K. Maras","NAME_2":"Turkoglu"}},{"type":"Polygon","arcs":[[1776,1777,1778,-736,1779]],"properties":{"ID_1":43,"NAME_1":"Karabuk","NAME_2":"Eflani"}},{"type":"Polygon","arcs":[[1780,-1040,-885,-897,1781,1782]],"properties":{"ID_1":43,"NAME_1":"Karabuk","NAME_2":"Eskipazar"}},{"type":"Polygon","arcs":[[1783,1784,-1783,1785]],"properties":{"ID_1":43,"NAME_1":"Karabuk","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1786,-1038,-1041,-1781,-1785,1787]],"properties":{"ID_1":43,"NAME_1":"Karabuk","NAME_2":"Ovacik"}},{"type":"Polygon","arcs":[[-1779,1788,-1788,-1784,1789,-729,-737]],"properties":{"ID_1":43,"NAME_1":"Karabuk","NAME_2":"Safranbolu"}},{"type":"Polygon","arcs":[[-1790,-1786,-1782,-896,1790,1791,-730]],"properties":{"ID_1":43,"NAME_1":"Karabuk","NAME_2":"Yenice"}},{"type":"Polygon","arcs":[[1792,1793,1794,1795,1796,1797,1798]],"properties":{"ID_1":44,"NAME_1":"Karaman","NAME_2":"Ayranci"}},{"type":"Polygon","arcs":[[1799,1800,1801]],"properties":{"ID_1":44,"NAME_1":"Karaman","NAME_2":"Basyayla"}},{"type":"Polygon","arcs":[[1802,1803,1804,1805,-475,1806,-1800,1807,1808]],"properties":{"ID_1":44,"NAME_1":"Karaman","NAME_2":"Ermenek"}},{"type":"Polygon","arcs":[[1809,1810,1811,1812]],"properties":{"ID_1":44,"NAME_1":"Karaman","NAME_2":"Kazimkarabekir"}},{"type":"Polygon","arcs":[[-1798,1813,1814,-1803,1815,-1810,1816,1817,1818]],"properties":{"ID_1":44,"NAME_1":"Karaman","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1801,-1807,-474,-460,1819]],"properties":{"ID_1":44,"NAME_1":"Karaman","NAME_2":"Sariveliler"}},{"type":"Polygon","arcs":[[1820,1821,1822]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Akyaka"}},{"type":"Polygon","arcs":[[-1821,1823,1824,-526,1825]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Arpacay"}},{"type":"Polygon","arcs":[[-67,1826,1827,1828]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Digor"}},{"type":"Polygon","arcs":[[1829,-1827,-72,-288,-280,1830,1831]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Kagizman"}},{"type":"Polygon","arcs":[[-1823,1832,-1828,-1830,1833,1834,-1824]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1835,-1831,-279,-1349,-1330]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Sarikamis"}},{"type":"Polygon","arcs":[[-1834,-1832,-1836,-1329,-536]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Selim"}},{"type":"Polygon","arcs":[[-1825,-1835,-535,-542,-527]],"properties":{"ID_1":45,"NAME_1":"Kars","NAME_2":"Susuz"}},{"type":"Polygon","arcs":[[1836,1837,1838]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Senpazar"}},{"type":"Polygon","arcs":[[1839,-1050,1840,1841]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Ihsangazi"}},{"type":"Polygon","arcs":[[1842,1843,1844,1845]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Inebolu"}},{"type":"Polygon","arcs":[[1846,1847,1848,1849]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Agli"}},{"type":"Polygon","arcs":[[1850,1851,1852]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Abana"}},{"type":"Polygon","arcs":[[1853,-1841,-1049,-1060,-1035,-1787,-1789,-1778]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Arac"}},{"type":"Polygon","arcs":[[1854,1855,-1850,1856,1857,1858,-1837]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Azdavay"}},{"type":"Polygon","arcs":[[1859,-1853,1860,1861,1862,-1843]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Bozkurt"}},{"type":"Polygon","arcs":[[1863,1864,1865,1866,-1861,-1852]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Catalzeytin"}},{"type":"Polygon","arcs":[[1867,-1838,-1859,1868,-738,-734,-725,1869]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Cide"}},{"type":"Polygon","arcs":[[1870,1871,-1842,-1854,-1777,1872,-1857,-1849]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Daday"}},{"type":"Polygon","arcs":[[-1867,1873,1874,1875,1876,-1862]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Devrekani"}},{"type":"Polygon","arcs":[[1877,-1845,1878,-1855,-1839,-1868]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Doganyurt"}},{"type":"Polygon","arcs":[[1879,1880,1881,1882]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Hanonu"}},{"type":"Polygon","arcs":[[-1844,-1863,-1877,1883,-1847,-1856,-1879]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Kure"}},{"type":"Polygon","arcs":[[1884,-1875,1885,1886,-1051,-1840,-1872]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1858,-1873,-1780,-735,-1869]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Pinarbasi"}},{"type":"Polygon","arcs":[[-1876,-1885,-1871,-1848,-1884]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Seydiler"}},{"type":"Polygon","arcs":[[-1882,1887,-1091,1888,-1886,-1874,-1866,1889]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Taskopru"}},{"type":"Polygon","arcs":[[-1090,-1071,-1082,-1064,-1044,-1887,-1889]],"properties":{"ID_1":46,"NAME_1":"Kastamonu","NAME_2":"Tosya"}},{"type":"Polygon","arcs":[[1890,1891,1892,1893,1894,1895]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Incesu"}},{"type":"Polygon","arcs":[[1896,1897,1898,1899]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Akkisla"}},{"type":"Polygon","arcs":[[1900,-1898,1901,1902,1903,1904]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Bunyan"}},{"type":"Polygon","arcs":[[1905,1906,-148,-143,-118,1907,1908,-1893,1909]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Develi"}},{"type":"Polygon","arcs":[[1910,1911,1912,1913,1914]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Felahiye"}},{"type":"Polygon","arcs":[[1915,1916,-1910,-1892]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Hacilar"}},{"type":"Polygon","arcs":[[1917,1918,-1905,1919,1920,-1896,1921,1922,-1912]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Kocasinan"}},{"type":"Polygon","arcs":[[-1891,-1921,1923,-1916]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Melikgazi"}},{"type":"Polygon","arcs":[[1924,-1918,-1911,1925,1926]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Ozvatan"}},{"type":"Polygon","arcs":[[1927,1928,1929,1930,-1902,-1897,1931,1932]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Pinarbasi"}},{"type":"Polygon","arcs":[[-1899,-1901,-1919,-1925,1933]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Sarioglan"}},{"type":"Polygon","arcs":[[-1748,-1767,-146,1934,-1930,1935]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Sariz"}},{"type":"Polygon","arcs":[[-1904,1936,-1906,-1917,-1924,-1920]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Talas"}},{"type":"Polygon","arcs":[[-1931,-1935,-149,-1907,-1937,-1903]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Tomarza"}},{"type":"Polygon","arcs":[[1937,-1908,-121,-106,1938]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Yahyali"}},{"type":"Polygon","arcs":[[-1894,-1909,-1938,1939,1940]],"properties":{"ID_1":47,"NAME_1":"Kayseri","NAME_2":"Yesilhisar"}},{"type":"Polygon","arcs":[[1941,-1439,1942]],"properties":{"ID_1":48,"NAME_1":"Kilis","NAME_2":"Elbeyli"}},{"type":"Polygon","arcs":[[-1440,-1942,1943,-1419,1944,1945,-1408]],"properties":{"ID_1":48,"NAME_1":"Kilis","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1410,1946,-1945,-1418,-1435]],"properties":{"ID_1":48,"NAME_1":"Kilis","NAME_2":"Musabeyli"}},{"type":"Polygon","arcs":[[-1946,-1947,-1409]],"properties":{"ID_1":48,"NAME_1":"Kilis","NAME_2":"Polateli"}},{"type":"Polygon","arcs":[[1947,1948,1949,1950,-381]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Bahsili"}},{"type":"Polygon","arcs":[[1951,1952,1953,1954,1955,-407,-428]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Baliseyh"}},{"type":"Polygon","arcs":[[1956,1957,-357,1958]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Celebi"}},{"type":"Polygon","arcs":[[1959,-1108,1960,1961,1962,-1953]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Delice"}},{"type":"Polygon","arcs":[[1963,-1959,-356,-382,-1951]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Karakecili"}},{"type":"Polygon","arcs":[[1964,1965,1966,-1957,-1964,-1950,1967,-1954,-1963]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Keskin"}},{"type":"Polygon","arcs":[[-1968,-1949,1968,-1955]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Merkez\r\n"}},{"type":"Polygon","arcs":[[-1053,-1109,-1960,-1952,-427,-1063]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Sulakyurt"}},{"type":"Polygon","arcs":[[-1956,-1969,-1948,-380,-408]],"properties":{"ID_1":49,"NAME_1":"Kinkkale","NAME_2":"Yahsihan"}},{"type":"Polygon","arcs":[[1969,1970,1971,1972,-1235]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Babaeski"}},{"type":"Polygon","arcs":[[1973,1974,1975,1976]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Demirkoy"}},{"type":"Polygon","arcs":[[1977,-1242,1978]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Kofcaz"}},{"type":"Polygon","arcs":[[1979,1980,1981,1982,1983,-1971]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Luleburgaz"}},{"type":"Polygon","arcs":[[-1243,-1978,1984,-1976,1985,-1980,-1970,-1234,-1252]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[1986,1987,-1981,-1986,-1975]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Pinarhisar"}},{"type":"Polygon","arcs":[[-1236,-1973,1988,-1253]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Pehlivankoy"}},{"type":"Polygon","arcs":[[-1974,1989,1990,-1987]],"properties":{"ID_1":50,"NAME_1":"Kirklareli","NAME_2":"Vize"}},{"type":"Polygon","arcs":[[1991,1992,1993,1994,-1965,-1962]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Akcakent"}},{"type":"Polygon","arcs":[[-1995,1995,1996,-1966]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Akpinar"}},{"type":"Polygon","arcs":[[1997,1998,1999,2000]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Boztepe"}},{"type":"Polygon","arcs":[[2001,2002,-1998,2003,-1993,2004]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Cicekdagi"}},{"type":"Polygon","arcs":[[-1997,2005,-412,-358,-1958,-1967]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Kaman"}},{"type":"Polygon","arcs":[[-2004,-2001,2006,2007,-318,-322,-413,-2006,-1996,-1994]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2008,2009,-2007,-2000,2010]],"properties":{"ID_1":51,"NAME_1":"Kirsehir","NAME_2":"Mucur"}},{"type":"Polygon","arcs":[[2011,2012]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Derince"}},{"type":"Polygon","arcs":[[-1534,2013,2014,-1637,-1629]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Gebze"}},{"type":"Polygon","arcs":[[2015,2016,-953,2017]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Golcuk"}},{"type":"Polygon","arcs":[[2018,2019,2020,2021,2022,-1532,2023]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Kandira"}},{"type":"Polygon","arcs":[[2024,-2018,-952,-995,2025,2026]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Karamursel"}},{"type":"Polygon","arcs":[[2027,-2013,2028,2029,-2014,-1533,-2023]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Korfez"}},{"type":"Polygon","arcs":[[-2022,2030,2031,2032,-948,-2017,2033,-2029,-2012,-2028]],"properties":{"ID_1":52,"NAME_1":"Kocaeli","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2034,2035,2036,-454,2037,2038]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Ahirli"}},{"type":"Polygon","arcs":[[-265,2039,2040,2041,-73,-1521]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Aksehir"}},{"type":"Polygon","arcs":[[2042,2043,2044,-2036,2045]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Akoren"}},{"type":"Polygon","arcs":[[2046,-303,2047,2048,2049]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Altinekin"}},{"type":"Polygon","arcs":[[2050,2051,2052,2053,2054,-1519,-82,-1523,2055]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Beysehir"}},{"type":"Polygon","arcs":[[2056,2057,-1812,2058,-478,-455,-2037,-2045]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Bozkir"}},{"type":"Polygon","arcs":[[-445,2059,-245,-1405,-1392]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Celtik"}},{"type":"Polygon","arcs":[[-419,2060,-360,-316,-304,-2047,2061,2062]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Cihanbeyli"}},{"type":"Polygon","arcs":[[2063,-1818,2064,-2057,-2044,2065,2066]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Cumra"}},{"type":"Polygon","arcs":[[2067,2068,2069,-2052,2070]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Derbent"}},{"type":"Polygon","arcs":[[2071,-452,-518,-1520,-2055]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Derebucak"}},{"type":"Polygon","arcs":[[2072,2073,-74,-2042]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Doganhisar"}},{"type":"Polygon","arcs":[[2074,2075,2076,2077,-315]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Emirgazi"}},{"type":"Polygon","arcs":[[2078,2079,2080,-1793,2081,-2077]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Eregli"}},{"type":"Polygon","arcs":[[-1817,-1813,-2058,-2065]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Guneysinir"}},{"type":"Polygon","arcs":[[-1811,-1816,-1809,2082,-458,-479,-2059]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Hadim"}},{"type":"Polygon","arcs":[[2083,2084,2085,2086,-1794,-2081]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Halkapinar"}},{"type":"Polygon","arcs":[[2087,-2056,-1522,-75,-2074]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Huyuk"}},{"type":"Polygon","arcs":[[2088,2089,-2071,-2051,-2088,-2073,-2041,2090]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Ilgin"}},{"type":"Polygon","arcs":[[2091,2092,2093,-2068,-2090]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Kadinhani"}},{"type":"Polygon","arcs":[[-2078,-2082,-1799,-1819,-2064,2094,-301]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Karapinar"}},{"type":"Polygon","arcs":[[-302,-2095,-2067,2095,2096,-2048]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Karatay"}},{"type":"Polygon","arcs":[[-361,-2061,-418,-383]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Kulu"}},{"type":"Polygon","arcs":[[2097,-2096,-2066,-2043,2098,-2053,-2070]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Meram"}},{"type":"Polygon","arcs":[[2099,-2062,-2050,2100,-2093]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Sarayonu"}},{"type":"Polygon","arcs":[[-2049,-2097,-2098,-2069,-2094,-2101]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Selcuklu"}},{"type":"Polygon","arcs":[[-2046,-2035,2101,-2038,-453,-2072,-2054,-2099]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Seydisehir"}},{"type":"Polygon","arcs":[[-1808,-1802,-1820,-459,-2083]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Taskent"}},{"type":"Polygon","arcs":[[2102,-2091,-2040,-264]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Tuzlukcu"}},{"type":"Polygon","arcs":[[-2039,-2102]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Yalihuyuk"}},{"type":"Polygon","arcs":[[-420,-2063,-2100,-2092,-2089,-2103,-263,-225,-246,-2060,-444]],"properties":{"ID_1":53,"NAME_1":"Konya","NAME_2":"Yunak"}},{"type":"Polygon","arcs":[[2103,2104,2105,2106]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Saphane"}},{"type":"Polygon","arcs":[[2107,-199,-258,-262,2108,2109,2110,2111]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Altintas"}},{"type":"Polygon","arcs":[[2112,2113,-2112,2114,2115,2116]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Aslanapa"}},{"type":"Polygon","arcs":[[-2116,2117,2118]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Cavdarhisar"}},{"type":"Polygon","arcs":[[-943,-791,2119,-979]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Domanic"}},{"type":"Polygon","arcs":[[-261,-254,2120,-2109]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Dumlupinar"}},{"type":"Polygon","arcs":[[2121,-2117,-2119,2122,2123,2124]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Emet"}},{"type":"Polygon","arcs":[[-2118,-2115,-2111,2125,2126,2127,-2104,2128,2129,-2123]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Gediz"}},{"type":"Polygon","arcs":[[-2130,2130,-2124]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Hisarcik"}},{"type":"Polygon","arcs":[[-1379,-1399,-1404,-200,-2108,-2114,2131,-789]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2132,-2106,2133,2134]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Pazarlar"}},{"type":"Polygon","arcs":[[2135,-2125,-2131,-2129,-2107,-2133,2136,-713,-683]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Simav"}},{"type":"Polygon","arcs":[[-2120,-790,-2132,-2113,-2122,-2136,-682,-971,-980]],"properties":{"ID_1":54,"NAME_1":"Kutahya","NAME_2":"Tavsanli"}},{"type":"Polygon","arcs":[[2137,2138,2139,2140,-1762,2141,2142]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Akcadag"}},{"type":"Polygon","arcs":[[-1308,-1259,-1277,-1272,2143,2144]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Arapkir"}},{"type":"Polygon","arcs":[[-2144,-1271,2145,2146,2147]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Arguvan\r\n"}},{"type":"Polygon","arcs":[[2148,-1269,2149,2150]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Battalgazi"}},{"type":"Polygon","arcs":[[2151,2152,-2142,-1761,2153]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Darende"}},{"type":"Polygon","arcs":[[-2141,2154,-168,-190,-195,-180,-1773,-1763]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Dogansehir"}},{"type":"Polygon","arcs":[[-1289,-1176,2155]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Doganyol"}},{"type":"Polygon","arcs":[[-2147,2156,-2143,-2153,2157,2158,2159]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Hekimhan"}},{"type":"Polygon","arcs":[[-2150,-1268,-1291,2160,2161]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Kale"}},{"type":"Polygon","arcs":[[-2158,-2152,2162,2163]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Kuluncak"}},{"type":"Polygon","arcs":[[2164,-2151,-2162,2165,-193,-165,2166,-2139]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2156,-175,-194,-2166,-2161,-1290]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Poturge"}},{"type":"Polygon","arcs":[[-1270,-2149,-2165,-2138,-2157,-2146]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Yazihan"}},{"type":"Polygon","arcs":[[-169,-2155,-2140,-2167]],"properties":{"ID_1":55,"NAME_1":"Malatya","NAME_2":"Yesilyurt"}},{"type":"Polygon","arcs":[[2167,2168,2169,-1727,2170]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Ahmetli"}},{"type":"Polygon","arcs":[[2171,2172,2173,-1697,2174,2175,-716]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Akhisar"}},{"type":"Polygon","arcs":[[2176,2177,2178,-635,-1709,2179]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Alasehir"}},{"type":"Polygon","arcs":[[-2137,-2135,2180,2181,2182,2183,2184,-714]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Demirci"}},{"type":"Polygon","arcs":[[2185,2186,-2169,2187,-2173]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Golmarmara"}},{"type":"Polygon","arcs":[[-2185,2188,2189,-2186,-2172,-715]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Gordes"}},{"type":"Polygon","arcs":[[-711,-717,-2176,2190,-718]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Kirkagac"}},{"type":"Polygon","arcs":[[-2184,2191,-2189]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Koprubasi"}},{"type":"Polygon","arcs":[[2192,2193,-2177,2194,-2182]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Kula"}},{"type":"Polygon","arcs":[[-1699,2195,2196,-1708,-1671,-1722,-1645,-1660]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2192,-2183,-2195,-2180,-1711,-1724,-2170,-2187,-2190]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Salihli"}},{"type":"Polygon","arcs":[[2197,-1151,-1139,-628,-636,-2179]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Sarigol"}},{"type":"Polygon","arcs":[[-1698,-2174,-2188,-2168,2198,-2196]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Saruhanli"}},{"type":"Polygon","arcs":[[-2105,-2128,2199,2200,-2193,-2181,-2134]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Selendi"}},{"type":"Polygon","arcs":[[-719,-2191,-2175,-1700,-1658,-646]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Soma"}},{"type":"Polygon","arcs":[[-2171,-1726,-1657,-1706,-2197,-2199]],"properties":{"ID_1":56,"NAME_1":"Manisa","NAME_2":"Turgutlu"}},{"type":"Polygon","arcs":[[2201,2202,2203,-746,-752,2204]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Dargecit"}},{"type":"Polygon","arcs":[[2205,2206,2207,2208,-1169]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Derik"}},{"type":"Polygon","arcs":[[2209,2210,2211,2212,-2207]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Kiziltepe"}},{"type":"Polygon","arcs":[[2213,2214,-2210,-2206,-1168]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Mazidagi"}},{"type":"Polygon","arcs":[[2215,2216,2217,2218,2219,2220,-2211,-2215]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Merkez\r\n"}},{"type":"Polygon","arcs":[[-2204,2221,2222,2223,2224,-747]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Midyat"}},{"type":"Polygon","arcs":[[2225,2226,-2220,2227,-2223]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Nusaybin"}},{"type":"Polygon","arcs":[[-2224,-2228,-2219,2228,-2217,2229]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Omerli"}},{"type":"Polygon","arcs":[[-748,-2225,-2230,-2216,-2214,-1167,-1163]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Savur"}},{"type":"Polygon","arcs":[[-2229,-2218]],"properties":{"ID_1":57,"NAME_1":"Mardin","NAME_2":"Yesilli"}},{"type":"Polygon","arcs":[[2230,2231,2232,-476,-1806]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Anamur"}},{"type":"Polygon","arcs":[[2233,2234,2235]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Aydincik"}},{"type":"Polygon","arcs":[[2236,-2236,2237,-2232]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Bozyazi"}},{"type":"Polygon","arcs":[[2238,2239,-2086]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Camliyayla"}},{"type":"Polygon","arcs":[[2240,2241,2242,-1796]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Erdemli"}},{"type":"Polygon","arcs":[[2243,2244,-2234,-2237,-2231,-1805,2245]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Gulnar"}},{"type":"Polygon","arcs":[[-2240,2246,2247,-2241,-1795,-2087]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2248,-2246,-1804,-1815]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Mut"}},{"type":"Polygon","arcs":[[-2243,2249,-2244,-2249,-1814,-1797]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Silifke"}},{"type":"Polygon","arcs":[[-138,-124,-145,-129,2250,-2247,-2239,-2085,2251]],"properties":{"ID_1":58,"NAME_1":"Mersin","NAME_2":"Tarsus"}},{"type":"Polygon","arcs":[[2254,2255,2256,2257]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Bodrum"}},{"type":"Polygon","arcs":[[2267,2268,-2259,2269,2270,2271,-1112,-1148]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Dalaman"}},{"type":"Polygon","arcs":[[2272,2273,2274]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Datca"}},{"type":"Polygon","arcs":[[-469,-485,2275,-2268,-1147,-917]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Fethiye"}},{"type":"Polygon","arcs":[[-593,-586,2276,2277]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Kavaklidere"}},{"type":"Polygon","arcs":[[-1113,-2272,2278,2279,2280,2281,2282,-1135]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Koycegiz"}},{"type":"Polygon","arcs":[[2285,-2281,2286,-2273,2287,-2284,2288]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Marmaris"}},{"type":"Polygon","arcs":[[-585,-1157,-1136,-2283,2289,2290,2291,2292,-2277]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-595,2293,-2292,2294,-2256,2295,-2254,2296,-599,-637,-620,-613]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Milas"}},{"type":"Polygon","arcs":[[-2271,2297,-2279]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Ortaca"}},{"type":"Polygon","arcs":[[-2282,-2286,2298,-2290]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Ula"}},{"type":"Polygon","arcs":[[-594,-2278,-2293,-2294]],"properties":{"ID_1":59,"NAME_1":"Mugla","NAME_2":"Yatagan"}},{"type":"Polygon","arcs":[[2299,-859,2300,2301,2302,-1346,-1357]],"properties":{"ID_1":60,"NAME_1":"Mus","NAME_2":"Bulanik"}},{"type":"Polygon","arcs":[[2303,-857,-864,-877,2304]],"properties":{"ID_1":60,"NAME_1":"Mus","NAME_2":"Haskoy"}},{"type":"Polygon","arcs":[[-858,-2304,2305,-2301]],"properties":{"ID_1":60,"NAME_1":"Mus","NAME_2":"Korkut"}},{"type":"Polygon","arcs":[[-294,-291,-854,-860,-2300,-1356,-1359]],"properties":{"ID_1":60,"NAME_1":"Mus","NAME_2":"Malazgirt"}},{"type":"Polygon","arcs":[[2306,-2302,-2306,-2305,-876,-763,-1198,-841]],"properties":{"ID_1":60,"NAME_1":"Mus","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1347,-2303,-2307,-840,-828,-1376]],"properties":{"ID_1":60,"NAME_1":"Mus","NAME_2":"Varto"}},{"type":"Polygon","arcs":[[2307,2308,2309,2310,-308,-313,-320]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Acigol"}},{"type":"Polygon","arcs":[[2311,2312,-1922,2313,2314,2315,2316,2317]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Avanos\r\n"}},{"type":"Polygon","arcs":[[2318,2319,2320,2321,-2310]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Derinkuyu"}},{"type":"Polygon","arcs":[[-2010,2322,-2316,2323,-2308,-319,-2008]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Gulsehir"}},{"type":"Polygon","arcs":[[2324,-2317,-2323,-2009]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Hacibektas"}},{"type":"Polygon","arcs":[[-2003,2325,2326,-2318,-2325,-2011,-1999]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Kozakli"}},{"type":"Polygon","arcs":[[-2315,2327,-2319,-2309,-2324]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1895,-1941,2328,-2320,-2328,-2314]],"properties":{"ID_1":61,"NAME_1":"Nevsehir","NAME_2":"urgup"}},{"type":"Polygon","arcs":[[2329,2330,2331,-2075,-314,-310]],"properties":{"ID_1":62,"NAME_1":"Nigde","NAME_2":"Altunhisar"}},{"type":"Polygon","arcs":[[2332,2333,2334,-2079,-2076,-2332]],"properties":{"ID_1":62,"NAME_1":"Nigde","NAME_2":"Bor"}},{"type":"Polygon","arcs":[[-111,-137,2335,-2334,2336,-1939]],"properties":{"ID_1":62,"NAME_1":"Nigde","NAME_2":"Camardi"}},{"type":"Polygon","arcs":[[-2322,2337,-2330,-309,-305,-2311]],"properties":{"ID_1":62,"NAME_1":"Nigde","NAME_2":"Ciftlik"}},{"type":"Polygon","arcs":[[-1940,-2337,-2333,-2331,-2338,-2321,-2329]],"properties":{"ID_1":62,"NAME_1":"Nigde","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2336,-139,-2252,-2084,-2080,-2335]],"properties":{"ID_1":62,"NAME_1":"Nigde","NAME_2":"Ulukisla"}},{"type":"Polygon","arcs":[[2338,2339,2340,2341]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Ikizce"}},{"type":"Polygon","arcs":[[2342,2343,2344,2345,2346,2347]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Akkus"}},{"type":"Polygon","arcs":[[2348,2349,2350,2351,2352]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Aybasti"}},{"type":"Polygon","arcs":[[2353,2354,2355]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Camas"}},{"type":"Polygon","arcs":[[-2339,2356,-2343,2357]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Caybasi"}},{"type":"Polygon","arcs":[[2358,2359,2360,2361,-2356,2362,2363,2364,2365]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Fatsa"}},{"type":"Polygon","arcs":[[2366,2367,2368,2369,-2350,2370]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Golkoy"}},{"type":"Polygon","arcs":[[2371,-1498,2372]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Gulyali"}},{"type":"Polygon","arcs":[[2373,2374,-2367,2375,-2354,-2362]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Gurgentepe"}},{"type":"Polygon","arcs":[[2376,-1496,-1461,2377,2378]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Kabaduz"}},{"type":"Polygon","arcs":[[-2355,-2376,-2371,-2349,2379,-2363]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Kabatas"}},{"type":"Polygon","arcs":[[-2380,-2353,2380,2381,-2364]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Korgan"}},{"type":"Polygon","arcs":[[2382,-2365,-2382,2383,-2345]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Kumru"}},{"type":"Polygon","arcs":[[2384,-2373,-1497,-2377,2385,-2374,-2361,2386]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2387,-2378,-1460,-1472,-1443,2388,2389,-2369]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Mesudiye"}},{"type":"Polygon","arcs":[[-2387,-2360,2390]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Persembe"}},{"type":"Polygon","arcs":[[-2379,-2388,-2368,-2375,-2386]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"Ulubey"}},{"type":"Polygon","arcs":[[2391,-2366,-2383,-2344,-2357,-2342,2392]],"properties":{"ID_1":63,"NAME_1":"Ordu","NAME_2":"unye"}},{"type":"Polygon","arcs":[[-1436,2393,2394,-1775]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Bahce"}},{"type":"Polygon","arcs":[[-1776,-2395,2395,2396,2397,-1752,-1772]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Duzici"}},{"type":"Polygon","arcs":[[-1422,2398,-2394]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Hasanbeyli"}},{"type":"Polygon","arcs":[[-1753,-2398,2399,-113,-136,2400,-134]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Kadirli\r\n"}},{"type":"Polygon","arcs":[[-2399,-1421,-37,-38,2401,-2396]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2401,-135]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Sumbas"}},{"type":"Polygon","arcs":[[-2402,-41,-114,-2400,-2397]],"properties":{"ID_1":64,"NAME_1":"Osmaniye","NAME_2":"Toprakkale"}},{"type":"Polygon","arcs":[[2402,2403,2404,-1338,-1375,-780,2405,2406,2407]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Ikizdere"}},{"type":"Polygon","arcs":[[2408,2409,2410,2411,2412]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Iyidere"}},{"type":"Polygon","arcs":[[2413,2414,-575,2415,2416]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Ardesen"}},{"type":"Polygon","arcs":[[-2416,-574,-1334,-2405,2417,2418,2419]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Camlihemsin"}},{"type":"Polygon","arcs":[[2420,-2418,-2404,2421,2422,2423,2424,2425]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Cayeli"}},{"type":"Polygon","arcs":[[2426,2427,2428,-2410]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Derepazari"}},{"type":"Polygon","arcs":[[2429,-556,-568,-576,-2415]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Findikli"}},{"type":"Polygon","arcs":[[-2423,2430]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Guneysu"}},{"type":"Polygon","arcs":[[2431,-2419,-2421]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Hemsin"}},{"type":"Polygon","arcs":[[2432,-2408,2433,-2411,-2429]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Kalkandere"}},{"type":"Polygon","arcs":[[-2424,-2431,-2422,-2403,-2433,-2428,2434]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2417,-2420,-2432,-2426,2435]],"properties":{"ID_1":65,"NAME_1":"Rize","NAME_2":"Pazar"}},{"type":"Polygon","arcs":[[2436,2437,-910,-889,2438,2439]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Akyazi"}},{"type":"Polygon","arcs":[[2440,2441,2442,2443]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Ferizli"}},{"type":"Polygon","arcs":[[2444,2445,2446,-799,-806,2447,2448]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Geyve"}},{"type":"Polygon","arcs":[[2449,2450,-1221,-1219,-2438,2451,-2442]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Hendek"}},{"type":"Polygon","arcs":[[2452,-2440,-2446]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Karapurcek"}},{"type":"Polygon","arcs":[[2453,2454,-2450,-2441,2455]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Karasu"}},{"type":"Polygon","arcs":[[2456,-2456,-2444,2457,2458,-2020]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Kaynarca"}},{"type":"Polygon","arcs":[[2459,-1209,-1216,-2451,-2455]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Kocaali"}},{"type":"Polygon","arcs":[[2460,-2437,-2453,-2445,2461,-2031,-2021,-2459]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2462,-2448,-805,-949,-2033]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Pamukova"}},{"type":"Polygon","arcs":[[-2449,-2463,-2032,-2462]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Sapanca"}},{"type":"Polygon","arcs":[[-2443,-2452,-2461,-2458]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Sogutlu"}},{"type":"Polygon","arcs":[[-892,-812,-794,-2447,-2439]],"properties":{"ID_1":66,"NAME_1":"Sakarya","NAME_2":"Tarakli"}},{"type":"Polygon","arcs":[[2463,2464,2465,2466,2467,2468]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Alacam"}},{"type":"Polygon","arcs":[[2469,2470,2471,-350,2472]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Asarcik"}},{"type":"Polygon","arcs":[[2473,2474,2475,2476,-351,-2472]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Ayvacik"}},{"type":"Polygon","arcs":[[2477,2478,2479,2480,2481,2482,-2465]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Bafra"}},{"type":"MultiPolygon","arcs":[[[2483,2484,2485,2486,2487,2488]],[[2489,-2488,2490,2491,2492,2493,2494,2495,-2475,2496,2497]]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Carsamba"}},{"type":"Polygon","arcs":[[2498,2499,-349,-344,2500,-2482]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Havza"}},{"type":"Polygon","arcs":[[2501,-2473,-355,2502,-2499,-2481]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Kavak"}},{"type":"Polygon","arcs":[[-354,-343,-348,-2500,-2503]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Ladik"}},{"type":"Polygon","arcs":[[2503,2504,2505,-2470,-2502,-2480]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2506,-2504,-2479]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Ondokuz Mayis"}},{"type":"Polygon","arcs":[[-2496,2507,-2340,-2358,-2348,2508,-2476]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Salipazari"}},{"type":"Polygon","arcs":[[2509,-2497,-2474,-2471,-2506]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Tekkekoy"}},{"type":"Polygon","arcs":[[-2512,2512,-2393,-2341,-2508,-2495,2513]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Terme"}},{"type":"Polygon","arcs":[[-2483,-2501,-347,-334,-1103,2514,2515,-2466]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Vezirkopru\r\n"}},{"type":"Polygon","arcs":[[2516,-2469,2517]],"properties":{"ID_1":67,"NAME_1":"Samsun","NAME_2":"Yakakent"}},{"type":"Polygon","arcs":[[2518,2519,2520,2521]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Akcakale\r\n"}},{"type":"Polygon","arcs":[[2522,2523,2524,2525,-1429,-1432]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Birecik"}},{"type":"Polygon","arcs":[[2526,2527,2528,-2524,2529,-160,-188,-192]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Bozova"}},{"type":"Polygon","arcs":[[2530,-2213,2531,2532,2533]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Ceylanpinar"}},{"type":"Polygon","arcs":[[-2530,-2523,-1431,-1441,-1423,-161]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Halfeti"}},{"type":"Polygon","arcs":[[2534,-2533,2535,-2520]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Harran"}},{"type":"Polygon","arcs":[[2536,2537,-2527,-191,-183]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Hilvan"}},{"type":"Polygon","arcs":[[2538,2539,-2534,-2535,-2519,2540,-2528,-2538]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-1187,-1203,-1170,-2209,2541,-2539,-2537,-182,-172,-1173]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Siverek"}},{"type":"Polygon","arcs":[[-2541,-2522,2542,-2525,-2529]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Suruc"}},{"type":"Polygon","arcs":[[-2208,-2531,-2540,-2542]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa","NAME_2":"Viransehir"}},{"type":"Polygon","arcs":[[-872,-869,2543,2544,2545,2546,2547]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Sirvan"}},{"type":"Polygon","arcs":[[-2546,2548,2549]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Aydinlar"}},{"type":"Polygon","arcs":[[-873,-2548,2550,2551,-756,-875]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Baykan"}},{"type":"Polygon","arcs":[[-2545,2552,2553,2554,-2205,-751,2555,2556,-2549]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Eruh"}},{"type":"Polygon","arcs":[[-757,-2552,2557,-2556,-750,-740]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Kurtalan"}},{"type":"Polygon","arcs":[[-2551,-2547,-2550,-2557,-2558]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-868,2558,2559,2560,2561,-2553,-2544]],"properties":{"ID_1":69,"NAME_1":"Siirt","NAME_2":"Pervari"}},{"type":"Polygon","arcs":[[2562,2563,2564,-1880,2565]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Ayancik"}},{"type":"Polygon","arcs":[[2566,2567,2568,2569,2570,2571,-1092,-1888,-1881,-2565]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Boyabat"}},{"type":"Polygon","arcs":[[2572,-2518,-2468,2573,-2570,2574]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Dikmen"}},{"type":"Polygon","arcs":[[-2467,-2516,2575,-2571,-2574]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Duragan"}},{"type":"Polygon","arcs":[[2576,2577,-2567,-2564]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Erfelek"}},{"type":"Polygon","arcs":[[2578,-2575,-2569,2579]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Gerze"}},{"type":"Polygon","arcs":[[-2580,-2568,-2578,2580]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2515,-1104,-1088,-2572,-2576]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Sarayduzu"}},{"type":"Polygon","arcs":[[2581,-2566,-1883,-1890,-1865]],"properties":{"ID_1":70,"NAME_1":"Sinop","NAME_2":"Turkeli"}},{"type":"Polygon","arcs":[[2582,2583,2584,-2226,-2222,-2203]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Idil"}},{"type":"Polygon","arcs":[[2585,-15,-8,2586,2587,-2561]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Beytussebap"}},{"type":"Polygon","arcs":[[2588,2589,2590,-2584]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Cizre"}},{"type":"Polygon","arcs":[[2591,-2583,-2202,-2555]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Guclukonak"}},{"type":"Polygon","arcs":[[-2588,2592,2593,-2589,-2592,-2554,-2562]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2594,2595,-2590,-2594]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Silopi"}},{"type":"Polygon","arcs":[[-2587,-12,2596,-2595,-2593]],"properties":{"ID_1":71,"NAME_1":"Sirnak","NAME_2":"Uludere"}},{"type":"Polygon","arcs":[[2597,2598,-1932,2599,2600,2601]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Sarkisla"}},{"type":"Polygon","arcs":[[2602,-1320,-1296,2603,2604,2605]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Imranli"}},{"type":"Polygon","arcs":[[2606,-1321,-2603,2607,-1448]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Akincilar"}},{"type":"Polygon","arcs":[[2608,2609,-1933,-2599,2610]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Altinyayla"}},{"type":"Polygon","arcs":[[-2604,-1295,-1309,-2145,-2148,-2160,2611,2612]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Divrigi"}},{"type":"Polygon","arcs":[[2613,2614,2615,2616,2617]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Dogansar\r\n"}},{"type":"Polygon","arcs":[[2618,-2600,-1900,-1934,-1927,2619]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Gemerek"}},{"type":"Polygon","arcs":[[-1447,-1464,-1322,-2607]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Golova"}},{"type":"Polygon","arcs":[[2620,-2163,-2154,-1766,-1749,-1936,-1929]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Gurun"}},{"type":"Polygon","arcs":[[2621,-2617,2622,2623,2624,2625]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Hafik"}},{"type":"Polygon","arcs":[[2626,-2612,-2159,-2164,-2621,-1928,-2610,2627,2628,-2624]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Kangal"}},{"type":"Polygon","arcs":[[2629,2630,-2615,2631,-2389,-1450]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Koyulhisar"}},{"type":"Polygon","arcs":[[2632,-2625,-2629,2633,-2611,-2598]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2608,-2606,2634,-2630,-1449]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Susehri"}},{"type":"Polygon","arcs":[[-2628,-2609,-2634]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Ulas"}},{"type":"Polygon","arcs":[[2635,-2626,-2633,-2602,2636,2637,2638,2639,2640]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Yildizeli"}},{"type":"Polygon","arcs":[[-2631,-2635,-2605,-2613,-2627,-2623,-2616]],"properties":{"ID_1":72,"NAME_1":"Sivas","NAME_2":"Zara"}},{"type":"Polygon","arcs":[[2641,-1019,2642,2643]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Sarkoy"}},{"type":"Polygon","arcs":[[-1596,2644,2645]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Cerkezkoy"}},{"type":"Polygon","arcs":[[-2645,-1595,-1643,2646,2647,2648,2649,-1982,2650]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Corlu"}},{"type":"Polygon","arcs":[[-1984,2651,2652,2653,-1254,-1989,-1972]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Hayrabolu"}},{"type":"Polygon","arcs":[[-2654,2654,-2643,-1023,-1241,-1255]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Malkara"}},{"type":"Polygon","arcs":[[-1642,2655,-2647]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Marmaraereglisi"}},{"type":"Polygon","arcs":[[2656,-2649,2657,-2644,-2655,-2653]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2650,-2657,-2652,-1983]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Muratli"}},{"type":"Polygon","arcs":[[2658,-1597,-2646,-2651,-1988,-1991]],"properties":{"ID_1":73,"NAME_1":"Tekirdag","NAME_2":"Saray"}},{"type":"Polygon","arcs":[[2659,2660,-2618,-2622,-2636,2661]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Almus"}},{"type":"Polygon","arcs":[[2662,2663,2664,2665,2666]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Artova"}},{"type":"Polygon","arcs":[[2667,2668]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Basciftlik"}},{"type":"Polygon","arcs":[[-2509,-2347,2669,2670,2671,-352,-2477]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Erbaa"}},{"type":"Polygon","arcs":[[2672,-2662,-2641,2673,-2664,2674,2675,-2671]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Merkez\r\n"}},{"type":"Polygon","arcs":[[-2384,-2381,-2352,2676,-2669,2677,-2660,-2673,-2670,-2346]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Niksar"}},{"type":"Polygon","arcs":[[-2663,2678,-2675]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Pazar"}},{"type":"Polygon","arcs":[[-2351,-2370,-2390,-2632,-2614,-2661,-2678,-2668,-2677]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Resadiye"}},{"type":"Polygon","arcs":[[2679,-2639,2680,2681,-2666]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Sulusaray"}},{"type":"Polygon","arcs":[[-2672,-2676,-2679,2682,-339,-353]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Turhal\r\n"}},{"type":"Polygon","arcs":[[-2674,-2640,-2680,-2665]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Yesilyurt"}},{"type":"Polygon","arcs":[[-2683,-2667,-2682,2683,2684,2685,-326]],"properties":{"ID_1":74,"NAME_1":"Tokat","NAME_2":"Zile"}},{"type":"Polygon","arcs":[[2686,-1506,-1466,-1500,-1484,2687]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Salpazari"}},{"type":"Polygon","arcs":[[2688,2689,2690,2691,2692,2693]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Akcaabat"}},{"type":"Polygon","arcs":[[2694,2695,-1508,2696]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Arakli"}},{"type":"Polygon","arcs":[[2697,-2697,-1514,2698]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Arsin"}},{"type":"Polygon","arcs":[[2699,2700,2701,-2688,-1483]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Besikduzu"}},{"type":"Polygon","arcs":[[2702,-2694,2703]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Carsibasi"}},{"type":"Polygon","arcs":[[2704,-2406,-779,-766,-1511,2705,2706]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Caykara"}},{"type":"Polygon","arcs":[[2707,2708,-2707,2709]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Dernekpazari"}},{"type":"Polygon","arcs":[[2710,-2692,2711,2712]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Duzkoy"}},{"type":"Polygon","arcs":[[-2434,-2407,-2705,-2709,2713,-2412]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Hayrat"}},{"type":"Polygon","arcs":[[2714,-2710,-2706,-1510,2715]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Koprubasi"}},{"type":"Polygon","arcs":[[2716,2717,-1512,-5,2718,-2712,-2691]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Macka"}},{"type":"Polygon","arcs":[[2719,2720,-2717,-2690]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-2413,-2714,-2708,-2715,2721,2722]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Of"}},{"type":"Polygon","arcs":[[-2722,-2716,-1509,-2696,2723]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Surmene"}},{"type":"Polygon","arcs":[[2724,-2713,-2719,-1507,-2687,-2702]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Tonya"}},{"type":"Polygon","arcs":[[2725,-2704,-2693,-2711,-2725,-2701]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Vakfikebir"}},{"type":"Polygon","arcs":[[2726,-2699,-1513,-2718,-2721]],"properties":{"ID_1":75,"NAME_1":"Trabzon","NAME_2":"Yomra"}},{"type":"Polygon","arcs":[[2727,2728,-1288,-1278,-1257,-1307,2729]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Cemisgezek"}},{"type":"Polygon","arcs":[[2730,2731,2732,-2728]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Hozat\r\n"}},{"type":"Polygon","arcs":[[2733,-1274,-1282,2734,2735]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Mazgirt"}},{"type":"Polygon","arcs":[[2736,2737,-2736,2738,-2732,2739]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2740,-844,-1275,-2734,-2738]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Nazimiye"}},{"type":"Polygon","arcs":[[2741,-2740,-2731,-2730,-1306,-1293,-1305,-1313]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Ovacik"}},{"type":"Polygon","arcs":[[-2735,-1281,-1285,-2729,-2733,-2739]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Pertek"}},{"type":"Polygon","arcs":[[-847,-819,-836,-845,-2741,-2737,-2742,-1312,-1327,-1325]],"properties":{"ID_1":76,"NAME_1":"Tunceli","NAME_2":"Pulumur"}},{"type":"Polygon","arcs":[[-2121,-253,2742,2743,-2126,-2110]],"properties":{"ID_1":77,"NAME_1":"Usak","NAME_2":"Banaz"}},{"type":"Polygon","arcs":[[2744,2745,-1152,-2198,-2178,-2194,-2201]],"properties":{"ID_1":77,"NAME_1":"Usak","NAME_2":"Esme"}},{"type":"Polygon","arcs":[[2746,-1149,-1129,2747]],"properties":{"ID_1":77,"NAME_1":"Usak","NAME_2":"Karahalli"}},{"type":"Polygon","arcs":[[-2744,2748,2749,-2745,-2200,-2127]],"properties":{"ID_1":77,"NAME_1":"Usak","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-252,-1150,-2747,2750,-2749,-2743]],"properties":{"ID_1":77,"NAME_1":"Usak","NAME_2":"Sivasli"}},{"type":"Polygon","arcs":[[-2751,-2748,-1132,-1146,-2746,-2750]],"properties":{"ID_1":77,"NAME_1":"Usak","NAME_2":"Ulubey"}},{"type":"Polygon","arcs":[[2751,-17,2752,2753]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Baskale"}},{"type":"Polygon","arcs":[[2754,2755,-2559,-867]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Bahcesaray"}},{"type":"Polygon","arcs":[[-269,-273,2756,2757,2758]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Caldiran"}},{"type":"Polygon","arcs":[[2759,2760,-16,-2586,-2560,-2756]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Catak"}},{"type":"Polygon","arcs":[[-851,2761,2762,2763,-878]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Edremit"}},{"type":"Polygon","arcs":[[-271,2764,2765,-849,-289,-283,-293]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Ercis"}},{"type":"Polygon","arcs":[[2766,-2760,-2755,-866,-879,-2764]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Gevas"}},{"type":"Polygon","arcs":[[2767,-2753,-20,-13,-2761,-2767,-2763,2768,2769]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Gurpinar"}},{"type":"Polygon","arcs":[[2770,2771,-2769,-2762,-850,-2766]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[-270,-2759,2772,-2771,-2765]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Muradiye"}},{"type":"Polygon","arcs":[[-2758,2773,2774,-2770,-2772,-2773]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Ozalp"}},{"type":"Polygon","arcs":[[2775,-2754,-2768,-2775]],"properties":{"ID_1":78,"NAME_1":"Van","NAME_2":"Saray"}},{"type":"Polygon","arcs":[[2776,2026,-2027,-2026,-994,2777]],"properties":{"ID_1":79,"NAME_1":"Yalova","NAME_2":"Altinova"}},{"type":"Polygon","arcs":[[2778,-963,2779]],"properties":{"ID_1":79,"NAME_1":"Yalova","NAME_2":"Armutlu"}},{"type":"Polygon","arcs":[[2780,-964,-2779,2781]],"properties":{"ID_1":79,"NAME_1":"Yalova","NAME_2":"Cinarcik"}},{"type":"Polygon","arcs":[[2782,-2778,-998,2783]],"properties":{"ID_1":79,"NAME_1":"Yalova","NAME_2":"Ciftlikkoy"}},{"type":"Polygon","arcs":[[2784,-2784,-997,-966,2785]],"properties":{"ID_1":79,"NAME_1":"Yalova","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2786,-2786,-965,-2781]],"properties":{"ID_1":79,"NAME_1":"Yalova","NAME_2":"Termal"}},{"type":"Polygon","arcs":[[2787,2788,2789,-2326,-2002,2790]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Sefaatli"}},{"type":"Polygon","arcs":[[2791,-2637,-2601,-2619,2792,2793,2794,2795]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Akdagmadeni"}},{"type":"Polygon","arcs":[[-327,-2686,2796,2797,-1075,-1102]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Aydincik"}},{"type":"Polygon","arcs":[[2798,2799,2800,2801,-1913,-1923,-2313,2802,-2789]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Bogazliyan"}},{"type":"Polygon","arcs":[[2803,-1914,-2802]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Candir"}},{"type":"Polygon","arcs":[[-2620,-1926,-1915,-2804,-2801,2804,-2793]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Cayiralan"}},{"type":"Polygon","arcs":[[2805,2806,2807,-2797,-2685]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Cekerek"}},{"type":"Polygon","arcs":[[-2681,-2638,-2792,2808,-2806,-2684]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Kadisehri"}},{"type":"Polygon","arcs":[[2809,2810,-2799,-2788,2811,-1106,-1083,-1077]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Merkez"}},{"type":"Polygon","arcs":[[2812,-2794,-2805,-2800,-2811]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Sarikaya"}},{"type":"Polygon","arcs":[[-2796,2813,-2807,-2809]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Saraykent"}},{"type":"Polygon","arcs":[[-2808,-2814,-2795,-2813,-2810,-1076,-2798]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Sorgun"}},{"type":"Polygon","arcs":[[-2790,-2803,-2312,-2327]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Yenifakili"}},{"type":"Polygon","arcs":[[-2812,-2791,-2005,-1992,-1961,-1107]],"properties":{"ID_1":80,"NAME_1":"Yozgat","NAME_2":"Yerkoy"}},{"type":"Polygon","arcs":[[2814,2815,-1225,-1204]],"properties":{"ID_1":81,"NAME_1":"Zinguldak","NAME_2":"Alapli"}},{"type":"Polygon","arcs":[[2816,-732,2817,2818]],"properties":{"ID_1":81,"NAME_1":"Zinguldak","NAME_2":"Caycuma"}},{"type":"Polygon","arcs":[[2819,2820,-1791,-895,2821]],"properties":{"ID_1":81,"NAME_1":"Zinguldak","NAME_2":"Devrek"}},{"type":"Polygon","arcs":[[2822,-2822,-1224,-2816,2823]],"properties":{"ID_1":81,"NAME_1":"Zinguldak","NAME_2":"Eregli"}},{"type":"Polygon","arcs":[[-2818,-731,-1792,-2821,2824]],"properties":{"ID_1":81,"NAME_1":"Zinguldak","NAME_2":"Gokcebey"}},{"type":"Polygon","arcs":[[-2819,-2825,-2820,-2823,2825]],"properties":{"ID_1":81,"NAME_1":"Zinguldak","NAME_2":"Merkez"}}],"bbox":[25.66705351412827,35.820459359549844,44.83498764038097,42.10602593500628]}},"arcs":[[[14211,6874],[-134,-72],[-94,-65],[-12,-31],[-4,-101],[-33,-39],[-22,-67],[16,-53]],[[13928,6446],[-57,-40],[-76,42],[-69,76]],[[13726,6524],[-8,42],[-82,69],[-53,29]],[[13583,6664],[96,144],[90,52],[63,50],[29,63],[65,61]],[[13926,7034],[41,-52],[244,-108]],[[19399,2436],[10,-49],[-20,-48],[53,-20],[36,-66],[53,-17],[16,-36],[68,-58],[12,-31],[-59,-89],[12,-66],[-35,-22],[-120,34],[-63,-50],[-67,-85],[-108,-54],[-59,-18],[14,-33],[-59,-65],[-35,11],[-28,63],[6,28],[-47,84],[41,76],[49,26],[-7,74],[-47,75],[-24,9]],[[18991,2109],[20,98],[70,57],[14,38],[130,121],[100,19],[74,-6]],[[18194,2219],[0,83]],[[18194,2302],[39,-17],[85,8],[47,-133],[49,-26],[92,40],[51,2],[83,-30],[64,-3],[38,20]],[[18742,2163],[29,-35]],[[18771,2128],[-49,-61],[-57,-30],[-51,-8],[-224,10],[-51,31],[-78,15]],[[18261,2085],[-65,92],[-2,42]],[[18302,2746],[118,-17],[84,1],[55,14],[104,-37]],[[18663,2707],[-23,-45],[119,-253],[18,-58],[-35,-188]],[[18194,2302],[0,135],[27,93],[4,85],[28,65],[2,66]],[[18255,2746],[47,0]],[[18742,2746],[100,-12],[133,72],[32,-28],[17,-58],[-27,-102],[27,-17],[85,43],[96,-14],[98,83],[57,90]],[[19360,2803],[24,-4],[39,-54],[-2,-34],[-55,-81],[57,-55],[4,-47],[-24,-33],[-4,-59]],[[18991,2109],[-75,44],[-113,13],[-32,-38]],[[18663,2707],[79,39]],[[10927,1195],[-55,-113],[-34,-46]],[[10838,1036],[-98,-52],[-86,-75],[-10,-29],[21,-55]],[[10665,825],[-100,-52],[-82,-60]],[[10483,713],[-102,-70]],[[10381,643],[-26,80],[83,107],[35,24],[6,36],[84,51],[53,85],[132,89],[31,0],[18,115]],[[10797,1230],[55,9],[20,-44],[55,0]],[[10948,541],[41,18]],[[10989,559],[-23,-56],[16,-39],[-12,-35],[17,-50],[-2,-55],[-29,-74],[-51,15],[-24,-35],[-90,-52]],[[10791,178],[-25,20],[2,59]],[[10768,257],[-36,120],[91,160],[90,-13],[35,17]],[[10838,1036],[4,-64],[-19,-97]],[[10823,875],[-77,-3],[-81,-47]],[[11035,1631],[21,-24]],[[11056,1607],[-33,-96],[-57,-125],[-2,-78],[-37,-113]],[[10797,1230],[-18,39],[-2,77],[14,43],[-61,105],[-33,37]],[[10697,1531],[59,1],[25,28],[85,47],[33,47]],[[10899,1654],[49,-23],[87,0]],[[10671,1732],[93,-4],[78,-17],[57,-57]],[[10697,1531],[-53,43],[-59,24],[-73,-72]],[[10512,1526],[-19,41],[29,63],[100,105]],[[10622,1735],[49,-3]],[[11264,1463],[12,-26],[-57,-102],[16,-52],[-51,-104]],[[11184,1179],[-67,0],[-43,14],[-147,2]],[[11056,1607],[55,-51],[116,-90],[37,-3]],[[11184,1179],[15,-86],[-21,-82],[-32,-31],[16,-79]],[[11162,901],[-92,-47],[-37,-73],[-6,-52]],[[11027,729],[-110,-50],[-45,12]],[[10872,691],[0,87],[-49,97]],[[11162,901],[26,-75],[31,-9],[16,-75],[31,-24]],[[11266,718],[-63,-82],[-27,-7],[-55,33],[-39,61],[-55,6]],[[10872,691],[-16,-33],[94,-57],[-2,-60]],[[10768,257],[-67,-1],[-73,21]],[[10628,277],[-45,60],[8,35],[78,83],[-80,143],[-106,115]],[[11266,718],[32,-40],[5,-52],[-31,-37],[-69,-17],[-66,30],[-53,-9],[-10,-38],[-85,4]],[[10628,277],[-69,-5]],[[10559,272],[-49,136],[-55,108],[-74,127]],[[10791,178],[-25,-61],[2,-95],[-30,-22],[-39,65],[-100,22],[6,63],[-32,21],[-59,-30],[-17,45],[62,86]],[[19062,5939],[33,91],[26,33]],[[19121,6063],[41,-36],[39,-8],[67,-47],[74,-91],[42,-101],[106,-96],[17,1],[59,-94],[37,-37],[-35,-23],[-57,67],[-55,23],[-37,76],[-26,-4],[-113,-111]],[[19280,5582],[-130,-9],[-57,-27],[-65,-2]],[[19028,5544],[4,151],[55,114],[28,32],[6,49],[-55,4],[-4,45]],[[19062,5939],[-116,59],[-10,68]],[[18936,6066],[126,23],[59,-26]],[[19028,5544],[-74,30],[-132,5],[-43,-13],[-41,16],[-202,119],[-30,29]],[[18506,5730],[75,135],[-12,46],[0,125],[25,57]],[[18594,6093],[81,-47],[65,0],[35,18],[161,2]],[[18276,6285],[49,0],[103,49]],[[18428,6334],[51,-76],[-51,-14],[-16,-53],[72,-58],[52,0],[58,-40]],[[18506,5730],[-49,1],[-63,31],[-98,0],[-59,-79]],[[18237,5683],[-84,40]],[[18153,5723],[0,189],[-20,48],[-25,6]],[[18108,5966],[-2,44],[-59,112],[17,57],[61,-8],[26,30],[-12,56],[31,24],[106,4]],[[5931,3457],[70,-63]],[[6001,3394],[61,-46],[31,-45],[-19,-71],[-67,-39]],[[6007,3193],[-55,-20],[-41,-46],[-16,-87]],[[5895,3040],[-63,1],[-131,-80]],[[5701,2961],[-47,62],[-4,56]],[[5650,3079],[33,37],[0,73],[-45,25],[0,54],[33,66]],[[5671,3334],[65,-2],[81,33],[72,75],[42,17]],[[5579,2707],[2,88],[-55,66],[-2,44],[24,22],[74,-1],[102,-16]],[[5724,2910],[4,-29],[57,-57],[0,-156],[39,-52],[38,-7]],[[5862,2609],[-28,-118]],[[5834,2491],[-27,2],[-61,40],[-51,70],[-57,32],[-59,72]],[[4971,3146],[68,0]],[[5039,3146],[112,-3]],[[5151,3143],[43,-115]],[[5194,3028],[-57,-5],[-68,-28],[-98,1]],[[4971,2996],[0,150]],[[5334,3343],[51,-124],[2,-60],[39,-74],[49,-23],[71,1],[104,16]],[[5701,2961],[23,-51]],[[5579,2707],[-98,-10],[-124,-140],[-43,-90],[-53,-59]],[[5261,2408],[-37,41],[-24,59]],[[5200,2508],[-31,108]],[[5169,2616],[43,57],[-12,114],[16,59],[0,139],[-22,43]],[[5151,3143],[34,6],[56,58],[67,130]],[[5308,3337],[26,6]],[[5334,3343],[84,84],[71,21],[63,-3],[33,-17],[86,-94]],[[4831,3189],[114,-43],[26,0]],[[4971,2996],[-42,-13],[-98,-72]],[[4831,2911],[16,65],[-14,63],[-2,150]],[[10057,2116],[147,20],[81,31],[21,-10],[69,-126]],[[10375,2031],[-98,-30],[-147,1]],[[10130,2002],[-26,29],[-82,1],[-71,-15]],[[9951,2017],[55,123]],[[10006,2140],[51,-24]],[[9829,3080],[155,-54],[40,-3],[137,38]],[[10161,3061],[-18,-33],[-19,-121],[90,-186]],[[10214,2721],[-33,-21],[-14,-46],[12,-53],[-73,-145],[-6,-76],[-53,-109],[12,-87],[-2,-68]],[[10006,2140],[-33,39],[-10,74],[-49,39],[-55,87],[-65,-6],[-55,25],[-88,20]],[[9651,2418],[98,171],[49,128],[-20,124],[-19,30]],[[9759,2871],[21,51],[-12,92],[30,55],[31,11]],[[10375,2031],[108,-32]],[[10483,1999],[-55,-112],[16,-16],[137,78]],[[10581,1949],[33,-21],[28,-51],[-20,-142]],[[10512,1526],[-23,-32]],[[10489,1494],[-65,3],[-102,-63],[-71,-2],[-78,13],[13,-57],[-76,-74],[-100,-26]],[[10010,1288],[23,121],[44,-22],[21,27],[-8,55],[38,51],[66,19],[32,155],[-47,121],[-77,54],[-2,30],[45,6],[6,31],[-21,66]],[[10253,3225],[146,66]],[[10399,3291],[17,-49],[55,-62],[75,-49],[55,-60],[55,-113],[55,-132]],[[10711,2826],[-67,-86],[-39,-18],[-77,-2],[-94,18],[-73,-2],[-57,-29],[-90,14]],[[10161,3061],[51,47],[41,117]],[[9951,2017],[-12,-26],[-63,-36],[-59,-6],[-17,-52],[39,-67],[-35,-61]],[[9804,1769],[-38,27],[-57,-25],[-76,-67],[-20,-48]],[[9613,1656],[-49,92],[-84,80],[-26,125],[-43,123]],[[9411,2076],[90,47],[79,130],[16,58],[-30,75],[18,31],[67,1]],[[10010,1288],[2,-73],[-16,-86],[-16,-24]],[[9980,1105],[-7,-22],[-69,-48],[-12,22],[10,77],[-57,45]],[[9845,1179],[-30,55],[-62,20],[-30,-24],[55,-39],[-55,-19],[-143,99],[-67,30],[-43,1]],[[9470,1302],[35,43],[87,24],[13,34]],[[9605,1403],[75,-69]],[[9680,1334],[71,-51],[49,-16],[127,28],[83,-7]],[[10711,2826],[62,-3],[38,14],[59,-14],[74,0]],[[10944,2823],[8,-39],[-63,-147]],[[10889,2637],[-102,-3],[-70,-40]],[[10717,2594],[-108,-80],[-95,-201],[-53,-97],[-2,-132]],[[10459,2084],[24,-85]],[[9505,2705],[96,4],[40,25],[90,116],[28,21]],[[9411,2076],[-71,158],[-5,35]],[[9335,2269],[1,79],[20,44],[49,37],[10,78],[-20,79],[-27,61],[6,31],[41,41],[90,-14]],[[10609,3431],[29,-34],[59,-137],[47,-2],[69,32],[100,-1],[51,-23]],[[10964,3266],[-43,-154],[0,-76],[-18,-62]],[[10903,2974],[4,-76],[37,-75]],[[10399,3291],[123,81],[53,20],[34,39]],[[9804,1769],[49,-22],[21,-59],[0,-152],[-35,-76],[-75,-81],[-84,-45]],[[9605,1403],[22,84],[-16,77],[2,92]],[[10848,3784],[61,26],[84,-10],[32,-51],[10,-58],[49,-96]],[[11084,3595],[-61,-77],[-59,-252]],[[10609,3431],[72,173]],[[10681,3604],[43,105],[30,31],[94,44]],[[10179,1275],[2,-3]],[[10181,1272],[-4,-4]],[[10177,1268],[2,7]],[[10177,1268],[4,4]],[[10181,1272],[-2,3]],[[10179,1275],[100,13],[-2,12]],[[10277,1300],[14,-25],[-65,-42],[-34,-106],[-41,-18],[-14,-36],[-60,27],[-97,5]],[[10489,1494],[-67,-88],[-53,-43],[-92,-10],[-38,11],[-41,-31],[-31,-52],[10,-13]],[[12428,2745],[44,-21],[94,-8],[84,-52]],[[12650,2664],[43,-34],[26,-58],[2,-49],[55,-87],[35,-96],[-2,-50]],[[12809,2290],[-88,13]],[[12721,2303],[-39,26]],[[12682,2329],[-61,78],[-195,74],[-37,2],[-82,-45],[-65,-1]],[[12242,2437],[-51,55]],[[12191,2492],[78,47],[22,91],[49,24],[33,55],[55,36]],[[13037,3426],[82,29],[75,9]],[[13194,3464],[-35,-82],[-42,-30],[-100,-142],[8,-54],[47,-37],[2,-40],[-39,-76]],[[13035,3003],[-59,32],[-128,0],[-35,-13]],[[12813,3022],[-47,245]],[[12766,3267],[31,8],[89,57],[114,61],[37,33]],[[13767,3405],[57,-14],[37,23],[36,-18],[4,-67]],[[13901,3329],[-16,-77],[-49,-69]],[[13836,3183],[-100,-50],[-89,-111],[-19,-50],[2,-128]],[[13630,2844],[-55,34],[-24,55],[-2,61],[-96,-3],[-25,27],[2,96],[15,98]],[[13445,3212],[-2,60]],[[13443,3272],[65,0],[149,36],[81,48],[29,49]],[[12360,2900],[-6,-42],[59,-32],[15,-81]],[[12191,2492],[-85,30],[-76,64],[2,41]],[[12032,2627],[4,85],[78,77]],[[12114,2789],[61,74]],[[12175,2863],[37,24],[97,17],[51,-4]],[[13090,2953],[27,29],[89,24],[65,107],[174,99]],[[13630,2844],[-32,-71],[-43,-30]],[[13555,2743],[-76,-46],[7,-61],[-21,-18],[-83,-21],[-55,-30]],[[13327,2567],[-66,45],[-163,-8]],[[13098,2604],[33,65],[20,86],[-41,112],[-20,86]],[[13035,3003],[55,-50]],[[13098,2604],[-75,-44],[-25,-48],[-2,-111]],[[12996,2401],[-91,-38],[-96,-73]],[[12650,2664],[28,120],[35,63],[-8,140]],[[12705,2987],[108,35]],[[13327,2567],[-68,-36],[-40,-51]],[[13219,2480],[-66,-59],[-47,-21],[-110,1]],[[13194,3464],[84,-38]],[[13278,3426],[-9,-44],[-61,-51],[6,-25],[86,-35],[143,1]],[[12360,2900],[39,50],[49,18],[65,1],[96,-30],[96,48]],[[4902,4876],[53,-25],[23,-64],[75,-87],[39,-10],[51,24]],[[5143,4714],[0,-50],[26,-75],[-12,-68]],[[5157,4521],[-212,-96],[-53,19],[-39,55],[-122,7],[-82,41]],[[4649,4547],[55,147]],[[4704,4694],[86,58],[41,9],[45,49],[26,66]],[[5222,4764],[17,-61],[99,-198],[-4,-150],[63,-21],[9,-54]],[[5406,4280],[-82,4],[-43,-11],[-45,13],[-71,-15]],[[5165,4271],[-35,46],[11,170],[16,34]],[[5143,4714],[8,19]],[[5151,4733],[71,31]],[[5165,3988],[153,-51]],[[5318,3937],[-51,-101],[-77,-68],[-4,-57],[18,-45],[45,-48],[38,-16]],[[5287,3602],[-42,-53],[-35,-15]],[[5210,3534],[-112,-38],[-57,-40]],[[5041,3456],[-10,71],[-37,62],[-39,27],[-79,92]],[[4876,3708],[-39,73],[-51,143]],[[4786,3924],[53,49],[39,87]],[[4878,4060],[69,-41],[163,-5],[55,-26]],[[4364,3128],[45,3]],[[4409,3131],[85,-38],[60,-59],[69,-38]],[[4623,2996],[22,-67],[-38,-58],[-84,-57],[-75,-3]],[[4448,2811],[-53,16],[-92,-17],[-25,-16]],[[4278,2794],[-30,84]],[[4248,2878],[73,48],[4,106],[39,96]],[[5481,4831],[0,-91],[14,-45],[-14,-55],[0,-77],[29,-86],[-2,-67]],[[5508,4410],[-102,-130]],[[5222,4764],[41,70],[94,55]],[[5357,4889],[65,-70],[28,-11],[31,23]],[[5508,4410],[69,41],[75,-3],[121,-62],[148,0],[102,-31],[51,-6],[29,-22]],[[6103,4327],[-8,-26]],[[6095,4301],[-104,-62],[-39,-36],[-45,-2],[-71,-62],[-143,-81]],[[5693,4058],[-45,22],[-155,4],[-118,24]],[[5375,4108],[-14,63],[45,109]],[[5693,4058],[27,-128],[-33,-38],[-76,-37]],[[5611,3855],[-28,27],[-45,-17],[-138,-153],[-49,-37],[-64,-73]],[[5318,3937],[29,21],[26,64],[2,86]],[[5165,3988],[35,64],[2,119],[-37,100]],[[4095,3122],[77,41]],[[4172,3163],[70,-43],[122,8]],[[4248,2878],[-90,46],[-65,3]],[[4093,2927],[2,87]],[[4095,3014],[0,108]],[[4764,3549],[61,58],[51,101]],[[5041,3456],[-94,-67],[-128,-140],[-41,-37]],[[4778,3212],[-96,-79],[-31,-56],[-28,-81]],[[4409,3131],[-49,157]],[[4360,3288],[61,62],[53,81]],[[4474,3431],[147,0],[41,19],[102,99]],[[5773,4973],[4,-37],[89,-195],[78,-37],[85,17],[145,-8]],[[6174,4713],[-2,-71],[16,-53],[0,-68],[-38,-109]],[[6150,4412],[-47,-85]],[[5481,4831],[126,63],[90,92],[76,-13]],[[4172,3163],[68,43],[83,70],[37,12]],[[4411,4208],[132,-106]],[[4543,4102],[29,-76],[-47,-119],[-185,-111],[-39,-47]],[[4301,3749],[-116,44]],[[4185,3793],[18,74]],[[4203,3867],[20,22],[84,178],[22,94]],[[4329,4161],[82,47]],[[4456,3534],[71,36],[45,43],[45,0],[79,-44],[68,-20]],[[4474,3431],[0,70],[-18,33]],[[4878,4060],[16,30],[2,94],[-37,91],[-53,90],[-87,62],[-100,44]],[[4619,4471],[30,76]],[[4543,4102],[143,-7],[67,-92],[33,-79]],[[4456,3534],[-86,181],[-30,32],[-39,2]],[[4411,4208],[96,62],[47,51],[57,118]],[[4611,4439],[8,32]],[[6095,4301],[-31,-137],[22,-53],[70,-62]],[[6156,4049],[-116,-76],[-66,-52],[-61,-30]],[[5913,3891],[-143,-112],[-53,-26]],[[5717,3753],[-50,27],[-56,75]],[[18115,5137],[12,46],[81,106],[17,36],[-9,86],[86,56],[49,67],[8,32]],[[18359,5566],[94,-52],[79,-19],[17,-28],[-6,-61],[40,-64],[0,-167],[23,-65]],[[18606,5110],[-123,2]],[[18483,5112],[-46,-43],[-27,-55]],[[18410,5014],[-73,-19],[-88,60],[-71,87],[-63,-5]],[[19280,5582],[-6,-96],[-55,-98],[17,-94],[-21,-42],[10,-46],[-48,-41],[-96,-51],[-80,56],[-79,-22],[-78,15],[-22,-64]],[[18822,5099],[-16,16],[-45,-20],[-57,-3],[-98,18]],[[18359,5566],[-98,66],[-24,51]],[[17713,5983],[45,-38],[12,-57],[-57,-135],[-35,-151],[-73,-37]],[[17605,5565],[-71,-1],[-149,33],[-94,-16],[-47,2]],[[17244,5583],[-16,80],[-45,32],[-59,7],[-114,54],[-23,48]],[[16987,5804],[33,47],[114,-17],[171,109]],[[17305,5943],[62,-39],[93,-2],[55,25]],[[17515,5927],[59,8],[104,43],[35,5]],[[17636,5522],[46,25],[110,0],[76,-15],[47,21],[-8,-85],[100,-55]],[[18007,5413],[-21,-35],[-4,-62],[16,-69],[0,-129]],[[17998,5118],[-63,-72],[-51,-1]],[[17884,5045],[-87,79],[-45,1],[-53,-32]],[[17699,5093],[-23,78],[-14,115],[59,46],[18,36],[-4,76],[-99,78]],[[18153,5723],[-16,-83],[-57,-57],[-73,-170]],[[17636,5522],[-31,43]],[[17713,5983],[147,49],[94,-21],[154,-45]],[[17884,5045],[-55,-23],[10,-39],[68,-45],[14,-25],[0,-83],[-18,-48],[-98,-41],[-33,-25]],[[17772,4716],[-122,-40],[-71,-1],[-88,-43]],[[17491,4632],[-21,183],[-57,123],[-46,34]],[[17367,4972],[57,65],[67,37],[67,-13],[112,-1],[29,33]],[[18115,5137],[-66,22],[-51,-41]],[[17367,4972],[-113,147],[-49,121],[-6,39]],[[17199,5279],[25,28],[36,83],[-14,105],[-2,88]],[[8455,4263],[88,-59]],[[8543,4204],[42,-77],[15,-59],[-31,-40],[-86,-75],[-73,-32]],[[8410,3921],[-112,9],[-49,20],[-116,105],[-63,46]],[[8070,4101],[136,62],[125,1],[42,19],[82,80]],[[7894,3940],[90,-112],[51,-98],[82,-92],[-49,-71],[-37,-86],[0,-36],[59,-204],[18,-82],[-4,-98]],[[8104,3061],[-59,-16],[-71,1]],[[7974,3046],[-43,22],[-43,63],[-83,177],[-45,114],[-6,73]],[[7754,3495],[63,144]],[[7817,3639],[20,126],[57,175]],[[8936,3771],[-27,-111],[-4,-103]],[[8905,3557],[-89,-13]],[[8816,3544],[-41,44],[31,112],[69,63],[14,57]],[[8889,3820],[47,-49]],[[8905,3557],[29,-61],[4,-77]],[[8938,3419],[-6,-47],[-23,-12]],[[8909,3360],[-46,45],[-108,62],[4,32],[57,45]],[[8410,3921],[35,-37],[49,-21],[132,0],[69,-17],[70,2],[104,26]],[[8869,3874],[20,-54]],[[8909,3360],[-44,-33],[-62,-110],[-75,24],[-49,-33],[-18,-49]],[[8661,3159],[-61,-4],[-45,-24],[-131,-24],[-118,-32],[-73,0],[-55,-14],[-74,0]],[[7894,3940],[43,42],[47,74]],[[7984,4056],[86,45]],[[8779,4290],[22,-9]],[[8801,4281],[-18,-65],[-39,-82],[13,-52],[51,-43],[34,-81]],[[8842,3958],[27,-84]],[[8543,4204],[91,57],[86,7],[59,22]],[[8457,4590],[77,-80],[84,-74],[57,-5],[47,-33],[57,-108]],[[8455,4263],[22,37],[-8,41]],[[8469,4341],[-51,184],[39,65]],[[10020,6743],[60,2],[106,-43],[53,48],[34,5],[63,-93],[33,-18]],[[10369,6644],[-78,-155],[-132,-66],[-61,-65],[-18,-66]],[[10080,6292],[-137,4],[-47,53]],[[9896,6349],[16,109],[-4,77]],[[9908,6535],[21,14],[87,143],[4,51]],[[9861,7522],[7,-34],[73,-158],[4,-109],[-41,-38],[-51,-5],[-30,-32],[-4,-168]],[[9819,6978],[-35,4]],[[9784,6982],[-29,101],[-63,138],[-22,22],[-67,4]],[[9603,7247],[2,133],[46,125],[2,85]],[[9653,7590],[123,-28],[85,-40]],[[9784,6982],[-73,3],[-57,33],[-17,48]],[[9637,7066],[-55,167]],[[9582,7233],[21,14]],[[10644,7233],[35,-38],[30,-195],[106,-100],[15,-33],[83,-94]],[[10913,6773],[-155,-109],[-65,-2],[-79,23],[-72,56],[-106,4],[-30,-19],[-37,-82]],[[10020,6743],[13,98],[-39,64]],[[9994,6905],[37,56],[65,-16],[47,44]],[[10143,6989],[47,-23],[106,-3],[55,26],[51,111],[85,36],[49,103],[29,32]],[[10565,7271],[79,-38]],[[10067,7466],[155,-117],[16,-41]],[[10238,7308],[-48,-91],[0,-69],[-31,-69],[-16,-90]],[[9994,6905],[-175,73]],[[9861,7522],[206,-56]],[[10336,7287],[82,-24],[53,16],[94,-8]],[[10238,7308],[39,-26],[59,5]],[[10789,7430],[53,0],[57,-28],[63,-12]],[[10962,7390],[6,-67],[70,-51]],[[11038,7272],[-29,-56],[39,-88],[16,-90],[-16,-75],[-61,-92]],[[10987,6871],[-74,-98]],[[10644,7233],[118,83],[13,82]],[[10775,7398],[14,32]],[[7801,5055],[87,-19]],[[7888,5036],[19,-53],[-25,-72],[53,-100],[114,135]],[[8049,4946],[31,-73],[35,-43],[89,-58],[65,-32]],[[8269,4740],[-34,-122],[41,-68],[-13,-79],[25,-55],[181,-75]],[[7984,4056],[-61,142],[-41,70],[-4,87]],[[7878,4355],[16,76],[-2,203],[-44,97],[-60,77],[-87,169]],[[7701,4977],[55,29],[45,49]],[[7536,6037],[10,38],[67,126],[118,-7]],[[7731,6194],[59,-21],[-16,-48],[2,-60],[21,-38]],[[7797,6027],[-96,-2],[-53,-32]],[[7648,5993],[-51,50],[-61,-6]],[[7473,6057],[63,-20]],[[7648,5993],[-31,-31]],[[7617,5962],[-57,12],[-94,-64],[-18,35],[-59,-11]],[[7389,5934],[-8,44]],[[7381,5978],[53,61],[39,18]],[[6875,6301],[102,42],[69,-17]],[[7046,6326],[5,-66],[-13,-89]],[[7038,6171],[-91,-56],[-35,-88],[45,-118],[-16,-46],[-43,-7],[-29,-55]],[[6869,5801],[-18,-54],[-41,-19],[-29,48],[-134,82],[-45,3],[-136,-35]],[[6466,5826],[4,53],[30,64],[53,63],[80,190]],[[6633,6196],[53,-33],[69,0],[41,25],[69,82],[10,31]],[[7473,5677],[146,74]],[[7619,5751],[84,-84],[71,-26],[67,31],[33,-12]],[[7874,5660],[-20,-50],[-19,-111],[2,-63]],[[7837,5436],[-49,-231]],[[7788,5205],[-40,-77],[53,-73]],[[7701,4977],[-74,-80],[-49,5],[-36,-65]],[[7542,4837],[-70,42],[-71,76],[-28,62],[-6,79]],[[7367,5096],[50,27],[17,73],[0,230],[-43,114],[82,137]],[[6708,6631],[-20,-56],[49,-66]],[[6737,6509],[-35,-13],[-57,-57],[4,-58],[-37,-79],[21,-106]],[[6466,5826],[-113,-39]],[[6353,5787],[-16,54],[-61,10],[-73,96],[-29,55]],[[6174,6002],[31,73],[0,77],[-43,62],[-2,82],[39,111],[-35,100]],[[6164,6507],[71,-1]],[[6235,6506],[67,-7],[84,18],[135,49],[134,68]],[[6655,6634],[53,-3]],[[6926,6958],[133,-75],[22,-46],[-28,-96],[28,-85],[-33,-70],[-59,-22],[-124,1],[-94,-52]],[[6771,6513],[-34,-4]],[[6708,6631],[84,-16],[75,2],[25,25],[81,140],[-47,176]],[[7389,5934],[61,-42],[8,-25],[-94,-119]],[[7364,5748],[-79,26],[-88,-37]],[[7197,5737],[51,103],[80,100],[53,38]],[[7607,6721],[88,-92],[49,-113],[51,-24]],[[7795,6492],[-21,-87],[16,-60],[-20,-53],[-41,-56],[2,-42]],[[7473,6057],[-35,49],[-45,-4],[-75,38],[-21,59],[2,72]],[[7299,6271],[-10,53]],[[7289,6324],[-6,46],[22,33],[100,65],[-30,91],[0,76],[18,34],[80,70],[34,81]],[[7507,6820],[100,-99]],[[7797,6027],[22,-4],[222,-122],[65,-57]],[[8106,5844],[-85,-61]],[[8021,5783],[-74,-36],[-73,-87]],[[7619,5751],[14,43],[3,90],[-19,78]],[[7073,5827],[24,43],[0,90]],[[7097,5960],[21,8],[53,-59],[-8,-46],[-33,-32],[-57,-4]],[[8269,4740],[78,-36]],[[8347,4704],[126,-71],[-16,-43]],[[7364,5748],[35,-32],[57,-9],[17,-30]],[[7367,5096],[-9,96],[-59,65],[-4,94],[-32,71],[-90,99],[-45,23],[-29,48]],[[7099,5592],[49,56],[49,89]],[[6771,6513],[49,-55],[0,-106],[17,-37],[38,-14]],[[7542,4837],[-23,-42],[-57,-35],[-63,41],[-69,-10],[-86,-94],[-39,-70]],[[7205,4627],[-85,26],[-67,-2],[-43,-56],[-49,-24],[-33,24]],[[6928,4595],[-57,41],[-85,41]],[[6786,4677],[32,143],[10,90],[-51,109],[23,54],[-6,88],[38,46],[98,215],[61,88],[58,34],[50,48]],[[6998,7033],[146,0],[223,-104]],[[7367,6929],[103,-52],[37,-57]],[[7289,6324],[-77,34],[-31,37],[-100,-21],[-35,-48]],[[6926,6958],[72,75]],[[7998,6548],[55,-32],[47,-8],[155,-88]],[[8255,6420],[-79,-110],[-47,-105],[-31,-124],[45,-122]],[[8143,5959],[-16,-96],[-21,-19]],[[7795,6492],[55,12],[42,78]],[[7892,6582],[106,-34]],[[7299,6271],[-59,-74],[-4,-69]],[[7236,6128],[-22,-38],[-57,-43],[-64,-11]],[[7093,6036],[-24,27],[-31,108]],[[7381,5978],[-98,52],[-47,98]],[[5929,6481],[137,-17],[98,43]],[[6174,6002],[-81,41],[-104,15],[-127,6],[-39,14],[-183,5]],[[5640,6083],[-45,-4],[-124,-33],[-57,1]],[[5414,6047],[-39,31],[-2,84],[-29,44]],[[5344,6206],[-12,15]],[[5332,6221],[23,55],[81,83],[76,60],[-13,50],[0,92],[23,57]],[[5522,6618],[81,-22],[127,-77],[63,-18],[136,-20]],[[6869,5801],[88,-56]],[[6957,5745],[18,-49],[43,-49],[81,-55]],[[6786,4677],[-137,-40]],[[6649,4637],[-31,-14],[-46,15],[-56,58],[-59,33],[-57,80],[-36,21]],[[6364,4830],[114,77],[18,100],[0,135],[-16,66],[-2,97],[-84,151],[-47,121],[-18,109]],[[6329,5686],[39,54],[-15,47]],[[7093,6036],[-12,-52],[16,-24]],[[7073,5827],[-49,-3],[-67,-79]],[[6160,2173],[-8,-66],[26,-78],[61,-72],[-8,-33],[-4,-153],[-53,-63],[-65,-124],[-2,-26]],[[6107,1558],[-49,-2],[-35,22],[-69,76],[-31,108],[0,57],[-57,100],[-36,95],[4,76],[24,49],[-14,93]],[[5844,2232],[77,-38],[80,-6],[43,-15],[116,0]],[[6160,2173],[118,-24],[55,-40],[73,-78]],[[6406,2031],[80,-87],[69,-50]],[[6555,1894],[25,-59]],[[6580,1835],[-70,-83],[-4,-49],[15,-55],[-17,-40],[-83,-80],[-82,-58],[-49,-66],[-47,0]],[[6243,1404],[-57,65],[-32,61],[-47,28]],[[6782,1484],[75,-14]],[[6857,1470],[65,-29],[45,-101]],[[6967,1340],[-16,-110],[43,-142]],[[6994,1088],[-27,-10],[-77,-86],[-3,-94],[-24,-44],[-37,-27],[-75,-102],[-6,-23]],[[6745,702],[-45,49],[-45,109],[-96,130],[-43,44],[-46,5],[-157,76],[-27,3],[-61,60],[-65,14]],[[6160,1192],[30,48],[51,26]],[[6241,1266],[131,-67],[77,31],[145,3],[106,-34],[90,2],[24,121],[-32,109],[0,53]],[[4113,1582],[45,-26],[51,-3],[84,35],[79,-12],[116,44],[15,-4],[49,-94],[6,-48],[71,-70]],[[4629,1404],[2,-133],[-8,-34],[-37,-37],[-49,-107]],[[4537,1093],[-95,-39],[-166,-3]],[[4276,1051],[-89,19],[-82,45],[-61,8],[-43,21]],[[4001,1144],[14,38],[0,118],[19,88],[69,131],[10,63]],[[4660,712],[-70,-20],[4,-39],[-49,-40]],[[4545,613],[-67,70],[-32,94],[-102,61]],[[4344,838],[-43,18],[-25,58],[0,137]],[[4537,1093],[25,-55],[24,-103],[27,-50],[0,-89],[47,-84]],[[6994,1088],[34,-50]],[[7028,1038],[23,-48],[108,-89]],[[7159,901],[-23,-81],[0,-106],[12,-47],[-14,-71],[-47,-167],[-22,-27]],[[7065,402],[-51,-4],[-57,53],[-70,45],[-50,69],[-51,31],[-19,79],[-22,27]],[[6580,1835],[93,-80],[56,-65]],[[6729,1690],[22,-74],[20,-114],[11,-18]],[[6241,1266],[2,138]],[[4056,492],[0,-2]],[[4056,490],[0,2]],[[4056,492],[0,-2]],[[4195,485],[-43,9],[-35,-44],[-34,33],[-10,59],[-78,18],[-75,0],[-41,24],[-45,-2],[-16,56],[-23,-3],[-14,-44],[-43,23],[-57,78]],[[3681,692],[37,26],[32,126],[-8,42],[76,86],[47,35],[136,137]],[[4344,838],[-25,-54],[-45,-36],[-44,-105],[-35,-158]],[[4270,506],[-4,-4]],[[4266,502],[2,2]],[[4268,504],[0,1]],[[4268,505],[2,1]],[[4266,502],[4,4]],[[4270,506],[-2,-1]],[[4268,504],[-2,-2]],[[4333,550],[0,5]],[[4333,555],[0,-5]],[[4329,560],[0,1]],[[4329,561],[0,-1]],[[4545,613],[-36,20],[-104,-59],[-39,20],[-37,-33]],[[4329,560],[4,-5]],[[4333,555],[0,-5]],[[4333,550],[-85,-38],[-4,-34],[-57,-16]],[[4187,462],[8,23]],[[4945,729],[-49,28],[-43,49],[-10,41],[2,147],[-16,53],[16,119],[16,52]],[[4861,1218],[78,22],[75,64]],[[5014,1304],[8,-75],[-14,-85],[31,-54],[-47,-78],[-55,-124],[-12,-60],[34,-70],[-14,-29]],[[4692,2123],[47,17],[69,-10],[31,-81],[53,-28]],[[4892,2021],[0,-90],[79,-77],[13,-57],[-51,-81],[-12,-70],[-43,-91],[-55,-60],[-25,-73]],[[4798,1422],[-92,-19],[-77,1]],[[4113,1582],[55,12]],[[4168,1594],[29,28],[63,105],[4,77],[18,70],[29,57]],[[4311,1931],[43,39],[132,71]],[[4486,2041],[143,52],[63,30]],[[4798,1422],[0,-147],[21,-47],[42,-10]],[[4945,729],[-10,-69],[-53,-54],[-25,47],[-49,-1],[-87,60],[-61,0]],[[6160,1192],[-10,-4],[-94,83],[-114,61],[-82,29],[-24,43],[-70,30],[-122,18]],[[5644,1452],[-14,59],[0,95],[61,133],[0,105],[-18,40],[-45,21],[-67,0],[-23,22],[16,80],[-32,216]],[[5522,2223],[122,37],[69,47],[78,3]],[[5791,2310],[53,-78]],[[5261,2022],[18,-99],[88,-86],[16,-38],[-4,-131],[-41,-90],[39,-44],[4,-46]],[[5381,1488],[-165,-12],[-61,56],[-41,-12],[-41,-40],[-47,-74],[-12,-102]],[[4892,2021],[234,1],[119,17],[16,-17]],[[5644,1452],[-185,42],[-78,-6]],[[5261,2022],[14,19],[51,164],[49,30]],[[5375,2235],[27,-1],[51,-42],[69,31]],[[17770,8009],[82,-39],[28,-53],[72,-20],[-7,-75],[43,-93],[47,-6]],[[18035,7723],[-18,-40],[0,-94],[-37,-86],[-53,-39],[-63,-28]],[[17864,7436],[-43,3],[-29,-23]],[[17792,7416],[-38,94],[-49,53],[-53,111],[0,54]],[[17652,7728],[83,7],[45,68],[-34,68],[-6,57]],[[17740,7928],[32,43],[-2,38]],[[17740,7928],[-139,-48],[-114,7],[-76,120]],[[17411,8007],[51,50],[57,22],[145,-21],[43,-22],[30,17]],[[17737,8053],[33,-44]],[[17063,7366],[67,41],[67,1],[104,51],[112,-1],[64,-20],[79,-60],[90,-47]],[[17646,7331],[-29,-93],[0,-101],[-38,-90]],[[17579,7047],[-133,-46],[-96,-60],[-65,1]],[[17285,6942],[-25,62],[-122,185],[-20,19]],[[17118,7208],[-55,158]],[[17261,7923],[89,41],[61,43]],[[17652,7728],[-196,-2],[-61,18],[-75,41]],[[17320,7785],[-59,138]],[[17792,7416],[-112,-45],[-34,-40]],[[17063,7366],[0,69]],[[17063,7435],[59,109],[10,38]],[[17132,7582],[102,108],[53,29],[33,66]],[[17261,7923],[-27,64],[-26,105]],[[17208,8092],[52,6],[-14,36],[61,61],[9,73],[28,35],[75,16],[62,-5],[45,-22],[48,13],[-10,-74],[-28,-28],[55,-63],[49,45],[10,-34],[67,-41],[20,-57]],[[17132,7582],[-67,14],[-29,49],[-6,63],[-67,95],[-90,26]],[[16873,7829],[-59,40],[-45,88],[-49,29]],[[16720,7986],[21,36],[49,159]],[[16790,8181],[122,19],[20,-27],[88,-3],[45,-32],[77,-7],[66,-39]],[[17063,7435],[-47,-23],[-190,-5],[-89,-48]],[[16737,7359],[-66,77],[-22,107],[0,71],[59,111],[65,49],[100,55]],[[15982,7957],[35,-39],[57,-14],[49,9],[51,-13]],[[16174,7900],[-2,-96],[10,-42],[-63,-134]],[[16119,7628],[-69,19],[-43,45],[-49,82],[-2,46],[-39,76]],[[15917,7896],[65,61]],[[16720,7986],[-30,-59],[-88,-96],[-75,14],[-133,-4]],[[16394,7841],[-81,25],[-53,30],[-64,-3]],[[16196,7893],[17,31],[8,97],[71,30],[49,123]],[[16341,8174],[29,-18],[55,20],[8,-33],[75,-19],[35,-39],[57,38],[29,56],[71,37],[16,-28],[74,-7]],[[16196,7893],[-22,7]],[[15982,7957],[68,39],[63,13],[71,113],[51,32],[27,63],[79,-43]],[[16737,7359],[-21,-58]],[[16716,7301],[-59,65],[-43,24],[-53,4],[-40,61],[-64,37],[-146,21],[-59,31],[-39,41]],[[16213,7585],[71,32],[23,28],[87,196]],[[16213,7585],[-78,9]],[[16135,7594],[-16,34]],[[16716,7301],[-53,-211]],[[16663,7090],[-32,-140],[-90,-40],[-88,52]],[[16453,6962],[-97,8],[-125,-94],[-92,-46]],[[16139,6830],[-67,23]],[[16072,6853],[-24,67],[4,56],[55,115],[-35,51],[-177,3],[-71,39]],[[15824,7184],[0,16]],[[15824,7200],[108,151],[48,50],[60,97]],[[16040,7498],[69,48],[26,48]],[[2242,3116],[-35,-66],[-20,-75],[0,-64],[-16,-98]],[[2171,2813],[-35,28],[-87,15],[-33,-18]],[[2016,2838],[4,51],[82,229]],[[2102,3118],[65,-17],[75,15]],[[2678,2917],[47,9]],[[2725,2926],[27,-27],[6,-52],[30,-34],[45,19],[76,88]],[[2909,2920],[2,-64],[26,-62],[31,-187],[-16,-86]],[[2952,2521],[8,-46],[47,-88]],[[3007,2387],[-90,25]],[[2917,2412],[-53,1],[-37,21],[-63,67],[-55,41],[-61,-14]],[[2648,2528],[0,99],[-19,54],[-36,48]],[[2593,2729],[36,21],[47,77],[2,90]],[[3278,3114],[-25,-21],[-51,-89]],[[3202,3004],[-71,171],[18,58]],[[3149,3233],[53,-21],[67,-70],[9,-28]],[[2509,2755],[84,-26]],[[2648,2528],[-33,-20],[-35,-58]],[[2580,2450],[-38,-68],[-147,-22],[-73,0]],[[2322,2360],[-51,-3]],[[2271,2357],[38,109],[-32,88],[-84,18],[-41,48]],[[2152,2620],[33,54],[73,75]],[[2258,2749],[84,2],[67,29],[100,-25]],[[1816,2385],[-26,-87]],[[1790,2298],[-49,-25],[-35,-78],[-59,13],[-20,-25],[-55,35],[26,159],[-26,25],[-7,47]],[[1565,2449],[155,-6],[62,-27],[34,-31]],[[2016,2838],[-41,21],[-71,-35]],[[1904,2824],[-49,13],[35,56],[-141,-10]],[[1749,2883],[37,43],[-4,80]],[[1782,3006],[85,48],[14,28]],[[1881,3082],[15,30],[206,6]],[[2909,2920],[47,40],[57,18],[34,-26],[104,-48],[19,9]],[[3170,2913],[32,-51]],[[3202,2862],[57,-64],[31,-96]],[[3290,2702],[-143,-140]],[[3147,2562],[-75,0],[-63,15],[-57,-56]],[[2095,2411],[-12,113],[57,59],[12,37]],[[2271,2357],[-102,25],[-74,29]],[[2534,3181],[61,-11]],[[2595,3170],[-14,-60],[-60,-84],[-12,-37],[18,-59]],[[2527,2930],[-8,-25]],[[2519,2905],[-69,-26],[-26,15],[26,94],[0,106],[-24,76]],[[2426,3170],[108,11]],[[2171,2813],[37,-7],[50,-57]],[[2095,2411],[-99,44]],[[1996,2455],[46,117],[-61,113],[-30,33],[-47,106]],[[1749,2883],[-69,-160],[-45,-26],[-74,17]],[[1561,2714],[53,37],[27,117],[-33,39],[31,78]],[[1639,2985],[89,-3],[54,24]],[[3125,3282],[-15,-17],[39,-32]],[[3202,3004],[-32,-91]],[[2909,2920],[-43,78],[0,65],[134,114],[21,52],[51,74]],[[3072,3303],[53,-21]],[[2519,2905],[6,-49],[-16,-101]],[[2242,3116],[69,16],[15,33]],[[2326,3165],[57,-14],[43,19]],[[2725,2926],[2,74],[-18,60],[-45,68],[4,45]],[[2668,3173],[94,35]],[[2762,3208],[86,28],[114,60]],[[2962,3296],[81,4]],[[3043,3300],[29,3]],[[1996,2455],[-117,70],[-59,-98],[-4,-42]],[[1565,2449],[-12,56]],[[1553,2505],[35,45],[-27,25],[-95,42],[-86,22]],[[1380,2639],[0,47],[88,-7],[93,35]],[[2678,2917],[-44,-4],[-45,33],[-62,-16]],[[2595,3170],[73,3]],[[1726,5522],[27,5],[51,-26],[100,-13],[43,21],[114,5]],[[2061,5514],[-37,-57],[-20,-94]],[[2004,5363],[-57,-67],[-53,-22],[-25,-51],[2,-48]],[[1871,5175],[-89,-46]],[[1782,5129],[-94,18],[-49,26],[-94,13]],[[1545,5186],[4,78],[37,41],[57,14],[47,34],[38,77],[-2,92]],[[968,5068],[2,-5]],[[970,5063],[-2,5]],[[1042,5073],[0,1]],[[1042,5074],[0,-1]],[[1131,5110],[100,-65],[90,-3],[57,-29]],[[1378,5013],[-65,-67],[-61,-36]],[[1252,4910],[-108,-84],[-21,3]],[[1123,4829],[-28,41],[-4,53],[-37,40],[-90,9],[18,57],[64,1],[14,31],[71,49]],[[1042,5073],[-60,-25],[-12,15]],[[970,5063],[-2,5]],[[968,5068],[43,34],[31,-28]],[[2130,5949],[49,-26],[43,1],[32,-26]],[[2254,5898],[-75,-119],[-55,-138],[-63,-127]],[[1726,5522],[-85,116],[-6,51]],[[1635,5689],[153,77],[61,91]],[[1849,5857],[67,38],[75,24],[66,45],[73,-15]],[[2609,6593],[-69,-99],[-23,-141],[-2,-170]],[[2515,6183],[-83,56],[-65,27],[-98,18]],[[2269,6284],[-23,74],[-43,17],[-42,45],[-60,22],[5,23]],[[2106,6465],[59,4],[96,98]],[[2261,6567],[22,10]],[[2283,6577],[73,-49],[21,20],[155,35],[77,10]],[[2487,5361],[57,-34],[94,5]],[[2638,5332],[65,-36],[61,-3],[33,-22],[85,-94],[27,-44],[81,-57],[21,-49]],[[3011,5027],[-165,-1],[-96,-17],[-68,22],[-65,43],[-75,1],[-67,-14],[-162,74]],[[2313,5135],[25,72],[-49,81],[12,54],[96,4],[90,15]],[[1317,5375],[83,10]],[[1400,5385],[51,-41],[17,-106],[16,-24],[61,-28]],[[1545,5186],[-130,-131]],[[1415,5055],[-41,105],[-29,32],[-132,45]],[[1213,5237],[6,29],[77,12],[21,97]],[[3074,5668],[110,-181],[41,-23],[95,13]],[[3320,5477],[55,-49]],[[3375,5428],[-26,-48],[2,-52]],[[3351,5328],[-20,-36],[-21,-152],[-65,-104],[-43,-49],[-136,-71]],[[3066,4916],[-55,111]],[[2638,5332],[16,62],[106,94],[24,49],[61,66],[51,30],[27,49]],[[2923,5682],[92,-18],[59,4]],[[1580,5717],[-37,-102],[-41,-52],[-38,-102],[-64,-76]],[[1317,5375],[-31,44],[-49,1],[-8,-27],[-143,3],[-59,-14]],[[1027,5382],[-4,134],[23,68]],[[1046,5584],[51,30],[110,-12],[59,58],[79,46]],[[1345,5706],[114,40],[60,1],[61,-30]],[[2261,6567],[-131,69],[8,26],[-69,39],[-4,42],[32,27],[163,-9],[162,-49],[-7,-40],[-102,-60],[-30,-35]],[[1415,5055],[-37,-42]],[[1131,5110],[37,38],[-8,58],[59,11],[-6,20]],[[1955,6468],[61,21],[47,-27],[43,3]],[[2269,6284],[-37,-26],[-27,-124],[-24,-36],[-6,-64],[-33,-26],[-12,-59]],[[1849,5857],[20,67],[-4,44],[-39,36],[47,161],[8,55],[-36,79]],[[1845,6299],[40,52],[62,50],[8,67]],[[1580,5717],[55,-28]],[[2487,5361],[-31,69],[-4,68],[-30,75],[6,66],[63,38]],[[2491,5677],[65,22],[114,69],[29,63]],[[2699,5831],[36,-7],[153,-126],[35,-16]],[[2515,6183],[15,-50]],[[2530,6133],[-104,-116],[-6,-87],[-82,-13]],[[2338,5917],[-84,-19]],[[2000,6755],[32,-24],[-14,-49],[-31,29],[13,44]],[[1894,6794],[22,-23],[-8,-53],[-51,1],[37,75]],[[2016,6982],[77,-27],[29,-34],[-78,-34],[-4,-19],[-85,-20],[-49,30],[4,73],[106,31]],[[2338,5917],[39,-53],[-13,-51],[7,-59],[102,-47],[18,-30]],[[2313,5135],[-30,-42]],[[2283,5093],[-16,-16],[-92,16]],[[2175,5093],[-45,115],[-2,65],[-65,84],[-59,6]],[[3066,4916],[0,-101]],[[3066,4815],[-62,22],[-101,-56]],[[2903,4781],[-37,-24],[-286,-102],[-20,-15]],[[2560,4640],[-49,22],[-63,165],[-63,70],[-33,15]],[[2352,4912],[-71,7],[-14,48],[38,85],[-22,41]],[[2175,5093],[-31,-16]],[[2144,5077],[-14,16],[-77,-12],[-68,20],[-91,74],[-23,0]],[[2562,6099],[55,-62],[53,-151],[29,-55]],[[2530,6133],[32,-34]],[[6967,8577],[22,-46],[66,-56]],[[7055,8475],[-51,-25],[-55,-59],[-82,1],[-100,18],[-47,20]],[[6720,8430],[2,21],[64,50],[49,1],[44,38],[88,37]],[[7181,8661],[67,-117]],[[7248,8544],[-55,-32],[-75,-7],[-63,-30]],[[6967,8577],[43,44],[61,6],[6,23],[104,11]],[[7265,8483],[-102,-78],[-98,-88],[-69,-74],[-19,-78],[-92,-121],[17,-54],[53,-43],[34,-67]],[[6989,7880],[-65,-55]],[[6924,7825],[-77,-23]],[[6847,7802],[-41,86],[-69,74]],[[6737,7962],[-37,61],[-173,190],[-21,57]],[[6506,8270],[8,16],[127,50],[26,49],[53,45]],[[7248,8544],[17,-61]],[[7277,8445],[63,-138],[92,-50]],[[7432,8257],[-104,-59]],[[7328,8198],[-45,8],[-29,-47],[-55,-31],[-45,-132],[-52,-52],[-113,-64]],[[7265,8483],[12,-38]],[[15903,3252],[134,-34],[119,-8],[38,-40]],[[16194,3170],[-4,-58],[-47,-36],[-22,-43],[41,-62],[69,-36],[200,-1],[26,-46],[-40,-69]],[[16417,2819],[-29,10],[-37,-25],[-193,-24]],[[16158,2780],[-112,129],[-64,27],[-34,48],[2,41],[28,42],[-22,27],[-67,10],[-33,23]],[[15856,3127],[47,125]],[[15815,2858],[47,-40],[72,-19]],[[15934,2799],[-2,-65],[22,-34],[51,-17],[75,-1],[92,-18],[94,0],[53,31],[41,-12],[14,-43]],[[16374,2640],[-53,-55],[-33,-54]],[[16288,2531],[-153,-35],[-242,5]],[[15893,2501],[-65,129],[-76,104],[2,30]],[[15754,2764],[49,43],[12,51]],[[16417,2819],[53,-49],[89,29]],[[16559,2799],[35,-34]],[[16594,2765],[-86,-36],[-97,-51],[-37,-38]],[[15934,2799],[55,-17],[71,-1],[37,-15],[61,14]],[[15919,3503],[145,0],[69,20],[63,33],[27,42],[49,37],[26,45],[80,65]],[[16378,3745],[18,-90],[-4,-235]],[[16392,3420],[-30,-134],[-41,-92]],[[16321,3194],[-57,-25],[-70,1]],[[15903,3252],[31,123],[-15,128]],[[15815,2858],[-57,25],[-24,38],[8,37],[67,60],[47,109]],[[16235,3919],[72,-2],[38,-40],[33,-132]],[[15919,3503],[0,43]],[[15919,3546],[4,90],[39,128],[98,54],[59,3],[24,44],[-16,26]],[[16127,3891],[37,26],[71,2]],[[14969,6760],[2,-111],[-44,-95],[-6,-81],[-21,-18],[-132,6],[-104,89]],[[14664,6550],[55,67],[53,140]],[[14772,6757],[136,-16],[61,19]],[[14509,6422],[94,-98],[69,-56],[-55,-52],[0,-41],[45,-81],[0,-32]],[[14662,6062],[-110,-31],[-35,-49]],[[14517,5982],[-61,-62]],[[14456,5920],[-67,37],[-31,67],[31,68]],[[14389,6092],[16,31],[71,69],[18,55],[0,123],[15,52]],[[15186,6790],[26,-65],[20,-100],[17,-164],[30,-23]],[[15279,6438],[2,-32],[49,-33],[94,-21]],[[15424,6352],[59,-5],[12,-27],[-36,-80],[-61,-25],[-104,-65],[-25,-31]],[[15269,6119],[-112,-66],[-96,1],[-92,21]],[[14969,6075],[-71,11],[-120,33],[-116,-57]],[[14509,6422],[0,17]],[[14509,6439],[47,80],[108,31]],[[14969,6760],[170,17],[32,13]],[[15171,6790],[15,0]],[[5022,6230],[-32,-100]],[[4990,6130],[-17,-102]],[[4973,6028],[-22,-40],[-67,-55],[-82,-4]],[[4802,5929],[-38,82],[-4,93],[69,144]],[[4829,6248],[147,1],[46,-19]],[[4444,6069],[57,-32]],[[4501,6037],[16,-36],[69,-65],[61,-35],[45,-91]],[[4692,5810],[-128,19],[-53,-22],[-72,-97],[-2,-73],[45,-60]],[[4482,5577],[-75,-17],[-84,19],[-93,34]],[[4230,5613],[-76,33]],[[4154,5646],[-39,130],[7,70],[-15,37]],[[4107,5883],[96,1],[18,88]],[[4221,5972],[57,-26],[55,1],[72,23],[39,99]],[[4880,6581],[34,-2],[123,-63]],[[5037,6516],[-39,-94],[-24,-20],[-58,-7],[-59,-44],[-4,-53],[-24,-50]],[[4829,6248],[-55,30],[-98,2],[-53,-24]],[[4623,6256],[-25,69],[-67,26],[-18,37],[2,78]],[[4515,6466],[83,-11],[66,39],[57,95]],[[4721,6589],[112,8],[47,-16]],[[4238,6517],[116,-33],[96,-1],[65,-17]],[[4623,6256],[-65,-102],[-43,-26],[-18,-37],[4,-54]],[[4444,6069],[-113,48],[-46,43],[-49,21],[-106,-17]],[[4130,6164],[14,68]],[[4144,6232],[26,75],[55,47],[41,95],[-28,68]],[[4378,6785],[21,-68]],[[4399,6717],[63,-74],[90,-85],[77,-7],[92,38]],[[4238,6517],[0,93]],[[4238,6610],[34,90],[61,65],[45,20]],[[4221,5972],[-67,49],[-37,81],[13,62]],[[4802,5929],[-87,-108]],[[4715,5821],[-23,-11]],[[5037,6516],[38,-15]],[[5075,6501],[106,-234]],[[5181,6267],[-65,-7],[-94,-30]],[[15077,5147],[55,43],[74,-11],[90,-64],[99,-2],[57,-24],[37,16]],[[15489,5105],[47,-72],[-57,-89],[-4,-51],[-37,-39],[6,-55],[-22,-58]],[[15422,4741],[-57,-8],[-33,26],[-116,20],[-110,32]],[[15106,4811],[10,85],[-22,66],[53,71],[-67,61],[-3,36]],[[15077,5130],[0,17]],[[15047,4216],[104,-41],[141,72],[101,88],[64,11],[157,63]],[[15614,4409],[104,-180],[112,-55],[38,-51]],[[15868,4123],[-179,-96],[-75,-33],[-47,-4]],[[15567,3990],[-121,3],[-73,29],[-143,2],[-45,-35],[-8,-68],[-24,-73]],[[15153,3848],[-27,-23],[-152,-2]],[[14974,3823],[8,94],[-15,52],[-46,46]],[[14921,4015],[0,46],[34,100],[19,26],[63,-10],[10,39]],[[15724,5255],[116,-20],[22,-50],[63,-94]],[[15925,5091],[-30,-26],[-19,-70],[31,-140],[2,-41]],[[15909,4814],[-22,-82],[-57,-18],[-139,61],[-51,-35],[-53,-61],[-20,-45]],[[15567,4634],[-33,90],[-39,20],[-73,-3]],[[15489,5105],[-10,41],[39,66],[51,169]],[[15569,5381],[53,-25],[32,-50],[70,-51]],[[15106,4811],[-22,-8]],[[15084,4803],[-25,91],[-20,11],[-76,-34]],[[14963,4871],[-36,102],[-45,22]],[[14882,4995],[195,135]],[[15567,4634],[45,-96],[2,-129]],[[15047,4216],[26,84],[-30,75],[-39,17]],[[15004,4392],[-37,137],[6,135],[76,85],[35,54]],[[15909,4814],[35,-13],[38,-63],[0,-117]],[[15982,4621],[-120,-163],[14,-74],[33,-75],[53,-79],[12,-47]],[[15974,4183],[-106,-60]],[[14963,4871],[-189,-105],[-12,-19],[-76,-39]],[[14686,4708],[35,80],[-14,78],[36,99],[35,67]],[[14778,5032],[104,-37]],[[15312,5340],[67,-24],[159,65],[31,0]],[[15077,5147],[-59,33],[6,19],[174,102],[34,67]],[[15232,5368],[80,-28]],[[17772,4716],[-22,-137],[14,-34],[116,-62],[71,-77]],[[17951,4406],[0,-75],[-16,-37],[-130,-113],[-94,-147]],[[17711,4034],[-18,-11]],[[17693,4023],[-55,29],[-90,8],[-108,67],[-106,86]],[[17334,4213],[18,71],[-4,72],[-49,141]],[[17299,4497],[39,-19],[86,-5],[91,22],[-24,137]],[[17334,4213],[-106,-10],[-41,-16],[-77,-57],[-84,-7],[-35,16]],[[16991,4139],[-209,0]],[[16782,4139],[4,27]],[[16786,4166],[-64,140],[19,17],[104,-1],[30,18],[-8,52]],[[16867,4392],[175,94],[104,3],[80,-16],[39,19]],[[17265,4492],[34,5]],[[16991,4139],[-67,-131],[-20,-55],[0,-51],[-23,-49]],[[16881,3853],[-79,-31],[-108,-4],[-39,-22]],[[16655,3796],[0,90],[-26,41],[-9,80]],[[16620,4007],[55,32],[107,100]],[[17144,3586],[76,-44],[61,-57],[32,3],[92,97],[68,0]],[[17473,3585],[8,-53],[-23,-92],[47,-53],[37,-5]],[[17542,3382],[-21,-64],[58,-85]],[[17579,3233],[-74,-63],[-33,-14],[-77,58],[-118,54]],[[17277,3268],[-43,29],[-96,25],[-77,50],[-31,38]],[[17030,3410],[16,44],[98,132]],[[16881,3853],[33,-47],[8,-51],[76,-65],[128,-80],[18,-24]],[[17030,3410],[-100,42],[-98,-19],[-44,-38],[-37,-70]],[[16751,3325],[-45,38],[-57,-11],[-165,42]],[[16484,3394],[22,70],[76,90],[89,18],[17,20],[0,136],[-33,68]],[[16484,3394],[-92,26]],[[16235,3919],[49,62],[53,21],[100,4]],[[16437,4006],[147,-16],[36,17]],[[17693,4023],[-37,-95]],[[17656,3928],[-45,-55],[-145,-78],[-36,-40],[0,-54],[43,-116]],[[6404,7099],[82,7],[53,30]],[[6539,7136],[22,-49],[0,-71],[55,-57],[7,-53],[-47,-67],[-23,-71]],[[6553,6768],[-51,-18],[-67,3],[-67,47]],[[6368,6800],[95,217],[-59,82]],[[6563,7278],[37,-26],[53,2],[106,83],[14,38]],[[6773,7375],[133,-70],[92,-37],[18,-40]],[[7016,7228],[22,-61],[-16,-86],[-24,-48]],[[6655,6634],[-14,42],[-88,92]],[[6539,7136],[-6,81],[30,61]],[[5130,6766],[168,4],[71,25]],[[5369,6795],[81,-64],[27,-72],[45,-41]],[[5332,6221],[-53,24],[-98,22]],[[5075,6501],[25,43],[-8,44],[-49,62],[87,116]],[[6121,6851],[63,0],[84,29],[63,-66],[37,-14]],[[6235,6506],[2,59],[-20,69],[-41,78],[-12,84],[-43,55]],[[6215,7521],[138,-19],[33,-14],[192,-3]],[[6578,7485],[63,1],[57,-15],[79,0]],[[6777,7471],[-4,-96]],[[6563,7278],[-28,4],[-100,-35],[-29,-43]],[[6406,7204],[-69,0],[-41,64],[-128,69]],[[6168,7337],[55,59],[16,53],[-24,72]],[[5940,7273],[38,-4],[108,22],[82,46]],[[6406,7204],[-2,-105]],[[6121,6851],[-163,-17]],[[5958,6834],[-53,59],[-47,9],[-28,70]],[[5830,6972],[65,50],[8,156]],[[5903,7178],[37,95]],[[5414,7001],[75,-32],[53,15]],[[5542,6984],[98,18],[104,-51],[86,21]],[[5958,6834],[-26,-53],[-1,-60],[-32,-104],[30,-136]],[[5369,6795],[33,36],[12,170]],[[5200,2508],[-78,-13],[-104,-4]],[[5018,2491],[-55,59],[-55,26]],[[4908,2576],[-12,83],[37,90]],[[4933,2749],[77,-40],[94,-2],[63,-49],[2,-42]],[[3814,1898],[69,-22],[118,-20],[76,-3]],[[4077,1853],[44,-100],[47,-159]],[[4113,1582],[-61,113],[-63,37],[-39,7],[-81,-92],[-55,-11],[16,106],[-20,67]],[[3810,1809],[4,89]],[[5261,2408],[22,-41],[59,-46],[33,-86]],[[4692,2123],[2,135]],[[4694,2258],[45,49],[23,58],[53,35]],[[4815,2400],[53,-8],[67,35],[83,64]],[[3963,2197],[93,-85],[33,-70],[51,-32],[61,-8],[81,-61],[29,-10]],[[4077,1853],[-17,82],[-26,39],[-19,85],[-73,82]],[[3942,2141],[21,56]],[[4815,2400],[-13,87],[66,79],[40,10]],[[3814,1898],[20,74],[39,80],[69,89]],[[4401,2392],[16,-17]],[[4417,2375],[25,-103],[-43,-73],[16,-92]],[[4415,2107],[-29,3],[-89,60],[-72,78],[-53,38],[-165,4]],[[4007,2290],[0,36]],[[4007,2326],[92,33],[192,3],[61,29],[49,1]],[[4417,2375],[59,45],[74,20],[55,-22],[65,-135],[24,-25]],[[4486,2041],[-71,66]],[[4401,2392],[4,35],[41,75],[-17,89],[-40,53],[52,141]],[[4441,2785],[31,-50],[41,-25],[41,20],[220,179],[43,-15]],[[4817,2894],[36,-71],[80,-74]],[[3963,2197],[44,93]],[[4448,2811],[-7,-26]],[[4007,2326],[-40,21],[-13,41],[-2,163]],[[3952,2551],[27,19]],[[3979,2570],[55,29],[163,138],[81,57]],[[4107,5883],[-39,-17],[-95,-3],[-90,47],[-53,-26]],[[3830,5884],[-59,35],[-67,123],[-2,31]],[[3702,6073],[22,35],[6,57]],[[3730,6165],[29,23],[61,129]],[[3820,6317],[79,-5],[45,-16],[98,-62],[102,-2]],[[4299,6868],[61,-17]],[[4360,6851],[18,-66]],[[4238,6610],[-43,-25],[-127,-35],[-154,0]],[[3914,6550],[2,114],[-19,119],[-20,35]],[[3877,6818],[114,0],[145,61]],[[4136,6879],[45,21],[57,-1],[61,-31]],[[3074,5668],[32,21],[23,107]],[[3129,5796],[49,-11],[77,29],[80,-27],[12,-66],[73,-17],[17,-81]],[[3437,5623],[-121,-97],[4,-49]],[[3624,6820],[2,-185],[25,-46],[95,-39]],[[3746,6550],[0,-16]],[[3746,6534],[-61,-25]],[[3685,6509],[-34,-15],[-39,-52]],[[3612,6442],[-23,53],[-138,24],[-2,25]],[[3449,6544],[20,-2],[39,81],[63,7],[-63,72],[-63,6]],[[3445,6708],[-21,27],[35,90]],[[3459,6825],[90,-6]],[[3549,6819],[20,-1]],[[3569,6818],[55,2]],[[3685,6509],[10,-45],[-34,-72],[-39,-40],[-61,-36]],[[3561,6316],[-43,18],[-39,40]],[[3479,6374],[72,58],[61,10]],[[3545,5711],[47,-29],[126,-47]],[[3718,5635],[-31,-59],[-20,-97],[-2,-68],[-23,-32],[-134,-18],[-98,34],[-35,33]],[[3437,5623],[51,29],[57,59]],[[2976,6560],[-10,-88],[53,-10],[20,-71]],[[3039,6391],[16,-20],[70,-3],[8,-48],[-67,-26],[-31,-33]],[[3035,6261],[-112,7],[-51,25],[-55,-34],[-45,-48],[-37,-74],[-57,-36],[-63,65],[-53,-67]],[[2609,6593],[122,4],[78,-11],[102,2],[65,-28]],[[2941,6836],[4,-75],[-28,6],[24,69]],[[3453,6014],[31,13],[83,3],[65,44],[70,-1]],[[3830,5884],[-63,-154]],[[3767,5730],[-49,-95]],[[3545,5711],[-45,57],[6,56],[-10,106],[-43,84]],[[3746,6534],[33,-167],[41,-50]],[[3730,6165],[-88,-33],[-46,1],[-112,64]],[[3484,6197],[59,59],[18,60]],[[2976,6560],[90,-22],[108,48],[114,-16],[47,-38],[49,1]],[[3384,6533],[-31,-58],[-55,-38],[-77,-34],[-92,14],[-63,-4],[-27,-22]],[[3035,6261],[63,-46],[23,-67]],[[3121,6148],[51,-98],[14,-75],[-73,-124],[16,-55]],[[3384,6533],[65,11]],[[3479,6374],[-20,-50]],[[3459,6324],[-37,-8],[-28,-48],[-53,-43],[-51,-77]],[[3290,6148],[-169,0]],[[3290,6148],[45,-23],[61,-66],[57,-45]],[[3785,6855],[69,-29]],[[3854,6826],[23,-8]],[[3914,6550],[-168,0]],[[3624,6820],[63,-1],[59,17]],[[3746,6836],[39,19]],[[3459,6324],[-2,-77],[27,-50]],[[773,5584],[57,-3],[216,3]],[[1027,5382],[-122,-38],[-108,-19],[-71,-31],[-8,-20],[-107,0],[-59,-30],[-95,-5],[-45,20],[38,165],[33,29],[22,62]],[[505,5515],[37,1],[231,68]],[[1148,6110],[38,-130],[-8,-38],[43,-55],[75,-6],[53,-58]],[[1349,5823],[-18,-51],[14,-66]],[[773,5584],[4,105],[28,61],[-12,148]],[[793,5898],[55,31],[26,54],[98,16],[8,46],[31,22],[53,-25],[41,15],[43,53]],[[1845,6299],[-222,-126]],[[1623,6173],[-129,76],[-45,17],[-187,0]],[[1262,6266],[47,128],[81,90],[16,53],[-12,43]],[[1394,6580],[63,75],[66,14],[38,-27],[98,61],[29,-42],[10,-53],[-12,-49],[118,-72],[106,-35],[45,16]],[[397,5799],[17,-9],[10,-63],[-31,-15],[-91,76],[95,11]],[[1623,6173],[-23,-48],[-67,-71],[-27,-49],[-28,-95],[-21,-23],[-108,-64]],[[1148,6110],[26,42],[-2,68]],[[1172,6220],[90,46]],[[779,6630],[-21,-94],[45,-28],[6,-144]],[[809,6364],[-85,-53],[-13,-32],[21,-53],[-72,-73],[-85,-59],[-57,-13],[-8,16],[42,63],[29,82],[45,86],[0,58],[-37,40],[-16,57],[38,36],[70,24],[32,39],[66,48]],[[505,5918],[49,-18],[239,-2]],[[505,5515],[-2,104],[-18,54],[18,20],[2,77],[-22,17],[22,131]],[[1408,7114],[-14,-88],[2,-156]],[[1396,6870],[-36,-52],[-86,-21],[-57,-43],[-118,-47],[-49,-41],[6,-43],[-61,-27],[-8,-57],[-64,-78],[-57,-24],[-57,-73]],[[779,6630],[67,34],[59,48],[75,38],[82,4],[12,35],[84,30],[41,41],[-19,91],[-28,14]],[[1152,6965],[-33,69],[25,60]],[[1144,7094],[69,-4],[114,77],[47,5],[34,-58]],[[108,6313],[75,12],[86,40],[47,-36],[-12,-132],[-21,8],[-106,-43],[-112,-10],[-24,34],[-41,11],[4,44],[104,72]],[[1172,6220],[-77,-17],[-66,0],[-75,41],[-25,73],[-36,38]],[[893,6355],[34,67],[35,2],[47,69],[41,33],[49,66],[79,-2],[100,13],[39,-31],[77,8]],[[505,5918],[17,87],[22,28],[74,-13],[49,23],[38,57],[13,68],[42,19],[-12,36],[10,76],[61,4],[74,52]],[[7821,6898],[71,-44]],[[7892,6854],[33,-37],[27,-64],[-7,-72],[-53,-99]],[[7607,6721],[14,36],[-14,50],[29,42],[110,4],[75,45]],[[7619,7444],[45,2],[41,-42],[51,-7],[-12,-59]],[[7744,7338],[16,-112],[-73,-124],[-5,-59]],[[7682,7043],[-51,24],[-48,-2]],[[7583,7065],[-15,26],[-40,139],[4,52],[69,97],[18,65]],[[7587,7587],[81,-5],[137,-83],[61,-76],[37,-20],[65,2]],[[7968,7405],[-51,-49],[-96,-21],[-77,3]],[[7619,7444],[-22,40],[-61,-1]],[[7536,7483],[51,104]],[[7583,7065],[-80,-1],[-98,-66],[-38,-69]],[[7016,7228],[81,85],[96,85],[47,18],[110,15]],[[7350,7431],[186,52]],[[7892,6854],[45,20],[59,56],[86,-13]],[[8082,6917],[37,-74],[40,-51],[0,-57],[-32,-56],[-129,-131]],[[8386,7524],[-57,-55],[-15,-35],[6,-56],[39,-39],[98,-48]],[[8457,7291],[-55,-57],[-80,-33]],[[8322,7201],[-36,-17],[-88,1]],[[8198,7185],[-67,48],[-86,-5]],[[8045,7228],[-34,95],[57,128]],[[8068,7451],[63,47],[61,20]],[[8192,7518],[122,67]],[[8314,7585],[43,15],[33,-37],[-4,-39]],[[8667,6730],[30,-89],[0,-40],[-59,-118],[-142,-89]],[[8496,6394],[-200,35]],[[8296,6429],[33,64],[83,35],[71,132],[115,69],[53,1]],[[8651,6730],[16,0]],[[8198,7185],[23,-53],[0,-58],[-17,-41],[-122,-116]],[[7821,6898],[2,79]],[[7823,6977],[27,57],[-9,69],[21,29],[90,19],[93,77]],[[7823,6977],[-83,71],[-58,-5]],[[7968,7405],[61,43],[39,3]],[[8322,7201],[21,-64],[-16,-55],[18,-64],[122,-59],[4,-77],[65,-92],[84,40]],[[8620,6830],[31,-100]],[[8296,6429],[-41,-9]],[[8457,7291],[112,-47]],[[8569,7244],[21,-89],[-15,-58],[0,-71],[45,-196]],[[9068,7414],[27,-25]],[[9095,7389],[-10,-71],[43,-95],[6,-80],[34,-70],[76,-129]],[[9244,6944],[-116,-55]],[[9128,6889],[-33,7],[-57,-44],[-78,-38]],[[8960,6814],[-28,47],[22,70],[-71,177],[-31,-20],[-46,54],[-2,47],[-53,131]],[[8751,7320],[61,29],[6,77]],[[8818,7426],[69,57],[41,-2],[71,-46],[69,-21]],[[9193,6452],[77,-51],[51,25],[116,6],[66,39],[98,-56],[126,12]],[[9727,6427],[2,-101]],[[9729,6326],[-2,-66],[16,-103],[-63,-49]],[[9680,6108],[-45,-33]],[[9635,6075],[-20,-13],[-70,24],[-71,7],[-57,-23],[-47,-49],[-41,-14],[-93,1]],[[9236,6008],[12,93],[-14,70],[8,87],[-45,2]],[[9197,6260],[22,38],[-2,61],[-24,36],[0,57]],[[8960,6814],[-18,-44],[-61,-37],[-94,-16]],[[8787,6717],[-43,26],[-77,-13]],[[8569,7244],[82,26],[100,50]],[[9236,6008],[-231,-1]],[[9005,6007],[0,113],[17,20],[120,22],[32,29],[23,69]],[[9168,7336],[141,-23],[159,-64]],[[9468,7249],[-16,-41],[-78,-74],[-38,-17]],[[9336,7117],[-74,54],[-41,91],[-53,74]],[[9160,7836],[147,-66],[90,-29]],[[9397,7741],[-9,-38],[-48,-70],[-49,-40],[-161,-88],[-59,-52],[-3,-39]],[[8818,7426],[-55,46],[-15,45],[82,183]],[[8830,7700],[106,159],[31,35],[53,3]],[[9020,7897],[46,-39],[94,-22]],[[9468,7249],[43,-16],[71,0]],[[9637,7066],[-89,-1],[-47,13],[-53,-51],[-37,-14],[-96,-6]],[[9315,7007],[0,52],[21,58]],[[9908,6535],[-104,-72],[-77,-36]],[[9727,6427],[-12,63],[-33,48],[-16,104],[0,144],[75,61],[37,85],[41,46]],[[9193,6452],[-80,28],[-30,31]],[[9083,6511],[-2,42],[22,98],[49,75],[0,107],[-24,56]],[[9244,6944],[71,63]],[[9095,7389],[73,-53]],[[9896,6349],[-65,-23],[-102,0]],[[9446,7824],[36,-41],[31,-91],[2,-69],[28,-52],[110,19]],[[9397,7741],[49,83]],[[8787,6717],[-26,-87],[59,-45],[36,17],[31,60],[55,-25],[-43,-63],[29,-60],[155,-3]],[[9005,6007],[-77,-2],[-18,-20]],[[8910,5985],[-39,-37],[-78,-23],[-91,0],[-113,-43]],[[8589,5882],[3,58],[24,33],[118,94],[-43,52],[-51,89],[-26,135],[-65,22]],[[8549,6365],[-53,29]],[[3901,2587],[51,-36]],[[3814,1898],[-70,6],[-42,-28],[-66,-5],[-22,-37],[-61,-41],[-82,13]],[[3471,1806],[8,43]],[[3479,1849],[-32,57]],[[3447,1906],[0,18]],[[3447,1924],[85,59],[51,59],[17,80],[0,139],[18,114]],[[3618,2375],[43,4],[81,35],[41,63],[2,91],[-14,42]],[[3771,2610],[92,0],[38,-23]],[[3532,3149],[37,-104],[2,-78],[-32,-38],[-108,35]],[[3431,2964],[18,81],[-14,95]],[[3435,3140],[-2,58]],[[3433,3198],[99,-49]],[[3390,2847],[-8,-83],[-17,-49]],[[3365,2715],[-75,-13]],[[3202,2862],[39,33],[98,-19],[51,-29]],[[3954,3273],[53,-48],[55,-91],[33,-12]],[[4095,3014],[-61,-36],[-39,-88],[-71,-41],[-33,-6]],[[3891,2843],[-67,51]],[[3824,2894],[37,53],[77,185],[18,62],[-2,79]],[[3850,3516],[125,-99],[28,-2]],[[4003,3415],[-59,-85],[-8,-41]],[[3936,3289],[-135,64],[-87,67],[-6,29]],[[3708,3449],[63,20],[79,47]],[[3231,2041],[45,62],[71,54],[45,-3]],[[3392,2154],[-35,-64],[0,-31],[43,-86],[47,-49]],[[3447,1906],[-23,10],[-85,80]],[[3339,1996],[-108,45]],[[4093,2927],[-45,-79],[-4,-89],[-39,-100],[-26,-89]],[[3901,2587],[-53,137],[4,52],[39,67]],[[3125,3282],[59,37],[18,34],[2,91],[86,57]],[[3290,3501],[26,-90],[33,-57],[71,-149],[13,-7]],[[3435,3140],[-47,-26],[-110,0]],[[3936,3289],[18,-16]],[[3824,2894],[-53,19],[-53,-4]],[[3718,2909],[-69,160],[4,111],[-55,1]],[[3598,3181],[8,103],[39,82],[-5,55]],[[3640,3421],[68,28]],[[3810,1809],[-57,-71],[0,-86],[-62,-113],[-22,-18],[-61,15]],[[3608,1536],[-84,101],[-28,49],[-4,74],[-21,46]],[[4003,3415],[15,108],[61,127]],[[4079,3650],[36,112],[70,31]],[[3290,3501],[41,20]],[[3331,3521],[197,-71],[55,-3],[57,-26]],[[3598,3181],[-66,-32]],[[3771,2610],[-88,-17]],[[3683,2593],[-16,46],[-49,60],[14,75],[-12,70],[45,48],[53,17]],[[3147,2562],[49,-46],[-10,-81],[10,-42],[96,-52],[22,-68],[49,-58],[29,-61]],[[3231,2041],[-29,3],[-32,56],[0,57],[-35,67],[-108,26],[-12,29],[-8,108]],[[3683,2593],[-53,-17]],[[3630,2576],[-126,25],[-23,38],[-116,76]],[[3390,2847],[41,92],[0,25]],[[3618,2375],[14,100],[-2,101]],[[15349,3278],[128,-141],[63,62],[106,2],[74,-46],[91,-7],[45,-21]],[[15754,2764],[-161,-16],[-37,-14],[-71,-1],[-39,17],[-44,48],[-76,11],[-34,24]],[[15292,2833],[-72,75],[-39,26]],[[15181,2934],[4,53],[25,73],[-25,60],[5,82],[159,76]],[[14495,2833],[114,50],[102,18],[120,0],[130,-15],[63,43],[33,1],[63,-29],[61,33]],[[15292,2833],[-49,-51],[-15,-38],[-4,-77],[-20,-32]],[[15204,2635],[-80,-3],[-53,-22],[-93,-80],[-90,-15]],[[14888,2515],[-23,16],[-103,13],[-80,-46],[-128,2]],[[14554,2500],[-19,59],[0,206],[-40,68]],[[13901,3329],[94,70],[139,58],[20,62],[45,22]],[[14199,3541],[26,-7],[17,-54],[0,-55],[51,-28],[14,-69],[102,-74],[-6,-16],[-102,-6],[-25,-38],[11,-29],[-25,-37],[4,-96],[-20,-49]],[[14246,2983],[-78,66],[-44,49],[-74,39],[-126,-1],[-88,47]],[[13942,3667],[65,-43],[78,0],[53,29],[43,-2]],[[14181,3651],[18,-110]],[[13767,3405],[32,127],[-24,94]],[[13775,3626],[167,41]],[[14974,3823],[-37,-59],[59,-37],[2,-84],[98,-87]],[[15096,3556],[-57,-54]],[[15039,3502],[-123,2],[-36,13],[-57,66],[-63,4],[-102,-32]],[[14658,3555],[-25,110],[-77,36],[-66,61]],[[14490,3762],[35,90],[71,4],[62,-16]],[[14658,3840],[75,-17],[241,0]],[[15039,3502],[8,-44],[-102,-105],[-71,0],[-61,-28],[-70,-4],[-26,17],[-57,77],[-17,6]],[[14643,3421],[0,79],[15,55]],[[14643,3421],[-16,-58],[-59,-111],[-21,-68],[-53,-113],[-24,-84],[-37,-88]],[[14433,2899],[-91,3],[-96,81]],[[14181,3651],[65,21],[169,6],[43,44]],[[14458,3722],[32,40]],[[15153,3848],[120,-110],[16,-56],[-79,-15],[-29,-47],[4,-64]],[[15185,3556],[-89,0]],[[15312,3590],[102,20],[45,24],[85,5]],[[15544,3639],[67,-38],[45,-48],[-4,-48],[-87,-99],[-90,11],[-94,-64]],[[15381,3353],[-51,116]],[[15330,3469],[6,57],[-24,64]],[[15185,3556],[68,0],[59,34]],[[15330,3469],[-71,-19],[-47,-39],[-20,37],[-66,18],[-30,90]],[[15974,4183],[11,-29],[97,-89],[19,-40],[-10,-102],[36,-32]],[[15919,3546],[-57,-25],[-96,113],[-99,51]],[[15667,3685],[-84,125],[-31,72],[15,108]],[[15667,3685],[-92,-4],[-31,-42]],[[15381,3353],[-32,-75]],[[14495,2833],[-62,66]],[[5807,7656],[104,-115]],[[5911,7541],[-18,-34],[-110,-39]],[[5783,7468],[-116,-3],[-72,-36]],[[5595,7429],[-110,-42]],[[5485,7387],[-16,17]],[[5469,7404],[28,64],[-61,96]],[[5436,7564],[96,7],[39,18],[83,6],[112,33],[41,28]],[[5595,7429],[4,-80],[33,-33],[-71,-80]],[[5561,7236],[-15,0]],[[5546,7236],[-40,45],[-3,65]],[[5503,7346],[-18,41]],[[5503,7346],[-65,-39],[-83,-20]],[[5355,7287],[114,117]],[[5561,7236],[34,-21],[-2,-63]],[[5593,7152],[-18,-79],[-33,-89]],[[5414,7001],[34,54],[-53,61]],[[5395,7116],[41,48],[29,8],[81,64]],[[5395,7116],[-40,20],[-23,55],[23,96]],[[5593,7152],[102,2],[63,65],[61,-3],[84,-38]],[[5783,7468],[0,-87],[53,-57],[104,-51]],[[5970,7537],[129,-17],[116,1]],[[5911,7541],[59,-4]],[[995,7526],[-59,-69],[-37,-84],[-71,-100],[-25,-75],[-94,-73],[-38,-5]],[[671,7120],[-74,32],[-112,3]],[[485,7155],[18,38],[60,31],[-5,47],[92,58],[-14,37],[65,21],[-30,49],[38,63]],[[709,7499],[27,47],[67,44]],[[803,7590],[63,3],[68,-47],[61,-20]],[[701,6889],[-45,-19],[-102,11],[-59,-14],[-49,17],[-42,50],[2,60],[-27,75],[8,19],[57,1],[33,28],[8,38]],[[671,7120],[-35,-97],[61,-22],[4,-112]],[[1144,8507],[83,-9],[45,-59]],[[1272,8439],[18,-39],[76,-53]],[[1366,8347],[-4,-100],[-80,-111]],[[1282,8136],[-16,-56]],[[1266,8080],[-157,13],[-51,-14]],[[1058,8079],[-16,108],[28,61],[33,113],[4,86],[37,60]],[[1152,6965],[-102,-29],[-106,-9],[-53,-55],[-76,35],[-49,-24],[-65,6]],[[995,7526],[108,-17]],[[1103,7509],[40,-57],[-38,-79],[-17,-66],[2,-132],[54,-81]],[[1337,8908],[12,-66]],[[1349,8842],[4,-61]],[[1353,8781],[-42,-7],[-59,-46],[-153,-154]],[[1099,8574],[-59,29],[-45,48],[-74,33],[0,24]],[[921,8708],[19,55],[-11,44],[47,40],[133,-13],[28,30],[62,-9],[22,24],[116,29]],[[903,7957],[0,-212],[-14,-34],[-86,-121]],[[709,7499],[-30,21],[-21,109],[21,41],[-23,41],[35,128],[71,-7],[49,39],[70,88],[22,-2]],[[1099,8574],[49,-18],[-4,-49]],[[1058,8079],[-84,27]],[[974,8106],[-22,239],[-63,17],[-39,61],[-55,37],[-31,-3],[-46,30],[-27,49],[6,51],[37,76],[147,0],[40,45]],[[1353,8781],[-38,-268],[-43,-74]],[[1266,8080],[-25,-84],[19,-43]],[[1260,7953],[-2,-71],[42,-73],[3,-69],[-49,-82]],[[1254,7658],[-29,-3],[-92,-50],[-30,-59],[0,-37]],[[903,7957],[45,-25],[45,40],[-4,104],[-15,30]],[[13400,4629],[28,-51],[-2,-161],[43,-20]],[[13469,4397],[-51,-31],[-142,-5]],[[13276,4361],[0,31],[-45,126],[18,73],[78,-5]],[[13327,4586],[32,32],[41,11]],[[14621,3961],[32,-31],[5,-90]],[[14458,3722],[-45,82],[-8,89]],[[14405,3893],[81,0],[135,68]],[[14621,3961],[143,75],[104,5],[53,-26]],[[13190,4212],[75,-101],[133,-5],[67,-28],[45,-2]],[[13510,4076],[57,-18],[-8,-29],[-49,-31],[27,-64],[40,-38],[-16,-113]],[[13561,3783],[-14,-38],[-49,-43]],[[13498,3702],[-29,19],[-140,11]],[[13329,3732],[-37,25],[-47,4],[-79,43],[-98,19]],[[13068,3823],[-51,53],[-33,107]],[[12984,3983],[31,72],[91,138],[55,19]],[[13161,4212],[29,0]],[[15004,4392],[-84,1],[-87,-19],[-131,-79],[-53,-19],[-44,9],[-86,111]],[[14519,4396],[45,96],[0,87],[-23,65],[25,31]],[[14566,4675],[37,35],[83,-2]],[[13575,4418],[-36,-118],[-2,-92],[-29,-71],[2,-61]],[[13190,4212],[71,-2],[15,17],[0,134]],[[13469,4397],[45,-1],[61,22]],[[15004,4392],[-26,-31],[-58,-6],[-53,-25],[-32,-48],[22,-72],[-22,-20],[-131,3],[-59,-20],[-63,-62],[-128,-53],[-66,24]],[[14388,4082],[-73,8],[-35,-12],[-69,19],[-51,47],[-6,74]],[[14154,4218],[143,75]],[[14297,4293],[91,0],[62,24],[69,79]],[[14087,3798],[63,77],[27,60],[97,69],[43,-7],[63,-86],[25,-18]],[[13942,3667],[63,44],[21,39],[61,48]],[[13681,4429],[110,-36],[161,-70],[121,-75],[81,-30]],[[14388,4082],[-2,-72],[37,-73],[-18,-44]],[[14087,3798],[-16,38],[-68,7],[-38,27],[-74,20],[-87,-31],[-159,-22],[-84,-54]],[[13575,4418],[106,11]],[[13775,3626],[-69,-7],[-86,-35]],[[13620,3584],[-102,81]],[[13518,3665],[-20,37]],[[13322,5594],[-8,-146],[33,-61],[0,-94],[69,-48],[17,-61],[57,-54],[18,-65]],[[13508,5065],[-31,-17],[-38,-66]],[[13439,4982],[-57,34],[-74,80],[-110,-14],[-163,89]],[[13035,5171],[-49,172],[0,61],[18,88]],[[13004,5492],[-2,63],[55,104],[21,10]],[[13078,5669],[96,-18],[148,-57]],[[14517,5982],[116,-63],[100,1],[45,-54]],[[14778,5866],[-29,-50],[96,-50],[25,-58],[55,-58],[-19,-48],[-59,-21],[-59,-94],[-53,-20],[-63,23]],[[14672,5490],[57,52],[-8,57],[-29,19],[-112,-10],[-57,73],[-55,20],[-143,5]],[[14325,5706],[-40,21],[-37,46],[8,49],[-18,29]],[[14238,5851],[47,2],[118,33],[53,34]],[[13322,5594],[27,-20],[110,-20],[75,58],[60,104],[-7,60],[37,50],[65,25],[62,-40]],[[13751,5811],[10,-20],[47,12],[49,-22],[-45,-35],[-8,-30],[30,-63],[86,-48],[63,-66],[90,-24],[20,-24],[-14,-46],[-2,-94],[-23,-66]],[[14054,5285],[-71,14],[-112,-31],[-61,-4],[-66,-27],[-114,-108],[-122,-64]],[[13439,4982],[36,-29],[102,-14]],[[13577,4939],[-12,-37],[-90,-52],[-45,-4],[-57,-112],[27,-105]],[[13327,4586],[-27,66],[-29,34],[-107,58],[-109,4],[-63,33]],[[12992,4781],[39,81],[0,286],[4,23]],[[13771,6020],[183,-113],[98,-53],[61,-19],[125,16]],[[14325,5706],[-18,-84],[-39,-49],[-4,-48],[19,-10],[132,-2],[63,-77],[51,-27],[31,-39]],[[14560,5370],[-119,-45],[-87,-108]],[[14354,5217],[-67,-1],[-17,63],[-69,-13],[-73,2],[-74,17]],[[13751,5811],[4,173],[16,36]],[[14969,6075],[-24,-50],[-20,-102],[22,-38]],[[14947,5885],[-130,-3],[-39,-16]],[[13420,6089],[92,-1],[67,21]],[[13579,6109],[37,-8],[120,-57],[35,-7]],[[13771,6037],[0,-17]],[[13078,5669],[4,35],[73,18],[41,41],[-33,38],[-122,-33],[-39,27],[39,111]],[[13041,5906],[45,69]],[[13086,5975],[124,-22],[135,0],[47,17],[28,119]],[[14947,5885],[222,0],[23,-10],[36,-72],[-10,-77],[39,-72],[67,-38]],[[15324,5616],[55,-28],[6,-30],[-75,-144],[2,-74]],[[15232,5368],[-277,-3],[-87,17],[-66,-3],[-140,-53]],[[14662,5326],[0,131],[10,33]],[[14662,5326],[-102,44]],[[16910,7057],[20,69],[43,49],[49,30],[96,3]],[[17285,6942],[24,-73],[-34,-181]],[[17275,6688],[-23,-78],[-259,-139],[-116,-35]],[[16877,6436],[-14,0]],[[16863,6436],[2,65],[37,55]],[[16902,6556],[34,29],[4,40],[-28,48],[-2,60],[22,52],[6,102],[-44,95],[16,75]],[[15587,7008],[110,71],[127,105]],[[16072,6853],[-53,-17],[-140,-66],[-43,-45],[-19,-100],[13,-130]],[[15830,6495],[-59,24],[-43,-30],[-35,-49],[-47,-19],[-167,-20],[-55,-49]],[[15279,6438],[176,81],[53,5],[14,63],[-35,91],[-55,74],[10,93],[-49,45]],[[15393,6890],[131,71],[63,47]],[[15269,6119],[35,-16],[81,20],[47,27],[61,-12],[59,-87],[45,-98],[0,-88],[-32,-60],[-47,-10],[-8,-28],[53,-77]],[[15563,5690],[-25,-55],[-106,-49],[-45,42],[-63,-12]],[[15972,5741],[12,-80],[-20,-53],[-94,-83],[-53,-29],[-28,-42],[-65,-199]],[[15563,5690],[89,-39],[92,-1],[55,22]],[[15799,5672],[43,-4],[130,73]],[[16553,5322],[100,-55]],[[16653,5267],[20,-39],[-28,-194],[16,-81],[0,-93]],[[16661,4860],[-102,-48]],[[16559,4812],[-57,-1],[-65,18],[-65,43],[-31,51],[-104,130],[-77,50],[-65,28]],[[16095,5131],[0,51],[97,63],[90,26],[37,37],[61,20],[82,-31],[55,2],[36,23]],[[16877,6436],[-12,-50],[75,-131],[160,-46],[136,-131],[69,-135]],[[16987,5804],[-61,-5],[-57,18]],[[16869,5817],[-47,25],[-45,49],[-53,84],[-38,98],[-39,53],[0,47]],[[16647,6173],[18,98]],[[16665,6271],[49,63],[39,10],[41,66],[69,26]],[[15830,6495],[73,-102],[18,-65]],[[15921,6328],[-93,-46],[-23,-49],[25,-92],[-39,-100],[37,-249],[-23,-56],[-6,-64]],[[16922,5129],[29,-76],[-23,-43]],[[16928,5010],[-116,-101],[-65,-30],[-86,-19]],[[16653,5267],[69,-24],[70,-50],[30,-54],[100,-10]],[[17199,5279],[-140,-38],[-90,-48],[-47,-64]],[[16553,5322],[-6,64],[-67,143],[-21,151],[-63,74]],[[16396,5754],[66,29],[77,0]],[[16539,5783],[94,-1],[53,-16],[81,3],[102,48]],[[16539,5783],[0,76],[-14,90],[40,83],[5,97],[28,34],[49,10]],[[15921,6328],[9,-40],[67,-14],[41,70],[55,40],[34,-1],[106,-77],[67,-1]],[[16300,6305],[-59,-141],[-89,-34],[-29,-62],[0,-50],[21,-56],[55,-67],[0,-40],[-55,-74]],[[16144,5781],[-21,-12],[-94,10],[-57,-38]],[[16386,6587],[75,4],[60,42],[132,3],[128,-35],[121,-45]],[[16665,6271],[-93,-20],[-60,17],[-99,6],[-53,30]],[[16360,6304],[55,59],[-15,37],[-34,11],[-11,58],[31,118]],[[16663,7090],[33,-5],[57,-41],[157,13]],[[16386,6587],[8,37],[-63,32],[-6,39]],[[16325,6695],[55,86],[71,28],[25,62],[-27,44],[4,47]],[[16300,6305],[60,-1]],[[16396,5754],[-75,-21],[-33,14],[-118,6],[-26,28]],[[15186,6790],[126,56],[81,44]],[[16095,5131],[-145,-23],[-25,-17]],[[16139,6830],[137,-78],[49,-57]],[[4715,5821],[14,-44],[-12,-78],[-25,-29],[-28,-105],[-35,18]],[[4629,5583],[-81,9],[-66,-15]],[[5640,6083],[12,-107],[70,-149]],[[5722,5827],[-66,-135],[-53,-131],[-22,-31]],[[5581,5530],[-71,12],[-72,-17],[-41,23]],[[5397,5548],[-20,30],[-18,82],[4,87],[30,63],[35,42],[67,49],[-16,47],[-65,99]],[[5722,5827],[83,-3],[45,-52],[20,-93],[23,-38],[-2,-89]],[[5891,5552],[-123,-53],[-73,-73]],[[5695,5426],[-65,80],[-49,24]],[[5658,5283],[35,-40],[37,-85],[89,-90],[2,-61],[-48,-34]],[[5357,4889],[16,17],[-27,64],[-55,58]],[[5291,5028],[21,60],[0,112]],[[5312,5200],[47,-23],[134,-1],[74,41],[91,66]],[[6211,5610],[118,76]],[[6364,4830],[-21,-10]],[[6343,4820],[-57,46],[-10,91],[-26,58],[0,235],[-15,60],[4,66],[37,76],[4,51],[-69,107]],[[5151,4733],[-6,121],[40,81],[66,69],[40,24]],[[5695,5426],[-28,-56],[8,-62],[-17,-25]],[[5312,5200],[30,118],[2,61],[-38,92]],[[5306,5471],[30,6],[61,71]],[[5306,5471],[-25,18],[-71,1],[-120,-31],[-25,-43],[17,-74],[-25,-34],[-67,13],[-59,-28],[-82,-19],[-90,1]],[[4759,5275],[-167,182],[-14,36],[51,90]],[[4973,6028],[54,-6],[38,-38],[59,-20],[64,24],[10,19]],[[5198,6007],[24,53],[45,23],[59,54],[18,69]],[[6211,5610],[-31,1],[-34,47],[-27,8],[-28,-63],[-76,-44],[-124,-7]],[[4990,6130],[73,-39],[27,-35],[108,-49]],[[4902,4876],[-47,127],[-75,73],[-21,45],[0,154]],[[6343,4820],[-28,-93],[-63,-36],[-78,22]],[[11655,1861],[110,-13],[57,23],[10,-52],[70,-25],[63,-57],[61,41],[35,-43],[77,-37]],[[12138,1698],[-94,-103],[-32,-71],[-18,-96]],[[11994,1428],[-80,43]],[[11914,1471],[-73,50],[-17,90],[-30,62]],[[11794,1673],[-41,36],[-135,4]],[[11618,1713],[35,66],[2,82]],[[12075,2227],[2,-109],[69,-79],[61,-51]],[[12207,1988],[7,-39],[55,-100],[2,-30],[-29,-92],[0,-91]],[[12242,1636],[-47,46],[-57,16]],[[11655,1861],[-4,58],[-37,35],[2,58]],[[11616,2012],[33,20],[35,62],[79,67],[161,53],[98,20],[53,-7]],[[11221,1966],[41,-57],[59,-49],[35,-127],[81,0],[33,14],[61,-5],[34,-62]],[[11565,1680],[-18,-65],[-39,-62],[-102,-67]],[[11406,1486],[-22,-66]],[[11384,1420],[-47,25],[-73,18]],[[11035,1631],[41,115],[19,31]],[[11095,1777],[30,77],[96,112]],[[12682,2329],[-79,-6],[-47,-51],[-30,-65],[-53,-59]],[[12473,2148],[-143,83],[-74,13],[-67,-28],[-30,30]],[[12159,2246],[53,25],[32,69],[-2,97]],[[12638,1447],[-104,-57],[-119,-53],[-83,-6]],[[12332,1331],[-4,37]],[[12328,1368],[112,63],[30,32],[5,47],[28,20],[65,-11],[72,35]],[[12640,1554],[-2,-107]],[[12207,1988],[76,25],[69,7],[49,26],[53,4]],[[12454,2050],[4,-59],[29,-124]],[[12487,1867],[28,-99],[84,-94],[39,-67],[2,-53]],[[12328,1368],[-29,61],[-38,31],[-19,67],[0,109]],[[11535,2183],[34,-149],[47,-22]],[[11618,1713],[-53,-33]],[[11221,1966],[39,36],[67,94]],[[11327,2096],[31,13],[150,118],[27,-44]],[[12332,1331],[-57,-19],[-123,-80],[-26,-30]],[[12126,1202],[-75,182],[-57,28]],[[11994,1412],[0,16]],[[12473,2148],[-19,-98]],[[12075,2227],[84,19]],[[12788,6751],[0,28]],[[12788,6779],[33,-8],[122,-76],[135,4],[61,104],[69,-19]],[[13208,6784],[-20,-30],[16,-43],[39,-6],[35,-36],[24,-150],[33,-33],[-25,-47],[-59,-51],[6,-75],[21,-24]],[[13278,6289],[-100,-98]],[[13178,6191],[-45,-22]],[[13133,6169],[-35,-11],[-157,98]],[[12941,6256],[-57,49],[-22,176],[-43,177]],[[12819,6658],[-31,93]],[[13225,6945],[87,-36]],[[13312,6909],[10,-60],[51,-29],[31,-41],[94,-21]],[[13498,6758],[-4,-48],[20,-36],[69,-10]],[[13726,6524],[-24,-25],[-90,-50],[-57,-76],[2,-89]],[[13557,6284],[-63,22],[-145,0],[-71,-17]],[[13208,6784],[17,161]],[[12821,7371],[98,9],[73,-51]],[[12992,7329],[-24,-69],[-41,-62],[0,-135],[16,-36]],[[12943,7027],[-20,-83],[-69,-94],[-82,-41]],[[12772,6809],[-24,91]],[[12748,6900],[-80,129],[-22,73]],[[12646,7102],[144,105],[45,19],[-16,62],[2,83]],[[13557,6284],[0,-57],[45,-68],[-23,-50]],[[13420,6089],[-65,45],[-177,57]],[[13575,7339],[98,-12],[98,-54]],[[13771,7273],[35,-137]],[[13806,7136],[-64,-27],[-63,1]],[[13679,7110],[-32,31],[-106,53]],[[13541,7194],[16,99],[18,46]],[[13119,7165],[63,-70],[75,3]],[[13257,7098],[8,-61],[-40,-92]],[[12788,6779],[-16,30]],[[12943,7027],[45,3],[45,38],[86,97]],[[13526,7177],[15,17]],[[13679,7110],[-106,-107]],[[13573,7003],[-28,55],[-19,119]],[[13300,7405],[65,-15],[63,58]],[[13428,7448],[-24,-70],[6,-78],[23,-9]],[[13433,7291],[2,-104],[32,-74]],[[13467,7113],[-37,5],[-28,38],[-59,27],[-19,94],[-24,27]],[[13300,7304],[0,101]],[[13712,7514],[124,52]],[[13836,7566],[-32,-53],[-3,-42]],[[13801,7471],[-28,-83],[0,-87]],[[13773,7301],[-27,28],[-32,84],[-2,101]],[[13573,7515],[2,-176]],[[13526,7177],[-45,96],[-48,18]],[[13428,7448],[31,26],[63,1],[51,40]],[[13573,7003],[-75,-162],[0,-83]],[[13312,6909],[59,100],[74,19],[20,29],[2,56]],[[13300,7304],[-65,-47],[28,-71],[-6,-88]],[[13119,7165],[38,69],[-32,17],[-72,87]],[[13053,7338],[123,3],[89,78],[35,-14]],[[12992,7329],[61,9]],[[12754,7394],[67,-23]],[[12646,7102],[10,48],[41,95]],[[12697,7245],[24,51]],[[12721,7296],[33,98]],[[13573,7515],[106,-9],[33,8]],[[13773,7301],[-2,-28]],[[13971,6442],[8,-73],[-14,-36],[-60,-65],[-12,-55],[16,-71],[-28,-38],[-63,14],[-47,-81]],[[13928,6446],[43,-4]],[[13971,6442],[110,-42],[93,-51]],[[14174,6349],[0,-59],[41,-37],[39,-97],[73,-24],[62,-40]],[[14174,6349],[35,31],[27,55],[38,18],[49,-41],[186,27]],[[13806,7136],[46,-35]],[[13852,7101],[27,-42],[47,-25]],[[14513,7016],[-16,-97],[71,-16],[28,-53],[60,-17],[16,44],[-21,63],[31,27]],[[14682,6967],[35,-29]],[[14717,6938],[69,-97]],[[14786,6841],[-14,-84]],[[14211,6874],[108,-48],[33,0],[47,34],[49,156]],[[14448,7016],[30,35]],[[14478,7051],[35,-35]],[[4778,3212],[53,-23]],[[4831,2911],[-14,-17]],[[5210,3534],[71,-170],[27,-27]],[[5039,3146],[-84,147],[12,64],[57,33],[17,66]],[[5834,2491],[-19,-134]],[[5815,2357],[-24,-47]],[[5717,3753],[-6,-67],[84,-96],[51,-41],[85,-92]],[[5895,3040],[8,-73]],[[5903,2967],[22,-40],[-2,-108],[-61,-210]],[[3398,7522],[-31,22]],[[3367,7544],[47,50]],[[3414,7594],[-16,-72]],[[3390,7671],[45,-8],[-11,-48]],[[3424,7615],[-8,-7]],[[3416,7608],[-45,10]],[[3371,7618],[19,53]],[[3763,7769],[49,-3],[203,-62],[37,14],[33,-20],[79,-15],[37,7],[96,-26]],[[4297,7664],[18,-43],[-6,-47],[-27,-15]],[[4282,7559],[-103,-23],[-57,-40]],[[4122,7496],[-41,-22],[-49,0],[-43,29],[-69,8]],[[3920,7511],[-27,2],[-45,-47],[-20,38],[-41,19]],[[3787,7523],[21,72],[-21,49]],[[3787,7644],[-36,64],[12,61]],[[2947,8019],[94,-58],[102,-29],[94,-44]],[[3237,7888],[-23,-73],[35,-79],[-8,-86]],[[3241,7650],[-29,15],[-63,-49],[-30,17],[-51,-41]],[[3068,7592],[-15,-10]],[[3053,7582],[-34,44],[-49,-33]],[[2970,7593],[-4,117],[53,43],[-29,59],[25,85],[-10,30],[-58,26],[0,66]],[[3481,7475],[11,18]],[[3492,7493],[110,-30]],[[3602,7463],[6,-15]],[[3608,7448],[-49,8],[-45,-28]],[[3514,7428],[-33,47]],[[3104,7541],[29,30],[24,-29]],[[3157,7542],[2,-83],[15,-10]],[[3174,7449],[-8,-19]],[[3166,7430],[-60,-9]],[[3106,7421],[-4,49]],[[3102,7470],[15,30],[-13,41]],[[3245,7559],[35,-45]],[[3280,7514],[-13,-24]],[[3267,7490],[-49,10]],[[3218,7500],[5,46]],[[3223,7546],[22,13]],[[3267,7490],[15,-18]],[[3282,7472],[-57,-13],[-15,15]],[[3210,7474],[8,26]],[[3282,7472],[14,0]],[[3296,7472],[0,-46]],[[3296,7426],[-57,-31],[-73,35]],[[3174,7449],[36,25]],[[3241,7650],[8,-6]],[[3249,7644],[14,-35]],[[3263,7609],[-18,-50]],[[3223,7546],[-66,-4]],[[3104,7541],[-36,51]],[[3292,7574],[28,-34]],[[3320,7540],[2,-24]],[[3322,7516],[-18,-3]],[[3304,7513],[-12,61]],[[3424,7615],[45,-19]],[[3469,7596],[-28,-70],[-35,-19]],[[3406,7507],[-8,15]],[[3414,7594],[2,14]],[[3787,7644],[-83,3],[-78,-44],[-14,-50],[-63,-21]],[[3549,7532],[-53,34]],[[3496,7566],[-15,17]],[[3481,7583],[31,46],[-26,34],[16,54],[79,66],[51,-6],[37,19],[94,-27]],[[3051,7491],[51,-21]],[[3106,7421],[-24,-18],[-82,15],[2,48]],[[3002,7466],[23,-15],[26,40]],[[3361,7543],[6,1]],[[3406,7507],[-45,36]],[[3053,7582],[-2,-91]],[[3002,7466],[-32,19],[-23,-47],[-122,78]],[[2825,7516],[6,41]],[[2831,7557],[80,-10],[4,54],[55,-8]],[[2593,8248],[63,-66],[151,-90],[140,-73]],[[2831,7557],[-6,157],[-41,39],[-16,41],[20,46],[-42,3],[-19,37],[-106,5],[-22,-72],[-55,-3]],[[2544,7810],[4,16]],[[2548,7826],[47,174],[0,63],[18,90]],[[2613,8153],[14,25],[-57,50],[23,20]],[[3787,7523],[-32,14]],[[3755,7537],[0,-1]],[[3755,7537],[-66,13],[-18,-28],[-75,-23]],[[3596,7499],[-47,33]],[[3263,7609],[23,-28]],[[3286,7581],[6,-7]],[[3304,7513],[0,-22]],[[3304,7491],[-24,23]],[[3237,7888],[67,-38],[80,-26]],[[3384,7824],[-21,-42],[14,-97],[13,-14]],[[3371,7618],[-24,-90]],[[3347,7528],[2,-5]],[[3349,7523],[-16,-17]],[[3333,7506],[-11,10]],[[3320,7540],[7,50]],[[3327,7590],[2,37],[-49,53],[-31,-36]],[[3349,7523],[43,-62],[-65,-20]],[[3327,7441],[6,65]],[[3286,7581],[41,9]],[[3304,7491],[-8,-19]],[[3361,7543],[-14,-15]],[[3422,7478],[27,23],[32,-26]],[[3514,7428],[-45,-18]],[[3469,7410],[-47,68]],[[3614,7415],[35,4]],[[3649,7419],[0,-30]],[[3649,7389],[-59,-87]],[[3590,7302],[-35,19],[-27,47]],[[3528,7368],[72,12],[14,35]],[[3608,7448],[6,-33]],[[3528,7368],[-59,42]],[[3920,7511],[-8,-41],[-55,-47]],[[3857,7423],[-39,18],[-80,-52],[-40,-90],[-29,-27]],[[3669,7272],[-79,30]],[[3649,7389],[59,16],[-13,80]],[[3695,7485],[43,19],[17,32]],[[3695,7485],[-28,0],[-18,-66]],[[3602,7463],[-6,36]],[[3384,7824],[59,-12],[18,17],[71,-32],[-10,-42],[-71,-74],[35,-48],[-17,-37]],[[3857,7423],[-21,-84],[-67,-37],[-19,-42],[-44,-17]],[[3706,7243],[-37,29]],[[3492,7493],[4,73]],[[3422,7478],[43,50],[16,55]],[[2825,7516],[-77,25],[-92,9],[-39,21],[-102,-26]],[[2515,7545],[-67,132]],[[2448,7677],[35,92],[61,41]],[[3327,7441],[-31,-15]],[[1537,4423],[-45,-162]],[[1492,4261],[-20,-37],[-51,-5],[-82,-45],[-49,-1]],[[1290,4173],[-28,38]],[[1262,4211],[32,51],[-28,39],[22,32],[27,-36],[28,8],[31,81],[55,3],[-12,36]],[[1417,4425],[61,30],[59,-32]],[[1390,3736],[67,-21]],[[1457,3715],[-2,-66],[-24,-9]],[[1431,3640],[-41,96]],[[2207,3644],[-34,-74],[-2,-76],[-21,-78]],[[2150,3416],[-24,-66],[-224,0],[-45,-12]],[[1857,3338],[-35,64],[43,91],[-16,49]],[[1849,3542],[91,54],[47,9],[57,32],[7,39],[50,117]],[[2101,3793],[33,-16],[73,-133]],[[1782,5129],[36,-67],[19,-75],[14,-104],[-4,-56]],[[1847,4827],[-51,-18],[-70,-1],[-85,-34],[-51,-62],[16,-106],[80,-70],[36,-71]],[[1722,4465],[-61,-22],[-124,-20]],[[1417,4425],[2,58],[-17,9],[-53,-29],[-28,30]],[[1321,4493],[0,4]],[[1321,4497],[53,82],[-14,72],[0,99],[26,56],[-12,35],[-69,28],[-53,41]],[[2534,3181],[-23,43],[33,127]],[[2544,3351],[114,-9],[81,-78],[23,-56]],[[1728,3971],[-28,-67],[53,-55],[-41,-61],[-45,-19],[-2,-55]],[[1665,3714],[-45,-26],[-63,-1],[-8,18]],[[1549,3705],[6,73]],[[1555,3778],[21,24],[-55,46],[8,75]],[[1529,3923],[51,8],[71,31]],[[1651,3962],[61,24],[16,-15]],[[1665,3714],[47,-46],[23,-66]],[[1735,3602],[-39,-1],[-35,-31],[-57,-5]],[[1604,3565],[-32,45],[-49,38]],[[1523,3648],[26,57]],[[803,3429],[2,-1]],[[805,3428],[-2,1]],[[807,3649],[29,-106],[-2,-82],[-23,-35]],[[811,3426],[-6,2]],[[805,3428],[-2,1]],[[803,3429],[-20,-4]],[[783,3425],[-43,37],[-57,2],[-29,23],[-30,72],[6,83],[83,-60],[94,67]],[[1443,3811],[-41,0],[-53,-25],[-47,-4],[-55,84]],[[1247,3866],[133,10],[61,28]],[[1441,3904],[2,-93]],[[1321,4497],[0,-4]],[[1321,4493],[-92,-37],[-71,56],[2,116],[89,48],[-20,64],[-57,66],[-49,23]],[[1290,4173],[19,-32],[-23,-80],[-36,-19],[-53,4],[-27,-47]],[[1170,3999],[-53,30],[-24,39],[16,42],[-23,75],[108,47],[53,-39],[15,18]],[[1604,3565],[-30,11]],[[1574,3576],[-86,-8],[-57,38]],[[1431,3606],[47,4],[45,38]],[[1190,3668],[108,23]],[[1298,3691],[29,-67],[37,-7]],[[1364,3617],[-92,-85]],[[1272,3532],[-18,30],[-80,38],[16,68]],[[1883,4608],[-16,-17]],[[1867,4591],[-57,-60],[-49,-21],[-18,-37]],[[1743,4473],[-21,-8]],[[1847,4827],[32,-65],[4,-154]],[[1555,3778],[-16,7]],[[1539,3785],[-10,25],[-49,-24],[-37,25]],[[1441,3904],[43,35],[45,-16]],[[956,3801],[-124,-7]],[[832,3794],[-68,54],[-38,45],[-15,60],[-8,113],[15,30],[112,13],[87,-102],[6,-60],[57,-44],[17,-91],[-41,-11]],[[1996,3816],[105,-23]],[[1849,3542],[-67,50],[-47,10]],[[1728,3971],[109,-22],[106,-110],[53,-23]],[[2654,3609],[65,-24],[65,-3],[49,-18],[45,-66],[21,-97],[30,-67],[33,-38]],[[2544,3351],[-21,98],[-44,147],[12,32],[59,34]],[[2550,3662],[104,-53]],[[1431,3606],[-2,1]],[[1429,3607],[2,33]],[[1457,3715],[53,59],[29,11]],[[1574,3576],[-2,-140],[53,-76],[51,-108],[-1,-67]],[[1675,3185],[-63,-68]],[[1612,3117],[-75,-5],[-94,49],[-28,49],[-68,37],[-36,0]],[[1311,3247],[51,58],[10,41],[-33,74],[-65,80]],[[1274,3500],[-2,32]],[[1364,3617],[65,-10]],[[1247,3866],[-4,37],[-36,20],[-6,62],[-31,14]],[[1492,4261],[96,-41],[59,-214],[4,-44]],[[1298,3691],[92,45]],[[2373,3701],[49,18],[95,-1],[33,-56]],[[2326,3165],[-17,133],[-30,55],[-37,29],[-92,34]],[[2207,3644],[60,-21],[49,45]],[[2316,3668],[57,33]],[[1219,3205],[0,-1]],[[1219,3204],[0,1]],[[1311,3247],[-47,-17],[-29,-48],[-16,22]],[[1219,3205],[-8,77],[-27,87],[-30,20],[-37,70],[-43,-18]],[[1074,3441],[23,72],[47,23],[85,-33],[45,-3]],[[1675,3185],[66,-6],[65,-21]],[[1806,3158],[37,-69],[38,-7]],[[1639,2985],[8,74],[-35,58]],[[1806,3158],[24,53],[45,49],[-18,78]],[[819,3710],[0,1]],[[819,3711],[0,1]],[[819,3712],[0,-2]],[[819,3712],[0,-1]],[[819,3710],[0,2]],[[956,3801],[45,-174],[32,13],[11,100],[51,17],[30,-90],[33,-16],[32,17]],[[1074,3441],[-85,-16],[0,-49],[-31,-89],[-75,35],[-9,44],[-34,49],[-29,11]],[[807,3649],[63,111],[-38,34]],[[1056,3927],[32,-23],[-4,-87],[-32,10],[4,100]],[[11667,3971],[-22,-85],[0,-137],[16,-93],[-32,-134],[0,-165]],[[11629,3357],[-104,-16],[-80,3],[-36,19],[-31,83],[-57,92],[-45,56],[0,101],[-61,82]],[[11215,3777],[61,88],[20,98],[35,27]],[[11331,3990],[104,35],[106,19],[88,-36],[38,-37]],[[10903,2974],[122,-4],[37,-20],[90,-114],[53,-28]],[[11205,2808],[-53,-110],[6,-34],[38,-45],[-4,-39],[-40,-70],[-21,-111],[-57,-94],[8,-75]],[[11082,2230],[-42,4],[-72,-33],[-87,3]],[[10881,2204],[-51,32],[-33,195],[18,54],[37,45],[37,107]],[[12032,2627],[-106,42],[-96,-2]],[[11830,2667],[-32,5],[-59,43],[-35,84],[18,72]],[[11722,2871],[60,-30],[65,-3],[43,14],[48,-15],[92,-6],[31,-41],[53,-1]],[[11629,3340],[47,-30],[83,-5],[71,35],[45,-3],[35,-69]],[[11910,3268],[-71,-50],[-9,-100],[-20,-63],[-75,-64],[-64,-26],[-57,-46]],[[11614,2919],[-32,43],[0,74],[16,74],[-67,4]],[[11531,3114],[30,85],[49,55],[19,86]],[[11900,3997],[-25,-73],[-51,-40],[-24,-42],[12,-43],[29,8],[134,2],[131,-36],[177,-103]],[[12283,3670],[106,-70],[10,-126],[-32,-84]],[[12367,3390],[-47,-185]],[[12320,3205],[-119,33],[-44,1],[-139,34],[-108,-5]],[[11629,3340],[0,17]],[[11667,3971],[64,21],[169,5]],[[11084,3595],[41,33],[90,149]],[[11531,3114],[-72,-39],[-75,-17],[-77,34],[-39,38],[-43,11],[-67,-30],[-4,-71],[71,-133],[4,-56],[-24,-43]],[[11614,2919],[108,-48]],[[11830,2667],[-18,-121],[0,-69],[-35,-79],[-110,-155],[-79,-5]],[[11588,2238],[-55,17],[-39,72],[-59,40],[-143,-40],[-38,-72],[-35,-21]],[[11219,2234],[-41,48],[-96,-52]],[[12320,3205],[-62,-179],[-48,-105],[-35,-58]],[[11535,2183],[53,55]],[[11327,2096],[-80,78]],[[11247,2174],[-28,60]],[[7468,8236],[86,-177]],[[7554,8059],[-33,-65],[-63,-55],[-38,-83]],[[7420,7856],[-39,10],[-45,67],[-61,67],[0,78],[53,59],[0,61]],[[7432,8257],[36,-21]],[[7285,7498],[65,-67]],[[6777,7471],[-6,33]],[[6771,7504],[106,-17],[66,45],[38,4],[72,-43],[101,25],[70,-29],[61,9]],[[6885,7747],[41,-23],[35,16],[87,81],[66,-2],[18,-59],[39,-34],[47,-8],[69,-57]],[[7287,7661],[-2,-163]],[[6771,7504],[-6,81],[25,26],[75,120],[20,16]],[[7434,7740],[49,-23],[59,-62],[45,-68]],[[7287,7661],[24,19],[68,11],[55,49]],[[7420,7856],[14,-116]],[[6885,7747],[39,78]],[[6578,7485],[-2,58],[38,134],[55,44]],[[6669,7721],[35,33],[96,49],[47,-1]],[[8253,2574],[65,-171],[37,-148],[35,-59],[49,-41],[22,-62],[90,-24]],[[8551,2069],[114,-40],[71,-74]],[[8736,1955],[-34,-33]],[[8702,1922],[-90,-37],[-90,-4],[-59,-31],[-43,-49],[-69,-33]],[[8351,1768],[-88,-31],[-47,25],[-71,3]],[[8145,1765],[-49,115],[-8,54],[-61,39],[-73,132],[-17,86],[-30,80]],[[7907,2271],[18,82],[45,84],[35,42],[158,87],[90,8]],[[7167,1433],[55,-29],[22,-38],[55,-46],[61,-157],[-95,-38]],[[7265,1125],[-23,49],[-43,6],[-67,74],[-55,91],[-26,22]],[[7051,1367],[53,19],[63,47]],[[7250,1484],[159,-20],[61,-41]],[[7470,1423],[7,-39],[61,-134],[69,-78],[67,-28],[53,-39],[17,-38],[-17,-56]],[[7727,1011],[-22,-2],[-133,-72],[-104,-29]],[[7468,908],[-28,4],[-106,-32],[-175,21]],[[7028,1038],[31,23],[163,39],[43,25]],[[7167,1433],[65,46]],[[7232,1479],[18,5]],[[7407,2006],[47,-22],[37,-98],[-14,-62],[38,-55],[-63,-28],[21,-44],[-7,-29],[-83,-21],[-43,-28],[-26,-49]],[[7314,1570],[-129,43],[-63,8],[-59,61],[2,42],[63,83]],[[7128,1807],[39,79]],[[7167,1886],[20,39],[0,74],[84,37],[75,-32],[61,2]],[[8145,1765],[-94,-62]],[[8051,1703],[-126,-2],[-80,-36],[-207,-170],[-119,-59],[-49,-13]],[[7250,1484],[64,86]],[[7407,2006],[-40,82],[18,73]],[[7385,2161],[45,74],[47,19],[87,2],[61,92],[90,3]],[[7715,2351],[82,-97],[71,-16],[39,33]],[[6967,1340],[31,23],[53,4]],[[18251,7182],[0,73],[31,113],[69,38],[10,33]],[[18361,7439],[74,-76],[6,-128],[38,-47],[35,-109],[-8,-99]],[[18506,6980],[-43,22],[-16,63],[-45,67],[-16,57],[-135,-7]],[[18251,7182],[-34,-25],[-37,-74],[-47,-36],[-22,39],[-82,46]],[[18029,7132],[-16,106],[-84,116],[-47,33],[-18,49]],[[18035,7723],[96,27],[65,-33],[35,-71],[-23,-54],[23,-92],[130,-61]],[[18276,6285],[-25,60],[-85,76],[-41,79],[-33,33],[-122,53]],[[17970,6586],[12,38],[-10,95],[53,78],[37,21],[77,2],[49,22],[51,45],[55,-47],[100,-54]],[[18394,6786],[-88,-80],[65,-62],[13,-50],[-27,-89],[47,-88],[41,-25],[-17,-58]],[[17739,6569],[98,34],[61,0],[72,-17]],[[17515,5927],[25,71],[71,100],[-2,92],[-35,59],[-20,86],[18,87]],[[17572,6422],[106,115],[61,32]],[[18506,6980],[-14,-4],[-53,-122],[-45,-68]],[[17739,6569],[-16,17],[25,84],[-59,112],[-64,15],[-24,55],[0,118],[-22,77]],[[17579,7047],[71,-25],[87,62],[33,5],[116,-34],[51,45],[67,11],[25,21]],[[17275,6688],[67,-2],[92,-38],[73,-67],[10,-65],[-40,-89],[20,-35],[75,30]],[[7841,8738],[-46,-47],[8,-106],[-76,-59],[-85,-1]],[[7642,8525],[-31,85],[6,59],[88,70],[45,-8],[67,25]],[[7817,8756],[24,-18]],[[8084,7955],[65,-22],[27,-38],[4,-60],[65,-107],[69,-143]],[[8192,7518],[-35,70],[-100,69],[5,39],[34,30],[-28,95],[16,116]],[[8084,7937],[0,18]],[[8335,8864],[69,-180]],[[8404,8684],[-73,-56],[-92,61],[-169,96]],[[8070,8785],[12,29],[-14,82]],[[8068,8896],[40,-13],[227,-19]],[[8009,8556],[42,-1],[80,-50],[39,-46]],[[8170,8459],[-45,-107],[-47,-25]],[[8078,8327],[-51,-19],[-33,25]],[[7994,8333],[27,62],[-12,44],[0,117]],[[8453,8861],[94,11]],[[8547,8872],[34,-80]],[[8581,8792],[-73,-1],[-35,19],[-20,51]],[[7554,8059],[55,-34],[153,-49],[122,9],[98,-45],[102,-3]],[[7841,8738],[47,-26],[59,-3],[37,17]],[[7984,8726],[33,-74],[-37,-57],[29,-39]],[[7994,8333],[-38,-24],[-141,-34],[-84,-1]],[[7731,8274],[-2,81],[-144,170]],[[7585,8525],[57,0]],[[8335,8864],[118,-3]],[[8581,8792],[-2,-62],[41,-53],[-18,-77],[-47,-21]],[[8555,8579],[-25,12],[-99,2]],[[8431,8593],[36,49],[-63,42]],[[8547,8872],[89,-3],[129,-34]],[[8765,8835],[2,-129],[37,-80],[4,-86]],[[8808,8540],[-113,-1],[-63,-28]],[[8632,8511],[-42,17],[-35,51]],[[7809,8906],[-12,-91],[20,-59]],[[7585,8525],[-94,-2],[-51,-18],[-78,-60],[-85,0]],[[7181,8661],[35,19],[108,12],[146,45],[66,58],[142,39],[47,36],[84,36]],[[8078,8327],[37,-54]],[[8115,8273],[-13,-123],[13,-110],[-31,-85]],[[7468,8236],[188,38],[75,0]],[[8632,8511],[-28,-103],[-45,-67],[-112,-95]],[[8447,8246],[-86,-34],[-61,36]],[[8300,8248],[-12,70],[10,71],[-33,64]],[[8265,8453],[57,39],[23,78],[86,23]],[[7809,8906],[26,16],[127,-6],[106,-20]],[[8070,8785],[-61,-29],[-25,-30]],[[8881,8526],[67,-16],[82,-4],[73,-38],[43,-46]],[[9146,8422],[0,-32],[-37,-83],[-100,-69]],[[9009,8238],[-63,10],[-57,89],[-39,87],[-42,42],[0,58]],[[8808,8524],[73,2]],[[8265,8453],[-95,6]],[[8115,8273],[83,-7],[63,-35],[39,17]],[[8447,8246],[26,-73],[41,-56],[-28,-67],[106,-114],[53,-31],[69,-9],[16,-39],[-18,-113]],[[8712,7744],[-4,-74],[-94,-33],[-106,-9],[-57,-92],[-65,-12]],[[9009,8238],[-2,-143],[15,-56],[-2,-142]],[[8830,7700],[-77,11],[-41,33]],[[8808,8540],[0,-16]],[[9861,4280],[4,-37]],[[9865,4243],[7,-63],[46,-29],[9,-47],[71,-76],[10,-38]],[[10008,3990],[-96,-88],[-42,-21]],[[9870,3881],[-241,141]],[[9629,4022],[4,160],[-30,60],[-51,10],[-43,37]],[[9509,4289],[32,22],[74,8],[34,25],[51,6],[55,28],[106,-98]],[[10964,4800],[-18,-63],[-94,-187],[-31,-98],[-51,-35],[-73,-8]],[[10697,4409],[-51,56],[0,78],[-26,58]],[[10620,4601],[24,18],[53,149]],[[10697,4768],[177,-3],[90,35]],[[10308,4649],[79,-47],[151,-7],[41,-14],[41,20]],[[10697,4409],[-20,-62],[16,-76],[-22,-121],[-68,-83],[-40,-15]],[[10563,4052],[-37,11],[-94,-17],[-59,20]],[[10373,4066],[-22,95],[-39,61]],[[10312,4222],[0,77],[28,61],[-4,40],[-69,130],[4,78],[37,41]],[[10041,3998],[81,1],[31,16]],[[10153,4015],[4,-52],[47,-56],[49,-37],[20,-40],[21,-101],[79,-67],[73,-2],[84,15],[151,-71]],[[10253,3225],[-19,31],[7,120],[-37,31],[-6,130],[-45,36],[-73,22],[-127,70],[-47,59],[-57,25]],[[9849,3749],[0,95],[21,37]],[[10008,3990],[33,8]],[[10194,4867],[-21,-46],[43,-80],[0,-49]],[[10216,4692],[-120,-104],[-96,-53],[-75,0],[-45,32],[-25,52]],[[9855,4619],[188,97],[14,15],[-26,101],[55,17]],[[10086,4849],[34,22]],[[10120,4871],[74,-4]],[[9865,4243],[43,0],[80,-35],[65,-71],[10,-63]],[[10063,4074],[-22,-76]],[[10216,4692],[33,-23],[59,-3]],[[10308,4666],[0,-17]],[[10312,4222],[-43,24],[-63,-1],[-71,-52]],[[10135,4193],[-43,50],[-80,36],[-151,1]],[[9509,4289],[0,58],[49,251],[38,36]],[[9596,4634],[55,-2],[121,-46],[83,33]],[[10135,4193],[0,-46],[-35,-58],[-37,-15]],[[10463,4977],[-21,-48],[-49,-40],[-81,-141],[-4,-82]],[[10194,4867],[87,21],[108,122]],[[10389,5010],[74,-33]],[[11439,4794],[41,-17],[43,-50],[24,-53],[-8,-43]],[[11539,4631],[-43,-119],[-37,-131],[-59,-169]],[[11400,4212],[-102,0],[-128,-36],[-102,-91],[-57,-85],[-77,-6],[-49,-29]],[[10885,3965],[-70,26],[-53,-11],[-44,12],[-119,-6],[-36,66]],[[10964,4800],[98,-31],[128,61],[64,2]],[[11254,4832],[122,-1],[63,-37]],[[10463,4977],[77,-128],[53,-57],[39,-23],[65,-1]],[[10848,3784],[-2,58],[39,123]],[[11400,4212],[-44,-102],[-25,-120]],[[10373,4066],[-47,-33],[-173,-18]],[[9823,3484],[81,73],[-14,86],[-45,56],[4,50]],[[9829,3080],[43,92],[4,201],[-53,111]],[[9823,3484],[-33,24],[-116,7],[-69,57],[-51,167],[-76,22]],[[9478,3761],[-14,36],[0,80],[28,47],[76,25],[61,73]],[[11945,1202],[34,110],[15,100]],[[12126,1202],[-37,-25],[-144,25]],[[11945,1202],[-68,14],[-71,-15],[-73,10],[-23,-49],[-73,44],[26,79],[-6,21],[-110,78],[-43,-6],[-120,42]],[[11406,1486],[51,-57],[94,-13],[67,17]],[[11618,1433],[15,-36],[55,-32],[110,-3],[94,57],[22,52]],[[11794,1673],[-68,-153],[-61,-66],[-47,-21]],[[7837,5436],[114,41]],[[7951,5477],[-24,-128],[27,-36]],[[7954,5313],[4,-31]],[[7958,5282],[-35,-48],[-86,-28],[-49,-1]],[[8143,5959],[116,59],[161,125]],[[8420,6143],[15,-52],[0,-169],[-72,-128],[-4,-53]],[[8359,5741],[-73,-77],[-90,-52]],[[8196,5612],[-35,58],[-122,55]],[[8039,5725],[-18,58]],[[7956,5205],[63,-47],[89,-30]],[[8108,5128],[-59,-182]],[[7888,5036],[21,40],[24,100],[23,29]],[[8420,6143],[64,116],[55,67],[10,39]],[[8589,5882],[15,-68],[-2,-71]],[[8602,5743],[-66,-53]],[[8536,5690],[-10,26],[-108,-9],[-59,34]],[[7958,5282],[-2,-77]],[[8536,5690],[-95,-95],[-37,-122]],[[8404,5473],[-35,-119],[-40,-34],[-43,-101]],[[8286,5219],[-92,-7],[-86,-84]],[[7954,5313],[53,81],[122,133],[57,47],[10,38]],[[7951,5477],[37,94],[0,81],[51,73]],[[1366,8347],[75,14],[45,-26],[104,-5],[67,-21],[31,-30]],[[1688,8279],[-90,-168],[-2,-150]],[[1596,7961],[-122,-4],[-39,-14]],[[1435,7943],[-49,80],[-104,113]],[[2483,8448],[-55,19],[-114,61],[-182,3],[-49,24]],[[2083,8555],[-104,57]],[[1979,8612],[-69,114],[10,40]],[[1920,8766],[27,34],[128,49],[86,-15],[40,-19],[4,64],[37,14],[65,-26],[110,6],[13,-23],[6,-85],[-70,-61],[15,-91],[51,-68],[-2,-33],[53,-64]],[[1710,9008],[-28,-80],[-37,-46],[-33,-105],[-49,-11],[-118,45],[-63,9],[-33,22]],[[1337,8908],[10,39],[33,19],[14,50],[53,19],[70,-32],[44,2],[39,40],[43,7],[67,-44]],[[1688,8279],[16,0]],[[1704,8279],[69,-17],[98,-3],[74,-31],[30,-44],[10,-57],[78,-33]],[[2063,8094],[-25,-99],[-51,-106]],[[1987,7889],[-57,-92],[-49,-22],[-69,45]],[[1812,7820],[-55,81],[-77,42],[-84,18]],[[1710,9008],[41,-38],[18,-51],[47,-63],[67,-24],[37,-66]],[[1979,8612],[-36,-38],[-115,-63],[-91,-132],[-33,-100]],[[2083,8555],[-26,-161],[0,-63],[-27,-53],[25,-75],[0,-84]],[[2055,8119],[8,-25]],[[1435,7943],[-149,-10],[-26,20]],[[2483,8448],[8,-86],[51,-67]],[[2542,8295],[-176,-53],[-106,-59],[-112,7],[-93,-71]],[[8602,5743],[34,-7],[137,-96]],[[8773,5640],[-16,-37],[0,-150],[-35,-83],[-27,-32]],[[8695,5338],[-14,-16]],[[8681,5322],[-124,-15],[-23,27],[17,78],[-147,61]],[[8681,5322],[0,-137],[-24,-71],[-68,-85]],[[8589,5029],[-44,29],[-35,60],[-80,27],[-34,52],[-49,25],[-61,-3]],[[8918,5288],[65,-18],[33,-44],[73,-22],[98,0]],[[9187,5204],[-31,-85],[0,-69]],[[9156,5050],[-124,-18],[-57,-30],[-116,-122],[-27,-54]],[[8832,4826],[-45,90],[4,72],[72,175],[8,63],[47,62]],[[9115,5346],[53,-52],[37,-14]],[[9205,5280],[-18,-76]],[[8918,5288],[-137,1],[-86,49]],[[8773,5640],[75,16],[78,-3],[43,-18],[44,-88],[74,-65],[-19,-93],[47,-43]],[[8589,5029],[-20,-75],[-55,-83],[-37,-85],[-67,-59],[-63,-23]],[[8832,4826],[2,-83],[29,-94],[0,-51],[-27,-117],[45,-66]],[[8881,4415],[-33,-50],[-14,-62],[-33,-22]],[[9215,4864],[-34,-19],[-11,-37],[17,-77],[-10,-21],[-64,-27],[8,-68],[-52,-43],[-51,-111],[-2,-46]],[[9016,4415],[-60,-12],[-75,12]],[[9156,5050],[55,-14],[59,58],[21,-43],[-55,-80],[10,-59],[-31,-48]],[[4248,7435],[63,-58],[45,20],[22,-85],[-43,-31],[-48,43],[-39,1]],[[4248,7325],[-10,48],[10,62]],[[4122,7496],[-3,-89],[43,-40],[-16,-65],[-106,-59],[-84,-34],[72,-70]],[[4028,7139],[-86,-16],[-12,17],[-157,-29],[-6,68],[-33,9],[-28,55]],[[4117,7035],[153,27]],[[4270,7062],[43,-61],[12,-66],[-26,-67]],[[4136,6879],[-17,75],[-2,81]],[[4814,7717],[1,0]],[[4815,7717],[0,-69],[-62,-70],[-20,-102],[53,-79],[22,-10]],[[4808,7387],[15,-116],[-37,-37]],[[4786,7234],[-80,97],[-36,4],[-84,-49],[-34,11],[-37,71],[-118,39],[-74,50],[-20,41]],[[4303,7498],[-21,61]],[[4297,7664],[181,-8],[108,2],[43,16],[63,52],[14,32],[90,-22],[18,-19]],[[3865,7016],[61,48],[55,-56],[136,27]],[[3854,6826],[0,163],[11,26]],[[3865,7015],[0,1]],[[4303,7498],[-55,-63]],[[4248,7325],[0,-87],[-55,-142]],[[4193,7096],[-49,40],[-116,3]],[[4786,7234],[-47,-23],[4,-93],[-20,-49]],[[4723,7069],[-39,-134]],[[4684,6935],[-75,-17],[-137,-61],[-112,-6]],[[4270,7062],[82,-14],[24,15],[0,44],[-63,6],[-49,-19],[-71,2]],[[6600,2181],[16,41]],[[6616,2222],[45,-19],[39,-66]],[[6700,2137],[-25,-95],[-57,-73],[-8,-44],[-55,-31]],[[6406,2031],[45,77]],[[6451,2108],[31,-52],[98,-3],[20,26],[0,102]],[[5913,3891],[16,-41],[145,-148],[55,-36],[65,-3],[39,-37]],[[6233,3626],[-71,-96]],[[6162,3530],[-76,-42],[-40,-56],[-45,-38]],[[6616,2423],[45,4],[2,-31],[45,-38],[23,2],[32,56],[94,-6],[45,13],[91,-5]],[[6993,2418],[49,-33],[41,-73],[-10,-36],[-139,-3],[-28,-18],[2,-95],[18,-38]],[[6926,2122],[-110,15],[-116,0]],[[6616,2222],[15,65],[-15,67],[0,69]],[[7110,3752],[120,-2],[65,28],[35,-5],[214,-125],[98,-2],[95,16],[80,-23]],[[7754,3495],[-57,-2],[-41,-22],[-37,-78],[-4,-59],[-71,-49]],[[7544,3285],[-69,-19],[-72,57],[-47,9],[-96,50],[-46,65],[-60,45],[-75,4]],[[7079,3496],[-14,34],[0,115],[45,107]],[[6258,3099],[45,10],[44,-17]],[[6347,3092],[62,-92],[59,-5]],[[6468,2995],[26,-90],[-2,-132],[-29,-82]],[[6463,2691],[-38,-89],[-76,-51],[-61,-76],[-102,-4],[-32,-16],[-68,-70]],[[6086,2385],[-16,-35],[-53,-28],[-104,35],[-98,0]],[[5903,2967],[126,-103],[66,-32],[83,54],[43,45],[41,113],[-4,55]],[[6926,2122],[-20,-82],[8,-34],[114,-6],[67,-52]],[[7095,1948],[15,-28],[57,-34]],[[7128,1807],[-100,-35],[-151,14],[-53,-25],[-47,-73],[-48,2]],[[6649,4637],[0,-105],[-31,-44],[-101,-3],[-62,17],[-67,-3],[-118,-57],[-120,-30]],[[7205,4627],[56,-54],[55,-14],[69,56],[32,1],[45,-33],[2,-114],[45,-56],[16,-43],[0,-94],[15,-20],[51,42],[75,15],[131,6],[81,36]],[[7110,3752],[-31,89],[0,93],[16,88],[-22,26],[-47,2],[-65,64],[-4,26]],[[6957,4140],[10,72],[33,39],[30,84],[-12,44],[-55,50],[-37,70],[2,96]],[[7621,2650],[39,-70],[2,-103],[53,-126]],[[7385,2161],[-76,56],[-51,0],[-40,-24],[-72,-81],[-40,-88],[-11,-76]],[[6993,2418],[-24,48],[0,94],[43,54]],[[7012,2614],[37,-60],[36,-30],[35,67],[-10,87],[42,58],[41,21],[49,-1],[49,-30],[51,-57],[102,-58],[82,-4],[95,43]],[[6627,3283],[40,-36],[55,-25]],[[6722,3222],[-22,-87],[-53,-75]],[[6647,3060],[-47,-46],[-75,-20],[-57,1]],[[6347,3092],[66,35],[48,1],[117,36],[49,119]],[[6086,2385],[49,-30],[4,-122],[21,-60]],[[6162,3530],[39,-85],[2,-58],[67,-34],[8,-20],[-35,-124],[-38,-46],[-19,-69]],[[6186,3094],[-34,6],[-108,76],[-37,17]],[[8661,3159],[77,-60]],[[8738,3099],[23,-44]],[[8761,3055],[-127,-59],[-53,-74],[-36,-15],[-74,2],[-26,-17],[-4,-53],[-57,-92]],[[8384,2747],[-60,59],[-110,55],[-28,31],[-82,169]],[[8761,3055],[45,-39],[61,-84],[100,-164],[32,-78],[-2,-59]],[[8997,2631],[-55,-125],[-22,-104],[6,-50]],[[8926,2352],[-82,-46],[-91,17],[-37,61],[-41,-44],[-22,-93],[-51,-59],[-51,-119]],[[8253,2574],[90,56],[41,77],[0,40]],[[7232,1479],[-22,68],[-53,21],[-204,-4],[-63,-33],[-33,-61]],[[8926,2352],[45,-18],[49,-56],[34,-76]],[[9054,2202],[6,-24]],[[9060,2178],[-30,-38],[-157,-93],[-14,-29]],[[8859,2018],[-33,-5],[-90,-58]],[[6186,3094],[11,-12],[61,17]],[[6362,3829],[126,-12],[53,83],[45,-2]],[[6586,3898],[0,-97],[43,-105],[4,-101],[-43,-130],[-4,-73],[41,-109]],[[6233,3626],[86,49],[6,59],[37,95]],[[6586,3898],[53,115],[104,-19],[120,-75]],[[6863,3919],[69,-62],[-8,-39],[-87,-132],[-5,-130],[-44,-112],[0,-64],[36,-98]],[[6824,3282],[-28,-26],[-74,-34]],[[7621,2650],[12,39],[51,60],[27,77],[173,124],[90,96]],[[7012,2614],[18,101],[-30,160]],[[7000,2875],[132,60],[55,90],[57,63],[65,22],[90,2],[71,55],[47,13],[27,105]],[[6647,3060],[53,-41],[31,-86],[48,-24],[170,1],[51,-35]],[[6616,2423],[-32,64],[0,61],[-17,75],[-32,39],[-72,29]],[[6863,3919],[45,47],[18,49],[-55,70],[-6,47],[23,33],[69,-25]],[[7079,3496],[-12,-80],[-53,-52],[-55,-21],[-45,-41],[-90,-20]],[[6600,2181],[-33,-23],[-75,-6],[-41,-44]],[[6156,4049],[45,15],[91,-83],[35,-115],[35,-37]],[[3590,4699],[67,-69],[6,-107],[-65,-117],[-88,-69],[-33,-78],[-26,-10]],[[3451,4249],[-4,116]],[[3447,4365],[30,8],[57,55],[0,150],[29,52]],[[3563,4630],[27,69]],[[4458,4860],[85,-7],[64,-50],[30,-63],[67,-46]],[[4611,4439],[-114,-5],[-55,-36],[-17,55],[-59,2],[-35,-16],[-36,-69]],[[4295,4370],[-43,4],[-86,41]],[[4166,4415],[-28,99]],[[4138,4514],[83,88],[47,25],[45,45],[33,69],[42,44],[47,24],[23,51]],[[4091,5108],[47,40]],[[4138,5148],[83,-74],[27,-47],[151,-130],[59,-37]],[[4138,4514],[-12,49],[-70,166]],[[4056,4729],[70,66],[-21,112]],[[4105,4907],[-39,85],[5,68],[20,48]],[[4056,4729],[-73,-5],[-47,25],[-45,70]],[[3891,4819],[51,50],[65,35],[98,3]],[[4154,5646],[-69,-34],[-127,-1],[-34,8],[-51,69],[-106,42]],[[4329,4161],[-6,129],[-28,80]],[[3498,5226],[59,62],[67,0],[29,-24],[98,-22],[50,-78],[66,-52],[81,-21],[57,4],[35,28],[51,-15]],[[3891,4819],[-104,-18],[-65,-36]],[[3722,4765],[51,131],[-22,46],[-84,3],[-63,26],[-167,4]],[[3437,4975],[0,78],[55,134],[6,39]],[[4166,4415],[-69,6],[-73,-19],[-102,-63],[-43,-11]],[[3879,4328],[-100,-51],[-47,-9],[-53,-33],[-30,-41],[-143,9],[-57,-16]],[[3449,4187],[2,62]],[[3590,4699],[32,41]],[[3622,4740],[47,1],[53,24]],[[3622,4740],[-41,32],[-67,5],[-55,38],[-24,64],[2,96]],[[4138,5148],[34,29],[-16,64],[-37,80],[-2,58],[57,86],[25,60],[-8,48],[39,40]],[[3420,4445],[19,62],[57,82],[67,41]],[[3447,4365],[-23,31]],[[3424,4396],[-4,49]],[[3351,5328],[59,-42],[21,-36],[67,-24]],[[3420,4445],[-20,79],[-59,114],[-45,49],[-102,22],[-81,34],[-47,72]],[[12617,3858],[186,0],[43,-10]],[[12846,3848],[-11,-51],[-59,-65],[-22,-41]],[[12754,3691],[-27,-45],[-6,-80],[-32,-88],[-41,-38],[-25,-55]],[[12623,3385],[-75,22],[-181,-17]],[[12283,3670],[28,56],[33,25],[23,57]],[[12367,3808],[50,6],[113,43],[87,1]],[[13161,4212],[-87,135],[-37,41],[4,103],[-65,7],[-8,17],[2,142],[-18,37],[-76,29]],[[12876,4723],[61,53],[55,5]],[[12984,3983],[-26,22],[-53,85],[-94,-13],[-33,15]],[[12778,4092],[51,107],[-30,216],[-25,62],[-24,121],[-66,82]],[[12684,4680],[109,0],[83,43]],[[12960,3810],[108,13]],[[13329,3732],[-7,-25]],[[13322,3707],[-179,-32],[-126,-3],[-31,10],[-61,103],[35,25]],[[12193,4257],[61,-22],[62,-42],[63,1],[67,-43]],[[12446,4151],[-67,-79],[-37,-77],[-4,-93],[29,-94]],[[11900,3997],[45,22],[71,72],[86,64],[42,61],[49,41]],[[12623,3385],[47,-62],[82,-1],[14,-55]],[[13767,3405],[-116,32],[-72,2],[-40,20],[2,36],[79,89]],[[12778,4092],[-65,-25],[-39,-73],[-53,-45],[-4,-91]],[[12446,4151],[14,89],[-59,127],[12,67],[-67,148]],[[12346,4582],[69,1],[151,81]],[[12566,4664],[118,16]],[[13518,3665],[-59,-121],[-37,-18]],[[13422,3526],[-100,107],[0,74]],[[12193,4257],[21,95],[-41,109],[4,90]],[[12177,4551],[35,45],[55,-16],[79,2]],[[12846,3848],[114,-38]],[[13422,3526],[-10,-26],[-73,-73],[-61,-1]],[[13037,3426],[-49,24],[-157,172],[-77,69]],[[2207,4047],[64,47]],[[2271,4094],[24,-36],[69,-33]],[[2364,4025],[-2,-54],[27,-48],[-4,-56],[-27,-70],[0,-65],[15,-31]],[[2316,3668],[-76,129],[-6,92],[-29,78],[2,80]],[[2560,4640],[-18,-80],[0,-132],[-61,-90],[-15,-39],[0,-82]],[[2466,4217],[-116,36],[-87,-10]],[[2263,4243],[-84,14],[-29,17],[-55,114],[-42,30],[-80,6],[-85,35],[-21,83],[0,49]],[[1883,4608],[60,-14],[67,72]],[[2010,4666],[43,-39],[71,-1],[83,61],[51,20],[-4,63],[55,27],[43,115]],[[2880,3929],[16,-36],[0,-77],[13,-27],[71,-22],[80,-44],[42,26],[17,-22],[114,-60]],[[3233,3667],[0,-16]],[[3233,3651],[-80,-89],[-41,-16],[-44,-66],[44,-80],[-59,-38],[-10,-62]],[[2654,3609],[59,159],[82,51],[85,110]],[[3424,4396],[-91,26],[-100,-23],[-41,-56],[-94,-42],[-32,-56],[14,-82],[-14,-59]],[[3066,4104],[-78,30],[-53,4],[-45,-18]],[[2890,4120],[-63,0]],[[2827,4120],[23,43],[10,64],[-65,92],[18,37]],[[2813,4356],[22,63],[4,69],[55,137],[-12,116],[21,40]],[[2466,4217],[43,-26]],[[2509,4191],[-10,-65],[-51,-40],[-29,-51],[-55,-10]],[[2271,4094],[-33,44],[27,67],[-2,38]],[[2813,4356],[-118,-23],[-49,-49],[-12,-62]],[[2634,4222],[-13,-18],[-112,-13]],[[2010,4666],[-6,90],[30,47],[100,24],[25,76],[-29,131],[14,43]],[[2827,4120],[-8,-44],[-77,-49],[-33,28],[-29,94],[-46,73]],[[3066,4104],[32,-14],[98,-5],[92,-28]],[[3288,4057],[-29,-82],[-10,-130],[18,-125],[-34,-53]],[[2880,3929],[-30,100],[40,91]],[[1743,4473],[30,-45],[53,-43],[35,-79],[-24,-55],[10,-27],[116,-76],[43,-92],[51,-32]],[[2057,4024],[0,-63],[-47,-56],[-14,-89]],[[3233,3651],[98,-130]],[[2207,4047],[-79,3],[-71,-26]],[[3449,4187],[-59,-55]],[[3390,4132],[-102,-75]],[[16610,2748],[68,-125],[-21,-69],[16,-98]],[[16673,2456],[-46,-38],[-74,-8],[-94,-37]],[[16459,2373],[-75,83],[-43,9],[-53,66]],[[16594,2765],[16,-17]],[[14888,2515],[-59,-90],[32,-73],[27,-19],[86,-4],[32,-29],[27,-67],[116,-63]],[[15149,2170],[12,-90],[-41,-83],[-77,-64],[-41,-20],[-137,-18],[-67,-19]],[[14798,1876],[-53,138],[-130,281],[-35,128],[-24,38]],[[14556,2461],[-2,39]],[[15149,2170],[81,41],[59,1]],[[15289,2212],[98,2],[41,-19],[84,-144],[24,-106],[31,-62],[22,-5]],[[15589,1878],[-41,-26],[-71,20],[-77,-33],[-33,-28],[-145,-79],[-73,-12],[-94,-68],[-118,-74]],[[14937,1578],[-70,38],[-57,125],[0,90],[-12,45]],[[15204,2635],[122,-112],[39,-109]],[[15365,2414],[-43,-50],[-41,-1],[-40,-58],[38,-50],[10,-43]],[[15365,2414],[145,0],[85,-17]],[[15595,2397],[16,-67]],[[15611,2330],[-63,-44],[25,-57],[94,23]],[[15667,2252],[22,-72],[29,-33],[91,-35]],[[15809,2112],[55,-92],[53,-58],[41,-80],[18,-71]],[[15976,1811],[-32,-19],[-70,39],[-57,5],[-197,46],[-31,-4]],[[16459,2373],[-4,-159],[6,-49]],[[16461,2165],[-97,12],[-49,-29],[-147,-5],[-84,-27],[-38,24],[-31,48]],[[16015,2188],[-90,141],[-71,39],[-39,71]],[[15815,2439],[78,62]],[[16461,2165],[17,-45],[100,13],[32,-150],[-20,-84]],[[16590,1899],[-114,-32],[-135,-17],[-69,-29],[-59,-8],[-237,-2]],[[15809,2112],[21,105],[57,-17],[93,12],[35,-24]],[[15667,2252],[-5,40],[-51,38]],[[15595,2397],[31,-17],[39,16],[79,3],[71,40]],[[7468,908],[86,-56]],[[7554,852],[-29,-37],[-8,-118],[-55,-97],[-51,-56],[4,-99],[29,-53]],[[7444,392],[-71,-31],[-62,-65],[-148,28],[-98,78]],[[7642,661],[67,32],[83,0],[157,-89],[27,-58],[-12,-66]],[[7964,480],[-41,-25],[-49,6],[-139,-17]],[[7735,444],[-4,69],[-45,113],[-44,35]],[[7554,852],[57,-45],[2,-107],[29,-39]],[[7735,444],[-89,10],[-43,-72],[-153,24],[-6,-14]],[[9060,2178],[17,-41],[51,-60],[61,-100],[153,-93],[24,-55],[-37,-73],[19,-70],[-27,3],[-20,39],[-35,21],[-53,-12],[-39,53],[-53,6]],[[9121,1796],[-4,66],[-144,5],[-31,10],[-47,55],[-36,86]],[[8702,1922],[2,-42],[-29,-80],[0,-125],[39,-85],[173,-127],[51,-114],[43,-48],[-4,-77]],[[8977,1224],[-74,-50],[-104,-92],[-26,-54],[-53,-55],[-20,-42]],[[8700,931],[-66,34],[-6,97],[-18,50],[-37,46],[-55,105],[-71,100],[-23,54],[-55,66],[-18,51],[0,234]],[[8100,887],[-12,-91],[22,-49],[70,-38],[16,-39],[-53,-85],[-28,-73]],[[8115,512],[-29,-70],[-94,46],[-28,-8]],[[7727,1011],[35,-13],[92,-4],[89,-33],[57,-52],[100,-22]],[[9121,1796],[3,-42],[48,-43],[31,-94],[84,-53],[85,-161]],[[9372,1403],[-57,21],[-116,-7],[-31,-29],[-63,-23],[-20,-43],[-69,-43],[-39,-55]],[[8051,1703],[51,-105],[21,-97],[36,-61],[72,-157],[55,-87],[-15,-64],[-59,-148],[-42,-64],[-70,-33]],[[8700,931],[-45,-28],[-43,-58],[2,-109],[-37,-53],[-45,16],[-36,-105],[-15,7],[-12,74],[-36,35],[-35,4],[-67,-116],[-57,-43],[-60,-64],[-30,-4],[-10,50],[-59,-25]],[[9470,1302],[-28,44],[-70,57]],[[9054,2202],[100,5],[92,59],[89,3]],[[1936,1892],[-4,0]],[[1932,1892],[4,0]],[[1759,1900],[51,-21],[41,-62],[63,67],[41,7]],[[1955,1891],[89,29],[19,-11],[4,-53],[39,-39],[30,-60],[-24,-58]],[[2112,1699],[-86,-5],[0,-26],[-61,24],[-78,-14],[-48,17],[-23,47],[-61,-4],[-55,-23],[-8,-49],[-57,-19],[-15,99],[-20,9],[8,60],[57,37],[-38,35]],[[1627,1887],[44,-20],[31,49],[57,-16]],[[3316,1196],[-2,0]],[[3314,1196],[2,0]],[[3341,1259],[0,2]],[[3341,1261],[0,-2]],[[3341,1261],[0,-2]],[[3341,1259],[0,2]],[[3345,1279],[0,-1]],[[3345,1278],[0,1]],[[3345,1278],[0,1]],[[3608,1536],[-57,-3],[-120,-49],[-64,-65],[-32,-78]],[[3335,1341],[6,-25],[-67,-54],[14,-70],[26,4]],[[3316,1196],[-55,-83],[-24,17],[10,33],[-49,84],[-28,14]],[[3170,1261],[30,112],[0,101]],[[3200,1474],[171,132],[35,40],[39,81],[-12,49],[46,73]],[[2450,1433],[47,-19]],[[2497,1414],[-27,-39],[-116,-33]],[[2354,1342],[-41,-14],[-53,20],[-38,-17],[-21,26],[-99,-4],[-33,-47],[-16,-97],[-60,31],[-103,-6],[-21,-28],[-57,7],[-67,34],[0,27],[51,12],[6,51],[37,19],[36,-17],[82,26],[34,-6],[15,53],[57,-2],[12,-20],[82,4],[42,35],[106,-22],[66,3],[51,-13],[28,36]],[[3681,692],[-36,39],[-19,-7],[-73,54],[-35,64],[31,32],[-31,70],[23,98],[-76,17],[-28,36],[16,57],[39,3],[16,81],[-41,4],[-132,101]],[[2917,2412],[-23,-49],[-4,-72],[-30,-64],[-43,-35]],[[2817,2192],[-90,69],[-36,69],[-41,31],[-70,89]],[[3200,1474],[-45,0],[-79,47],[-23,-9],[-36,-59],[-2,-41]],[[3015,1412],[-27,23],[-57,-12],[-71,5],[-15,77],[-67,-25]],[[2778,1480],[-8,82],[23,47]],[[2793,1609],[22,47],[77,53],[92,165],[49,33],[88,8]],[[3121,1915],[49,22],[126,8],[43,51]],[[2550,1620],[0,-1]],[[2550,1619],[0,1]],[[2664,1722],[39,-59],[90,-54]],[[2778,1480],[47,-15],[-20,-72],[-25,0],[-71,44],[-43,49],[-39,-70],[23,-20],[26,-79],[-30,-10],[-33,-54],[-61,-16],[-45,-115],[-30,-24],[-21,17],[-30,-45],[-59,5],[-15,58],[70,-7],[38,16],[27,47],[-29,40],[-106,2],[19,29],[48,14],[94,91],[8,44],[-24,5]],[[2450,1433],[-43,18],[-4,36],[35,18],[-10,75],[45,34],[77,5]],[[2550,1620],[49,9],[8,63],[57,30]],[[3121,1915],[-19,39],[-100,0],[-46,-25],[-108,-22],[-64,0],[-34,-20],[-35,-58],[4,-57]],[[2719,1772],[-130,-16],[-25,-14],[-73,6],[-21,-18],[-89,9]],[[2381,1739],[6,46],[71,121],[4,50]],[[2462,1956],[78,83],[91,39],[37,36],[149,78]],[[2322,2360],[2,-57],[-29,-87],[0,-34],[31,-88],[51,-36],[85,-102]],[[2381,1739],[-51,-16],[-14,19],[-109,-26],[-67,-31],[-28,14]],[[1955,1891],[-19,1]],[[1932,1892],[-8,73],[67,104],[0,30],[-146,-12],[30,66],[-22,17],[-33,-35],[-34,3],[-27,32],[0,38],[47,71],[-16,19]],[[3170,1261],[-55,14],[-33,-19],[-12,34],[-49,-19],[-6,46],[20,58],[-20,37]],[[2664,1722],[63,19],[-8,31]],[[16928,5010],[143,-78],[31,-40],[34,-75],[2,-53],[61,-73],[64,-54],[26,-50],[-24,-95]],[[16867,4392],[-114,61],[-80,30]],[[16673,4483],[-4,98],[-26,62]],[[16643,4643],[33,17],[-29,82],[-88,70]],[[16480,4218],[116,-27],[92,-1],[98,-24]],[[16437,4006],[-24,38],[16,73],[51,101]],[[16480,4218],[49,23],[-12,81],[-43,65],[10,32],[45,-6],[-2,-37],[73,-45],[57,78],[16,74]],[[15982,4621],[151,55],[196,0],[69,-17],[220,1],[25,-17]],[[8842,3958],[35,9],[114,70],[8,37],[-26,23],[14,32],[82,35]],[[9069,4164],[106,-123],[22,-45],[-12,-56],[4,-80],[20,-34]],[[9209,3826],[-41,-19],[-89,-80],[-11,-40]],[[9068,3687],[-67,27],[-65,57]],[[9533,4800],[25,-35]],[[9558,4765],[-2,-39],[40,-92]],[[9509,4289],[-43,-60],[-8,-51],[-55,-28]],[[9403,4150],[-68,37],[-28,36]],[[9307,4223],[-14,162],[-15,64]],[[9278,4449],[35,99],[41,57],[14,78],[-35,52]],[[9333,4735],[143,61],[57,4]],[[9209,3826],[104,1],[76,143]],[[9389,3970],[24,-42],[-25,-100],[54,-77],[36,-6]],[[9478,3745],[-6,-40],[-35,-38],[-95,-21],[-110,78],[-31,1],[-63,-31]],[[9138,3694],[-70,-7]],[[9016,4415],[34,-16],[120,-1],[49,47],[59,4]],[[9307,4223],[-53,-41],[-94,-17],[-91,-1]],[[9215,4864],[41,-38],[47,-83],[30,-8]],[[9205,5280],[137,-81],[8,-63],[59,-33]],[[9409,5103],[67,-41],[-24,-163],[81,-99]],[[9403,4150],[-4,-150],[-10,-30]],[[9478,3761],[0,-16]],[[8938,3419],[67,-35]],[[9005,3384],[53,-89],[31,-77]],[[9089,3218],[-73,-76],[-49,-30],[-70,-19],[-49,31],[-75,-1],[-35,-24]],[[9089,3218],[81,-141],[129,-63],[63,-41],[153,0]],[[9515,2973],[-43,-116]],[[9472,2857],[-53,-3],[-55,-36],[-28,-52],[-47,-24],[-78,-4],[-100,-18],[-81,-46],[-33,-43]],[[9505,2705],[-33,152]],[[9515,2973],[-35,65],[-16,89],[31,66],[50,57],[45,97],[51,55],[74,39],[79,20],[29,23]],[[9138,3694],[2,-95],[30,-69],[-4,-55],[-44,-80],[-49,-18],[-68,7]],[[11781,7538],[-112,-52],[-118,-43]],[[11551,7443],[23,38]],[[11574,7481],[36,56],[151,87]],[[11761,7624],[-2,-46],[22,-40]],[[11506,7350],[139,-3],[45,11]],[[11690,7358],[63,-38],[65,-16]],[[11818,7304],[-14,-94],[-27,-65],[-2,-77],[21,-35]],[[11796,7033],[-94,-22],[-116,18],[-51,55]],[[11535,7084],[-90,18],[-147,80],[-4,56]],[[11294,7238],[39,24],[96,29],[77,59]],[[11996,7080],[95,-17],[82,0]],[[12173,7063],[0,-111],[-16,-126]],[[12157,6826],[-76,4],[-128,95],[-29,-1]],[[11924,6924],[-18,56]],[[11906,6980],[90,100]],[[12246,7288],[-43,-68],[-59,9]],[[12144,7229],[-65,87]],[[12079,7316],[53,31],[61,1],[39,-17],[14,-43]],[[11781,7538],[-40,-130],[-51,-50]],[[11506,7350],[45,93]],[[12095,7541],[27,-41],[37,-9],[71,45]],[[12230,7536],[51,-81],[14,-101]],[[12295,7354],[2,-25]],[[12297,7329],[-51,-41]],[[12079,7316],[-28,-20]],[[12051,7296],[-15,0]],[[12036,7296],[-42,60]],[[11994,7356],[59,140],[42,45]],[[12179,7116],[41,11],[116,4]],[[12336,7131],[35,-32],[91,-30]],[[12462,7069],[-24,-55],[-72,-78],[-34,-21],[-102,-102]],[[12230,6813],[-73,13]],[[12173,7063],[6,53]],[[12623,7431],[131,-37]],[[12721,7296],[-55,4],[-47,53],[4,78]],[[12297,7329],[0,-16]],[[12297,7313],[-16,-125],[55,-57]],[[12179,7116],[-67,46],[32,67]],[[12487,7244],[73,15],[137,-14]],[[12748,6900],[-106,-39],[-31,-1],[-51,35],[2,163],[-36,37]],[[12526,7095],[-19,102],[-20,47]],[[11996,7080],[91,66],[-6,106],[-30,44]],[[11906,6980],[-37,23]],[[11869,7003],[-2,54],[106,172],[63,67]],[[11818,7304],[49,74],[86,18],[41,-40]],[[11869,7003],[-73,30]],[[12501,7444],[122,-13]],[[12487,7244],[-43,66],[-84,19],[-63,-16]],[[12295,7354],[49,38],[76,34],[81,18]],[[12462,7069],[64,26]],[[12788,6751],[-128,-131],[-135,-34],[-81,-77],[-75,-14],[-41,31],[-61,142]],[[12267,6668],[-37,145]],[[12230,7536],[4,21],[69,94],[23,-28],[85,5],[-16,-68],[37,-65],[59,-13],[10,-38]],[[11759,7672],[145,-4],[-2,-29],[110,-31],[22,-33],[61,-34]],[[11761,7624],[-2,48]],[[11221,1966],[-179,-1],[-33,-18]],[[11009,1947],[29,46],[89,48],[120,133]],[[11009,1947],[-53,7]],[[10956,1954],[-114,12],[-35,-22]],[[10807,1944],[35,87],[6,105],[33,68]],[[11095,1777],[-47,15],[-2,27],[36,31],[4,34],[-57,18],[-20,45]],[[10807,1944],[-59,28],[-31,39],[-73,-15],[-63,-47]],[[10459,2084],[79,22],[110,102],[25,53],[0,60],[18,117],[27,91],[-1,65]],[[10671,1732],[20,33],[88,20],[81,52],[29,46],[67,71]],[[15253,7259],[41,-3],[101,-51]],[[15395,7205],[121,-78]],[[15516,7127],[30,-25],[41,-94]],[[15171,6790],[-4,134]],[[15167,6924],[35,97],[0,53],[-45,186]],[[15157,7260],[96,-1]],[[15020,7452],[64,44]],[[15084,7496],[49,-64]],[[15133,7432],[-37,-38]],[[15096,7394],[-16,0]],[[15080,7394],[-15,32],[-45,26]],[[15650,7725],[116,48],[25,26]],[[15791,7799],[-4,-55],[128,-172],[125,-74]],[[15824,7200],[-21,34],[-47,131],[0,69],[-34,125],[-72,86]],[[15650,7645],[0,80]],[[15516,7127],[45,53],[12,37],[-21,53]],[[15552,7270],[31,38],[35,155],[0,156]],[[15618,7619],[32,26]],[[15526,7601],[-16,-122],[12,-37],[8,-118],[22,-54]],[[15395,7205],[19,52],[-12,53]],[[15402,7310],[-41,112],[-39,45]],[[15322,7467],[33,59],[-19,30]],[[15336,7556],[80,30],[41,66]],[[15457,7652],[69,-51]],[[15084,7496],[79,14]],[[15163,7510],[-6,-36],[24,-45]],[[15181,7429],[-48,3]],[[15791,7799],[63,66],[63,31]],[[15402,7310],[-90,19],[-31,53],[2,64],[39,21]],[[15526,7601],[41,-7],[51,25]],[[15181,7429],[64,-134],[8,-36]],[[15157,7260],[-61,134]],[[15163,7510],[67,-12],[106,58]],[[15457,7652],[40,41],[100,32],[53,0]],[[5026,7042],[-14,113],[53,108]],[[5065,7263],[6,-71],[88,-118],[69,-53],[66,-20],[120,0]],[[5130,6766],[-42,34]],[[5088,6800],[36,108],[-83,95],[-15,39]],[[4971,7555],[62,-27],[6,-76],[28,-56]],[[5067,7396],[2,-32]],[[5069,7364],[-28,-22],[-78,-2],[-38,34]],[[4925,7374],[36,65],[-10,42],[-31,14],[3,35],[48,25]],[[4882,6988],[34,-24]],[[4916,6964],[139,-146],[33,-18]],[[5088,6800],[-70,-30],[-114,-21],[-32,-29],[12,-71],[-4,-68]],[[4399,6717],[185,0],[84,21],[55,31],[8,116],[-12,33]],[[4719,6918],[75,64],[88,6]],[[5067,7396],[139,-58],[49,-5]],[[5255,7333],[39,-46],[61,0]],[[5065,7263],[4,101]],[[4916,6964],[43,50],[67,28]],[[4904,7682],[127,-29],[75,-8],[104,-62],[86,-11]],[[5296,7572],[4,-59],[-39,-72],[8,-78],[-14,-30]],[[4971,7555],[-46,24],[-25,45],[4,58]],[[4815,7717],[89,-35]],[[4925,7374],[-47,-15]],[[4878,7359],[-70,28]],[[5296,7572],[140,-8]],[[4878,7359],[-4,-34],[51,-47],[140,-15]],[[4882,6988],[20,57],[-30,25],[-149,-1]],[[4684,6935],[35,-17]],[[10169,8372],[129,36]],[[10298,8408],[46,-105],[-14,-57],[-108,-93],[-63,-81],[-47,-24],[-28,-71],[38,-115]],[[10122,7862],[-63,-11],[-51,77]],[[10008,7928],[12,66],[-36,142]],[[9984,8136],[36,70],[11,58]],[[10031,8264],[106,67],[32,41]],[[10844,7551],[28,-17],[96,0]],[[10968,7534],[53,-35]],[[11021,7499],[45,-73],[-16,-55],[-55,-5],[-33,24]],[[10789,7430],[-29,64],[43,50],[41,7]],[[11021,7499],[98,16]],[[11119,7515],[59,-1],[86,-21]],[[11264,7493],[34,-102],[0,-103]],[[11298,7288],[-36,23],[-68,0],[-114,-48],[-42,9]],[[10298,8408],[116,46],[118,62],[102,-63],[65,-92],[16,-95],[-4,-51]],[[10711,8215],[-91,35],[-84,1],[-22,-36],[45,-110],[2,-64],[24,-41]],[[10585,8000],[-22,-48],[46,-109]],[[10609,7843],[-65,-42],[-24,-56]],[[10520,7745],[-88,37],[-79,1],[-62,39]],[[10291,7822],[-14,35],[-71,76],[-33,-2],[-51,-69]],[[11252,8005],[4,1]],[[11256,8006],[2,-7]],[[11258,7999],[-4,0]],[[11254,7999],[-2,3]],[[11252,8002],[0,1]],[[11252,8003],[0,2]],[[11252,8005],[0,-2]],[[11252,8002],[2,-3]],[[11254,7999],[4,0]],[[11258,7999],[-2,7]],[[11256,8006],[40,-21],[129,-23]],[[11425,7962],[-49,-135],[45,-74],[-4,-81]],[[11417,7672],[-115,-121],[-38,-58]],[[11119,7515],[22,36],[27,95],[-10,65],[-70,113]],[[11088,7824],[74,50],[41,68],[12,46],[37,17]],[[10520,7745],[-67,-100],[-1,-149],[23,-49]],[[10475,7447],[-57,2],[-27,-27],[-8,-71],[-57,-7],[10,-57]],[[10067,7466],[45,45],[53,11],[41,58],[18,102],[31,101],[36,39]],[[10609,7843],[68,-55],[40,-87],[78,-58],[49,-92]],[[10775,7398],[-47,18],[-112,-1],[-141,32]],[[10585,8000],[33,-12],[57,29],[102,23]],[[10777,8040],[47,-69],[99,-47],[2,-40],[51,-57],[45,-15]],[[11021,7812],[-22,-67],[-53,-30],[28,-54],[-24,-79],[18,-48]],[[10711,8215],[-8,-60],[74,-115]],[[11417,7672],[55,-95],[75,-48],[27,-48]],[[11294,7238],[4,50]],[[11021,7812],[67,12]],[[11631,7748],[0,-1]],[[11631,7747],[0,1]],[[11631,7747],[51,-50],[77,-25]],[[11425,7962],[39,-12],[150,-92],[15,-28],[2,-82]],[[9446,7824],[46,78]],[[9492,7902],[170,95],[30,-3],[49,-86],[51,-69],[63,-17],[61,0],[57,34],[35,72]],[[10067,8383],[102,-11]],[[10031,8264],[22,40],[14,79]],[[13237,1536],[75,-50],[68,38],[91,24],[78,38]],[[13549,1586],[0,-171],[24,-32],[94,-41],[61,-59],[0,-19]],[[13728,1264],[-304,2],[-55,15],[-146,163]],[[13223,1444],[14,92]],[[12487,1867],[138,0],[74,56],[61,10],[47,27],[65,73]],[[12872,2033],[27,-33],[-5,-56],[21,-45],[55,-51]],[[12970,1848],[-45,-5],[-43,-76],[-55,25],[-16,-12],[-31,-148],[8,-93]],[[12788,1539],[-83,-41],[-35,-46],[-32,-5]],[[13219,2480],[114,-67],[55,-121]],[[13388,2292],[-66,-145],[-4,-111],[-32,-53],[-129,-52],[-49,42],[-20,-15],[0,-69],[-16,-67],[-29,-35]],[[13043,1787],[-8,48],[-65,13]],[[12872,2033],[-120,84],[-29,63],[-2,123]],[[14091,1720],[55,-55],[55,-3],[116,36],[51,27],[118,23],[78,42],[138,41],[96,45]],[[14937,1578],[-47,-41],[-126,-39],[-35,-36],[-90,-54],[-124,-62],[-124,-16],[-58,-26],[-136,-29]],[[14197,1275],[-35,81],[-98,47],[-69,55],[-16,32],[6,55]],[[13985,1545],[-22,77],[0,71],[16,42],[61,7],[51,-22]],[[13549,1586],[36,8],[151,-5],[70,-40],[179,-4]],[[14197,1275],[-192,-24],[-120,-35],[-157,48]],[[13555,2743],[12,-37],[43,-50],[61,-21],[90,-4],[67,-61],[94,-8],[26,-30],[-2,-68],[-51,-91],[-39,-30],[-18,-46]],[[13838,2297],[-59,-63],[-147,-18],[-65,44],[-88,22],[-91,10]],[[13838,2297],[33,-38],[12,-71],[65,-25],[35,-132],[30,-48],[84,-6],[22,-14]],[[14119,1963],[0,-164],[-28,-79]],[[13237,1536],[-39,43],[-20,76],[-76,71],[-49,26],[-10,35]],[[14556,2461],[-117,-13],[-42,-19],[-72,-92],[-44,-121],[-47,-43],[-2,-101],[-37,-26],[-76,-83]],[[13223,1444],[-17,23],[-159,81],[-148,26],[-66,-7],[-45,-28]],[[17277,3268],[-23,-57],[-44,-41],[-108,-50],[-129,-5],[-79,-33]],[[16894,3082],[-29,40]],[[16865,3122],[-79,27],[-68,2]],[[16718,3151],[-61,13]],[[16657,3164],[82,93],[12,68]],[[16865,3122],[-55,-79],[-65,-8]],[[16745,3035],[2,59],[-29,57]],[[16657,3164],[-163,3]],[[16494,3167],[-112,4],[-61,23]],[[16894,3082],[118,-33],[81,-6],[-2,-65],[33,-39],[55,-107]],[[17179,2832],[-71,-94],[-57,-39],[-151,-2],[-13,-17]],[[16887,2680],[-57,17],[-85,-16],[-88,34],[-47,33]],[[16559,2799],[8,43],[37,72]],[[16604,2914],[100,116],[41,5]],[[16494,3167],[37,-52],[22,-98],[51,-103]],[[17579,3233],[122,-20],[22,-18],[65,-147]],[[17788,3048],[-51,-119],[-4,-65]],[[17733,2864],[-22,2]],[[17711,2866],[-110,32],[-98,3],[-83,62],[-86,-1],[-92,-50],[-63,-80]],[[8969,8846],[75,-1],[122,-29],[110,3],[74,16]],[[9350,8835],[-19,-78],[0,-143],[15,-60],[0,-115]],[[9346,8439],[-96,-26],[-86,52],[-18,-43]],[[8881,8526],[28,74],[64,89],[-10,49],[6,108]],[[9346,8439],[47,-1]],[[9393,8438],[48,-8]],[[9441,8430],[56,-37],[91,-4],[37,-18],[28,-49]],[[9653,8322],[-14,-18]],[[9639,8304],[-63,13],[-92,-16],[15,-86],[-15,-67],[2,-147]],[[9486,8001],[-59,0],[-124,-49],[-45,-43],[-63,-21],[-35,-52]],[[9888,8469],[98,-38],[81,-48]],[[9984,8136],[-72,46],[-51,-27],[-81,16],[-37,46],[-55,9],[-49,78]],[[9653,8322],[45,19],[61,76],[111,23],[18,29]],[[9492,7902],[-6,99]],[[9350,8835],[102,87]],[[9452,8922],[77,-116],[0,-108],[-102,-103],[-34,-81],[0,-76]],[[9686,8706],[53,-71],[31,-72],[59,-41],[12,-34],[47,-19]],[[9441,8430],[1,111],[55,43],[112,44],[77,78]],[[9452,8922],[51,82],[-4,36],[75,-10],[35,-44],[-8,-27],[87,-26],[67,24],[7,-35],[-62,10],[-46,-79],[-5,-68],[37,-79]],[[8765,8835],[63,-19],[63,5],[78,25]],[[16673,2456],[60,-91],[110,14],[73,-41]],[[16916,2338],[-16,-68],[18,-99],[-31,-43],[7,-46]],[[16894,2082],[-60,-77],[-136,-77],[-108,-29]],[[17733,2864],[55,-59],[131,-13],[49,-27],[132,-19],[155,0]],[[18194,2219],[-122,44],[-76,42],[-73,21],[-67,5],[-92,33],[-110,94],[-106,7],[-23,10]],[[17525,2475],[19,49],[94,124],[73,218]],[[16916,2338],[61,-38],[84,-22],[132,13],[70,-14]],[[17263,2277],[-35,-68],[-8,-51],[-35,-82],[23,-42],[46,-137]],[[17254,1897],[-47,-1],[-69,-36],[-30,8],[-41,98],[22,36],[-6,38],[-57,63],[-20,-14],[-84,16],[-28,-23]],[[16887,2680],[11,-32],[-27,-85],[47,-152],[-2,-73]],[[17525,2475],[-22,-34],[35,-140]],[[17538,2301],[-41,-39],[-61,-33],[-33,-1],[-90,47],[-50,2]],[[17538,2301],[34,-66]],[[17572,2235],[-26,9],[-74,-49],[13,-38],[-45,-19],[4,-20],[-41,-46],[-37,-65],[-36,-96],[-76,-14]],[[18261,2085],[-110,58],[-34,32],[-35,-39],[-77,59],[-70,19],[-16,23],[-131,-26],[-20,-33],[-61,-21],[-120,48],[-15,30]],[[11146,5469],[69,-84],[-2,-69],[-39,-48],[10,-33],[49,-51],[6,-89],[31,-32]],[[11270,5063],[-23,-48],[2,-43],[27,-88],[-22,-52]],[[10964,4800],[-51,37],[-4,62],[-33,84],[-50,75],[-109,102],[-8,31],[15,73],[-76,39]],[[10648,5303],[6,56],[55,100],[31,95]],[[10740,5554],[69,0],[51,-18],[51,-46],[74,-6],[18,-50],[30,-25],[113,60]],[[12894,5988],[147,-82]],[[13004,5492],[-48,22],[-64,3],[-144,-39]],[[12748,5478],[-27,102],[-47,12],[-14,58],[-43,100],[-4,184],[37,36]],[[12650,5970],[61,71],[28,9],[43,-89],[61,-21],[51,48]],[[13133,6169],[16,-35],[-22,-34],[-4,-57],[-37,-68]],[[12894,5988],[-24,58],[-35,22],[35,110],[71,78]],[[11447,5151],[74,-51],[73,-146]],[[11594,4954],[-90,-44],[-65,-116]],[[11270,5063],[81,23],[96,65]],[[12566,4664],[4,132],[-34,84],[-29,32],[-75,39],[-17,51],[0,113],[-157,41],[-24,28],[37,35]],[[12271,5219],[89,38],[147,156],[69,36],[131,6],[41,23]],[[12087,6362],[90,55]],[[12177,6417],[69,-74],[17,-70]],[[12263,6273],[0,-41]],[[12263,6232],[-49,-23],[-165,31]],[[12049,6240],[38,122]],[[10632,5286],[16,17]],[[10389,5010],[15,41],[175,159],[53,76]],[[11539,4631],[143,-65],[116,-3],[36,18],[35,81],[49,1],[73,-40],[41,-39],[74,-7],[71,-26]],[[11572,6281],[101,59],[98,-44],[169,-26],[109,-30]],[[12263,6232],[-7,-59],[-57,-41],[-40,-77],[-2,-174],[14,-41],[0,-93],[47,-58],[57,-34],[12,-39],[-22,-42],[59,-77],[-4,-40],[-117,-67],[-73,-30]],[[12130,5360],[-63,-34]],[[12067,5326],[-8,41],[-68,100],[-59,128],[-32,35],[-90,49],[-24,34],[32,132],[-34,75],[-53,54],[6,53],[-53,91],[-55,64]],[[11629,6182],[-57,99]],[[12130,5360],[-6,-79],[43,-43],[104,-19]],[[11594,4954],[67,37],[2,75],[23,60],[51,56],[49,32],[85,21],[100,49]],[[11971,5284],[96,42]],[[12819,6658],[-59,-51],[-63,-135],[6,-64],[-49,-14],[24,-87],[-73,-86],[-31,-75]],[[12574,6146],[-53,34],[-55,55],[-91,37],[-112,1]],[[12177,6417],[-6,47],[32,64],[11,94],[53,46]],[[11146,5469],[95,66],[88,19],[43,34],[0,53],[24,56],[55,58],[10,32],[-12,72],[33,129],[73,69],[21,51],[53,74]],[[11971,5284],[-31,48],[-57,5],[-91,74],[-41,21],[-126,-13],[-51,-20],[-53,-129],[-45,-54],[-29,-65]],[[12650,5970],[-29,36],[-47,140]],[[11372,6341],[16,-16],[86,-3],[98,-41]],[[10740,5554],[-35,23],[6,64],[-55,59],[-24,100],[-84,69],[-6,21]],[[10542,5890],[23,51]],[[10565,5941],[124,-1],[82,20],[42,27]],[[10813,5987],[80,-30],[118,-1]],[[11011,5956],[20,-9],[170,62],[59,35],[49,101],[-11,78],[74,118]],[[1816,7222],[-51,-43],[-57,-70],[-26,-79],[-166,-125],[-85,-14],[-35,-21]],[[1408,7114],[64,39],[85,22],[13,36]],[[1570,7211],[77,-3],[77,33],[92,-19]],[[2548,7826],[-92,47],[-79,8],[-59,32],[-55,59]],[[2263,7972],[2,63],[61,25],[63,-25],[35,11],[189,107]],[[2448,7677],[-35,-29],[-59,-9],[-83,-91],[0,-138]],[[2271,7410],[-45,38],[-80,31]],[[2146,7479],[2,53],[-30,59]],[[2118,7591],[0,138],[-37,86],[-37,44],[-57,30]],[[2063,8094],[22,-18],[23,-80],[57,-32],[98,8]],[[1812,7820],[-106,-41],[22,-46],[45,-23]],[[1773,7710],[-79,-43],[-63,-67],[-62,-39],[-28,-68]],[[1541,7493],[-37,-5],[-38,-36],[-25,12],[0,52],[-163,89],[-24,53]],[[1541,7493],[16,-41],[-4,-96],[39,-84],[-22,-61]],[[2515,7545],[-53,-4],[-89,-63],[-35,-71],[-67,3]],[[1773,7710],[88,-49],[92,13],[40,-61],[94,-34],[31,12]],[[2146,7479],[-258,-56],[-51,-117],[-3,-66],[-18,-18]],[[2542,8295],[51,-47]],[[11525,6635],[71,-41],[53,-5],[82,-41]],[[11731,6548],[-5,-70],[23,-21],[71,2],[127,-66],[140,-31]],[[11372,6341],[2,79],[39,84],[28,86],[67,8],[17,37]],[[10744,6294],[51,-4],[110,-32],[98,43]],[[11003,6301],[28,-130],[-38,-58]],[[10993,6113],[-61,-21],[-166,-2]],[[10766,6090],[-26,5],[-37,48]],[[10703,6143],[39,100],[2,51]],[[11749,6875],[20,-40],[49,-11],[25,-38],[-25,-24],[-89,-1],[-17,-25],[88,-48],[10,-63],[-29,-13]],[[11781,6612],[-159,70],[31,161],[29,32],[67,0]],[[11535,7084],[-74,-77],[-40,-26],[-35,-63],[-33,-29],[-42,-105]],[[11311,6784],[-115,-39],[-63,-1],[-98,-33]],[[11035,6711],[-18,98],[-30,62]],[[11311,6784],[142,-62],[72,-87]],[[11011,5956],[-35,65],[17,92]],[[11003,6301],[-27,133]],[[10976,6434],[-2,78],[17,80],[40,70],[4,49]],[[11924,6924],[-63,-27],[-86,11],[-26,-33]],[[11781,6612],[-50,-64]],[[10744,6294],[-18,44],[22,45],[41,23],[122,-10],[65,38]],[[10766,6090],[47,-103]],[[10565,5941],[-19,47],[-2,77]],[[10544,6065],[41,38],[118,40]],[[10744,6294],[-43,-1],[-37,42],[1,85],[-23,63],[-71,15],[-61,42],[-102,55],[-39,49]],[[10544,6065],[-38,75],[-98,-16],[-104,17]],[[10304,6141],[-80,0],[-32,12],[-72,80],[-24,43]],[[10096,6276],[-16,16]],[[13832,7378],[2,-110],[23,-54],[-5,-113]],[[13801,7471],[23,-10],[8,-83]],[[14068,7605],[84,-14],[98,-106],[31,-7]],[[14281,7478],[-13,-68],[-2,-126]],[[14266,7284],[-36,-40],[-109,-36]],[[14121,7208],[15,69],[-15,31],[-87,46]],[[14034,7354],[32,65]],[[14066,7419],[2,186]],[[14676,7403],[47,-7]],[[14723,7396],[4,-105],[-21,-116],[-38,-80],[-4,-63],[18,-65]],[[14513,7016],[14,39],[59,72],[31,71],[4,77],[39,50],[16,78]],[[14558,7393],[118,10]],[[14478,7051],[47,102],[31,109],[2,131]],[[13836,7566],[61,-33]],[[13897,7533],[-16,-90],[2,-62]],[[13883,7381],[-51,-3]],[[13958,7536],[110,69]],[[14066,7419],[-108,117]],[[15031,7147],[4,-88],[24,-46],[67,-70],[41,-19]],[[14786,6841],[31,38],[32,76],[0,90],[14,102]],[[14863,7147],[168,0]],[[14880,7210],[47,16],[102,-4]],[[15029,7222],[18,-37],[-16,-38]],[[14863,7147],[17,63]],[[13985,7302],[49,52]],[[14121,7208],[-93,-14]],[[14028,7194],[-37,68],[-6,40]],[[15029,7222],[4,87],[47,85]],[[14880,7226],[0,-16]],[[14717,6938],[24,52],[0,136],[51,98],[88,2]],[[14266,7284],[49,23],[122,-39]],[[14437,7268],[-18,-183],[29,-69]],[[13926,7034],[12,72],[90,88]],[[14281,7478],[26,-19],[86,16],[101,-37]],[[14494,7438],[-53,-71],[-4,-99]],[[14880,7226],[14,125]],[[14894,7351],[100,66],[26,35]],[[14723,7396],[32,-45],[45,-19],[94,19]],[[13883,7381],[77,-25],[25,-54]],[[13897,7533],[61,3]],[[14494,7438],[64,-45]],[[13600,4931],[63,-128],[35,-30],[61,-88]],[[13759,4685],[-37,-53],[0,-61],[-45,-86],[4,-56]],[[13577,4939],[23,-8]],[[13600,4931],[96,-34],[38,2],[70,38],[36,44],[16,-25],[-26,-26],[12,-65],[57,15],[112,-11],[43,43],[68,14],[32,-29]],[[14154,4897],[-16,-119],[-78,-56],[-14,-110]],[[14046,4612],[-61,-4],[-67,-58],[-53,-3],[-64,39],[-42,99]],[[14523,4719],[43,-44]],[[14297,4293],[20,48],[16,105],[-38,57],[-78,43]],[[14217,4546],[6,58],[51,52],[86,6],[39,-13],[79,17],[45,53]],[[14378,5075],[45,9]],[[14423,5084],[29,-51],[65,-70],[-23,-72],[-4,-54],[-49,-8],[82,-110]],[[14217,4546],[-93,-2],[-29,13],[-49,55]],[[14154,4897],[84,49],[57,0],[28,28],[12,83],[43,18]],[[14423,5084],[39,27],[63,-19],[45,-59],[53,4],[47,-19],[26,26],[82,-12]],[[14354,5217],[24,-142]],[[4203,3867],[-18,66],[-61,48],[-53,8],[-37,30]],[[4034,4019],[-16,35],[0,143],[-15,20],[-91,39],[-33,72]],[[3390,4132],[132,-122],[90,-56]],[[3612,3954],[-39,-127],[0,-129],[16,-74],[1,-106],[50,-97]],[[3910,3734],[77,-20],[47,-49],[45,-15]],[[3850,3516],[11,92],[-11,45],[41,73],[19,8]],[[4034,4019],[-67,-73],[-53,-93],[-2,-49]],[[3912,3804],[-62,0],[-89,32],[-82,113],[-67,5]],[[3910,3734],[2,70]],[[19276,3584],[-67,-45],[-20,-39],[10,-59],[-24,-106],[-31,-13],[-43,-88],[-4,-44],[-37,-47],[-26,-62],[10,-31],[-28,-73],[40,-30],[63,11],[80,-29],[-6,-43],[28,-34],[31,0],[-10,-44],[75,8],[43,-13]],[[18742,2746],[-26,73],[2,97],[16,118],[45,128],[0,223],[45,44],[59,9],[24,77],[45,50]],[[18952,3565],[64,1],[69,-16],[49,16],[45,-11],[44,28],[53,1]],[[17542,3382],[83,23],[33,25],[128,-29],[45,-2]],[[17831,3399],[-34,-70],[8,-25],[65,-72],[-2,-35],[-39,-64],[27,-57],[-68,-28]],[[18822,5099],[65,-107],[-14,-41],[8,-63],[22,-36],[51,-25],[41,-48],[-65,-73],[47,-28],[20,-58],[-34,-23],[4,-74]],[[18967,4523],[-98,-40],[-19,-70],[-24,-22],[-130,14]],[[18696,4405],[-9,32],[-104,124],[6,172],[-38,50],[0,79],[16,47],[-4,69],[-80,134]],[[17831,3399],[120,82],[47,20],[186,0]],[[18184,3501],[57,-153],[0,-137],[-84,12],[-10,-25],[17,-110],[-13,-106],[21,-34],[59,-39],[38,-47],[33,-116]],[[17711,4034],[53,1],[139,-67],[67,-63],[102,-22],[106,-58],[51,-11],[91,-95]],[[18320,3719],[-116,-98]],[[18204,3621],[-87,27],[-100,-5],[-66,12],[-103,92],[-17,32],[-71,47],[-29,50],[-75,52]],[[18410,5014],[4,-49],[-32,-94],[16,-111],[-25,-59],[-34,-28],[-4,-102],[20,-62]],[[18355,4509],[-130,-2],[-72,-21],[-136,-81],[-66,1]],[[18204,3621],[-20,-34],[0,-86]],[[18826,3768],[33,-82],[93,-121]],[[18320,3719],[27,29],[161,102],[49,4],[37,24]],[[18594,3878],[71,-42],[86,-22],[75,-46]],[[18355,4509],[-4,-161],[37,-82],[34,-37],[127,-37],[43,20]],[[18592,4212],[46,-72],[5,-77],[-25,-54],[-24,-131]],[[18696,4405],[-49,-1],[-55,-22],[-11,-24],[15,-88],[-4,-58]],[[18967,4523],[32,-94],[41,-62],[53,-19],[6,-57],[-20,-27],[-21,-98]],[[19058,4166],[-69,-37],[-67,-148],[24,-78],[-47,-41],[-26,-67],[-47,-27]],[[19058,4166],[23,-60],[-13,-39],[45,-22],[-6,-102],[14,-80],[-24,-88],[0,-81],[84,-30],[49,30],[55,-46],[-9,-64]],[[3824,7026],[41,-11]],[[3785,6855],[19,32],[20,85],[0,54]],[[3312,6867],[147,-42]],[[3445,6708],[-63,-25],[-90,26],[-27,39],[-77,17],[0,27],[37,42],[87,33]],[[3577,6963],[-26,-75],[-2,-69]],[[3312,6867],[96,82],[114,-4],[55,18]],[[3724,6980],[37,7],[38,41],[25,-2]],[[3746,6836],[-2,65],[-20,79]],[[3606,6965],[118,15]],[[3569,6818],[20,48],[17,99]],[[3577,6963],[29,2]],[[9280,5589],[33,-47],[71,-8],[80,-146],[86,-116]],[[9550,5272],[-78,-88]],[[9472,5184],[-63,-81]],[[9115,5346],[19,51],[83,55],[63,137]],[[10261,5873],[130,-1],[39,-15],[112,33]],[[10632,5286],[-76,46],[-36,5],[-265,0]],[[10255,5337],[65,96],[-45,35],[-104,33],[-39,1],[-95,-27],[-104,11]],[[9933,5486],[67,135],[73,38]],[[10073,5659],[-24,-79],[31,-39],[46,35],[37,102],[69,79],[33,66],[-4,50]],[[10096,6276],[-43,-34],[-92,-12],[-34,-48],[-2,-51],[-39,-33]],[[9886,6098],[-71,10],[-90,-29],[-45,29]],[[9550,5272],[114,61],[47,1]],[[9711,5334],[-15,-126],[35,-46],[41,-23],[87,14],[59,-5],[23,-38],[77,8]],[[10018,5118],[-2,-23]],[[10016,5095],[-14,-43],[18,-83],[66,-120]],[[9558,4765],[63,26],[71,95],[-30,78],[-33,42],[-16,82],[-21,41],[-120,55]],[[10016,5095],[90,-75],[20,-53],[-6,-96]],[[10018,5118],[61,94],[17,89],[87,4],[72,32]],[[10304,6141],[-49,-112],[-35,-111],[-2,-45]],[[10218,5873],[-85,-31]],[[10133,5842],[-72,-18],[-45,20],[-96,87],[-34,167]],[[10261,5873],[-43,0]],[[9635,6075],[25,-80],[-60,-42],[-12,-29],[15,-64],[-15,-110],[0,-197],[23,-57],[102,-120]],[[9713,5376],[-2,-42]],[[9280,5589],[-48,70],[-80,37],[-141,104],[-51,76],[-50,109]],[[9713,5376],[32,-5],[55,33],[100,-33],[-4,75],[37,40]],[[10073,5659],[47,58],[31,89],[-18,36]],[[5807,7656],[72,110]],[[5879,7766],[57,-34],[26,-81],[-16,-47],[24,-67]],[[6461,8243],[45,27]],[[6737,7962],[-117,-54],[-71,23]],[[6549,7931],[-32,11],[-43,62],[-4,77],[28,44],[-4,74],[-33,44]],[[6353,7879],[84,10],[88,-31]],[[6525,7858],[12,-41],[73,-34],[59,-62]],[[6215,7521],[-19,105],[25,60],[88,80],[44,113]],[[6146,8045],[0,-108],[51,-66],[40,-28],[63,-1],[53,37]],[[5879,7766],[2,107],[-15,38],[74,23],[22,31],[116,37],[68,43]],[[6525,7858],[24,73]],[[6146,8045],[110,68],[55,55],[55,35],[95,40]]],"bbox":[25.66705351412827,35.820459359549844,44.83498764038097,42.10602593500628]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment