Skip to content

Instantly share code, notes, and snippets.

@grahamjenson
Last active February 17, 2017 05:33
Show Gist options
  • Save grahamjenson/8168431 to your computer and use it in GitHub Desktop.
Save grahamjenson/8168431 to your computer and use it in GitHub Desktop.
Spinning Block

Using the Block Map Visualisation built previously I wanted to see what it would look like on a spinning sphere.

<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src='https://code.jquery.com/jquery-2.0.3.js'></script>
<script src='https://d3js.org/d3.v3.min.js'></script>
<script src='worldgeo.js'></script>
<div id='js-block-example' align='center'></div>
<style>
.background {
fill: #a4bac7;
}
.foreground {
fill: none;
stroke: #333;
stroke-width: 1.5px;
}
.graticule {
fill: none;
stroke: #fff;
stroke-width: .5px;
}
.graticule :nth-child(2n) {
stroke-dasharray: 2,2;
}
.land {
stroke: #766951;
}
.land.small {
fill: #E4F1C3;
}
.land.medium {
fill: #BAD696;
}
.land.large {
fill: #9EBF6D;
}
.geojson {
fill: none;
stroke: red;
stroke-width: 5;
}
.boundary {
fill: none;
stroke: #a5967e;
}
</style>
<script>
window.anispeed = 50;
var width = $(window).width(),
height = $(window).height();
var sc = Math.min(width,height) * 0.5
var lat = -180
var projection = d3.geo.orthographic()
.scale(sc)
.translate([width/2,height/2])
.rotate([lat,-20])
.clipAngle(90);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("#js-block-example").append("svg")
.attr("width", width)
.attr("height", height);
svg.selectAll(".land")
.data(window.geo. geometries)
.enter().append('path')
.attr('class',function(d,i){
var c = ''
if(i === 0){c = 'small'}
if(i === 1){c = 'medium'}
if(i === 2){c = 'large'}
return 'land ' + c
})
.attr("d", path)
setInterval(function(){
lat = lat +1.2
projection.rotate([lat,0]);
svg.selectAll(".land")
.attr("d", path);
},window.anispeed);
</script>
window.geo = {"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","coordinates":[[[[17.136746734063507,79.49789407440171],[20.860972402413857,79.49789407440171],[20.860972402413857,75.77366840605137],[17.136746734063507,75.77366840605137],[17.136746734063507,79.49789407440171]]],[[[20.860972402413857,79.49789407440171],[24.585198070764203,79.49789407440171],[24.585198070764203,75.77366840605137],[20.860972402413857,75.77366840605137],[20.860972402413857,79.49789407440171]]],[[[95.34548576942086,79.49789407440171],[99.06971143777122,79.49789407440171],[99.06971143777122,75.77366840605137],[95.34548576942086,75.77366840605137],[95.34548576942086,79.49789407440171]]],[[[106.51816277447192,79.49789407440171],[110.24238844282227,79.49789407440171],[110.24238844282227,75.77366840605137],[106.51816277447192,75.77366840605137],[106.51816277447192,79.49789407440171]]],[[[-119.40971316491543,79.49789407440171],[-115.68548749656506,79.49789407440171],[-115.68548749656506,75.77366840605137],[-119.40971316491543,75.77366840605137],[-119.40971316491543,79.49789407440171]]],[[[-115.68548749656506,79.49789407440171],[-111.96126182821475,79.49789407440171],[-111.96126182821475,75.77366840605137],[-115.68548749656506,75.77366840605137],[-115.68548749656506,79.49789407440171]]],[[[-111.96126182821475,79.49789407440171],[-108.23703615986442,79.49789407440171],[-108.23703615986442,75.77366840605137],[-111.96126182821475,75.77366840605137],[-111.96126182821475,79.49789407440171]]],[[[-100.78858482316367,79.49789407440171],[-97.06435915481335,79.49789407440171],[-97.06435915481335,75.77366840605137],[-100.78858482316367,75.77366840605137],[-100.78858482316367,79.49789407440171]]],[[[-78.44323081306159,79.49789407440171],[-74.7190051447112,79.49789407440171],[-74.7190051447112,75.77366840605137],[-78.44323081306159,75.77366840605137],[-78.44323081306159,79.49789407440171]]],[[[69.2759060909684,75.77366840605137],[73.00013175931876,75.77366840605137],[73.00013175931876,72.04944273770103],[69.2759060909684,72.04944273770103],[69.2759060909684,75.77366840605137]]],[[[80.44858309601946,75.77366840605137],[84.1728087643698,75.77366840605137],[84.1728087643698,72.04944273770103],[80.44858309601946,72.04944273770103],[80.44858309601946,75.77366840605137]]],[[[113.96661411117262,75.77366840605137],[117.69083977952297,75.77366840605137],[117.69083977952297,72.04944273770103],[113.96661411117262,72.04944273770103],[113.96661411117262,75.77366840605137]]],[[[117.69083977952297,75.77366840605137],[121.41506544787333,75.77366840605137],[121.41506544787333,72.04944273770103],[117.69083977952297,72.04944273770103],[117.69083977952297,75.77366840605137]]],[[[121.41506544787333,75.77366840605137],[125.13929111622367,75.77366840605137],[125.13929111622367,72.04944273770103],[121.41506544787333,72.04944273770103],[121.41506544787333,75.77366840605137]]],[[[125.13929111622367,75.77366840605137],[128.86351678457402,75.77366840605137],[128.86351678457402,72.04944273770103],[125.13929111622367,72.04944273770103],[125.13929111622367,75.77366840605137]]],[[[-126.85816450161613,75.77366840605137],[-123.13393883326582,75.77366840605137],[-123.13393883326582,72.04944273770103],[-126.85816450161613,72.04944273770103],[-126.85816450161613,75.77366840605137]]],[[[-111.96126182821475,75.77366840605137],[-108.23703615986442,75.77366840605137],[-108.23703615986442,72.04944273770103],[-111.96126182821475,72.04944273770103],[-111.96126182821475,75.77366840605137]]],[[[-108.23703615986442,75.77366840605137],[-104.51281049151405,75.77366840605137],[-104.51281049151405,72.04944273770103],[-108.23703615986442,72.04944273770103],[-108.23703615986442,75.77366840605137]]],[[[-93.34013348646297,75.77366840605137],[-89.61590781811266,75.77366840605137],[-89.61590781811266,72.04944273770103],[-93.34013348646297,72.04944273770103],[-93.34013348646297,75.77366840605137]]],[[[-78.44323081306159,75.77366840605137],[-74.7190051447112,75.77366840605137],[-74.7190051447112,72.04944273770103],[-78.44323081306159,72.04944273770103],[-78.44323081306159,75.77366840605137]]],[[[-22.57984578780629,75.77366840605137],[-18.855620119455967,75.77366840605137],[-18.855620119455967,72.04944273770103],[-22.57984578780629,72.04944273770103],[-22.57984578780629,75.77366840605137]]],[[[17.136746734063507,72.04944273770103],[20.860972402413857,72.04944273770103],[20.860972402413857,68.32521706935066],[17.136746734063507,68.32521706935066],[17.136746734063507,72.04944273770103]]],[[[28.30942373911455,72.04944273770103],[32.0336494074649,72.04944273770103],[32.0336494074649,68.32521706935066],[28.30942373911455,68.32521706935066],[28.30942373911455,72.04944273770103]]],[[[32.0336494074649,72.04944273770103],[35.75787507581525,72.04944273770103],[35.75787507581525,68.32521706935066],[32.0336494074649,68.32521706935066],[32.0336494074649,72.04944273770103]]],[[[50.65477774921666,72.04944273770103],[54.37900341756701,72.04944273770103],[54.37900341756701,68.32521706935066],[50.65477774921666,68.32521706935066],[50.65477774921666,72.04944273770103]]],[[[54.37900341756701,72.04944273770103],[58.10322908591736,72.04944273770103],[58.10322908591736,68.32521706935066],[54.37900341756701,68.32521706935066],[54.37900341756701,72.04944273770103]]],[[[58.10322908591736,72.04944273770103],[61.827454754267706,72.04944273770103],[61.827454754267706,68.32521706935066],[58.10322908591736,68.32521706935066],[58.10322908591736,72.04944273770103]]],[[[61.827454754267706,72.04944273770103],[65.55168042261806,72.04944273770103],[65.55168042261806,68.32521706935066],[61.827454754267706,68.32521706935066],[61.827454754267706,72.04944273770103]]],[[[158.65732213137684,72.04944273770103],[162.38154779972717,72.04944273770103],[162.38154779972717,68.32521706935066],[158.65732213137684,68.32521706935066],[158.65732213137684,72.04944273770103]]],[[[162.38154779972717,72.04944273770103],[166.10577346807753,72.04944273770103],[166.10577346807753,68.32521706935066],[162.38154779972717,68.32521706935066],[162.38154779972717,72.04944273770103]]],[[[166.10577346807753,72.04944273770103],[169.8299991364279,72.04944273770103],[169.8299991364279,68.32521706935066],[166.10577346807753,68.32521706935066],[166.10577346807753,72.04944273770103]]],[[[169.8299991364279,72.04944273770103],[173.55422480477824,72.04944273770103],[173.55422480477824,68.32521706935066],[169.8299991364279,68.32521706935066],[169.8299991364279,72.04944273770103]]],[[[173.55422480477824,72.04944273770103],[177.2784504731286,72.04944273770103],[177.2784504731286,68.32521706935066],[173.55422480477824,68.32521706935066],[173.55422480477824,72.04944273770103]]],[[[177.2784504731286,72.04944273770103],[-178.99732385852104,72.04944273770103],[-178.99732385852104,68.32521706935066],[177.2784504731286,68.32521706935066],[177.2784504731286,72.04944273770103]]],[[[-164.10042118511967,72.04944273770103],[-160.3761955167693,72.04944273770103],[-160.3761955167693,68.32521706935066],[-164.10042118511967,68.32521706935066],[-164.10042118511967,72.04944273770103]]],[[[-149.20351851171824,72.04944273770103],[-145.4792928433679,72.04944273770103],[-145.4792928433679,68.32521706935066],[-149.20351851171824,68.32521706935066],[-149.20351851171824,72.04944273770103]]],[[[-145.4792928433679,72.04944273770103],[-141.75506717501756,72.04944273770103],[-141.75506717501756,68.32521706935066],[-145.4792928433679,68.32521706935066],[-145.4792928433679,72.04944273770103]]],[[[-141.75506717501756,72.04944273770103],[-138.0308415066672,72.04944273770103],[-138.0308415066672,68.32521706935066],[-141.75506717501756,68.32521706935066],[-141.75506717501756,72.04944273770103]]],[[[-134.30661583831684,72.04944273770103],[-130.58239016996652,72.04944273770103],[-130.58239016996652,68.32521706935066],[-134.30661583831684,68.32521706935066],[-134.30661583831684,72.04944273770103]]],[[[-130.58239016996652,72.04944273770103],[-126.85816450161613,72.04944273770103],[-126.85816450161613,68.32521706935066],[-130.58239016996652,68.32521706935066],[-130.58239016996652,72.04944273770103]]],[[[-126.85816450161613,72.04944273770103],[-123.13393883326582,72.04944273770103],[-123.13393883326582,68.32521706935066],[-126.85816450161613,68.32521706935066],[-126.85816450161613,72.04944273770103]]],[[[-123.13393883326582,72.04944273770103],[-119.40971316491543,72.04944273770103],[-119.40971316491543,68.32521706935066],[-123.13393883326582,68.32521706935066],[-123.13393883326582,72.04944273770103]]],[[[-104.51281049151405,72.04944273770103],[-100.78858482316367,72.04944273770103],[-100.78858482316367,68.32521706935066],[-104.51281049151405,68.32521706935066],[-104.51281049151405,72.04944273770103]]],[[[-100.78858482316367,72.04944273770103],[-97.06435915481335,72.04944273770103],[-97.06435915481335,68.32521706935066],[-100.78858482316367,68.32521706935066],[-100.78858482316367,72.04944273770103]]],[[[-93.34013348646297,72.04944273770103],[-89.61590781811266,72.04944273770103],[-89.61590781811266,68.32521706935066],[-93.34013348646297,68.32521706935066],[-93.34013348646297,72.04944273770103]]],[[[-89.61590781811266,72.04944273770103],[-85.89168214976227,72.04944273770103],[-85.89168214976227,68.32521706935066],[-89.61590781811266,68.32521706935066],[-89.61590781811266,72.04944273770103]]],[[[-56.0978768029595,72.04944273770103],[-52.373651134609126,72.04944273770103],[-52.373651134609126,68.32521706935066],[-56.0978768029595,68.32521706935066],[-56.0978768029595,72.04944273770103]]],[[[-167.82464685347,68.32521706935066],[-164.10042118511967,68.32521706935066],[-164.10042118511967,64.60099140100031],[-167.82464685347,64.60099140100031],[-167.82464685347,68.32521706935066]]],[[[-78.44323081306159,68.32521706935066],[-74.7190051447112,68.32521706935066],[-74.7190051447112,64.60099140100031],[-78.44323081306159,64.60099140100031],[-78.44323081306159,68.32521706935066]]],[[[-56.0978768029595,68.32521706935066],[-52.373651134609126,68.32521706935066],[-52.373651134609126,64.60099140100031],[-56.0978768029595,64.60099140100031],[-56.0978768029595,68.32521706935066]]],[[[-22.57984578780629,68.32521706935066],[-18.855620119455967,68.32521706935066],[-18.855620119455967,64.60099140100031],[-22.57984578780629,64.60099140100031],[-22.57984578780629,68.32521706935066]]],[[[-18.855620119455967,68.32521706935066],[-15.131394451105644,68.32521706935066],[-15.131394451105644,64.60099140100031],[-18.855620119455967,64.60099140100031],[-18.855620119455967,68.32521706935066]]],[[[17.136746734063507,64.60099140100031],[20.860972402413857,64.60099140100031],[20.860972402413857,60.87676573264997],[17.136746734063507,60.87676573264997],[17.136746734063507,64.60099140100031]]],[[[-167.82464685347,64.60099140100031],[-164.10042118511967,64.60099140100031],[-164.10042118511967,60.87676573264997],[-167.82464685347,60.87676573264997],[-167.82464685347,64.60099140100031]]],[[[-93.34013348646297,64.60099140100031],[-89.61590781811266,64.60099140100031],[-89.61590781811266,60.87676573264997],[-93.34013348646297,60.87676573264997],[-93.34013348646297,64.60099140100031]]],[[[-85.89168214976227,64.60099140100031],[-82.16745648141196,64.60099140100031],[-82.16745648141196,60.87676573264997],[-85.89168214976227,60.87676573264997],[-85.89168214976227,64.60099140100031]]],[[[-78.44323081306159,64.60099140100031],[-74.7190051447112,64.60099140100031],[-74.7190051447112,60.87676573264997],[-78.44323081306159,60.87676573264997],[-78.44323081306159,64.60099140100031]]],[[[-74.7190051447112,64.60099140100031],[-70.99477947636089,64.60099140100031],[-70.99477947636089,60.87676573264997],[-74.7190051447112,60.87676573264997],[-74.7190051447112,64.60099140100031]]],[[[-67.27055380801052,64.60099140100031],[-63.54632813966014,64.60099140100031],[-63.54632813966014,60.87676573264997],[-67.27055380801052,60.87676573264997],[-67.27055380801052,64.60099140100031]]],[[[-52.373651134609126,64.60099140100031],[-48.64942546625875,64.60099140100031],[-48.64942546625875,60.87676573264997],[-52.373651134609126,60.87676573264997],[-52.373651134609126,64.60099140100031]]],[[[17.136746734063507,60.87676573264997],[20.860972402413857,60.87676573264997],[20.860972402413857,57.15254006429962],[17.136746734063507,57.15254006429962],[17.136746734063507,60.87676573264997]]],[[[20.860972402413857,60.87676573264997],[24.585198070764203,60.87676573264997],[24.585198070764203,57.15254006429962],[20.860972402413857,57.15254006429962],[20.860972402413857,60.87676573264997]]],[[[143.76041945797544,60.87676573264997],[147.48464512632577,60.87676573264997],[147.48464512632577,57.15254006429962],[143.76041945797544,57.15254006429962],[143.76041945797544,60.87676573264997]]],[[[147.48464512632577,60.87676573264997],[151.20887079467613,60.87676573264997],[151.20887079467613,57.15254006429962],[147.48464512632577,57.15254006429962],[147.48464512632577,60.87676573264997]]],[[[151.20887079467613,60.87676573264997],[154.9330964630265,60.87676573264997],[154.9330964630265,57.15254006429962],[151.20887079467613,57.15254006429962],[151.20887079467613,60.87676573264997]]],[[[162.38154779972717,60.87676573264997],[166.10577346807753,60.87676573264997],[166.10577346807753,57.15254006429962],[162.38154779972717,57.15254006429962],[162.38154779972717,60.87676573264997]]],[[[-164.10042118511967,60.87676573264997],[-160.3761955167693,60.87676573264997],[-160.3761955167693,57.15254006429962],[-164.10042118511967,57.15254006429962],[-164.10042118511967,60.87676573264997]]],[[[-152.9277441800686,60.87676573264997],[-149.20351851171824,60.87676573264997],[-149.20351851171824,57.15254006429962],[-152.9277441800686,57.15254006429962],[-152.9277441800686,60.87676573264997]]],[[[-141.75506717501756,60.87676573264997],[-138.0308415066672,60.87676573264997],[-138.0308415066672,57.15254006429962],[-141.75506717501756,57.15254006429962],[-141.75506717501756,60.87676573264997]]],[[[5.964069729012438,57.15254006429962],[9.688295397362786,57.15254006429962],[9.688295397362786,53.428314395949265],[5.964069729012438,53.428314395949265],[5.964069729012438,57.15254006429962]]],[[[13.412521065713134,57.15254006429962],[17.136746734063507,57.15254006429962],[17.136746734063507,53.428314395949265],[13.412521065713134,53.428314395949265],[13.412521065713134,57.15254006429962]]],[[[17.136746734063507,57.15254006429962],[20.860972402413857,57.15254006429962],[20.860972402413857,53.428314395949265],[17.136746734063507,53.428314395949265],[17.136746734063507,57.15254006429962]]],[[[136.31196812127473,57.15254006429962],[140.0361937896251,57.15254006429962],[140.0361937896251,53.428314395949265],[136.31196812127473,53.428314395949265],[136.31196812127473,57.15254006429962]]],[[[-85.89168214976227,57.15254006429962],[-82.16745648141196,57.15254006429962],[-82.16745648141196,53.428314395949265],[-85.89168214976227,53.428314395949265],[-85.89168214976227,57.15254006429962]]],[[[-59.82210247130982,57.15254006429962],[-56.0978768029595,57.15254006429962],[-56.0978768029595,53.428314395949265],[-59.82210247130982,53.428314395949265],[-59.82210247130982,57.15254006429962]]],[[[-1.4843816076882574,53.428314395949265],[2.2398440606620906,53.428314395949265],[2.2398440606620906,49.704088727598915],[-1.4843816076882574,49.704088727598915],[-1.4843816076882574,53.428314395949265]]],[[[154.9330964630265,53.428314395949265],[158.65732213137684,53.428314395949265],[158.65732213137684,49.704088727598915],[154.9330964630265,49.704088727598915],[154.9330964630265,53.428314395949265]]],[[[-130.58239016996652,53.428314395949265],[-126.85816450161613,53.428314395949265],[-126.85816450161613,49.704088727598915],[-130.58239016996652,49.704088727598915],[-130.58239016996652,53.428314395949265]]],[[[-11.40716878275527,53.428314395949265],[-7.682943114404897,53.428314395949265],[-7.682943114404897,49.704088727598915],[-11.40716878275527,49.704088727598915],[-11.40716878275527,53.428314395949265]]],[[[-7.682943114404897,53.428314395949265],[-3.9587174460545747,53.428314395949265],[-3.9587174460545747,49.704088727598915],[-7.682943114404897,49.704088727598915],[-7.682943114404897,53.428314395949265]]],[[[140.0361937896251,49.704088727598915],[143.76041945797544,49.704088727598915],[143.76041945797544,45.979863059248565],[140.0361937896251,45.979863059248565],[140.0361937896251,49.704088727598915]]],[[[-126.85816450161613,49.704088727598915],[-123.13393883326582,49.704088727598915],[-123.13393883326582,45.979863059248565],[-126.85816450161613,45.979863059248565],[-126.85816450161613,49.704088727598915]]],[[[-59.82210247130982,49.704088727598915],[-56.0978768029595,49.704088727598915],[-56.0978768029595,45.979863059248565],[-59.82210247130982,45.979863059248565],[-59.82210247130982,49.704088727598915]]],[[[35.75787507581525,45.979863059248565],[39.48210074416559,45.979863059248565],[39.48210074416559,42.255637390898215],[35.75787507581525,42.255637390898215],[35.75787507581525,45.979863059248565]]],[[[140.0361937896251,45.979863059248565],[143.76041945797544,45.979863059248565],[143.76041945797544,42.255637390898215],[140.0361937896251,42.255637390898215],[140.0361937896251,45.979863059248565]]],[[[-67.27055380801052,45.979863059248565],[-63.54632813966014,45.979863059248565],[-63.54632813966014,42.255637390898215],[-67.27055380801052,42.255637390898215],[-67.27055380801052,45.979863059248565]]],[[[-7.682943114404897,45.979863059248565],[-3.9587174460545747,45.979863059248565],[-3.9587174460545747,42.255637390898215],[-7.682943114404897,42.255637390898215],[-7.682943114404897,45.979863059248565]]],[[[-3.9587174460545747,45.979863059248565],[-0.23449177770420107,45.979863059248565],[-0.23449177770420107,42.255637390898215],[-3.9587174460545747,42.255637390898215],[-3.9587174460545747,45.979863059248565]]],[[[5.964069729012438,42.255637390898215],[9.688295397362786,42.255637390898215],[9.688295397362786,38.53141172254786],[5.964069729012438,38.53141172254786],[5.964069729012438,42.255637390898215]]],[[[17.136746734063507,42.255637390898215],[20.860972402413857,42.255637390898215],[20.860972402413857,38.53141172254786],[17.136746734063507,38.53141172254786],[17.136746734063507,42.255637390898215]]],[[[50.65477774921666,42.255637390898215],[54.37900341756701,42.255637390898215],[54.37900341756701,38.53141172254786],[50.65477774921666,38.53141172254786],[50.65477774921666,42.255637390898215]]],[[[140.0361937896251,42.255637390898215],[143.76041945797544,42.255637390898215],[143.76041945797544,38.53141172254786],[140.0361937896251,38.53141172254786],[140.0361937896251,42.255637390898215]]],[[[-74.7190051447112,42.255637390898215],[-70.99477947636089,42.255637390898215],[-70.99477947636089,38.53141172254786],[-74.7190051447112,38.53141172254786],[-74.7190051447112,42.255637390898215]]],[[[-11.40716878275527,42.255637390898215],[-7.682943114404897,42.255637390898215],[-7.682943114404897,38.53141172254786],[-11.40716878275527,38.53141172254786],[-11.40716878275527,42.255637390898215]]],[[[2.2398440606620906,38.53141172254786],[5.964069729012438,38.53141172254786],[5.964069729012438,34.807186054197516],[2.2398440606620906,34.807186054197516],[2.2398440606620906,38.53141172254786]]],[[[20.860972402413857,38.53141172254786],[24.585198070764203,38.53141172254786],[24.585198070764203,34.807186054197516],[20.860972402413857,34.807186054197516],[20.860972402413857,38.53141172254786]]],[[[24.585198070764203,38.53141172254786],[28.30942373911455,38.53141172254786],[28.30942373911455,34.807186054197516],[24.585198070764203,34.807186054197516],[24.585198070764203,38.53141172254786]]],[[[20.860972402413857,34.807186054197516],[24.585198070764203,34.807186054197516],[24.585198070764203,31.08296038584716],[20.860972402413857,31.08296038584716],[20.860972402413857,34.807186054197516]]],[[[128.86351678457402,34.807186054197516],[132.58774245292437,34.807186054197516],[132.58774245292437,31.08296038584716],[128.86351678457402,31.08296038584716],[128.86351678457402,34.807186054197516]]],[[[132.58774245292437,34.807186054197516],[136.31196812127473,34.807186054197516],[136.31196812127473,31.08296038584716],[132.58774245292437,31.08296038584716],[132.58774245292437,34.807186054197516]]],[[[-119.40971316491543,34.807186054197516],[-115.68548749656506,34.807186054197516],[-115.68548749656506,31.08296038584716],[-119.40971316491543,31.08296038584716],[-119.40971316491543,34.807186054197516]]],[[[-11.40716878275527,34.807186054197516],[-7.682943114404897,34.807186054197516],[-7.682943114404897,31.08296038584716],[-11.40716878275527,31.08296038584716],[-11.40716878275527,34.807186054197516]]],[[[-93.34013348646297,31.08296038584716],[-89.61590781811266,31.08296038584716],[-89.61590781811266,27.35873471749681],[-93.34013348646297,27.35873471749681],[-93.34013348646297,31.08296038584716]]],[[[-89.61590781811266,31.08296038584716],[-85.89168214976227,31.08296038584716],[-85.89168214976227,27.35873471749681],[-89.61590781811266,27.35873471749681],[-89.61590781811266,31.08296038584716]]],[[[-85.89168214976227,31.08296038584716],[-82.16745648141196,31.08296038584716],[-82.16745648141196,27.35873471749681],[-85.89168214976227,27.35873471749681],[-85.89168214976227,31.08296038584716]]],[[[-82.16745648141196,31.08296038584716],[-78.44323081306159,31.08296038584716],[-78.44323081306159,27.35873471749681],[-82.16745648141196,27.35873471749681],[-82.16745648141196,31.08296038584716]]],[[[50.65477774921666,27.35873471749681],[54.37900341756701,27.35873471749681],[54.37900341756701,23.634509049146455],[50.65477774921666,23.634509049146455],[50.65477774921666,27.35873471749681]]],[[[58.10322908591736,27.35873471749681],[61.827454754267706,27.35873471749681],[61.827454754267706,23.634509049146455],[58.10322908591736,23.634509049146455],[58.10322908591736,27.35873471749681]]],[[[117.69083977952297,27.35873471749681],[121.41506544787333,27.35873471749681],[121.41506544787333,23.634509049146455],[117.69083977952297,23.634509049146455],[117.69083977952297,27.35873471749681]]],[[[-111.96126182821475,27.35873471749681],[-108.23703615986442,27.35873471749681],[-108.23703615986442,23.634509049146455],[-111.96126182821475,23.634509049146455],[-111.96126182821475,27.35873471749681]]],[[[-82.16745648141196,27.35873471749681],[-78.44323081306159,27.35873471749681],[-78.44323081306159,23.634509049146455],[-82.16745648141196,23.634509049146455],[-82.16745648141196,27.35873471749681]]],[[[35.75787507581525,23.634509049146455],[39.48210074416559,23.634509049146455],[39.48210074416559,19.910283380796105],[35.75787507581525,19.910283380796105],[35.75787507581525,23.634509049146455]]],[[[58.10322908591736,23.634509049146455],[61.827454754267706,23.634509049146455],[61.827454754267706,19.910283380796105],[58.10322908591736,19.910283380796105],[58.10322908591736,23.634509049146455]]],[[[87.89703443272018,23.634509049146455],[91.62126010107052,23.634509049146455],[91.62126010107052,19.910283380796105],[87.89703443272018,19.910283380796105],[87.89703443272018,23.634509049146455]]],[[[110.24238844282227,23.634509049146455],[113.96661411117262,23.634509049146455],[113.96661411117262,19.910283380796105],[110.24238844282227,19.910283380796105],[110.24238844282227,23.634509049146455]]],[[[-108.23703615986442,23.634509049146455],[-104.51281049151405,23.634509049146455],[-104.51281049151405,19.910283380796105],[-108.23703615986442,19.910283380796105],[-108.23703615986442,23.634509049146455]]],[[[-89.61590781811266,23.634509049146455],[-85.89168214976227,23.634509049146455],[-85.89168214976227,19.910283380796105],[-89.61590781811266,19.910283380796105],[-89.61590781811266,23.634509049146455]]],[[[-82.16745648141196,23.634509049146455],[-78.44323081306159,23.634509049146455],[-78.44323081306159,19.910283380796105],[-82.16745648141196,19.910283380796105],[-82.16745648141196,23.634509049146455]]],[[[-78.44323081306159,23.634509049146455],[-74.7190051447112,23.634509049146455],[-74.7190051447112,19.910283380796105],[-78.44323081306159,19.910283380796105],[-78.44323081306159,23.634509049146455]]],[[[-18.855620119455967,23.634509049146455],[-15.131394451105644,23.634509049146455],[-15.131394451105644,19.910283380796105],[-18.855620119455967,19.910283380796105],[-18.855620119455967,23.634509049146455]]],[[[39.48210074416559,19.910283380796105],[43.20632641251594,19.910283380796105],[43.20632641251594,16.186057712445756],[39.48210074416559,16.186057712445756],[39.48210074416559,19.910283380796105]]],[[[54.37900341756701,19.910283380796105],[58.10322908591736,19.910283380796105],[58.10322908591736,16.186057712445756],[54.37900341756701,16.186057712445756],[54.37900341756701,19.910283380796105]]],[[[91.62126010107052,19.910283380796105],[95.34548576942086,19.910283380796105],[95.34548576942086,16.186057712445756],[91.62126010107052,16.186057712445756],[91.62126010107052,19.910283380796105]]],[[[106.51816277447192,19.910283380796105],[110.24238844282227,19.910283380796105],[110.24238844282227,16.186057712445756],[106.51816277447192,16.186057712445756],[106.51816277447192,19.910283380796105]]],[[[-104.51281049151405,19.910283380796105],[-100.78858482316367,19.910283380796105],[-100.78858482316367,16.186057712445756],[-104.51281049151405,16.186057712445756],[-104.51281049151405,19.910283380796105]]],[[[-89.61590781811266,19.910283380796105],[-85.89168214976227,19.910283380796105],[-85.89168214976227,16.186057712445756],[-89.61590781811266,16.186057712445756],[-89.61590781811266,19.910283380796105]]],[[[-74.7190051447112,19.910283380796105],[-70.99477947636089,19.910283380796105],[-70.99477947636089,16.186057712445756],[-74.7190051447112,16.186057712445756],[-74.7190051447112,19.910283380796105]]],[[[-18.855620119455967,19.910283380796105],[-15.131394451105644,19.910283380796105],[-15.131394451105644,16.186057712445756],[-18.855620119455967,16.186057712445756],[-18.855620119455967,19.910283380796105]]],[[[46.93055208086631,16.186057712445756],[50.65477774921666,16.186057712445756],[50.65477774921666,12.461832044095406],[46.93055208086631,12.461832044095406],[46.93055208086631,16.186057712445756]]],[[[95.34548576942086,16.186057712445756],[99.06971143777122,16.186057712445756],[99.06971143777122,12.461832044095406],[95.34548576942086,12.461832044095406],[95.34548576942086,16.186057712445756]]],[[[117.69083977952297,16.186057712445756],[121.41506544787333,16.186057712445756],[121.41506544787333,12.461832044095406],[117.69083977952297,12.461832044095406],[117.69083977952297,16.186057712445756]]],[[[121.41506544787333,16.186057712445756],[125.13929111622367,16.186057712445756],[125.13929111622367,12.461832044095406],[121.41506544787333,12.461832044095406],[121.41506544787333,16.186057712445756]]],[[[-93.34013348646297,16.186057712445756],[-89.61590781811266,16.186057712445756],[-89.61590781811266,12.461832044095406],[-93.34013348646297,12.461832044095406],[-93.34013348646297,16.186057712445756]]],[[[-18.855620119455967,16.186057712445756],[-15.131394451105644,16.186057712445756],[-15.131394451105644,12.461832044095406],[-18.855620119455967,12.461832044095406],[-18.855620119455967,16.186057712445756]]],[[[106.51816277447192,12.461832044095406],[110.24238844282227,12.461832044095406],[110.24238844282227,8.737606375745054],[106.51816277447192,8.737606375745054],[106.51816277447192,12.461832044095406]]],[[[-67.27055380801052,12.461832044095406],[-63.54632813966014,12.461832044095406],[-63.54632813966014,8.737606375745054],[-67.27055380801052,8.737606375745054],[-67.27055380801052,12.461832044095406]]],[[[-63.54632813966014,12.461832044095406],[-59.82210247130982,12.461832044095406],[-59.82210247130982,8.737606375745054],[-63.54632813966014,8.737606375745054],[-63.54632813966014,12.461832044095406]]],[[[-1.4843816076882574,8.737606375745054],[2.2398440606620906,8.737606375745054],[2.2398440606620906,5.0133807073947025],[-1.4843816076882574,5.0133807073947025],[-1.4843816076882574,8.737606375745054]]],[[[99.06971143777122,8.737606375745054],[102.79393710612158,8.737606375745054],[102.79393710612158,5.0133807073947025],[99.06971143777122,5.0133807073947025],[99.06971143777122,8.737606375745054]]],[[[121.41506544787333,8.737606375745054],[125.13929111622367,8.737606375745054],[125.13929111622367,5.0133807073947025],[121.41506544787333,5.0133807073947025],[121.41506544787333,8.737606375745054]]],[[[-59.82210247130982,8.737606375745054],[-56.0978768029595,8.737606375745054],[-56.0978768029595,5.0133807073947025],[-59.82210247130982,5.0133807073947025],[-59.82210247130982,8.737606375745054]]],[[[95.34548576942086,5.0133807073947025],[99.06971143777122,5.0133807073947025],[99.06971143777122,1.2891550390443522],[95.34548576942086,1.2891550390443522],[95.34548576942086,5.0133807073947025]]],[[[110.24238844282227,5.0133807073947025],[113.96661411117262,5.0133807073947025],[113.96661411117262,1.2891550390443522],[110.24238844282227,1.2891550390443522],[110.24238844282227,5.0133807073947025]]],[[[-52.373651134609126,5.0133807073947025],[-48.64942546625875,5.0133807073947025],[-48.64942546625875,1.2891550390443522],[-52.373651134609126,1.2891550390443522],[-52.373651134609126,5.0133807073947025]]],[[[102.79393710612158,1.2891550390443522],[106.51816277447192,1.2891550390443522],[106.51816277447192,-2.435070629305999],[102.79393710612158,-2.435070629305999],[102.79393710612158,1.2891550390443522]]],[[[117.69083977952297,1.2891550390443522],[121.41506544787333,1.2891550390443522],[121.41506544787333,-2.435070629305999],[117.69083977952297,-2.435070629305999],[117.69083977952297,1.2891550390443522]]],[[[121.41506544787333,1.2891550390443522],[125.13929111622367,1.2891550390443522],[125.13929111622367,-2.435070629305999],[121.41506544787333,-2.435070629305999],[121.41506544787333,1.2891550390443522]]],[[[132.58774245292437,1.2891550390443522],[136.31196812127473,1.2891550390443522],[136.31196812127473,-2.435070629305999],[132.58774245292437,-2.435070629305999],[132.58774245292437,1.2891550390443522]]],[[[-82.16745648141196,1.2891550390443522],[-78.44323081306159,1.2891550390443522],[-78.44323081306159,-2.435070629305999],[-82.16745648141196,-2.435070629305999],[-82.16745648141196,1.2891550390443522]]],[[[-48.64942546625875,1.2891550390443522],[-44.92519979790843,1.2891550390443522],[-44.92519979790843,-2.435070629305999],[-48.64942546625875,-2.435070629305999],[-48.64942546625875,1.2891550390443522]]],[[[117.69083977952297,-2.435070629305999],[121.41506544787333,-2.435070629305999],[121.41506544787333,-6.15929629765635],[117.69083977952297,-6.15929629765635],[117.69083977952297,-2.435070629305999]]],[[[121.41506544787333,-2.435070629305999],[125.13929111622367,-2.435070629305999],[125.13929111622367,-6.15929629765635],[121.41506544787333,-6.15929629765635],[121.41506544787333,-2.435070629305999]]],[[[132.58774245292437,-2.435070629305999],[136.31196812127473,-2.435070629305999],[136.31196812127473,-6.15929629765635],[132.58774245292437,-6.15929629765635],[132.58774245292437,-2.435070629305999]]],[[[143.76041945797544,-2.435070629305999],[147.48464512632577,-2.435070629305999],[147.48464512632577,-6.15929629765635],[143.76041945797544,-6.15929629765635],[143.76041945797544,-2.435070629305999]]],[[[106.51816277447192,-6.15929629765635],[110.24238844282227,-6.15929629765635],[110.24238844282227,-9.8835219660067],[106.51816277447192,-9.8835219660067],[106.51816277447192,-6.15929629765635]]],[[[110.24238844282227,-6.15929629765635],[113.96661411117262,-6.15929629765635],[113.96661411117262,-9.8835219660067],[110.24238844282227,-9.8835219660067],[110.24238844282227,-6.15929629765635]]],[[[117.69083977952297,-6.15929629765635],[121.41506544787333,-6.15929629765635],[121.41506544787333,-9.8835219660067],[117.69083977952297,-9.8835219660067],[117.69083977952297,-6.15929629765635]]],[[[136.31196812127473,-6.15929629765635],[140.0361937896251,-6.15929629765635],[140.0361937896251,-9.8835219660067],[136.31196812127473,-9.8835219660067],[136.31196812127473,-6.15929629765635]]],[[[147.48464512632577,-6.15929629765635],[151.20887079467613,-6.15929629765635],[151.20887079467613,-9.8835219660067],[147.48464512632577,-9.8835219660067],[147.48464512632577,-6.15929629765635]]],[[[128.86351678457402,-9.8835219660067],[132.58774245292437,-9.8835219660067],[132.58774245292437,-13.60774763435705],[128.86351678457402,-13.60774763435705],[128.86351678457402,-9.8835219660067]]],[[[132.58774245292437,-9.8835219660067],[136.31196812127473,-9.8835219660067],[136.31196812127473,-13.60774763435705],[132.58774245292437,-13.60774763435705],[132.58774245292437,-9.8835219660067]]],[[[140.0361937896251,-9.8835219660067],[143.76041945797544,-9.8835219660067],[143.76041945797544,-13.60774763435705],[140.0361937896251,-13.60774763435705],[140.0361937896251,-9.8835219660067]]],[[[9.688295397362786,-13.60774763435705],[13.412521065713134,-13.60774763435705],[13.412521065713134,-17.331973302707404],[9.688295397362786,-17.331973302707404],[9.688295397362786,-13.60774763435705]]],[[[43.20632641251594,-13.60774763435705],[46.93055208086631,-13.60774763435705],[46.93055208086631,-17.331973302707404],[43.20632641251594,-17.331973302707404],[43.20632641251594,-13.60774763435705]]],[[[143.76041945797544,-13.60774763435705],[147.48464512632577,-13.60774763435705],[147.48464512632577,-17.331973302707404],[143.76041945797544,-17.331973302707404],[143.76041945797544,-13.60774763435705]]],[[[46.93055208086631,-17.331973302707404],[50.65477774921666,-17.331973302707404],[50.65477774921666,-21.056198971057754],[46.93055208086631,-21.056198971057754],[46.93055208086631,-17.331973302707404]]],[[[117.69083977952297,-17.331973302707404],[121.41506544787333,-17.331973302707404],[121.41506544787333,-21.056198971057754],[117.69083977952297,-21.056198971057754],[117.69083977952297,-17.331973302707404]]],[[[-41.200974129558105,-17.331973302707404],[-37.476748461207734,-17.331973302707404],[-37.476748461207734,-21.056198971057754],[-41.200974129558105,-21.056198971057754],[-41.200974129558105,-17.331973302707404]]],[[[-44.92519979790843,-21.056198971057754],[-41.200974129558105,-21.056198971057754],[-41.200974129558105,-24.780424639408103],[-44.92519979790843,-24.780424639408103],[-44.92519979790843,-21.056198971057754]]],[[[13.412521065713134,-24.780424639408103],[17.136746734063507,-24.780424639408103],[17.136746734063507,-28.504650307758457],[13.412521065713134,-28.504650307758457],[13.412521065713134,-24.780424639408103]]],[[[151.20887079467613,-28.504650307758457],[154.9330964630265,-28.504650307758457],[154.9330964630265,-32.22887597610881],[151.20887079467613,-32.22887597610881],[151.20887079467613,-28.504650307758457]]],[[[-52.373651134609126,-28.504650307758457],[-48.64942546625875,-28.504650307758457],[-48.64942546625875,-32.22887597610881],[-52.373651134609126,-32.22887597610881],[-52.373651134609126,-28.504650307758457]]],[[[17.136746734063507,-32.22887597610881],[20.860972402413857,-32.22887597610881],[20.860972402413857,-35.95310164445915],[17.136746734063507,-35.95310164445915],[17.136746734063507,-32.22887597610881]]],[[[20.860972402413857,-32.22887597610881],[24.585198070764203,-32.22887597610881],[24.585198070764203,-35.95310164445915],[20.860972402413857,-35.95310164445915],[20.860972402413857,-32.22887597610881]]],[[[24.585198070764203,-32.22887597610881],[28.30942373911455,-32.22887597610881],[28.30942373911455,-35.95310164445915],[24.585198070764203,-35.95310164445915],[24.585198070764203,-32.22887597610881]]],[[[113.96661411117262,-32.22887597610881],[117.69083977952297,-32.22887597610881],[117.69083977952297,-35.95310164445915],[113.96661411117262,-35.95310164445915],[113.96661411117262,-32.22887597610881]]],[[[121.41506544787333,-32.22887597610881],[125.13929111622367,-32.22887597610881],[125.13929111622367,-35.95310164445915],[121.41506544787333,-35.95310164445915],[121.41506544787333,-32.22887597610881]]],[[[132.58774245292437,-32.22887597610881],[136.31196812127473,-32.22887597610881],[136.31196812127473,-35.95310164445915],[132.58774245292437,-35.95310164445915],[132.58774245292437,-32.22887597610881]]],[[[147.48464512632577,-35.95310164445915],[151.20887079467613,-35.95310164445915],[151.20887079467613,-39.67732731280951],[147.48464512632577,-39.67732731280951],[147.48464512632577,-35.95310164445915]]],[[[-59.82210247130982,-35.95310164445915],[-56.0978768029595,-35.95310164445915],[-56.0978768029595,-39.67732731280951],[-59.82210247130982,-39.67732731280951],[-59.82210247130982,-35.95310164445915]]],[[[143.76041945797544,-39.67732731280951],[147.48464512632577,-39.67732731280951],[147.48464512632577,-43.40155298115986],[143.76041945797544,-43.40155298115986],[143.76041945797544,-39.67732731280951]]],[[[169.8299991364279,-39.67732731280951],[173.55422480477824,-39.67732731280951],[173.55422480477824,-43.40155298115986],[169.8299991364279,-43.40155298115986],[169.8299991364279,-39.67732731280951]]],[[[173.55422480477824,-39.67732731280951],[177.2784504731286,-39.67732731280951],[177.2784504731286,-43.40155298115986],[173.55422480477824,-43.40155298115986],[173.55422480477824,-39.67732731280951]]],[[[166.10577346807753,-43.40155298115986],[169.8299991364279,-43.40155298115986],[169.8299991364279,-47.12577864951021],[166.10577346807753,-47.12577864951021],[166.10577346807753,-43.40155298115986]]],[[[169.8299991364279,-43.40155298115986],[173.55422480477824,-43.40155298115986],[173.55422480477824,-47.12577864951021],[169.8299991364279,-47.12577864951021],[169.8299991364279,-43.40155298115986]]],[[[-67.27055380801052,-43.40155298115986],[-63.54632813966014,-43.40155298115986],[-63.54632813966014,-47.12577864951021],[-67.27055380801052,-47.12577864951021],[-67.27055380801052,-43.40155298115986]]],[[[-63.54632813966014,-62.022681322911616],[-59.82210247130982,-62.022681322911616],[-59.82210247130982,-65.74690699126197],[-63.54632813966014,-65.74690699126197],[-63.54632813966014,-62.022681322911616]]],[[[-59.82210247130982,-62.022681322911616],[-56.0978768029595,-62.022681322911616],[-56.0978768029595,-65.74690699126197],[-59.82210247130982,-65.74690699126197],[-59.82210247130982,-62.022681322911616]]],[[[43.20632641251594,-65.74690699126197],[46.93055208086631,-65.74690699126197],[46.93055208086631,-69.47113265961231],[43.20632641251594,-69.47113265961231],[43.20632641251594,-65.74690699126197]]],[[[58.10322908591736,-65.74690699126197],[61.827454754267706,-65.74690699126197],[61.827454754267706,-69.47113265961231],[58.10322908591736,-69.47113265961231],[58.10322908591736,-65.74690699126197]]],[[[61.827454754267706,-65.74690699126197],[65.55168042261806,-65.74690699126197],[65.55168042261806,-69.47113265961231],[61.827454754267706,-69.47113265961231],[61.827454754267706,-65.74690699126197]]],[[[65.55168042261806,-65.74690699126197],[69.2759060909684,-65.74690699126197],[69.2759060909684,-69.47113265961231],[65.55168042261806,-69.47113265961231],[65.55168042261806,-65.74690699126197]]],[[[80.44858309601946,-65.74690699126197],[84.1728087643698,-65.74690699126197],[84.1728087643698,-69.47113265961231],[80.44858309601946,-69.47113265961231],[80.44858309601946,-65.74690699126197]]],[[[143.76041945797544,-65.74690699126197],[147.48464512632577,-65.74690699126197],[147.48464512632577,-69.47113265961231],[143.76041945797544,-69.47113265961231],[143.76041945797544,-65.74690699126197]]],[[[147.48464512632577,-65.74690699126197],[151.20887079467613,-65.74690699126197],[151.20887079467613,-69.47113265961231],[147.48464512632577,-69.47113265961231],[147.48464512632577,-65.74690699126197]]],[[[-1.4843816076882574,-69.47113265961231],[2.2398440606620906,-69.47113265961231],[2.2398440606620906,-73.19535832796267],[-1.4843816076882574,-73.19535832796267],[-1.4843816076882574,-69.47113265961231]]],[[[69.2759060909684,-69.47113265961231],[73.00013175931876,-69.47113265961231],[73.00013175931876,-73.19535832796267],[69.2759060909684,-73.19535832796267],[69.2759060909684,-69.47113265961231]]],[[[-100.78858482316367,-69.47113265961231],[-97.06435915481335,-69.47113265961231],[-97.06435915481335,-73.19535832796267],[-100.78858482316367,-73.19535832796267],[-100.78858482316367,-69.47113265961231]]],[[[-74.7190051447112,-69.47113265961231],[-70.99477947636089,-69.47113265961231],[-70.99477947636089,-73.19535832796267],[-74.7190051447112,-73.19535832796267],[-74.7190051447112,-69.47113265961231]]],[[[-11.40716878275527,-69.47113265961231],[-7.682943114404897,-69.47113265961231],[-7.682943114404897,-73.19535832796267],[-11.40716878275527,-73.19535832796267],[-11.40716878275527,-69.47113265961231]]],[[[-3.9587174460545747,-69.47113265961231],[-0.23449177770420107,-69.47113265961231],[-0.23449177770420107,-73.19535832796267],[-3.9587174460545747,-73.19535832796267],[-3.9587174460545747,-69.47113265961231]]],[[[162.38154779972717,-73.19535832796267],[166.10577346807753,-73.19535832796267],[166.10577346807753,-76.91958399631302],[162.38154779972717,-76.91958399631302],[162.38154779972717,-73.19535832796267]]],[[[-145.4792928433679,-73.19535832796267],[-141.75506717501756,-73.19535832796267],[-141.75506717501756,-76.91958399631302],[-145.4792928433679,-76.91958399631302],[-145.4792928433679,-73.19535832796267]]],[[[-141.75506717501756,-73.19535832796267],[-138.0308415066672,-73.19535832796267],[-138.0308415066672,-76.91958399631302],[-141.75506717501756,-76.91958399631302],[-141.75506717501756,-73.19535832796267]]],[[[-138.0308415066672,-73.19535832796267],[-134.30661583831684,-73.19535832796267],[-134.30661583831684,-76.91958399631302],[-138.0308415066672,-76.91958399631302],[-138.0308415066672,-73.19535832796267]]],[[[-134.30661583831684,-73.19535832796267],[-130.58239016996652,-73.19535832796267],[-130.58239016996652,-76.91958399631302],[-134.30661583831684,-76.91958399631302],[-134.30661583831684,-73.19535832796267]]],[[[-130.58239016996652,-73.19535832796267],[-126.85816450161613,-73.19535832796267],[-126.85816450161613,-76.91958399631302],[-130.58239016996652,-76.91958399631302],[-130.58239016996652,-73.19535832796267]]],[[[-111.96126182821475,-73.19535832796267],[-108.23703615986442,-73.19535832796267],[-108.23703615986442,-76.91958399631302],[-111.96126182821475,-76.91958399631302],[-111.96126182821475,-73.19535832796267]]],[[[-108.23703615986442,-73.19535832796267],[-104.51281049151405,-73.19535832796267],[-104.51281049151405,-76.91958399631302],[-108.23703615986442,-76.91958399631302],[-108.23703615986442,-73.19535832796267]]],[[[-63.54632813966014,-73.19535832796267],[-59.82210247130982,-73.19535832796267],[-59.82210247130982,-76.91958399631302],[-63.54632813966014,-76.91958399631302],[-63.54632813966014,-73.19535832796267]]],[[[-22.57984578780629,-73.19535832796267],[-18.855620119455967,-73.19535832796267],[-18.855620119455967,-76.91958399631302],[-22.57984578780629,-76.91958399631302],[-22.57984578780629,-73.19535832796267]]]]},{"type":"MultiPolygon","coordinates":[[[[13.412521065713134,79.49789407440171],[17.136746734063507,79.49789407440171],[17.136746734063507,75.77366840605137],[13.412521065713134,75.77366840605137],[13.412521065713134,79.49789407440171]]],[[[99.06971143777122,79.49789407440171],[102.79393710612158,79.49789407440171],[102.79393710612158,75.77366840605137],[99.06971143777122,75.77366840605137],[99.06971143777122,79.49789407440171]]],[[[102.79393710612158,79.49789407440171],[106.51816277447192,79.49789407440171],[106.51816277447192,75.77366840605137],[102.79393710612158,75.77366840605137],[102.79393710612158,79.49789407440171]]],[[[-104.51281049151405,79.49789407440171],[-100.78858482316367,79.49789407440171],[-100.78858482316367,75.77366840605137],[-104.51281049151405,75.77366840605137],[-104.51281049151405,79.49789407440171]]],[[[-97.06435915481335,79.49789407440171],[-93.34013348646297,79.49789407440171],[-93.34013348646297,75.77366840605137],[-97.06435915481335,75.77366840605137],[-97.06435915481335,79.49789407440171]]],[[[-93.34013348646297,79.49789407440171],[-89.61590781811266,79.49789407440171],[-89.61590781811266,75.77366840605137],[-93.34013348646297,75.77366840605137],[-93.34013348646297,79.49789407440171]]],[[[-89.61590781811266,79.49789407440171],[-85.89168214976227,79.49789407440171],[-85.89168214976227,75.77366840605137],[-89.61590781811266,75.77366840605137],[-89.61590781811266,79.49789407440171]]],[[[-85.89168214976227,79.49789407440171],[-82.16745648141196,79.49789407440171],[-82.16745648141196,75.77366840605137],[-85.89168214976227,75.77366840605137],[-85.89168214976227,79.49789407440171]]],[[[-82.16745648141196,79.49789407440171],[-78.44323081306159,79.49789407440171],[-78.44323081306159,75.77366840605137],[-82.16745648141196,75.77366840605137],[-82.16745648141196,79.49789407440171]]],[[[-70.99477947636089,79.49789407440171],[-67.27055380801052,79.49789407440171],[-67.27055380801052,75.77366840605137],[-70.99477947636089,75.77366840605137],[-70.99477947636089,79.49789407440171]]],[[[-22.57984578780629,79.49789407440171],[-18.855620119455967,79.49789407440171],[-18.855620119455967,75.77366840605137],[-22.57984578780629,75.77366840605137],[-22.57984578780629,79.49789407440171]]],[[[54.37900341756701,75.77366840605137],[58.10322908591736,75.77366840605137],[58.10322908591736,72.04944273770103],[54.37900341756701,72.04944273770103],[54.37900341756701,75.77366840605137]]],[[[84.1728087643698,75.77366840605137],[87.89703443272018,75.77366840605137],[87.89703443272018,72.04944273770103],[84.1728087643698,72.04944273770103],[84.1728087643698,75.77366840605137]]],[[[110.24238844282227,75.77366840605137],[113.96661411117262,75.77366840605137],[113.96661411117262,72.04944273770103],[110.24238844282227,72.04944273770103],[110.24238844282227,75.77366840605137]]],[[[140.0361937896251,75.77366840605137],[143.76041945797544,75.77366840605137],[143.76041945797544,72.04944273770103],[140.0361937896251,72.04944273770103],[140.0361937896251,75.77366840605137]]],[[[-123.13393883326582,75.77366840605137],[-119.40971316491543,75.77366840605137],[-119.40971316491543,72.04944273770103],[-123.13393883326582,72.04944273770103],[-123.13393883326582,75.77366840605137]]],[[[-119.40971316491543,75.77366840605137],[-115.68548749656506,75.77366840605137],[-115.68548749656506,72.04944273770103],[-119.40971316491543,72.04944273770103],[-119.40971316491543,75.77366840605137]]],[[[-115.68548749656506,75.77366840605137],[-111.96126182821475,75.77366840605137],[-111.96126182821475,72.04944273770103],[-115.68548749656506,72.04944273770103],[-115.68548749656506,75.77366840605137]]],[[[-100.78858482316367,75.77366840605137],[-97.06435915481335,75.77366840605137],[-97.06435915481335,72.04944273770103],[-100.78858482316367,72.04944273770103],[-100.78858482316367,75.77366840605137]]],[[[-97.06435915481335,75.77366840605137],[-93.34013348646297,75.77366840605137],[-93.34013348646297,72.04944273770103],[-97.06435915481335,72.04944273770103],[-97.06435915481335,75.77366840605137]]],[[[-89.61590781811266,75.77366840605137],[-85.89168214976227,75.77366840605137],[-85.89168214976227,72.04944273770103],[-89.61590781811266,72.04944273770103],[-89.61590781811266,75.77366840605137]]],[[[-85.89168214976227,75.77366840605137],[-82.16745648141196,75.77366840605137],[-82.16745648141196,72.04944273770103],[-85.89168214976227,72.04944273770103],[-85.89168214976227,75.77366840605137]]],[[[-82.16745648141196,75.77366840605137],[-78.44323081306159,75.77366840605137],[-78.44323081306159,72.04944273770103],[-82.16745648141196,72.04944273770103],[-82.16745648141196,75.77366840605137]]],[[[20.860972402413857,72.04944273770103],[24.585198070764203,72.04944273770103],[24.585198070764203,68.32521706935066],[20.860972402413857,68.32521706935066],[20.860972402413857,72.04944273770103]]],[[[24.585198070764203,72.04944273770103],[28.30942373911455,72.04944273770103],[28.30942373911455,68.32521706935066],[24.585198070764203,68.32521706935066],[24.585198070764203,72.04944273770103]]],[[[65.55168042261806,72.04944273770103],[69.2759060909684,72.04944273770103],[69.2759060909684,68.32521706935066],[65.55168042261806,68.32521706935066],[65.55168042261806,72.04944273770103]]],[[[73.00013175931876,72.04944273770103],[76.72435742766912,72.04944273770103],[76.72435742766912,68.32521706935066],[73.00013175931876,68.32521706935066],[73.00013175931876,72.04944273770103]]],[[[128.86351678457402,72.04944273770103],[132.58774245292437,72.04944273770103],[132.58774245292437,68.32521706935066],[128.86351678457402,68.32521706935066],[128.86351678457402,72.04944273770103]]],[[[151.20887079467613,72.04944273770103],[154.9330964630265,72.04944273770103],[154.9330964630265,68.32521706935066],[151.20887079467613,68.32521706935066],[151.20887079467613,72.04944273770103]]],[[[154.9330964630265,72.04944273770103],[158.65732213137684,72.04944273770103],[158.65732213137684,68.32521706935066],[154.9330964630265,68.32521706935066],[154.9330964630265,72.04944273770103]]],[[[-160.3761955167693,72.04944273770103],[-156.65196984841896,72.04944273770103],[-156.65196984841896,68.32521706935066],[-160.3761955167693,68.32521706935066],[-160.3761955167693,72.04944273770103]]],[[[-156.65196984841896,72.04944273770103],[-152.9277441800686,72.04944273770103],[-152.9277441800686,68.32521706935066],[-156.65196984841896,68.32521706935066],[-156.65196984841896,72.04944273770103]]],[[[-152.9277441800686,72.04944273770103],[-149.20351851171824,72.04944273770103],[-149.20351851171824,68.32521706935066],[-152.9277441800686,68.32521706935066],[-152.9277441800686,72.04944273770103]]],[[[-119.40971316491543,72.04944273770103],[-115.68548749656506,72.04944273770103],[-115.68548749656506,68.32521706935066],[-119.40971316491543,68.32521706935066],[-119.40971316491543,72.04944273770103]]],[[[-97.06435915481335,72.04944273770103],[-93.34013348646297,72.04944273770103],[-93.34013348646297,68.32521706935066],[-97.06435915481335,68.32521706935066],[-97.06435915481335,72.04944273770103]]],[[[-82.16745648141196,72.04944273770103],[-78.44323081306159,72.04944273770103],[-78.44323081306159,68.32521706935066],[-82.16745648141196,68.32521706935066],[-82.16745648141196,72.04944273770103]]],[[[-78.44323081306159,72.04944273770103],[-74.7190051447112,72.04944273770103],[-74.7190051447112,68.32521706935066],[-78.44323081306159,68.32521706935066],[-78.44323081306159,72.04944273770103]]],[[[-70.99477947636089,72.04944273770103],[-67.27055380801052,72.04944273770103],[-67.27055380801052,68.32521706935066],[-70.99477947636089,68.32521706935066],[-70.99477947636089,72.04944273770103]]],[[[-26.304071456156663,72.04944273770103],[-22.57984578780629,72.04944273770103],[-22.57984578780629,68.32521706935066],[-26.304071456156663,68.32521706935066],[-26.304071456156663,72.04944273770103]]],[[[13.412521065713134,68.32521706935066],[17.136746734063507,68.32521706935066],[17.136746734063507,64.60099140100031],[13.412521065713134,64.60099140100031],[13.412521065713134,68.32521706935066]]],[[[20.860972402413857,68.32521706935066],[24.585198070764203,68.32521706935066],[24.585198070764203,64.60099140100031],[20.860972402413857,64.60099140100031],[20.860972402413857,68.32521706935066]]],[[[32.0336494074649,68.32521706935066],[35.75787507581525,68.32521706935066],[35.75787507581525,64.60099140100031],[32.0336494074649,64.60099140100031],[32.0336494074649,68.32521706935066]]],[[[35.75787507581525,68.32521706935066],[39.48210074416559,68.32521706935066],[39.48210074416559,64.60099140100031],[35.75787507581525,64.60099140100031],[35.75787507581525,68.32521706935066]]],[[[39.48210074416559,68.32521706935066],[43.20632641251594,68.32521706935066],[43.20632641251594,64.60099140100031],[39.48210074416559,64.60099140100031],[39.48210074416559,68.32521706935066]]],[[[43.20632641251594,68.32521706935066],[46.93055208086631,68.32521706935066],[46.93055208086631,64.60099140100031],[43.20632641251594,64.60099140100031],[43.20632641251594,68.32521706935066]]],[[[46.93055208086631,68.32521706935066],[50.65477774921666,68.32521706935066],[50.65477774921666,64.60099140100031],[46.93055208086631,64.60099140100031],[46.93055208086631,68.32521706935066]]],[[[73.00013175931876,68.32521706935066],[76.72435742766912,68.32521706935066],[76.72435742766912,64.60099140100031],[73.00013175931876,64.60099140100031],[73.00013175931876,68.32521706935066]]],[[[-178.99732385852104,68.32521706935066],[-175.2730981901707,68.32521706935066],[-175.2730981901707,64.60099140100031],[-178.99732385852104,64.60099140100031],[-178.99732385852104,68.32521706935066]]],[[[-175.2730981901707,68.32521706935066],[-171.54887252182036,68.32521706935066],[-171.54887252182036,64.60099140100031],[-175.2730981901707,64.60099140100031],[-175.2730981901707,68.32521706935066]]],[[[-111.96126182821475,68.32521706935066],[-108.23703615986442,68.32521706935066],[-108.23703615986442,64.60099140100031],[-111.96126182821475,64.60099140100031],[-111.96126182821475,68.32521706935066]]],[[[-89.61590781811266,68.32521706935066],[-85.89168214976227,68.32521706935066],[-85.89168214976227,64.60099140100031],[-89.61590781811266,64.60099140100031],[-89.61590781811266,68.32521706935066]]],[[[-85.89168214976227,68.32521706935066],[-82.16745648141196,68.32521706935066],[-82.16745648141196,64.60099140100031],[-85.89168214976227,64.60099140100031],[-85.89168214976227,68.32521706935066]]],[[[-74.7190051447112,68.32521706935066],[-70.99477947636089,68.32521706935066],[-70.99477947636089,64.60099140100031],[-74.7190051447112,64.60099140100031],[-74.7190051447112,68.32521706935066]]],[[[-67.27055380801052,68.32521706935066],[-63.54632813966014,68.32521706935066],[-63.54632813966014,64.60099140100031],[-67.27055380801052,64.60099140100031],[-67.27055380801052,68.32521706935066]]],[[[-41.200974129558105,68.32521706935066],[-37.476748461207734,68.32521706935066],[-37.476748461207734,64.60099140100031],[-41.200974129558105,64.60099140100031],[-41.200974129558105,68.32521706935066]]],[[[-37.476748461207734,68.32521706935066],[-33.752522792857356,68.32521706935066],[-33.752522792857356,64.60099140100031],[-37.476748461207734,64.60099140100031],[-37.476748461207734,68.32521706935066]]],[[[5.964069729012438,64.60099140100031],[9.688295397362786,64.60099140100031],[9.688295397362786,60.87676573264997],[5.964069729012438,60.87676573264997],[5.964069729012438,64.60099140100031]]],[[[20.860972402413857,64.60099140100031],[24.585198070764203,64.60099140100031],[24.585198070764203,60.87676573264997],[20.860972402413857,60.87676573264997],[20.860972402413857,64.60099140100031]]],[[[154.9330964630265,64.60099140100031],[158.65732213137684,64.60099140100031],[158.65732213137684,60.87676573264997],[154.9330964630265,60.87676573264997],[154.9330964630265,64.60099140100031]]],[[[173.55422480477824,64.60099140100031],[177.2784504731286,64.60099140100031],[177.2784504731286,60.87676573264997],[173.55422480477824,60.87676573264997],[173.55422480477824,64.60099140100031]]],[[[-164.10042118511967,64.60099140100031],[-160.3761955167693,64.60099140100031],[-160.3761955167693,60.87676573264997],[-164.10042118511967,60.87676573264997],[-164.10042118511967,64.60099140100031]]],[[[-70.99477947636089,64.60099140100031],[-67.27055380801052,64.60099140100031],[-67.27055380801052,60.87676573264997],[-70.99477947636089,60.87676573264997],[-70.99477947636089,64.60099140100031]]],[[[-44.92519979790843,64.60099140100031],[-41.200974129558105,64.60099140100031],[-41.200974129558105,60.87676573264997],[-44.92519979790843,60.87676573264997],[-44.92519979790843,64.60099140100031]]],[[[5.964069729012438,60.87676573264997],[9.688295397362786,60.87676573264997],[9.688295397362786,57.15254006429962],[5.964069729012438,57.15254006429962],[5.964069729012438,60.87676573264997]]],[[[9.688295397362786,60.87676573264997],[13.412521065713134,60.87676573264997],[13.412521065713134,57.15254006429962],[9.688295397362786,57.15254006429962],[9.688295397362786,60.87676573264997]]],[[[24.585198070764203,60.87676573264997],[28.30942373911455,60.87676573264997],[28.30942373911455,57.15254006429962],[24.585198070764203,57.15254006429962],[24.585198070764203,60.87676573264997]]],[[[140.0361937896251,60.87676573264997],[143.76041945797544,60.87676573264997],[143.76041945797544,57.15254006429962],[140.0361937896251,57.15254006429962],[140.0361937896251,60.87676573264997]]],[[[158.65732213137684,60.87676573264997],[162.38154779972717,60.87676573264997],[162.38154779972717,57.15254006429962],[158.65732213137684,57.15254006429962],[158.65732213137684,60.87676573264997]]],[[[-160.3761955167693,60.87676573264997],[-156.65196984841896,60.87676573264997],[-156.65196984841896,57.15254006429962],[-160.3761955167693,57.15254006429962],[-160.3761955167693,60.87676573264997]]],[[[-156.65196984841896,60.87676573264997],[-152.9277441800686,60.87676573264997],[-152.9277441800686,57.15254006429962],[-156.65196984841896,57.15254006429962],[-156.65196984841896,60.87676573264997]]],[[[-138.0308415066672,60.87676573264997],[-134.30661583831684,60.87676573264997],[-134.30661583831684,57.15254006429962],[-138.0308415066672,57.15254006429962],[-138.0308415066672,60.87676573264997]]],[[[-97.06435915481335,60.87676573264997],[-93.34013348646297,60.87676573264997],[-93.34013348646297,57.15254006429962],[-97.06435915481335,57.15254006429962],[-97.06435915481335,60.87676573264997]]],[[[-78.44323081306159,60.87676573264997],[-74.7190051447112,60.87676573264997],[-74.7190051447112,57.15254006429962],[-78.44323081306159,57.15254006429962],[-78.44323081306159,60.87676573264997]]],[[[-70.99477947636089,60.87676573264997],[-67.27055380801052,60.87676573264997],[-67.27055380801052,57.15254006429962],[-70.99477947636089,57.15254006429962],[-70.99477947636089,60.87676573264997]]],[[[-67.27055380801052,60.87676573264997],[-63.54632813966014,60.87676573264997],[-63.54632813966014,57.15254006429962],[-67.27055380801052,57.15254006429962],[-67.27055380801052,60.87676573264997]]],[[[9.688295397362786,57.15254006429962],[13.412521065713134,57.15254006429962],[13.412521065713134,53.428314395949265],[9.688295397362786,53.428314395949265],[9.688295397362786,57.15254006429962]]],[[[154.9330964630265,57.15254006429962],[158.65732213137684,57.15254006429962],[158.65732213137684,53.428314395949265],[154.9330964630265,53.428314395949265],[154.9330964630265,57.15254006429962]]],[[[158.65732213137684,57.15254006429962],[162.38154779972717,57.15254006429962],[162.38154779972717,53.428314395949265],[158.65732213137684,53.428314395949265],[158.65732213137684,57.15254006429962]]],[[[-134.30661583831684,57.15254006429962],[-130.58239016996652,57.15254006429962],[-130.58239016996652,53.428314395949265],[-134.30661583831684,53.428314395949265],[-134.30661583831684,57.15254006429962]]],[[[-89.61590781811266,57.15254006429962],[-85.89168214976227,57.15254006429962],[-85.89168214976227,53.428314395949265],[-89.61590781811266,53.428314395949265],[-89.61590781811266,57.15254006429962]]],[[[-78.44323081306159,57.15254006429962],[-74.7190051447112,57.15254006429962],[-74.7190051447112,53.428314395949265],[-78.44323081306159,53.428314395949265],[-78.44323081306159,57.15254006429962]]],[[[-63.54632813966014,57.15254006429962],[-59.82210247130982,57.15254006429962],[-59.82210247130982,53.428314395949265],[-63.54632813966014,53.428314395949265],[-63.54632813966014,57.15254006429962]]],[[[-7.682943114404897,57.15254006429962],[-3.9587174460545747,57.15254006429962],[-3.9587174460545747,53.428314395949265],[-7.682943114404897,53.428314395949265],[-7.682943114404897,57.15254006429962]]],[[[-3.9587174460545747,57.15254006429962],[-0.23449177770420107,57.15254006429962],[-0.23449177770420107,53.428314395949265],[-3.9587174460545747,53.428314395949265],[-3.9587174460545747,57.15254006429962]]],[[[2.2398440606620906,53.428314395949265],[5.964069729012438,53.428314395949265],[5.964069729012438,49.704088727598915],[2.2398440606620906,49.704088727598915],[2.2398440606620906,53.428314395949265]]],[[[140.0361937896251,53.428314395949265],[143.76041945797544,53.428314395949265],[143.76041945797544,49.704088727598915],[140.0361937896251,49.704088727598915],[140.0361937896251,53.428314395949265]]],[[[-82.16745648141196,53.428314395949265],[-78.44323081306159,53.428314395949265],[-78.44323081306159,49.704088727598915],[-82.16745648141196,49.704088727598915],[-82.16745648141196,53.428314395949265]]],[[[-59.82210247130982,53.428314395949265],[-56.0978768029595,53.428314395949265],[-56.0978768029595,49.704088727598915],[-59.82210247130982,49.704088727598915],[-59.82210247130982,53.428314395949265]]],[[[-3.9587174460545747,53.428314395949265],[-0.23449177770420107,53.428314395949265],[-0.23449177770420107,49.704088727598915],[-3.9587174460545747,49.704088727598915],[-3.9587174460545747,53.428314395949265]]],[[[-1.4843816076882574,49.704088727598915],[2.2398440606620906,49.704088727598915],[2.2398440606620906,45.979863059248565],[-1.4843816076882574,45.979863059248565],[-1.4843816076882574,49.704088727598915]]],[[[35.75787507581525,49.704088727598915],[39.48210074416559,49.704088727598915],[39.48210074416559,45.979863059248565],[35.75787507581525,45.979863059248565],[35.75787507581525,49.704088727598915]]],[[[50.65477774921666,49.704088727598915],[54.37900341756701,49.704088727598915],[54.37900341756701,45.979863059248565],[50.65477774921666,45.979863059248565],[50.65477774921666,49.704088727598915]]],[[[136.31196812127473,49.704088727598915],[140.0361937896251,49.704088727598915],[140.0361937896251,45.979863059248565],[136.31196812127473,45.979863059248565],[136.31196812127473,49.704088727598915]]],[[[-67.27055380801052,49.704088727598915],[-63.54632813966014,49.704088727598915],[-63.54632813966014,45.979863059248565],[-67.27055380801052,45.979863059248565],[-67.27055380801052,49.704088727598915]]],[[[-56.0978768029595,49.704088727598915],[-52.373651134609126,49.704088727598915],[-52.373651134609126,45.979863059248565],[-56.0978768029595,45.979863059248565],[-56.0978768029595,49.704088727598915]]],[[[-3.9587174460545747,49.704088727598915],[-0.23449177770420107,49.704088727598915],[-0.23449177770420107,45.979863059248565],[-3.9587174460545747,45.979863059248565],[-3.9587174460545747,49.704088727598915]]],[[[-1.4843816076882574,45.979863059248565],[2.2398440606620906,45.979863059248565],[2.2398440606620906,42.255637390898215],[-1.4843816076882574,42.255637390898215],[-1.4843816076882574,45.979863059248565]]],[[[2.2398440606620906,45.979863059248565],[5.964069729012438,45.979863059248565],[5.964069729012438,42.255637390898215],[2.2398440606620906,42.255637390898215],[2.2398440606620906,45.979863059248565]]],[[[5.964069729012438,45.979863059248565],[9.688295397362786,45.979863059248565],[9.688295397362786,42.255637390898215],[5.964069729012438,42.255637390898215],[5.964069729012438,45.979863059248565]]],[[[9.688295397362786,45.979863059248565],[13.412521065713134,45.979863059248565],[13.412521065713134,42.255637390898215],[9.688295397362786,42.255637390898215],[9.688295397362786,45.979863059248565]]],[[[13.412521065713134,45.979863059248565],[17.136746734063507,45.979863059248565],[17.136746734063507,42.255637390898215],[13.412521065713134,42.255637390898215],[13.412521065713134,45.979863059248565]]],[[[50.65477774921666,45.979863059248565],[54.37900341756701,45.979863059248565],[54.37900341756701,42.255637390898215],[50.65477774921666,42.255637390898215],[50.65477774921666,45.979863059248565]]],[[[132.58774245292437,45.979863059248565],[136.31196812127473,45.979863059248565],[136.31196812127473,42.255637390898215],[132.58774245292437,42.255637390898215],[132.58774245292437,45.979863059248565]]],[[[-70.99477947636089,45.979863059248565],[-67.27055380801052,45.979863059248565],[-67.27055380801052,42.255637390898215],[-70.99477947636089,42.255637390898215],[-70.99477947636089,45.979863059248565]]],[[[13.412521065713134,42.255637390898215],[17.136746734063507,42.255637390898215],[17.136746734063507,38.53141172254786],[13.412521065713134,38.53141172254786],[13.412521065713134,42.255637390898215]]],[[[20.860972402413857,42.255637390898215],[24.585198070764203,42.255637390898215],[24.585198070764203,38.53141172254786],[20.860972402413857,38.53141172254786],[20.860972402413857,42.255637390898215]]],[[[24.585198070764203,42.255637390898215],[28.30942373911455,42.255637390898215],[28.30942373911455,38.53141172254786],[24.585198070764203,38.53141172254786],[24.585198070764203,42.255637390898215]]],[[[28.30942373911455,42.255637390898215],[32.0336494074649,42.255637390898215],[32.0336494074649,38.53141172254786],[28.30942373911455,38.53141172254786],[28.30942373911455,42.255637390898215]]],[[[35.75787507581525,42.255637390898215],[39.48210074416559,42.255637390898215],[39.48210074416559,38.53141172254786],[35.75787507581525,38.53141172254786],[35.75787507581525,42.255637390898215]]],[[[39.48210074416559,42.255637390898215],[43.20632641251594,42.255637390898215],[43.20632641251594,38.53141172254786],[39.48210074416559,38.53141172254786],[39.48210074416559,42.255637390898215]]],[[[46.93055208086631,42.255637390898215],[50.65477774921666,42.255637390898215],[50.65477774921666,38.53141172254786],[46.93055208086631,38.53141172254786],[46.93055208086631,42.255637390898215]]],[[[117.69083977952297,42.255637390898215],[121.41506544787333,42.255637390898215],[121.41506544787333,38.53141172254786],[117.69083977952297,38.53141172254786],[117.69083977952297,42.255637390898215]]],[[[121.41506544787333,42.255637390898215],[125.13929111622367,42.255637390898215],[125.13929111622367,38.53141172254786],[121.41506544787333,38.53141172254786],[121.41506544787333,42.255637390898215]]],[[[125.13929111622367,42.255637390898215],[128.86351678457402,42.255637390898215],[128.86351678457402,38.53141172254786],[125.13929111622367,38.53141172254786],[125.13929111622367,42.255637390898215]]],[[[5.964069729012438,38.53141172254786],[9.688295397362786,38.53141172254786],[9.688295397362786,34.807186054197516],[5.964069729012438,34.807186054197516],[5.964069729012438,38.53141172254786]]],[[[28.30942373911455,38.53141172254786],[32.0336494074649,38.53141172254786],[32.0336494074649,34.807186054197516],[28.30942373911455,34.807186054197516],[28.30942373911455,38.53141172254786]]],[[[32.0336494074649,38.53141172254786],[35.75787507581525,38.53141172254786],[35.75787507581525,34.807186054197516],[32.0336494074649,34.807186054197516],[32.0336494074649,38.53141172254786]]],[[[46.93055208086631,38.53141172254786],[50.65477774921666,38.53141172254786],[50.65477774921666,34.807186054197516],[46.93055208086631,34.807186054197516],[46.93055208086631,38.53141172254786]]],[[[50.65477774921666,38.53141172254786],[54.37900341756701,38.53141172254786],[54.37900341756701,34.807186054197516],[50.65477774921666,34.807186054197516],[50.65477774921666,38.53141172254786]]],[[[117.69083977952297,38.53141172254786],[121.41506544787333,38.53141172254786],[121.41506544787333,34.807186054197516],[117.69083977952297,34.807186054197516],[117.69083977952297,38.53141172254786]]],[[[125.13929111622367,38.53141172254786],[128.86351678457402,38.53141172254786],[128.86351678457402,34.807186054197516],[125.13929111622367,34.807186054197516],[125.13929111622367,38.53141172254786]]],[[[136.31196812127473,38.53141172254786],[140.0361937896251,38.53141172254786],[140.0361937896251,34.807186054197516],[136.31196812127473,34.807186054197516],[136.31196812127473,38.53141172254786]]],[[[-123.13393883326582,38.53141172254786],[-119.40971316491543,38.53141172254786],[-119.40971316491543,34.807186054197516],[-123.13393883326582,34.807186054197516],[-123.13393883326582,38.53141172254786]]],[[[-78.44323081306159,38.53141172254786],[-74.7190051447112,38.53141172254786],[-74.7190051447112,34.807186054197516],[-78.44323081306159,34.807186054197516],[-78.44323081306159,38.53141172254786]]],[[[-7.682943114404897,38.53141172254786],[-3.9587174460545747,38.53141172254786],[-3.9587174460545747,34.807186054197516],[-7.682943114404897,34.807186054197516],[-7.682943114404897,38.53141172254786]]],[[[-3.9587174460545747,38.53141172254786],[-0.23449177770420107,38.53141172254786],[-0.23449177770420107,34.807186054197516],[-3.9587174460545747,34.807186054197516],[-3.9587174460545747,38.53141172254786]]],[[[-1.4843816076882574,34.807186054197516],[2.2398440606620906,34.807186054197516],[2.2398440606620906,31.08296038584716],[-1.4843816076882574,31.08296038584716],[-1.4843816076882574,34.807186054197516]]],[[[9.688295397362786,34.807186054197516],[13.412521065713134,34.807186054197516],[13.412521065713134,31.08296038584716],[9.688295397362786,31.08296038584716],[9.688295397362786,34.807186054197516]]],[[[117.69083977952297,34.807186054197516],[121.41506544787333,34.807186054197516],[121.41506544787333,31.08296038584716],[117.69083977952297,31.08296038584716],[117.69083977952297,34.807186054197516]]],[[[-82.16745648141196,34.807186054197516],[-78.44323081306159,34.807186054197516],[-78.44323081306159,31.08296038584716],[-82.16745648141196,31.08296038584716],[-82.16745648141196,34.807186054197516]]],[[[-1.4843816076882574,31.08296038584716],[2.2398440606620906,31.08296038584716],[2.2398440606620906,27.35873471749681],[-1.4843816076882574,27.35873471749681],[-1.4843816076882574,31.08296038584716]]],[[[46.93055208086631,31.08296038584716],[50.65477774921666,31.08296038584716],[50.65477774921666,27.35873471749681],[46.93055208086631,27.35873471749681],[46.93055208086631,31.08296038584716]]],[[[-115.68548749656506,31.08296038584716],[-111.96126182821475,31.08296038584716],[-111.96126182821475,27.35873471749681],[-115.68548749656506,27.35873471749681],[-115.68548749656506,31.08296038584716]]],[[[-97.06435915481335,31.08296038584716],[-93.34013348646297,31.08296038584716],[-93.34013348646297,27.35873471749681],[-97.06435915481335,27.35873471749681],[-97.06435915481335,31.08296038584716]]],[[[-11.40716878275527,31.08296038584716],[-7.682943114404897,31.08296038584716],[-7.682943114404897,27.35873471749681],[-11.40716878275527,27.35873471749681],[-11.40716878275527,31.08296038584716]]],[[[-1.4843816076882574,27.35873471749681],[2.2398440606620906,27.35873471749681],[2.2398440606620906,23.634509049146455],[-1.4843816076882574,23.634509049146455],[-1.4843816076882574,27.35873471749681]]],[[[32.0336494074649,27.35873471749681],[35.75787507581525,27.35873471749681],[35.75787507581525,23.634509049146455],[32.0336494074649,23.634509049146455],[32.0336494074649,27.35873471749681]]],[[[35.75787507581525,27.35873471749681],[39.48210074416559,27.35873471749681],[39.48210074416559,23.634509049146455],[35.75787507581525,23.634509049146455],[35.75787507581525,27.35873471749681]]],[[[54.37900341756701,27.35873471749681],[58.10322908591736,27.35873471749681],[58.10322908591736,23.634509049146455],[54.37900341756701,23.634509049146455],[54.37900341756701,27.35873471749681]]],[[[61.827454754267706,27.35873471749681],[65.55168042261806,27.35873471749681],[65.55168042261806,23.634509049146455],[61.827454754267706,23.634509049146455],[61.827454754267706,27.35873471749681]]],[[[65.55168042261806,27.35873471749681],[69.2759060909684,27.35873471749681],[69.2759060909684,23.634509049146455],[65.55168042261806,23.634509049146455],[65.55168042261806,27.35873471749681]]],[[[-15.131394451105644,27.35873471749681],[-11.40716878275527,27.35873471749681],[-11.40716878275527,23.634509049146455],[-15.131394451105644,23.634509049146455],[-15.131394451105644,27.35873471749681]]],[[[-1.4843816076882574,23.634509049146455],[2.2398440606620906,23.634509049146455],[2.2398440606620906,19.910283380796105],[-1.4843816076882574,19.910283380796105],[-1.4843816076882574,23.634509049146455]]],[[[69.2759060909684,23.634509049146455],[73.00013175931876,23.634509049146455],[73.00013175931876,19.910283380796105],[69.2759060909684,19.910283380796105],[69.2759060909684,23.634509049146455]]],[[[84.1728087643698,23.634509049146455],[87.89703443272018,23.634509049146455],[87.89703443272018,19.910283380796105],[84.1728087643698,19.910283380796105],[84.1728087643698,23.634509049146455]]],[[[106.51816277447192,23.634509049146455],[110.24238844282227,23.634509049146455],[110.24238844282227,19.910283380796105],[106.51816277447192,19.910283380796105],[106.51816277447192,23.634509049146455]]],[[[-1.4843816076882574,19.910283380796105],[2.2398440606620906,19.910283380796105],[2.2398440606620906,16.186057712445756],[-1.4843816076882574,16.186057712445756],[-1.4843816076882574,19.910283380796105]]],[[[35.75787507581525,19.910283380796105],[39.48210074416559,19.910283380796105],[39.48210074416559,16.186057712445756],[35.75787507581525,16.186057712445756],[35.75787507581525,19.910283380796105]]],[[[80.44858309601946,19.910283380796105],[84.1728087643698,19.910283380796105],[84.1728087643698,16.186057712445756],[80.44858309601946,16.186057712445756],[80.44858309601946,19.910283380796105]]],[[[-97.06435915481335,19.910283380796105],[-93.34013348646297,19.910283380796105],[-93.34013348646297,16.186057712445756],[-97.06435915481335,16.186057712445756],[-97.06435915481335,19.910283380796105]]],[[[-93.34013348646297,19.910283380796105],[-89.61590781811266,19.910283380796105],[-89.61590781811266,16.186057712445756],[-93.34013348646297,16.186057712445756],[-93.34013348646297,19.910283380796105]]],[[[-1.4843816076882574,16.186057712445756],[2.2398440606620906,16.186057712445756],[2.2398440606620906,12.461832044095406],[-1.4843816076882574,12.461832044095406],[-1.4843816076882574,16.186057712445756]]],[[[39.48210074416559,16.186057712445756],[43.20632641251594,16.186057712445756],[43.20632641251594,12.461832044095406],[39.48210074416559,12.461832044095406],[39.48210074416559,16.186057712445756]]],[[[73.00013175931876,16.186057712445756],[76.72435742766912,16.186057712445756],[76.72435742766912,12.461832044095406],[73.00013175931876,12.461832044095406],[73.00013175931876,16.186057712445756]]],[[[106.51816277447192,16.186057712445756],[110.24238844282227,16.186057712445756],[110.24238844282227,12.461832044095406],[106.51816277447192,12.461832044095406],[106.51816277447192,16.186057712445756]]],[[[-89.61590781811266,16.186057712445756],[-85.89168214976227,16.186057712445756],[-85.89168214976227,12.461832044095406],[-89.61590781811266,12.461832044095406],[-89.61590781811266,16.186057712445756]]],[[[-85.89168214976227,16.186057712445756],[-82.16745648141196,16.186057712445756],[-82.16745648141196,12.461832044095406],[-85.89168214976227,12.461832044095406],[-85.89168214976227,16.186057712445756]]],[[[-1.4843816076882574,12.461832044095406],[2.2398440606620906,12.461832044095406],[2.2398440606620906,8.737606375745054],[-1.4843816076882574,8.737606375745054],[-1.4843816076882574,12.461832044095406]]],[[[43.20632641251594,12.461832044095406],[46.93055208086631,12.461832044095406],[46.93055208086631,8.737606375745054],[43.20632641251594,8.737606375745054],[43.20632641251594,12.461832044095406]]],[[[46.93055208086631,12.461832044095406],[50.65477774921666,12.461832044095406],[50.65477774921666,8.737606375745054],[46.93055208086631,8.737606375745054],[46.93055208086631,12.461832044095406]]],[[[76.72435742766912,12.461832044095406],[80.44858309601946,12.461832044095406],[80.44858309601946,8.737606375745054],[76.72435742766912,8.737606375745054],[76.72435742766912,12.461832044095406]]],[[[102.79393710612158,12.461832044095406],[106.51816277447192,12.461832044095406],[106.51816277447192,8.737606375745054],[102.79393710612158,8.737606375745054],[102.79393710612158,12.461832044095406]]],[[[121.41506544787333,12.461832044095406],[125.13929111622367,12.461832044095406],[125.13929111622367,8.737606375745054],[121.41506544787333,8.737606375745054],[121.41506544787333,12.461832044095406]]],[[[-85.89168214976227,12.461832044095406],[-82.16745648141196,12.461832044095406],[-82.16745648141196,8.737606375745054],[-85.89168214976227,8.737606375745054],[-85.89168214976227,12.461832044095406]]],[[[-74.7190051447112,12.461832044095406],[-70.99477947636089,12.461832044095406],[-70.99477947636089,8.737606375745054],[-74.7190051447112,8.737606375745054],[-74.7190051447112,12.461832044095406]]],[[[-70.99477947636089,12.461832044095406],[-67.27055380801052,12.461832044095406],[-67.27055380801052,8.737606375745054],[-70.99477947636089,8.737606375745054],[-70.99477947636089,12.461832044095406]]],[[[-15.131394451105644,12.461832044095406],[-11.40716878275527,12.461832044095406],[-11.40716878275527,8.737606375745054],[-15.131394451105644,8.737606375745054],[-15.131394451105644,12.461832044095406]]],[[[2.2398440606620906,8.737606375745054],[5.964069729012438,8.737606375745054],[5.964069729012438,5.0133807073947025],[2.2398440606620906,5.0133807073947025],[2.2398440606620906,8.737606375745054]]],[[[46.93055208086631,8.737606375745054],[50.65477774921666,8.737606375745054],[50.65477774921666,5.0133807073947025],[46.93055208086631,5.0133807073947025],[46.93055208086631,8.737606375745054]]],[[[-78.44323081306159,8.737606375745054],[-74.7190051447112,8.737606375745054],[-74.7190051447112,5.0133807073947025],[-78.44323081306159,5.0133807073947025],[-78.44323081306159,8.737606375745054]]],[[[-11.40716878275527,8.737606375745054],[-7.682943114404897,8.737606375745054],[-7.682943114404897,5.0133807073947025],[-11.40716878275527,5.0133807073947025],[-11.40716878275527,8.737606375745054]]],[[[43.20632641251594,5.0133807073947025],[46.93055208086631,5.0133807073947025],[46.93055208086631,1.2891550390443522],[43.20632641251594,1.2891550390443522],[43.20632641251594,5.0133807073947025]]],[[[99.06971143777122,5.0133807073947025],[102.79393710612158,5.0133807073947025],[102.79393710612158,1.2891550390443522],[99.06971143777122,1.2891550390443522],[99.06971143777122,5.0133807073947025]]],[[[-78.44323081306159,5.0133807073947025],[-74.7190051447112,5.0133807073947025],[-74.7190051447112,1.2891550390443522],[-78.44323081306159,1.2891550390443522],[-78.44323081306159,5.0133807073947025]]],[[[39.48210074416559,1.2891550390443522],[43.20632641251594,1.2891550390443522],[43.20632641251594,-2.435070629305999],[39.48210074416559,-2.435070629305999],[39.48210074416559,1.2891550390443522]]],[[[99.06971143777122,1.2891550390443522],[102.79393710612158,1.2891550390443522],[102.79393710612158,-2.435070629305999],[99.06971143777122,-2.435070629305999],[99.06971143777122,1.2891550390443522]]],[[[113.96661411117262,1.2891550390443522],[117.69083977952297,1.2891550390443522],[117.69083977952297,-2.435070629305999],[113.96661411117262,-2.435070629305999],[113.96661411117262,1.2891550390443522]]],[[[-52.373651134609126,1.2891550390443522],[-48.64942546625875,1.2891550390443522],[-48.64942546625875,-2.435070629305999],[-52.373651134609126,-2.435070629305999],[-52.373651134609126,1.2891550390443522]]],[[[9.688295397362786,-2.435070629305999],[13.412521065713134,-2.435070629305999],[13.412521065713134,-6.15929629765635],[9.688295397362786,-6.15929629765635],[9.688295397362786,-2.435070629305999]]],[[[102.79393710612158,-2.435070629305999],[106.51816277447192,-2.435070629305999],[106.51816277447192,-6.15929629765635],[102.79393710612158,-6.15929629765635],[102.79393710612158,-2.435070629305999]]],[[[136.31196812127473,-2.435070629305999],[140.0361937896251,-2.435070629305999],[140.0361937896251,-6.15929629765635],[136.31196812127473,-6.15929629765635],[136.31196812127473,-2.435070629305999]]],[[[-82.16745648141196,-2.435070629305999],[-78.44323081306159,-2.435070629305999],[-78.44323081306159,-6.15929629765635],[-82.16745648141196,-6.15929629765635],[-82.16745648141196,-2.435070629305999]]],[[[-41.200974129558105,-2.435070629305999],[-37.476748461207734,-2.435070629305999],[-37.476748461207734,-6.15929629765635],[-41.200974129558105,-6.15929629765635],[-41.200974129558105,-2.435070629305999]]],[[[140.0361937896251,-6.15929629765635],[143.76041945797544,-6.15929629765635],[143.76041945797544,-9.8835219660067],[140.0361937896251,-9.8835219660067],[140.0361937896251,-6.15929629765635]]],[[[143.76041945797544,-6.15929629765635],[147.48464512632577,-6.15929629765635],[147.48464512632577,-9.8835219660067],[143.76041945797544,-9.8835219660067],[143.76041945797544,-6.15929629765635]]],[[[-37.476748461207734,-6.15929629765635],[-33.752522792857356,-6.15929629765635],[-33.752522792857356,-9.8835219660067],[-37.476748461207734,-9.8835219660067],[-37.476748461207734,-6.15929629765635]]],[[[-78.44323081306159,-9.8835219660067],[-74.7190051447112,-9.8835219660067],[-74.7190051447112,-13.60774763435705],[-78.44323081306159,-13.60774763435705],[-78.44323081306159,-9.8835219660067]]],[[[46.93055208086631,-13.60774763435705],[50.65477774921666,-13.60774763435705],[50.65477774921666,-17.331973302707404],[46.93055208086631,-17.331973302707404],[46.93055208086631,-13.60774763435705]]],[[[125.13929111622367,-13.60774763435705],[128.86351678457402,-13.60774763435705],[128.86351678457402,-17.331973302707404],[125.13929111622367,-17.331973302707404],[125.13929111622367,-13.60774763435705]]],[[[140.0361937896251,-13.60774763435705],[143.76041945797544,-13.60774763435705],[143.76041945797544,-17.331973302707404],[140.0361937896251,-17.331973302707404],[140.0361937896251,-13.60774763435705]]],[[[-74.7190051447112,-13.60774763435705],[-70.99477947636089,-13.60774763435705],[-70.99477947636089,-17.331973302707404],[-74.7190051447112,-17.331973302707404],[-74.7190051447112,-13.60774763435705]]],[[[-41.200974129558105,-13.60774763435705],[-37.476748461207734,-13.60774763435705],[-37.476748461207734,-17.331973302707404],[-41.200974129558105,-17.331973302707404],[-41.200974129558105,-13.60774763435705]]],[[[43.20632641251594,-17.331973302707404],[46.93055208086631,-17.331973302707404],[46.93055208086631,-21.056198971057754],[43.20632641251594,-21.056198971057754],[43.20632641251594,-17.331973302707404]]],[[[143.76041945797544,-17.331973302707404],[147.48464512632577,-17.331973302707404],[147.48464512632577,-21.056198971057754],[143.76041945797544,-21.056198971057754],[143.76041945797544,-17.331973302707404]]],[[[-70.99477947636089,-17.331973302707404],[-67.27055380801052,-17.331973302707404],[-67.27055380801052,-21.056198971057754],[-70.99477947636089,-21.056198971057754],[-70.99477947636089,-17.331973302707404]]],[[[13.412521065713134,-21.056198971057754],[17.136746734063507,-21.056198971057754],[17.136746734063507,-24.780424639408103],[13.412521065713134,-24.780424639408103],[13.412521065713134,-21.056198971057754]]],[[[147.48464512632577,-21.056198971057754],[151.20887079467613,-21.056198971057754],[151.20887079467613,-24.780424639408103],[147.48464512632577,-24.780424639408103],[147.48464512632577,-21.056198971057754]]],[[[-70.99477947636089,-21.056198971057754],[-67.27055380801052,-21.056198971057754],[-67.27055380801052,-24.780424639408103],[-70.99477947636089,-24.780424639408103],[-70.99477947636089,-21.056198971057754]]],[[[-48.64942546625875,-21.056198971057754],[-44.92519979790843,-21.056198971057754],[-44.92519979790843,-24.780424639408103],[-48.64942546625875,-24.780424639408103],[-48.64942546625875,-21.056198971057754]]],[[[151.20887079467613,-24.780424639408103],[154.9330964630265,-24.780424639408103],[154.9330964630265,-28.504650307758457],[151.20887079467613,-28.504650307758457],[151.20887079467613,-24.780424639408103]]],[[[28.30942373911455,-28.504650307758457],[32.0336494074649,-28.504650307758457],[32.0336494074649,-32.22887597610881],[28.30942373911455,-32.22887597610881],[28.30942373911455,-28.504650307758457]]],[[[113.96661411117262,-28.504650307758457],[117.69083977952297,-28.504650307758457],[117.69083977952297,-32.22887597610881],[113.96661411117262,-32.22887597610881],[113.96661411117262,-28.504650307758457]]],[[[128.86351678457402,-28.504650307758457],[132.58774245292437,-28.504650307758457],[132.58774245292437,-32.22887597610881],[128.86351678457402,-32.22887597610881],[128.86351678457402,-28.504650307758457]]],[[[117.69083977952297,-32.22887597610881],[121.41506544787333,-32.22887597610881],[121.41506544787333,-35.95310164445915],[117.69083977952297,-35.95310164445915],[117.69083977952297,-32.22887597610881]]],[[[136.31196812127473,-32.22887597610881],[140.0361937896251,-32.22887597610881],[140.0361937896251,-35.95310164445915],[136.31196812127473,-35.95310164445915],[136.31196812127473,-32.22887597610881]]],[[[-56.0978768029595,-32.22887597610881],[-52.373651134609126,-32.22887597610881],[-52.373651134609126,-35.95310164445915],[-56.0978768029595,-35.95310164445915],[-56.0978768029595,-32.22887597610881]]],[[[140.0361937896251,-35.95310164445915],[143.76041945797544,-35.95310164445915],[143.76041945797544,-39.67732731280951],[140.0361937896251,-39.67732731280951],[140.0361937896251,-35.95310164445915]]],[[[143.76041945797544,-35.95310164445915],[147.48464512632577,-35.95310164445915],[147.48464512632577,-39.67732731280951],[143.76041945797544,-39.67732731280951],[143.76041945797544,-35.95310164445915]]],[[[173.55422480477824,-35.95310164445915],[177.2784504731286,-35.95310164445915],[177.2784504731286,-39.67732731280951],[173.55422480477824,-39.67732731280951],[173.55422480477824,-35.95310164445915]]],[[[-74.7190051447112,-35.95310164445915],[-70.99477947636089,-35.95310164445915],[-70.99477947636089,-39.67732731280951],[-74.7190051447112,-39.67732731280951],[-74.7190051447112,-35.95310164445915]]],[[[-74.7190051447112,-39.67732731280951],[-70.99477947636089,-39.67732731280951],[-70.99477947636089,-43.40155298115986],[-74.7190051447112,-43.40155298115986],[-74.7190051447112,-39.67732731280951]]],[[[-67.27055380801052,-39.67732731280951],[-63.54632813966014,-39.67732731280951],[-63.54632813966014,-43.40155298115986],[-67.27055380801052,-43.40155298115986],[-67.27055380801052,-39.67732731280951]]],[[[-70.99477947636089,-47.12577864951021],[-67.27055380801052,-47.12577864951021],[-67.27055380801052,-50.85000431786056],[-70.99477947636089,-50.85000431786056],[-70.99477947636089,-47.12577864951021]]],[[[-74.7190051447112,-50.85000431786056],[-70.99477947636089,-50.85000431786056],[-70.99477947636089,-54.574229986210916],[-74.7190051447112,-54.574229986210916],[-74.7190051447112,-50.85000431786056]]],[[[-70.99477947636089,-50.85000431786056],[-67.27055380801052,-50.85000431786056],[-67.27055380801052,-54.574229986210916],[-70.99477947636089,-54.574229986210916],[-70.99477947636089,-50.85000431786056]]],[[[46.93055208086631,-65.74690699126197],[50.65477774921666,-65.74690699126197],[50.65477774921666,-69.47113265961231],[46.93055208086631,-69.47113265961231],[46.93055208086631,-65.74690699126197]]],[[[54.37900341756701,-65.74690699126197],[58.10322908591736,-65.74690699126197],[58.10322908591736,-69.47113265961231],[54.37900341756701,-69.47113265961231],[54.37900341756701,-65.74690699126197]]],[[[84.1728087643698,-65.74690699126197],[87.89703443272018,-65.74690699126197],[87.89703443272018,-69.47113265961231],[84.1728087643698,-69.47113265961231],[84.1728087643698,-65.74690699126197]]],[[[87.89703443272018,-65.74690699126197],[91.62126010107052,-65.74690699126197],[91.62126010107052,-69.47113265961231],[87.89703443272018,-69.47113265961231],[87.89703443272018,-65.74690699126197]]],[[[91.62126010107052,-65.74690699126197],[95.34548576942086,-65.74690699126197],[95.34548576942086,-69.47113265961231],[91.62126010107052,-69.47113265961231],[91.62126010107052,-65.74690699126197]]],[[[95.34548576942086,-65.74690699126197],[99.06971143777122,-65.74690699126197],[99.06971143777122,-69.47113265961231],[95.34548576942086,-69.47113265961231],[95.34548576942086,-65.74690699126197]]],[[[106.51816277447192,-65.74690699126197],[110.24238844282227,-65.74690699126197],[110.24238844282227,-69.47113265961231],[106.51816277447192,-69.47113265961231],[106.51816277447192,-65.74690699126197]]],[[[113.96661411117262,-65.74690699126197],[117.69083977952297,-65.74690699126197],[117.69083977952297,-69.47113265961231],[113.96661411117262,-69.47113265961231],[113.96661411117262,-65.74690699126197]]],[[[117.69083977952297,-65.74690699126197],[121.41506544787333,-65.74690699126197],[121.41506544787333,-69.47113265961231],[117.69083977952297,-69.47113265961231],[117.69083977952297,-65.74690699126197]]],[[[121.41506544787333,-65.74690699126197],[125.13929111622367,-65.74690699126197],[125.13929111622367,-69.47113265961231],[121.41506544787333,-69.47113265961231],[121.41506544787333,-65.74690699126197]]],[[[125.13929111622367,-65.74690699126197],[128.86351678457402,-65.74690699126197],[128.86351678457402,-69.47113265961231],[125.13929111622367,-69.47113265961231],[125.13929111622367,-65.74690699126197]]],[[[128.86351678457402,-65.74690699126197],[132.58774245292437,-65.74690699126197],[132.58774245292437,-69.47113265961231],[128.86351678457402,-69.47113265961231],[128.86351678457402,-65.74690699126197]]],[[[136.31196812127473,-65.74690699126197],[140.0361937896251,-65.74690699126197],[140.0361937896251,-69.47113265961231],[136.31196812127473,-69.47113265961231],[136.31196812127473,-65.74690699126197]]],[[[140.0361937896251,-65.74690699126197],[143.76041945797544,-65.74690699126197],[143.76041945797544,-69.47113265961231],[140.0361937896251,-69.47113265961231],[140.0361937896251,-65.74690699126197]]],[[[-67.27055380801052,-65.74690699126197],[-63.54632813966014,-65.74690699126197],[-63.54632813966014,-69.47113265961231],[-67.27055380801052,-69.47113265961231],[-67.27055380801052,-65.74690699126197]]],[[[2.2398440606620906,-69.47113265961231],[5.964069729012438,-69.47113265961231],[5.964069729012438,-73.19535832796267],[2.2398440606620906,-73.19535832796267],[2.2398440606620906,-69.47113265961231]]],[[[5.964069729012438,-69.47113265961231],[9.688295397362786,-69.47113265961231],[9.688295397362786,-73.19535832796267],[5.964069729012438,-73.19535832796267],[5.964069729012438,-69.47113265961231]]],[[[9.688295397362786,-69.47113265961231],[13.412521065713134,-69.47113265961231],[13.412521065713134,-73.19535832796267],[9.688295397362786,-73.19535832796267],[9.688295397362786,-69.47113265961231]]],[[[13.412521065713134,-69.47113265961231],[17.136746734063507,-69.47113265961231],[17.136746734063507,-73.19535832796267],[13.412521065713134,-73.19535832796267],[13.412521065713134,-69.47113265961231]]],[[[17.136746734063507,-69.47113265961231],[20.860972402413857,-69.47113265961231],[20.860972402413857,-73.19535832796267],[17.136746734063507,-73.19535832796267],[17.136746734063507,-69.47113265961231]]],[[[20.860972402413857,-69.47113265961231],[24.585198070764203,-69.47113265961231],[24.585198070764203,-73.19535832796267],[20.860972402413857,-73.19535832796267],[20.860972402413857,-69.47113265961231]]],[[[24.585198070764203,-69.47113265961231],[28.30942373911455,-69.47113265961231],[28.30942373911455,-73.19535832796267],[24.585198070764203,-73.19535832796267],[24.585198070764203,-69.47113265961231]]],[[[28.30942373911455,-69.47113265961231],[32.0336494074649,-69.47113265961231],[32.0336494074649,-73.19535832796267],[28.30942373911455,-73.19535832796267],[28.30942373911455,-69.47113265961231]]],[[[65.55168042261806,-69.47113265961231],[69.2759060909684,-69.47113265961231],[69.2759060909684,-73.19535832796267],[65.55168042261806,-73.19535832796267],[65.55168042261806,-69.47113265961231]]],[[[158.65732213137684,-69.47113265961231],[162.38154779972717,-69.47113265961231],[162.38154779972717,-73.19535832796267],[158.65732213137684,-73.19535832796267],[158.65732213137684,-69.47113265961231]]],[[[162.38154779972717,-69.47113265961231],[166.10577346807753,-69.47113265961231],[166.10577346807753,-73.19535832796267],[162.38154779972717,-73.19535832796267],[162.38154779972717,-69.47113265961231]]],[[[166.10577346807753,-69.47113265961231],[169.8299991364279,-69.47113265961231],[169.8299991364279,-73.19535832796267],[166.10577346807753,-73.19535832796267],[166.10577346807753,-69.47113265961231]]],[[[-70.99477947636089,-69.47113265961231],[-67.27055380801052,-69.47113265961231],[-67.27055380801052,-73.19535832796267],[-70.99477947636089,-73.19535832796267],[-70.99477947636089,-69.47113265961231]]],[[[-63.54632813966014,-69.47113265961231],[-59.82210247130982,-69.47113265961231],[-59.82210247130982,-73.19535832796267],[-63.54632813966014,-73.19535832796267],[-63.54632813966014,-69.47113265961231]]],[[[-7.682943114404897,-69.47113265961231],[-3.9587174460545747,-69.47113265961231],[-3.9587174460545747,-73.19535832796267],[-7.682943114404897,-73.19535832796267],[-7.682943114404897,-69.47113265961231]]],[[[-1.4843816076882574,-73.19535832796267],[2.2398440606620906,-73.19535832796267],[2.2398440606620906,-76.91958399631302],[-1.4843816076882574,-76.91958399631302],[-1.4843816076882574,-73.19535832796267]]],[[[-126.85816450161613,-73.19535832796267],[-123.13393883326582,-73.19535832796267],[-123.13393883326582,-76.91958399631302],[-126.85816450161613,-76.91958399631302],[-126.85816450161613,-73.19535832796267]]],[[[-123.13393883326582,-73.19535832796267],[-119.40971316491543,-73.19535832796267],[-119.40971316491543,-76.91958399631302],[-123.13393883326582,-76.91958399631302],[-123.13393883326582,-73.19535832796267]]],[[[-119.40971316491543,-73.19535832796267],[-115.68548749656506,-73.19535832796267],[-115.68548749656506,-76.91958399631302],[-119.40971316491543,-76.91958399631302],[-119.40971316491543,-73.19535832796267]]],[[[-115.68548749656506,-73.19535832796267],[-111.96126182821475,-73.19535832796267],[-111.96126182821475,-76.91958399631302],[-115.68548749656506,-76.91958399631302],[-115.68548749656506,-73.19535832796267]]],[[[-104.51281049151405,-73.19535832796267],[-100.78858482316367,-73.19535832796267],[-100.78858482316367,-76.91958399631302],[-104.51281049151405,-76.91958399631302],[-104.51281049151405,-73.19535832796267]]],[[[-85.89168214976227,-73.19535832796267],[-82.16745648141196,-73.19535832796267],[-82.16745648141196,-76.91958399631302],[-85.89168214976227,-76.91958399631302],[-85.89168214976227,-73.19535832796267]]],[[[-78.44323081306159,-73.19535832796267],[-74.7190051447112,-73.19535832796267],[-74.7190051447112,-76.91958399631302],[-78.44323081306159,-76.91958399631302],[-78.44323081306159,-73.19535832796267]]],[[[-70.99477947636089,-73.19535832796267],[-67.27055380801052,-73.19535832796267],[-67.27055380801052,-76.91958399631302],[-70.99477947636089,-76.91958399631302],[-70.99477947636089,-73.19535832796267]]],[[[-67.27055380801052,-73.19535832796267],[-63.54632813966014,-73.19535832796267],[-63.54632813966014,-76.91958399631302],[-67.27055380801052,-76.91958399631302],[-67.27055380801052,-73.19535832796267]]],[[[-18.855620119455967,-73.19535832796267],[-15.131394451105644,-73.19535832796267],[-15.131394451105644,-76.91958399631302],[-18.855620119455967,-76.91958399631302],[-18.855620119455967,-73.19535832796267]]]]},{"type":"MultiPolygon","coordinates":[[[[-67.27055380801052,79.49789407440171],[-63.54632813966014,79.49789407440171],[-63.54632813966014,75.77366840605137],[-67.27055380801052,75.77366840605137],[-67.27055380801052,79.49789407440171]]],[[[-63.54632813966014,79.49789407440171],[-59.82210247130982,79.49789407440171],[-59.82210247130982,75.77366840605137],[-63.54632813966014,75.77366840605137],[-63.54632813966014,79.49789407440171]]],[[[-59.82210247130982,79.49789407440171],[-56.0978768029595,79.49789407440171],[-56.0978768029595,75.77366840605137],[-59.82210247130982,75.77366840605137],[-59.82210247130982,79.49789407440171]]],[[[-56.0978768029595,79.49789407440171],[-52.373651134609126,79.49789407440171],[-52.373651134609126,75.77366840605137],[-56.0978768029595,75.77366840605137],[-56.0978768029595,79.49789407440171]]],[[[-52.373651134609126,79.49789407440171],[-48.64942546625875,79.49789407440171],[-48.64942546625875,75.77366840605137],[-52.373651134609126,75.77366840605137],[-52.373651134609126,79.49789407440171]]],[[[-48.64942546625875,79.49789407440171],[-44.92519979790843,79.49789407440171],[-44.92519979790843,75.77366840605137],[-48.64942546625875,75.77366840605137],[-48.64942546625875,79.49789407440171]]],[[[-44.92519979790843,79.49789407440171],[-41.200974129558105,79.49789407440171],[-41.200974129558105,75.77366840605137],[-44.92519979790843,75.77366840605137],[-44.92519979790843,79.49789407440171]]],[[[-41.200974129558105,79.49789407440171],[-37.476748461207734,79.49789407440171],[-37.476748461207734,75.77366840605137],[-41.200974129558105,75.77366840605137],[-41.200974129558105,79.49789407440171]]],[[[-37.476748461207734,79.49789407440171],[-33.752522792857356,79.49789407440171],[-33.752522792857356,75.77366840605137],[-37.476748461207734,75.77366840605137],[-37.476748461207734,79.49789407440171]]],[[[-33.752522792857356,79.49789407440171],[-30.028297124507034,79.49789407440171],[-30.028297124507034,75.77366840605137],[-33.752522792857356,75.77366840605137],[-33.752522792857356,79.49789407440171]]],[[[-30.028297124507034,79.49789407440171],[-26.304071456156663,79.49789407440171],[-26.304071456156663,75.77366840605137],[-30.028297124507034,75.77366840605137],[-30.028297124507034,79.49789407440171]]],[[[-26.304071456156663,79.49789407440171],[-22.57984578780629,79.49789407440171],[-22.57984578780629,75.77366840605137],[-26.304071456156663,75.77366840605137],[-26.304071456156663,79.49789407440171]]],[[[87.89703443272018,75.77366840605137],[91.62126010107052,75.77366840605137],[91.62126010107052,72.04944273770103],[87.89703443272018,72.04944273770103],[87.89703443272018,75.77366840605137]]],[[[91.62126010107052,75.77366840605137],[95.34548576942086,75.77366840605137],[95.34548576942086,72.04944273770103],[91.62126010107052,72.04944273770103],[91.62126010107052,75.77366840605137]]],[[[95.34548576942086,75.77366840605137],[99.06971143777122,75.77366840605137],[99.06971143777122,72.04944273770103],[95.34548576942086,72.04944273770103],[95.34548576942086,75.77366840605137]]],[[[99.06971143777122,75.77366840605137],[102.79393710612158,75.77366840605137],[102.79393710612158,72.04944273770103],[99.06971143777122,72.04944273770103],[99.06971143777122,75.77366840605137]]],[[[102.79393710612158,75.77366840605137],[106.51816277447192,75.77366840605137],[106.51816277447192,72.04944273770103],[102.79393710612158,72.04944273770103],[102.79393710612158,75.77366840605137]]],[[[106.51816277447192,75.77366840605137],[110.24238844282227,75.77366840605137],[110.24238844282227,72.04944273770103],[106.51816277447192,72.04944273770103],[106.51816277447192,75.77366840605137]]],[[[-56.0978768029595,75.77366840605137],[-52.373651134609126,75.77366840605137],[-52.373651134609126,72.04944273770103],[-56.0978768029595,72.04944273770103],[-56.0978768029595,75.77366840605137]]],[[[-52.373651134609126,75.77366840605137],[-48.64942546625875,75.77366840605137],[-48.64942546625875,72.04944273770103],[-52.373651134609126,72.04944273770103],[-52.373651134609126,75.77366840605137]]],[[[-48.64942546625875,75.77366840605137],[-44.92519979790843,75.77366840605137],[-44.92519979790843,72.04944273770103],[-48.64942546625875,72.04944273770103],[-48.64942546625875,75.77366840605137]]],[[[-44.92519979790843,75.77366840605137],[-41.200974129558105,75.77366840605137],[-41.200974129558105,72.04944273770103],[-44.92519979790843,72.04944273770103],[-44.92519979790843,75.77366840605137]]],[[[-41.200974129558105,75.77366840605137],[-37.476748461207734,75.77366840605137],[-37.476748461207734,72.04944273770103],[-41.200974129558105,72.04944273770103],[-41.200974129558105,75.77366840605137]]],[[[-37.476748461207734,75.77366840605137],[-33.752522792857356,75.77366840605137],[-33.752522792857356,72.04944273770103],[-37.476748461207734,72.04944273770103],[-37.476748461207734,75.77366840605137]]],[[[-33.752522792857356,75.77366840605137],[-30.028297124507034,75.77366840605137],[-30.028297124507034,72.04944273770103],[-33.752522792857356,72.04944273770103],[-33.752522792857356,75.77366840605137]]],[[[-30.028297124507034,75.77366840605137],[-26.304071456156663,75.77366840605137],[-26.304071456156663,72.04944273770103],[-30.028297124507034,72.04944273770103],[-30.028297124507034,75.77366840605137]]],[[[-26.304071456156663,75.77366840605137],[-22.57984578780629,75.77366840605137],[-22.57984578780629,72.04944273770103],[-26.304071456156663,72.04944273770103],[-26.304071456156663,75.77366840605137]]],[[[69.2759060909684,72.04944273770103],[73.00013175931876,72.04944273770103],[73.00013175931876,68.32521706935066],[69.2759060909684,68.32521706935066],[69.2759060909684,72.04944273770103]]],[[[76.72435742766912,72.04944273770103],[80.44858309601946,72.04944273770103],[80.44858309601946,68.32521706935066],[76.72435742766912,68.32521706935066],[76.72435742766912,72.04944273770103]]],[[[80.44858309601946,72.04944273770103],[84.1728087643698,72.04944273770103],[84.1728087643698,68.32521706935066],[80.44858309601946,68.32521706935066],[80.44858309601946,72.04944273770103]]],[[[84.1728087643698,72.04944273770103],[87.89703443272018,72.04944273770103],[87.89703443272018,68.32521706935066],[84.1728087643698,68.32521706935066],[84.1728087643698,72.04944273770103]]],[[[87.89703443272018,72.04944273770103],[91.62126010107052,72.04944273770103],[91.62126010107052,68.32521706935066],[87.89703443272018,68.32521706935066],[87.89703443272018,72.04944273770103]]],[[[91.62126010107052,72.04944273770103],[95.34548576942086,72.04944273770103],[95.34548576942086,68.32521706935066],[91.62126010107052,68.32521706935066],[91.62126010107052,72.04944273770103]]],[[[95.34548576942086,72.04944273770103],[99.06971143777122,72.04944273770103],[99.06971143777122,68.32521706935066],[95.34548576942086,68.32521706935066],[95.34548576942086,72.04944273770103]]],[[[99.06971143777122,72.04944273770103],[102.79393710612158,72.04944273770103],[102.79393710612158,68.32521706935066],[99.06971143777122,68.32521706935066],[99.06971143777122,72.04944273770103]]],[[[102.79393710612158,72.04944273770103],[106.51816277447192,72.04944273770103],[106.51816277447192,68.32521706935066],[102.79393710612158,68.32521706935066],[102.79393710612158,72.04944273770103]]],[[[106.51816277447192,72.04944273770103],[110.24238844282227,72.04944273770103],[110.24238844282227,68.32521706935066],[106.51816277447192,68.32521706935066],[106.51816277447192,72.04944273770103]]],[[[110.24238844282227,72.04944273770103],[113.96661411117262,72.04944273770103],[113.96661411117262,68.32521706935066],[110.24238844282227,68.32521706935066],[110.24238844282227,72.04944273770103]]],[[[113.96661411117262,72.04944273770103],[117.69083977952297,72.04944273770103],[117.69083977952297,68.32521706935066],[113.96661411117262,68.32521706935066],[113.96661411117262,72.04944273770103]]],[[[117.69083977952297,72.04944273770103],[121.41506544787333,72.04944273770103],[121.41506544787333,68.32521706935066],[117.69083977952297,68.32521706935066],[117.69083977952297,72.04944273770103]]],[[[121.41506544787333,72.04944273770103],[125.13929111622367,72.04944273770103],[125.13929111622367,68.32521706935066],[121.41506544787333,68.32521706935066],[121.41506544787333,72.04944273770103]]],[[[125.13929111622367,72.04944273770103],[128.86351678457402,72.04944273770103],[128.86351678457402,68.32521706935066],[125.13929111622367,68.32521706935066],[125.13929111622367,72.04944273770103]]],[[[132.58774245292437,72.04944273770103],[136.31196812127473,72.04944273770103],[136.31196812127473,68.32521706935066],[132.58774245292437,68.32521706935066],[132.58774245292437,72.04944273770103]]],[[[136.31196812127473,72.04944273770103],[140.0361937896251,72.04944273770103],[140.0361937896251,68.32521706935066],[136.31196812127473,68.32521706935066],[136.31196812127473,72.04944273770103]]],[[[140.0361937896251,72.04944273770103],[143.76041945797544,72.04944273770103],[143.76041945797544,68.32521706935066],[140.0361937896251,68.32521706935066],[140.0361937896251,72.04944273770103]]],[[[143.76041945797544,72.04944273770103],[147.48464512632577,72.04944273770103],[147.48464512632577,68.32521706935066],[143.76041945797544,68.32521706935066],[143.76041945797544,72.04944273770103]]],[[[147.48464512632577,72.04944273770103],[151.20887079467613,72.04944273770103],[151.20887079467613,68.32521706935066],[147.48464512632577,68.32521706935066],[147.48464512632577,72.04944273770103]]],[[[-115.68548749656506,72.04944273770103],[-111.96126182821475,72.04944273770103],[-111.96126182821475,68.32521706935066],[-115.68548749656506,68.32521706935066],[-115.68548749656506,72.04944273770103]]],[[[-111.96126182821475,72.04944273770103],[-108.23703615986442,72.04944273770103],[-108.23703615986442,68.32521706935066],[-111.96126182821475,68.32521706935066],[-111.96126182821475,72.04944273770103]]],[[[-108.23703615986442,72.04944273770103],[-104.51281049151405,72.04944273770103],[-104.51281049151405,68.32521706935066],[-108.23703615986442,68.32521706935066],[-108.23703615986442,72.04944273770103]]],[[[-85.89168214976227,72.04944273770103],[-82.16745648141196,72.04944273770103],[-82.16745648141196,68.32521706935066],[-85.89168214976227,68.32521706935066],[-85.89168214976227,72.04944273770103]]],[[[-74.7190051447112,72.04944273770103],[-70.99477947636089,72.04944273770103],[-70.99477947636089,68.32521706935066],[-74.7190051447112,68.32521706935066],[-74.7190051447112,72.04944273770103]]],[[[-52.373651134609126,72.04944273770103],[-48.64942546625875,72.04944273770103],[-48.64942546625875,68.32521706935066],[-52.373651134609126,68.32521706935066],[-52.373651134609126,72.04944273770103]]],[[[-48.64942546625875,72.04944273770103],[-44.92519979790843,72.04944273770103],[-44.92519979790843,68.32521706935066],[-48.64942546625875,68.32521706935066],[-48.64942546625875,72.04944273770103]]],[[[-44.92519979790843,72.04944273770103],[-41.200974129558105,72.04944273770103],[-41.200974129558105,68.32521706935066],[-44.92519979790843,68.32521706935066],[-44.92519979790843,72.04944273770103]]],[[[-41.200974129558105,72.04944273770103],[-37.476748461207734,72.04944273770103],[-37.476748461207734,68.32521706935066],[-41.200974129558105,68.32521706935066],[-41.200974129558105,72.04944273770103]]],[[[-37.476748461207734,72.04944273770103],[-33.752522792857356,72.04944273770103],[-33.752522792857356,68.32521706935066],[-37.476748461207734,68.32521706935066],[-37.476748461207734,72.04944273770103]]],[[[-33.752522792857356,72.04944273770103],[-30.028297124507034,72.04944273770103],[-30.028297124507034,68.32521706935066],[-33.752522792857356,68.32521706935066],[-33.752522792857356,72.04944273770103]]],[[[-30.028297124507034,72.04944273770103],[-26.304071456156663,72.04944273770103],[-26.304071456156663,68.32521706935066],[-30.028297124507034,68.32521706935066],[-30.028297124507034,72.04944273770103]]],[[[17.136746734063507,68.32521706935066],[20.860972402413857,68.32521706935066],[20.860972402413857,64.60099140100031],[17.136746734063507,64.60099140100031],[17.136746734063507,68.32521706935066]]],[[[24.585198070764203,68.32521706935066],[28.30942373911455,68.32521706935066],[28.30942373911455,64.60099140100031],[24.585198070764203,64.60099140100031],[24.585198070764203,68.32521706935066]]],[[[28.30942373911455,68.32521706935066],[32.0336494074649,68.32521706935066],[32.0336494074649,64.60099140100031],[28.30942373911455,64.60099140100031],[28.30942373911455,68.32521706935066]]],[[[50.65477774921666,68.32521706935066],[54.37900341756701,68.32521706935066],[54.37900341756701,64.60099140100031],[50.65477774921666,64.60099140100031],[50.65477774921666,68.32521706935066]]],[[[54.37900341756701,68.32521706935066],[58.10322908591736,68.32521706935066],[58.10322908591736,64.60099140100031],[54.37900341756701,64.60099140100031],[54.37900341756701,68.32521706935066]]],[[[58.10322908591736,68.32521706935066],[61.827454754267706,68.32521706935066],[61.827454754267706,64.60099140100031],[58.10322908591736,64.60099140100031],[58.10322908591736,68.32521706935066]]],[[[61.827454754267706,68.32521706935066],[65.55168042261806,68.32521706935066],[65.55168042261806,64.60099140100031],[61.827454754267706,64.60099140100031],[61.827454754267706,68.32521706935066]]],[[[65.55168042261806,68.32521706935066],[69.2759060909684,68.32521706935066],[69.2759060909684,64.60099140100031],[65.55168042261806,64.60099140100031],[65.55168042261806,68.32521706935066]]],[[[69.2759060909684,68.32521706935066],[73.00013175931876,68.32521706935066],[73.00013175931876,64.60099140100031],[69.2759060909684,64.60099140100031],[69.2759060909684,68.32521706935066]]],[[[76.72435742766912,68.32521706935066],[80.44858309601946,68.32521706935066],[80.44858309601946,64.60099140100031],[76.72435742766912,64.60099140100031],[76.72435742766912,68.32521706935066]]],[[[80.44858309601946,68.32521706935066],[84.1728087643698,68.32521706935066],[84.1728087643698,64.60099140100031],[80.44858309601946,64.60099140100031],[80.44858309601946,68.32521706935066]]],[[[84.1728087643698,68.32521706935066],[87.89703443272018,68.32521706935066],[87.89703443272018,64.60099140100031],[84.1728087643698,64.60099140100031],[84.1728087643698,68.32521706935066]]],[[[87.89703443272018,68.32521706935066],[91.62126010107052,68.32521706935066],[91.62126010107052,64.60099140100031],[87.89703443272018,64.60099140100031],[87.89703443272018,68.32521706935066]]],[[[91.62126010107052,68.32521706935066],[95.34548576942086,68.32521706935066],[95.34548576942086,64.60099140100031],[91.62126010107052,64.60099140100031],[91.62126010107052,68.32521706935066]]],[[[95.34548576942086,68.32521706935066],[99.06971143777122,68.32521706935066],[99.06971143777122,64.60099140100031],[95.34548576942086,64.60099140100031],[95.34548576942086,68.32521706935066]]],[[[99.06971143777122,68.32521706935066],[102.79393710612158,68.32521706935066],[102.79393710612158,64.60099140100031],[99.06971143777122,64.60099140100031],[99.06971143777122,68.32521706935066]]],[[[102.79393710612158,68.32521706935066],[106.51816277447192,68.32521706935066],[106.51816277447192,64.60099140100031],[102.79393710612158,64.60099140100031],[102.79393710612158,68.32521706935066]]],[[[106.51816277447192,68.32521706935066],[110.24238844282227,68.32521706935066],[110.24238844282227,64.60099140100031],[106.51816277447192,64.60099140100031],[106.51816277447192,68.32521706935066]]],[[[110.24238844282227,68.32521706935066],[113.96661411117262,68.32521706935066],[113.96661411117262,64.60099140100031],[110.24238844282227,64.60099140100031],[110.24238844282227,68.32521706935066]]],[[[113.96661411117262,68.32521706935066],[117.69083977952297,68.32521706935066],[117.69083977952297,64.60099140100031],[113.96661411117262,64.60099140100031],[113.96661411117262,68.32521706935066]]],[[[117.69083977952297,68.32521706935066],[121.41506544787333,68.32521706935066],[121.41506544787333,64.60099140100031],[117.69083977952297,64.60099140100031],[117.69083977952297,68.32521706935066]]],[[[121.41506544787333,68.32521706935066],[125.13929111622367,68.32521706935066],[125.13929111622367,64.60099140100031],[121.41506544787333,64.60099140100031],[121.41506544787333,68.32521706935066]]],[[[125.13929111622367,68.32521706935066],[128.86351678457402,68.32521706935066],[128.86351678457402,64.60099140100031],[125.13929111622367,64.60099140100031],[125.13929111622367,68.32521706935066]]],[[[128.86351678457402,68.32521706935066],[132.58774245292437,68.32521706935066],[132.58774245292437,64.60099140100031],[128.86351678457402,64.60099140100031],[128.86351678457402,68.32521706935066]]],[[[132.58774245292437,68.32521706935066],[136.31196812127473,68.32521706935066],[136.31196812127473,64.60099140100031],[132.58774245292437,64.60099140100031],[132.58774245292437,68.32521706935066]]],[[[136.31196812127473,68.32521706935066],[140.0361937896251,68.32521706935066],[140.0361937896251,64.60099140100031],[136.31196812127473,64.60099140100031],[136.31196812127473,68.32521706935066]]],[[[140.0361937896251,68.32521706935066],[143.76041945797544,68.32521706935066],[143.76041945797544,64.60099140100031],[140.0361937896251,64.60099140100031],[140.0361937896251,68.32521706935066]]],[[[143.76041945797544,68.32521706935066],[147.48464512632577,68.32521706935066],[147.48464512632577,64.60099140100031],[143.76041945797544,64.60099140100031],[143.76041945797544,68.32521706935066]]],[[[147.48464512632577,68.32521706935066],[151.20887079467613,68.32521706935066],[151.20887079467613,64.60099140100031],[147.48464512632577,64.60099140100031],[147.48464512632577,68.32521706935066]]],[[[151.20887079467613,68.32521706935066],[154.9330964630265,68.32521706935066],[154.9330964630265,64.60099140100031],[151.20887079467613,64.60099140100031],[151.20887079467613,68.32521706935066]]],[[[154.9330964630265,68.32521706935066],[158.65732213137684,68.32521706935066],[158.65732213137684,64.60099140100031],[154.9330964630265,64.60099140100031],[154.9330964630265,68.32521706935066]]],[[[158.65732213137684,68.32521706935066],[162.38154779972717,68.32521706935066],[162.38154779972717,64.60099140100031],[158.65732213137684,64.60099140100031],[158.65732213137684,68.32521706935066]]],[[[162.38154779972717,68.32521706935066],[166.10577346807753,68.32521706935066],[166.10577346807753,64.60099140100031],[162.38154779972717,64.60099140100031],[162.38154779972717,68.32521706935066]]],[[[166.10577346807753,68.32521706935066],[169.8299991364279,68.32521706935066],[169.8299991364279,64.60099140100031],[166.10577346807753,64.60099140100031],[166.10577346807753,68.32521706935066]]],[[[169.8299991364279,68.32521706935066],[173.55422480477824,68.32521706935066],[173.55422480477824,64.60099140100031],[169.8299991364279,64.60099140100031],[169.8299991364279,68.32521706935066]]],[[[173.55422480477824,68.32521706935066],[177.2784504731286,68.32521706935066],[177.2784504731286,64.60099140100031],[173.55422480477824,64.60099140100031],[173.55422480477824,68.32521706935066]]],[[[177.2784504731286,68.32521706935066],[-178.99732385852104,68.32521706935066],[-178.99732385852104,64.60099140100031],[177.2784504731286,64.60099140100031],[177.2784504731286,68.32521706935066]]],[[[-164.10042118511967,68.32521706935066],[-160.3761955167693,68.32521706935066],[-160.3761955167693,64.60099140100031],[-164.10042118511967,64.60099140100031],[-164.10042118511967,68.32521706935066]]],[[[-160.3761955167693,68.32521706935066],[-156.65196984841896,68.32521706935066],[-156.65196984841896,64.60099140100031],[-160.3761955167693,64.60099140100031],[-160.3761955167693,68.32521706935066]]],[[[-156.65196984841896,68.32521706935066],[-152.9277441800686,68.32521706935066],[-152.9277441800686,64.60099140100031],[-156.65196984841896,64.60099140100031],[-156.65196984841896,68.32521706935066]]],[[[-152.9277441800686,68.32521706935066],[-149.20351851171824,68.32521706935066],[-149.20351851171824,64.60099140100031],[-152.9277441800686,64.60099140100031],[-152.9277441800686,68.32521706935066]]],[[[-149.20351851171824,68.32521706935066],[-145.4792928433679,68.32521706935066],[-145.4792928433679,64.60099140100031],[-149.20351851171824,64.60099140100031],[-149.20351851171824,68.32521706935066]]],[[[-145.4792928433679,68.32521706935066],[-141.75506717501756,68.32521706935066],[-141.75506717501756,64.60099140100031],[-145.4792928433679,64.60099140100031],[-145.4792928433679,68.32521706935066]]],[[[-141.75506717501756,68.32521706935066],[-138.0308415066672,68.32521706935066],[-138.0308415066672,64.60099140100031],[-141.75506717501756,64.60099140100031],[-141.75506717501756,68.32521706935066]]],[[[-138.0308415066672,68.32521706935066],[-134.30661583831684,68.32521706935066],[-134.30661583831684,64.60099140100031],[-138.0308415066672,64.60099140100031],[-138.0308415066672,68.32521706935066]]],[[[-134.30661583831684,68.32521706935066],[-130.58239016996652,68.32521706935066],[-130.58239016996652,64.60099140100031],[-134.30661583831684,64.60099140100031],[-134.30661583831684,68.32521706935066]]],[[[-130.58239016996652,68.32521706935066],[-126.85816450161613,68.32521706935066],[-126.85816450161613,64.60099140100031],[-130.58239016996652,64.60099140100031],[-130.58239016996652,68.32521706935066]]],[[[-126.85816450161613,68.32521706935066],[-123.13393883326582,68.32521706935066],[-123.13393883326582,64.60099140100031],[-126.85816450161613,64.60099140100031],[-126.85816450161613,68.32521706935066]]],[[[-123.13393883326582,68.32521706935066],[-119.40971316491543,68.32521706935066],[-119.40971316491543,64.60099140100031],[-123.13393883326582,64.60099140100031],[-123.13393883326582,68.32521706935066]]],[[[-119.40971316491543,68.32521706935066],[-115.68548749656506,68.32521706935066],[-115.68548749656506,64.60099140100031],[-119.40971316491543,64.60099140100031],[-119.40971316491543,68.32521706935066]]],[[[-115.68548749656506,68.32521706935066],[-111.96126182821475,68.32521706935066],[-111.96126182821475,64.60099140100031],[-115.68548749656506,64.60099140100031],[-115.68548749656506,68.32521706935066]]],[[[-108.23703615986442,68.32521706935066],[-104.51281049151405,68.32521706935066],[-104.51281049151405,64.60099140100031],[-108.23703615986442,64.60099140100031],[-108.23703615986442,68.32521706935066]]],[[[-104.51281049151405,68.32521706935066],[-100.78858482316367,68.32521706935066],[-100.78858482316367,64.60099140100031],[-104.51281049151405,64.60099140100031],[-104.51281049151405,68.32521706935066]]],[[[-100.78858482316367,68.32521706935066],[-97.06435915481335,68.32521706935066],[-97.06435915481335,64.60099140100031],[-100.78858482316367,64.60099140100031],[-100.78858482316367,68.32521706935066]]],[[[-97.06435915481335,68.32521706935066],[-93.34013348646297,68.32521706935066],[-93.34013348646297,64.60099140100031],[-97.06435915481335,64.60099140100031],[-97.06435915481335,68.32521706935066]]],[[[-93.34013348646297,68.32521706935066],[-89.61590781811266,68.32521706935066],[-89.61590781811266,64.60099140100031],[-93.34013348646297,64.60099140100031],[-93.34013348646297,68.32521706935066]]],[[[-70.99477947636089,68.32521706935066],[-67.27055380801052,68.32521706935066],[-67.27055380801052,64.60099140100031],[-70.99477947636089,64.60099140100031],[-70.99477947636089,68.32521706935066]]],[[[-52.373651134609126,68.32521706935066],[-48.64942546625875,68.32521706935066],[-48.64942546625875,64.60099140100031],[-52.373651134609126,64.60099140100031],[-52.373651134609126,68.32521706935066]]],[[[-48.64942546625875,68.32521706935066],[-44.92519979790843,68.32521706935066],[-44.92519979790843,64.60099140100031],[-48.64942546625875,64.60099140100031],[-48.64942546625875,68.32521706935066]]],[[[-44.92519979790843,68.32521706935066],[-41.200974129558105,68.32521706935066],[-41.200974129558105,64.60099140100031],[-44.92519979790843,64.60099140100031],[-44.92519979790843,68.32521706935066]]],[[[9.688295397362786,64.60099140100031],[13.412521065713134,64.60099140100031],[13.412521065713134,60.87676573264997],[9.688295397362786,60.87676573264997],[9.688295397362786,64.60099140100031]]],[[[13.412521065713134,64.60099140100031],[17.136746734063507,64.60099140100031],[17.136746734063507,60.87676573264997],[13.412521065713134,60.87676573264997],[13.412521065713134,64.60099140100031]]],[[[24.585198070764203,64.60099140100031],[28.30942373911455,64.60099140100031],[28.30942373911455,60.87676573264997],[24.585198070764203,60.87676573264997],[24.585198070764203,64.60099140100031]]],[[[28.30942373911455,64.60099140100031],[32.0336494074649,64.60099140100031],[32.0336494074649,60.87676573264997],[28.30942373911455,60.87676573264997],[28.30942373911455,64.60099140100031]]],[[[32.0336494074649,64.60099140100031],[35.75787507581525,64.60099140100031],[35.75787507581525,60.87676573264997],[32.0336494074649,60.87676573264997],[32.0336494074649,64.60099140100031]]],[[[35.75787507581525,64.60099140100031],[39.48210074416559,64.60099140100031],[39.48210074416559,60.87676573264997],[35.75787507581525,60.87676573264997],[35.75787507581525,64.60099140100031]]],[[[39.48210074416559,64.60099140100031],[43.20632641251594,64.60099140100031],[43.20632641251594,60.87676573264997],[39.48210074416559,60.87676573264997],[39.48210074416559,64.60099140100031]]],[[[43.20632641251594,64.60099140100031],[46.93055208086631,64.60099140100031],[46.93055208086631,60.87676573264997],[43.20632641251594,60.87676573264997],[43.20632641251594,64.60099140100031]]],[[[46.93055208086631,64.60099140100031],[50.65477774921666,64.60099140100031],[50.65477774921666,60.87676573264997],[46.93055208086631,60.87676573264997],[46.93055208086631,64.60099140100031]]],[[[50.65477774921666,64.60099140100031],[54.37900341756701,64.60099140100031],[54.37900341756701,60.87676573264997],[50.65477774921666,60.87676573264997],[50.65477774921666,64.60099140100031]]],[[[54.37900341756701,64.60099140100031],[58.10322908591736,64.60099140100031],[58.10322908591736,60.87676573264997],[54.37900341756701,60.87676573264997],[54.37900341756701,64.60099140100031]]],[[[58.10322908591736,64.60099140100031],[61.827454754267706,64.60099140100031],[61.827454754267706,60.87676573264997],[58.10322908591736,60.87676573264997],[58.10322908591736,64.60099140100031]]],[[[61.827454754267706,64.60099140100031],[65.55168042261806,64.60099140100031],[65.55168042261806,60.87676573264997],[61.827454754267706,60.87676573264997],[61.827454754267706,64.60099140100031]]],[[[65.55168042261806,64.60099140100031],[69.2759060909684,64.60099140100031],[69.2759060909684,60.87676573264997],[65.55168042261806,60.87676573264997],[65.55168042261806,64.60099140100031]]],[[[69.2759060909684,64.60099140100031],[73.00013175931876,64.60099140100031],[73.00013175931876,60.87676573264997],[69.2759060909684,60.87676573264997],[69.2759060909684,64.60099140100031]]],[[[73.00013175931876,64.60099140100031],[76.72435742766912,64.60099140100031],[76.72435742766912,60.87676573264997],[73.00013175931876,60.87676573264997],[73.00013175931876,64.60099140100031]]],[[[76.72435742766912,64.60099140100031],[80.44858309601946,64.60099140100031],[80.44858309601946,60.87676573264997],[76.72435742766912,60.87676573264997],[76.72435742766912,64.60099140100031]]],[[[80.44858309601946,64.60099140100031],[84.1728087643698,64.60099140100031],[84.1728087643698,60.87676573264997],[80.44858309601946,60.87676573264997],[80.44858309601946,64.60099140100031]]],[[[84.1728087643698,64.60099140100031],[87.89703443272018,64.60099140100031],[87.89703443272018,60.87676573264997],[84.1728087643698,60.87676573264997],[84.1728087643698,64.60099140100031]]],[[[87.89703443272018,64.60099140100031],[91.62126010107052,64.60099140100031],[91.62126010107052,60.87676573264997],[87.89703443272018,60.87676573264997],[87.89703443272018,64.60099140100031]]],[[[91.62126010107052,64.60099140100031],[95.34548576942086,64.60099140100031],[95.34548576942086,60.87676573264997],[91.62126010107052,60.87676573264997],[91.62126010107052,64.60099140100031]]],[[[95.34548576942086,64.60099140100031],[99.06971143777122,64.60099140100031],[99.06971143777122,60.87676573264997],[95.34548576942086,60.87676573264997],[95.34548576942086,64.60099140100031]]],[[[99.06971143777122,64.60099140100031],[102.79393710612158,64.60099140100031],[102.79393710612158,60.87676573264997],[99.06971143777122,60.87676573264997],[99.06971143777122,64.60099140100031]]],[[[102.79393710612158,64.60099140100031],[106.51816277447192,64.60099140100031],[106.51816277447192,60.87676573264997],[102.79393710612158,60.87676573264997],[102.79393710612158,64.60099140100031]]],[[[106.51816277447192,64.60099140100031],[110.24238844282227,64.60099140100031],[110.24238844282227,60.87676573264997],[106.51816277447192,60.87676573264997],[106.51816277447192,64.60099140100031]]],[[[110.24238844282227,64.60099140100031],[113.96661411117262,64.60099140100031],[113.96661411117262,60.87676573264997],[110.24238844282227,60.87676573264997],[110.24238844282227,64.60099140100031]]],[[[113.96661411117262,64.60099140100031],[117.69083977952297,64.60099140100031],[117.69083977952297,60.87676573264997],[113.96661411117262,60.87676573264997],[113.96661411117262,64.60099140100031]]],[[[117.69083977952297,64.60099140100031],[121.41506544787333,64.60099140100031],[121.41506544787333,60.87676573264997],[117.69083977952297,60.87676573264997],[117.69083977952297,64.60099140100031]]],[[[121.41506544787333,64.60099140100031],[125.13929111622367,64.60099140100031],[125.13929111622367,60.87676573264997],[121.41506544787333,60.87676573264997],[121.41506544787333,64.60099140100031]]],[[[125.13929111622367,64.60099140100031],[128.86351678457402,64.60099140100031],[128.86351678457402,60.87676573264997],[125.13929111622367,60.87676573264997],[125.13929111622367,64.60099140100031]]],[[[128.86351678457402,64.60099140100031],[132.58774245292437,64.60099140100031],[132.58774245292437,60.87676573264997],[128.86351678457402,60.87676573264997],[128.86351678457402,64.60099140100031]]],[[[132.58774245292437,64.60099140100031],[136.31196812127473,64.60099140100031],[136.31196812127473,60.87676573264997],[132.58774245292437,60.87676573264997],[132.58774245292437,64.60099140100031]]],[[[136.31196812127473,64.60099140100031],[140.0361937896251,64.60099140100031],[140.0361937896251,60.87676573264997],[136.31196812127473,60.87676573264997],[136.31196812127473,64.60099140100031]]],[[[140.0361937896251,64.60099140100031],[143.76041945797544,64.60099140100031],[143.76041945797544,60.87676573264997],[140.0361937896251,60.87676573264997],[140.0361937896251,64.60099140100031]]],[[[143.76041945797544,64.60099140100031],[147.48464512632577,64.60099140100031],[147.48464512632577,60.87676573264997],[143.76041945797544,60.87676573264997],[143.76041945797544,64.60099140100031]]],[[[147.48464512632577,64.60099140100031],[151.20887079467613,64.60099140100031],[151.20887079467613,60.87676573264997],[147.48464512632577,60.87676573264997],[147.48464512632577,64.60099140100031]]],[[[151.20887079467613,64.60099140100031],[154.9330964630265,64.60099140100031],[154.9330964630265,60.87676573264997],[151.20887079467613,60.87676573264997],[151.20887079467613,64.60099140100031]]],[[[158.65732213137684,64.60099140100031],[162.38154779972717,64.60099140100031],[162.38154779972717,60.87676573264997],[158.65732213137684,60.87676573264997],[158.65732213137684,64.60099140100031]]],[[[162.38154779972717,64.60099140100031],[166.10577346807753,64.60099140100031],[166.10577346807753,60.87676573264997],[162.38154779972717,60.87676573264997],[162.38154779972717,64.60099140100031]]],[[[166.10577346807753,64.60099140100031],[169.8299991364279,64.60099140100031],[169.8299991364279,60.87676573264997],[166.10577346807753,60.87676573264997],[166.10577346807753,64.60099140100031]]],[[[169.8299991364279,64.60099140100031],[173.55422480477824,64.60099140100031],[173.55422480477824,60.87676573264997],[169.8299991364279,60.87676573264997],[169.8299991364279,64.60099140100031]]],[[[-160.3761955167693,64.60099140100031],[-156.65196984841896,64.60099140100031],[-156.65196984841896,60.87676573264997],[-160.3761955167693,60.87676573264997],[-160.3761955167693,64.60099140100031]]],[[[-156.65196984841896,64.60099140100031],[-152.9277441800686,64.60099140100031],[-152.9277441800686,60.87676573264997],[-156.65196984841896,60.87676573264997],[-156.65196984841896,64.60099140100031]]],[[[-152.9277441800686,64.60099140100031],[-149.20351851171824,64.60099140100031],[-149.20351851171824,60.87676573264997],[-152.9277441800686,60.87676573264997],[-152.9277441800686,64.60099140100031]]],[[[-149.20351851171824,64.60099140100031],[-145.4792928433679,64.60099140100031],[-145.4792928433679,60.87676573264997],[-149.20351851171824,60.87676573264997],[-149.20351851171824,64.60099140100031]]],[[[-145.4792928433679,64.60099140100031],[-141.75506717501756,64.60099140100031],[-141.75506717501756,60.87676573264997],[-145.4792928433679,60.87676573264997],[-145.4792928433679,64.60099140100031]]],[[[-141.75506717501756,64.60099140100031],[-138.0308415066672,64.60099140100031],[-138.0308415066672,60.87676573264997],[-141.75506717501756,60.87676573264997],[-141.75506717501756,64.60099140100031]]],[[[-138.0308415066672,64.60099140100031],[-134.30661583831684,64.60099140100031],[-134.30661583831684,60.87676573264997],[-138.0308415066672,60.87676573264997],[-138.0308415066672,64.60099140100031]]],[[[-134.30661583831684,64.60099140100031],[-130.58239016996652,64.60099140100031],[-130.58239016996652,60.87676573264997],[-134.30661583831684,60.87676573264997],[-134.30661583831684,64.60099140100031]]],[[[-130.58239016996652,64.60099140100031],[-126.85816450161613,64.60099140100031],[-126.85816450161613,60.87676573264997],[-130.58239016996652,60.87676573264997],[-130.58239016996652,64.60099140100031]]],[[[-126.85816450161613,64.60099140100031],[-123.13393883326582,64.60099140100031],[-123.13393883326582,60.87676573264997],[-126.85816450161613,60.87676573264997],[-126.85816450161613,64.60099140100031]]],[[[-123.13393883326582,64.60099140100031],[-119.40971316491543,64.60099140100031],[-119.40971316491543,60.87676573264997],[-123.13393883326582,60.87676573264997],[-123.13393883326582,64.60099140100031]]],[[[-119.40971316491543,64.60099140100031],[-115.68548749656506,64.60099140100031],[-115.68548749656506,60.87676573264997],[-119.40971316491543,60.87676573264997],[-119.40971316491543,64.60099140100031]]],[[[-115.68548749656506,64.60099140100031],[-111.96126182821475,64.60099140100031],[-111.96126182821475,60.87676573264997],[-115.68548749656506,60.87676573264997],[-115.68548749656506,64.60099140100031]]],[[[-111.96126182821475,64.60099140100031],[-108.23703615986442,64.60099140100031],[-108.23703615986442,60.87676573264997],[-111.96126182821475,60.87676573264997],[-111.96126182821475,64.60099140100031]]],[[[-108.23703615986442,64.60099140100031],[-104.51281049151405,64.60099140100031],[-104.51281049151405,60.87676573264997],[-108.23703615986442,60.87676573264997],[-108.23703615986442,64.60099140100031]]],[[[-104.51281049151405,64.60099140100031],[-100.78858482316367,64.60099140100031],[-100.78858482316367,60.87676573264997],[-104.51281049151405,60.87676573264997],[-104.51281049151405,64.60099140100031]]],[[[-100.78858482316367,64.60099140100031],[-97.06435915481335,64.60099140100031],[-97.06435915481335,60.87676573264997],[-100.78858482316367,60.87676573264997],[-100.78858482316367,64.60099140100031]]],[[[-97.06435915481335,64.60099140100031],[-93.34013348646297,64.60099140100031],[-93.34013348646297,60.87676573264997],[-97.06435915481335,60.87676573264997],[-97.06435915481335,64.60099140100031]]],[[[-48.64942546625875,64.60099140100031],[-44.92519979790843,64.60099140100031],[-44.92519979790843,60.87676573264997],[-48.64942546625875,60.87676573264997],[-48.64942546625875,64.60099140100031]]],[[[13.412521065713134,60.87676573264997],[17.136746734063507,60.87676573264997],[17.136746734063507,57.15254006429962],[13.412521065713134,57.15254006429962],[13.412521065713134,60.87676573264997]]],[[[28.30942373911455,60.87676573264997],[32.0336494074649,60.87676573264997],[32.0336494074649,57.15254006429962],[28.30942373911455,57.15254006429962],[28.30942373911455,60.87676573264997]]],[[[32.0336494074649,60.87676573264997],[35.75787507581525,60.87676573264997],[35.75787507581525,57.15254006429962],[32.0336494074649,57.15254006429962],[32.0336494074649,60.87676573264997]]],[[[35.75787507581525,60.87676573264997],[39.48210074416559,60.87676573264997],[39.48210074416559,57.15254006429962],[35.75787507581525,57.15254006429962],[35.75787507581525,60.87676573264997]]],[[[39.48210074416559,60.87676573264997],[43.20632641251594,60.87676573264997],[43.20632641251594,57.15254006429962],[39.48210074416559,57.15254006429962],[39.48210074416559,60.87676573264997]]],[[[43.20632641251594,60.87676573264997],[46.93055208086631,60.87676573264997],[46.93055208086631,57.15254006429962],[43.20632641251594,57.15254006429962],[43.20632641251594,60.87676573264997]]],[[[46.93055208086631,60.87676573264997],[50.65477774921666,60.87676573264997],[50.65477774921666,57.15254006429962],[46.93055208086631,57.15254006429962],[46.93055208086631,60.87676573264997]]],[[[50.65477774921666,60.87676573264997],[54.37900341756701,60.87676573264997],[54.37900341756701,57.15254006429962],[50.65477774921666,57.15254006429962],[50.65477774921666,60.87676573264997]]],[[[54.37900341756701,60.87676573264997],[58.10322908591736,60.87676573264997],[58.10322908591736,57.15254006429962],[54.37900341756701,57.15254006429962],[54.37900341756701,60.87676573264997]]],[[[58.10322908591736,60.87676573264997],[61.827454754267706,60.87676573264997],[61.827454754267706,57.15254006429962],[58.10322908591736,57.15254006429962],[58.10322908591736,60.87676573264997]]],[[[61.827454754267706,60.87676573264997],[65.55168042261806,60.87676573264997],[65.55168042261806,57.15254006429962],[61.827454754267706,57.15254006429962],[61.827454754267706,60.87676573264997]]],[[[65.55168042261806,60.87676573264997],[69.2759060909684,60.87676573264997],[69.2759060909684,57.15254006429962],[65.55168042261806,57.15254006429962],[65.55168042261806,60.87676573264997]]],[[[69.2759060909684,60.87676573264997],[73.00013175931876,60.87676573264997],[73.00013175931876,57.15254006429962],[69.2759060909684,57.15254006429962],[69.2759060909684,60.87676573264997]]],[[[73.00013175931876,60.87676573264997],[76.72435742766912,60.87676573264997],[76.72435742766912,57.15254006429962],[73.00013175931876,57.15254006429962],[73.00013175931876,60.87676573264997]]],[[[76.72435742766912,60.87676573264997],[80.44858309601946,60.87676573264997],[80.44858309601946,57.15254006429962],[76.72435742766912,57.15254006429962],[76.72435742766912,60.87676573264997]]],[[[80.44858309601946,60.87676573264997],[84.1728087643698,60.87676573264997],[84.1728087643698,57.15254006429962],[80.44858309601946,57.15254006429962],[80.44858309601946,60.87676573264997]]],[[[84.1728087643698,60.87676573264997],[87.89703443272018,60.87676573264997],[87.89703443272018,57.15254006429962],[84.1728087643698,57.15254006429962],[84.1728087643698,60.87676573264997]]],[[[87.89703443272018,60.87676573264997],[91.62126010107052,60.87676573264997],[91.62126010107052,57.15254006429962],[87.89703443272018,57.15254006429962],[87.89703443272018,60.87676573264997]]],[[[91.62126010107052,60.87676573264997],[95.34548576942086,60.87676573264997],[95.34548576942086,57.15254006429962],[91.62126010107052,57.15254006429962],[91.62126010107052,60.87676573264997]]],[[[95.34548576942086,60.87676573264997],[99.06971143777122,60.87676573264997],[99.06971143777122,57.15254006429962],[95.34548576942086,57.15254006429962],[95.34548576942086,60.87676573264997]]],[[[99.06971143777122,60.87676573264997],[102.79393710612158,60.87676573264997],[102.79393710612158,57.15254006429962],[99.06971143777122,57.15254006429962],[99.06971143777122,60.87676573264997]]],[[[102.79393710612158,60.87676573264997],[106.51816277447192,60.87676573264997],[106.51816277447192,57.15254006429962],[102.79393710612158,57.15254006429962],[102.79393710612158,60.87676573264997]]],[[[106.51816277447192,60.87676573264997],[110.24238844282227,60.87676573264997],[110.24238844282227,57.15254006429962],[106.51816277447192,57.15254006429962],[106.51816277447192,60.87676573264997]]],[[[110.24238844282227,60.87676573264997],[113.96661411117262,60.87676573264997],[113.96661411117262,57.15254006429962],[110.24238844282227,57.15254006429962],[110.24238844282227,60.87676573264997]]],[[[113.96661411117262,60.87676573264997],[117.69083977952297,60.87676573264997],[117.69083977952297,57.15254006429962],[113.96661411117262,57.15254006429962],[113.96661411117262,60.87676573264997]]],[[[117.69083977952297,60.87676573264997],[121.41506544787333,60.87676573264997],[121.41506544787333,57.15254006429962],[117.69083977952297,57.15254006429962],[117.69083977952297,60.87676573264997]]],[[[121.41506544787333,60.87676573264997],[125.13929111622367,60.87676573264997],[125.13929111622367,57.15254006429962],[121.41506544787333,57.15254006429962],[121.41506544787333,60.87676573264997]]],[[[125.13929111622367,60.87676573264997],[128.86351678457402,60.87676573264997],[128.86351678457402,57.15254006429962],[125.13929111622367,57.15254006429962],[125.13929111622367,60.87676573264997]]],[[[128.86351678457402,60.87676573264997],[132.58774245292437,60.87676573264997],[132.58774245292437,57.15254006429962],[128.86351678457402,57.15254006429962],[128.86351678457402,60.87676573264997]]],[[[132.58774245292437,60.87676573264997],[136.31196812127473,60.87676573264997],[136.31196812127473,57.15254006429962],[132.58774245292437,57.15254006429962],[132.58774245292437,60.87676573264997]]],[[[136.31196812127473,60.87676573264997],[140.0361937896251,60.87676573264997],[140.0361937896251,57.15254006429962],[136.31196812127473,57.15254006429962],[136.31196812127473,60.87676573264997]]],[[[-134.30661583831684,60.87676573264997],[-130.58239016996652,60.87676573264997],[-130.58239016996652,57.15254006429962],[-134.30661583831684,57.15254006429962],[-134.30661583831684,60.87676573264997]]],[[[-130.58239016996652,60.87676573264997],[-126.85816450161613,60.87676573264997],[-126.85816450161613,57.15254006429962],[-130.58239016996652,57.15254006429962],[-130.58239016996652,60.87676573264997]]],[[[-126.85816450161613,60.87676573264997],[-123.13393883326582,60.87676573264997],[-123.13393883326582,57.15254006429962],[-126.85816450161613,57.15254006429962],[-126.85816450161613,60.87676573264997]]],[[[-123.13393883326582,60.87676573264997],[-119.40971316491543,60.87676573264997],[-119.40971316491543,57.15254006429962],[-123.13393883326582,57.15254006429962],[-123.13393883326582,60.87676573264997]]],[[[-119.40971316491543,60.87676573264997],[-115.68548749656506,60.87676573264997],[-115.68548749656506,57.15254006429962],[-119.40971316491543,57.15254006429962],[-119.40971316491543,60.87676573264997]]],[[[-115.68548749656506,60.87676573264997],[-111.96126182821475,60.87676573264997],[-111.96126182821475,57.15254006429962],[-115.68548749656506,57.15254006429962],[-115.68548749656506,60.87676573264997]]],[[[-111.96126182821475,60.87676573264997],[-108.23703615986442,60.87676573264997],[-108.23703615986442,57.15254006429962],[-111.96126182821475,57.15254006429962],[-111.96126182821475,60.87676573264997]]],[[[-108.23703615986442,60.87676573264997],[-104.51281049151405,60.87676573264997],[-104.51281049151405,57.15254006429962],[-108.23703615986442,57.15254006429962],[-108.23703615986442,60.87676573264997]]],[[[-104.51281049151405,60.87676573264997],[-100.78858482316367,60.87676573264997],[-100.78858482316367,57.15254006429962],[-104.51281049151405,57.15254006429962],[-104.51281049151405,60.87676573264997]]],[[[-100.78858482316367,60.87676573264997],[-97.06435915481335,60.87676573264997],[-97.06435915481335,57.15254006429962],[-100.78858482316367,57.15254006429962],[-100.78858482316367,60.87676573264997]]],[[[-74.7190051447112,60.87676573264997],[-70.99477947636089,60.87676573264997],[-70.99477947636089,57.15254006429962],[-74.7190051447112,57.15254006429962],[-74.7190051447112,60.87676573264997]]],[[[20.860972402413857,57.15254006429962],[24.585198070764203,57.15254006429962],[24.585198070764203,53.428314395949265],[20.860972402413857,53.428314395949265],[20.860972402413857,57.15254006429962]]],[[[24.585198070764203,57.15254006429962],[28.30942373911455,57.15254006429962],[28.30942373911455,53.428314395949265],[24.585198070764203,53.428314395949265],[24.585198070764203,57.15254006429962]]],[[[28.30942373911455,57.15254006429962],[32.0336494074649,57.15254006429962],[32.0336494074649,53.428314395949265],[28.30942373911455,53.428314395949265],[28.30942373911455,57.15254006429962]]],[[[32.0336494074649,57.15254006429962],[35.75787507581525,57.15254006429962],[35.75787507581525,53.428314395949265],[32.0336494074649,53.428314395949265],[32.0336494074649,57.15254006429962]]],[[[35.75787507581525,57.15254006429962],[39.48210074416559,57.15254006429962],[39.48210074416559,53.428314395949265],[35.75787507581525,53.428314395949265],[35.75787507581525,57.15254006429962]]],[[[39.48210074416559,57.15254006429962],[43.20632641251594,57.15254006429962],[43.20632641251594,53.428314395949265],[39.48210074416559,53.428314395949265],[39.48210074416559,57.15254006429962]]],[[[43.20632641251594,57.15254006429962],[46.93055208086631,57.15254006429962],[46.93055208086631,53.428314395949265],[43.20632641251594,53.428314395949265],[43.20632641251594,57.15254006429962]]],[[[46.93055208086631,57.15254006429962],[50.65477774921666,57.15254006429962],[50.65477774921666,53.428314395949265],[46.93055208086631,53.428314395949265],[46.93055208086631,57.15254006429962]]],[[[50.65477774921666,57.15254006429962],[54.37900341756701,57.15254006429962],[54.37900341756701,53.428314395949265],[50.65477774921666,53.428314395949265],[50.65477774921666,57.15254006429962]]],[[[54.37900341756701,57.15254006429962],[58.10322908591736,57.15254006429962],[58.10322908591736,53.428314395949265],[54.37900341756701,53.428314395949265],[54.37900341756701,57.15254006429962]]],[[[58.10322908591736,57.15254006429962],[61.827454754267706,57.15254006429962],[61.827454754267706,53.428314395949265],[58.10322908591736,53.428314395949265],[58.10322908591736,57.15254006429962]]],[[[61.827454754267706,57.15254006429962],[65.55168042261806,57.15254006429962],[65.55168042261806,53.428314395949265],[61.827454754267706,53.428314395949265],[61.827454754267706,57.15254006429962]]],[[[65.55168042261806,57.15254006429962],[69.2759060909684,57.15254006429962],[69.2759060909684,53.428314395949265],[65.55168042261806,53.428314395949265],[65.55168042261806,57.15254006429962]]],[[[69.2759060909684,57.15254006429962],[73.00013175931876,57.15254006429962],[73.00013175931876,53.428314395949265],[69.2759060909684,53.428314395949265],[69.2759060909684,57.15254006429962]]],[[[73.00013175931876,57.15254006429962],[76.72435742766912,57.15254006429962],[76.72435742766912,53.428314395949265],[73.00013175931876,53.428314395949265],[73.00013175931876,57.15254006429962]]],[[[76.72435742766912,57.15254006429962],[80.44858309601946,57.15254006429962],[80.44858309601946,53.428314395949265],[76.72435742766912,53.428314395949265],[76.72435742766912,57.15254006429962]]],[[[80.44858309601946,57.15254006429962],[84.1728087643698,57.15254006429962],[84.1728087643698,53.428314395949265],[80.44858309601946,53.428314395949265],[80.44858309601946,57.15254006429962]]],[[[84.1728087643698,57.15254006429962],[87.89703443272018,57.15254006429962],[87.89703443272018,53.428314395949265],[84.1728087643698,53.428314395949265],[84.1728087643698,57.15254006429962]]],[[[87.89703443272018,57.15254006429962],[91.62126010107052,57.15254006429962],[91.62126010107052,53.428314395949265],[87.89703443272018,53.428314395949265],[87.89703443272018,57.15254006429962]]],[[[91.62126010107052,57.15254006429962],[95.34548576942086,57.15254006429962],[95.34548576942086,53.428314395949265],[91.62126010107052,53.428314395949265],[91.62126010107052,57.15254006429962]]],[[[95.34548576942086,57.15254006429962],[99.06971143777122,57.15254006429962],[99.06971143777122,53.428314395949265],[95.34548576942086,53.428314395949265],[95.34548576942086,57.15254006429962]]],[[[99.06971143777122,57.15254006429962],[102.79393710612158,57.15254006429962],[102.79393710612158,53.428314395949265],[99.06971143777122,53.428314395949265],[99.06971143777122,57.15254006429962]]],[[[102.79393710612158,57.15254006429962],[106.51816277447192,57.15254006429962],[106.51816277447192,53.428314395949265],[102.79393710612158,53.428314395949265],[102.79393710612158,57.15254006429962]]],[[[106.51816277447192,57.15254006429962],[110.24238844282227,57.15254006429962],[110.24238844282227,53.428314395949265],[106.51816277447192,53.428314395949265],[106.51816277447192,57.15254006429962]]],[[[110.24238844282227,57.15254006429962],[113.96661411117262,57.15254006429962],[113.96661411117262,53.428314395949265],[110.24238844282227,53.428314395949265],[110.24238844282227,57.15254006429962]]],[[[113.96661411117262,57.15254006429962],[117.69083977952297,57.15254006429962],[117.69083977952297,53.428314395949265],[113.96661411117262,53.428314395949265],[113.96661411117262,57.15254006429962]]],[[[117.69083977952297,57.15254006429962],[121.41506544787333,57.15254006429962],[121.41506544787333,53.428314395949265],[117.69083977952297,53.428314395949265],[117.69083977952297,57.15254006429962]]],[[[121.41506544787333,57.15254006429962],[125.13929111622367,57.15254006429962],[125.13929111622367,53.428314395949265],[121.41506544787333,53.428314395949265],[121.41506544787333,57.15254006429962]]],[[[125.13929111622367,57.15254006429962],[128.86351678457402,57.15254006429962],[128.86351678457402,53.428314395949265],[125.13929111622367,53.428314395949265],[125.13929111622367,57.15254006429962]]],[[[128.86351678457402,57.15254006429962],[132.58774245292437,57.15254006429962],[132.58774245292437,53.428314395949265],[128.86351678457402,53.428314395949265],[128.86351678457402,57.15254006429962]]],[[[132.58774245292437,57.15254006429962],[136.31196812127473,57.15254006429962],[136.31196812127473,53.428314395949265],[132.58774245292437,53.428314395949265],[132.58774245292437,57.15254006429962]]],[[[-130.58239016996652,57.15254006429962],[-126.85816450161613,57.15254006429962],[-126.85816450161613,53.428314395949265],[-130.58239016996652,53.428314395949265],[-130.58239016996652,57.15254006429962]]],[[[-126.85816450161613,57.15254006429962],[-123.13393883326582,57.15254006429962],[-123.13393883326582,53.428314395949265],[-126.85816450161613,53.428314395949265],[-126.85816450161613,57.15254006429962]]],[[[-123.13393883326582,57.15254006429962],[-119.40971316491543,57.15254006429962],[-119.40971316491543,53.428314395949265],[-123.13393883326582,53.428314395949265],[-123.13393883326582,57.15254006429962]]],[[[-119.40971316491543,57.15254006429962],[-115.68548749656506,57.15254006429962],[-115.68548749656506,53.428314395949265],[-119.40971316491543,53.428314395949265],[-119.40971316491543,57.15254006429962]]],[[[-115.68548749656506,57.15254006429962],[-111.96126182821475,57.15254006429962],[-111.96126182821475,53.428314395949265],[-115.68548749656506,53.428314395949265],[-115.68548749656506,57.15254006429962]]],[[[-111.96126182821475,57.15254006429962],[-108.23703615986442,57.15254006429962],[-108.23703615986442,53.428314395949265],[-111.96126182821475,53.428314395949265],[-111.96126182821475,57.15254006429962]]],[[[-108.23703615986442,57.15254006429962],[-104.51281049151405,57.15254006429962],[-104.51281049151405,53.428314395949265],[-108.23703615986442,53.428314395949265],[-108.23703615986442,57.15254006429962]]],[[[-104.51281049151405,57.15254006429962],[-100.78858482316367,57.15254006429962],[-100.78858482316367,53.428314395949265],[-104.51281049151405,53.428314395949265],[-104.51281049151405,57.15254006429962]]],[[[-100.78858482316367,57.15254006429962],[-97.06435915481335,57.15254006429962],[-97.06435915481335,53.428314395949265],[-100.78858482316367,53.428314395949265],[-100.78858482316367,57.15254006429962]]],[[[-97.06435915481335,57.15254006429962],[-93.34013348646297,57.15254006429962],[-93.34013348646297,53.428314395949265],[-97.06435915481335,53.428314395949265],[-97.06435915481335,57.15254006429962]]],[[[-93.34013348646297,57.15254006429962],[-89.61590781811266,57.15254006429962],[-89.61590781811266,53.428314395949265],[-93.34013348646297,53.428314395949265],[-93.34013348646297,57.15254006429962]]],[[[-74.7190051447112,57.15254006429962],[-70.99477947636089,57.15254006429962],[-70.99477947636089,53.428314395949265],[-74.7190051447112,53.428314395949265],[-74.7190051447112,57.15254006429962]]],[[[-70.99477947636089,57.15254006429962],[-67.27055380801052,57.15254006429962],[-67.27055380801052,53.428314395949265],[-70.99477947636089,53.428314395949265],[-70.99477947636089,57.15254006429962]]],[[[-67.27055380801052,57.15254006429962],[-63.54632813966014,57.15254006429962],[-63.54632813966014,53.428314395949265],[-67.27055380801052,53.428314395949265],[-67.27055380801052,57.15254006429962]]],[[[5.964069729012438,53.428314395949265],[9.688295397362786,53.428314395949265],[9.688295397362786,49.704088727598915],[5.964069729012438,49.704088727598915],[5.964069729012438,53.428314395949265]]],[[[9.688295397362786,53.428314395949265],[13.412521065713134,53.428314395949265],[13.412521065713134,49.704088727598915],[9.688295397362786,49.704088727598915],[9.688295397362786,53.428314395949265]]],[[[13.412521065713134,53.428314395949265],[17.136746734063507,53.428314395949265],[17.136746734063507,49.704088727598915],[13.412521065713134,49.704088727598915],[13.412521065713134,53.428314395949265]]],[[[17.136746734063507,53.428314395949265],[20.860972402413857,53.428314395949265],[20.860972402413857,49.704088727598915],[17.136746734063507,49.704088727598915],[17.136746734063507,53.428314395949265]]],[[[20.860972402413857,53.428314395949265],[24.585198070764203,53.428314395949265],[24.585198070764203,49.704088727598915],[20.860972402413857,49.704088727598915],[20.860972402413857,53.428314395949265]]],[[[24.585198070764203,53.428314395949265],[28.30942373911455,53.428314395949265],[28.30942373911455,49.704088727598915],[24.585198070764203,49.704088727598915],[24.585198070764203,53.428314395949265]]],[[[28.30942373911455,53.428314395949265],[32.0336494074649,53.428314395949265],[32.0336494074649,49.704088727598915],[28.30942373911455,49.704088727598915],[28.30942373911455,53.428314395949265]]],[[[32.0336494074649,53.428314395949265],[35.75787507581525,53.428314395949265],[35.75787507581525,49.704088727598915],[32.0336494074649,49.704088727598915],[32.0336494074649,53.428314395949265]]],[[[35.75787507581525,53.428314395949265],[39.48210074416559,53.428314395949265],[39.48210074416559,49.704088727598915],[35.75787507581525,49.704088727598915],[35.75787507581525,53.428314395949265]]],[[[39.48210074416559,53.428314395949265],[43.20632641251594,53.428314395949265],[43.20632641251594,49.704088727598915],[39.48210074416559,49.704088727598915],[39.48210074416559,53.428314395949265]]],[[[43.20632641251594,53.428314395949265],[46.93055208086631,53.428314395949265],[46.93055208086631,49.704088727598915],[43.20632641251594,49.704088727598915],[43.20632641251594,53.428314395949265]]],[[[46.93055208086631,53.428314395949265],[50.65477774921666,53.428314395949265],[50.65477774921666,49.704088727598915],[46.93055208086631,49.704088727598915],[46.93055208086631,53.428314395949265]]],[[[50.65477774921666,53.428314395949265],[54.37900341756701,53.428314395949265],[54.37900341756701,49.704088727598915],[50.65477774921666,49.704088727598915],[50.65477774921666,53.428314395949265]]],[[[54.37900341756701,53.428314395949265],[58.10322908591736,53.428314395949265],[58.10322908591736,49.704088727598915],[54.37900341756701,49.704088727598915],[54.37900341756701,53.428314395949265]]],[[[58.10322908591736,53.428314395949265],[61.827454754267706,53.428314395949265],[61.827454754267706,49.704088727598915],[58.10322908591736,49.704088727598915],[58.10322908591736,53.428314395949265]]],[[[61.827454754267706,53.428314395949265],[65.55168042261806,53.428314395949265],[65.55168042261806,49.704088727598915],[61.827454754267706,49.704088727598915],[61.827454754267706,53.428314395949265]]],[[[65.55168042261806,53.428314395949265],[69.2759060909684,53.428314395949265],[69.2759060909684,49.704088727598915],[65.55168042261806,49.704088727598915],[65.55168042261806,53.428314395949265]]],[[[69.2759060909684,53.428314395949265],[73.00013175931876,53.428314395949265],[73.00013175931876,49.704088727598915],[69.2759060909684,49.704088727598915],[69.2759060909684,53.428314395949265]]],[[[73.00013175931876,53.428314395949265],[76.72435742766912,53.428314395949265],[76.72435742766912,49.704088727598915],[73.00013175931876,49.704088727598915],[73.00013175931876,53.428314395949265]]],[[[76.72435742766912,53.428314395949265],[80.44858309601946,53.428314395949265],[80.44858309601946,49.704088727598915],[76.72435742766912,49.704088727598915],[76.72435742766912,53.428314395949265]]],[[[80.44858309601946,53.428314395949265],[84.1728087643698,53.428314395949265],[84.1728087643698,49.704088727598915],[80.44858309601946,49.704088727598915],[80.44858309601946,53.428314395949265]]],[[[84.1728087643698,53.428314395949265],[87.89703443272018,53.428314395949265],[87.89703443272018,49.704088727598915],[84.1728087643698,49.704088727598915],[84.1728087643698,53.428314395949265]]],[[[87.89703443272018,53.428314395949265],[91.62126010107052,53.428314395949265],[91.62126010107052,49.704088727598915],[87.89703443272018,49.704088727598915],[87.89703443272018,53.428314395949265]]],[[[91.62126010107052,53.428314395949265],[95.34548576942086,53.428314395949265],[95.34548576942086,49.704088727598915],[91.62126010107052,49.704088727598915],[91.62126010107052,53.428314395949265]]],[[[95.34548576942086,53.428314395949265],[99.06971143777122,53.428314395949265],[99.06971143777122,49.704088727598915],[95.34548576942086,49.704088727598915],[95.34548576942086,53.428314395949265]]],[[[99.06971143777122,53.428314395949265],[102.79393710612158,53.428314395949265],[102.79393710612158,49.704088727598915],[99.06971143777122,49.704088727598915],[99.06971143777122,53.428314395949265]]],[[[102.79393710612158,53.428314395949265],[106.51816277447192,53.428314395949265],[106.51816277447192,49.704088727598915],[102.79393710612158,49.704088727598915],[102.79393710612158,53.428314395949265]]],[[[106.51816277447192,53.428314395949265],[110.24238844282227,53.428314395949265],[110.24238844282227,49.704088727598915],[106.51816277447192,49.704088727598915],[106.51816277447192,53.428314395949265]]],[[[110.24238844282227,53.428314395949265],[113.96661411117262,53.428314395949265],[113.96661411117262,49.704088727598915],[110.24238844282227,49.704088727598915],[110.24238844282227,53.428314395949265]]],[[[113.96661411117262,53.428314395949265],[117.69083977952297,53.428314395949265],[117.69083977952297,49.704088727598915],[113.96661411117262,49.704088727598915],[113.96661411117262,53.428314395949265]]],[[[117.69083977952297,53.428314395949265],[121.41506544787333,53.428314395949265],[121.41506544787333,49.704088727598915],[117.69083977952297,49.704088727598915],[117.69083977952297,53.428314395949265]]],[[[121.41506544787333,53.428314395949265],[125.13929111622367,53.428314395949265],[125.13929111622367,49.704088727598915],[121.41506544787333,49.704088727598915],[121.41506544787333,53.428314395949265]]],[[[125.13929111622367,53.428314395949265],[128.86351678457402,53.428314395949265],[128.86351678457402,49.704088727598915],[125.13929111622367,49.704088727598915],[125.13929111622367,53.428314395949265]]],[[[128.86351678457402,53.428314395949265],[132.58774245292437,53.428314395949265],[132.58774245292437,49.704088727598915],[128.86351678457402,49.704088727598915],[128.86351678457402,53.428314395949265]]],[[[132.58774245292437,53.428314395949265],[136.31196812127473,53.428314395949265],[136.31196812127473,49.704088727598915],[132.58774245292437,49.704088727598915],[132.58774245292437,53.428314395949265]]],[[[136.31196812127473,53.428314395949265],[140.0361937896251,53.428314395949265],[140.0361937896251,49.704088727598915],[136.31196812127473,49.704088727598915],[136.31196812127473,53.428314395949265]]],[[[-126.85816450161613,53.428314395949265],[-123.13393883326582,53.428314395949265],[-123.13393883326582,49.704088727598915],[-126.85816450161613,49.704088727598915],[-126.85816450161613,53.428314395949265]]],[[[-123.13393883326582,53.428314395949265],[-119.40971316491543,53.428314395949265],[-119.40971316491543,49.704088727598915],[-123.13393883326582,49.704088727598915],[-123.13393883326582,53.428314395949265]]],[[[-119.40971316491543,53.428314395949265],[-115.68548749656506,53.428314395949265],[-115.68548749656506,49.704088727598915],[-119.40971316491543,49.704088727598915],[-119.40971316491543,53.428314395949265]]],[[[-115.68548749656506,53.428314395949265],[-111.96126182821475,53.428314395949265],[-111.96126182821475,49.704088727598915],[-115.68548749656506,49.704088727598915],[-115.68548749656506,53.428314395949265]]],[[[-111.96126182821475,53.428314395949265],[-108.23703615986442,53.428314395949265],[-108.23703615986442,49.704088727598915],[-111.96126182821475,49.704088727598915],[-111.96126182821475,53.428314395949265]]],[[[-108.23703615986442,53.428314395949265],[-104.51281049151405,53.428314395949265],[-104.51281049151405,49.704088727598915],[-108.23703615986442,49.704088727598915],[-108.23703615986442,53.428314395949265]]],[[[-104.51281049151405,53.428314395949265],[-100.78858482316367,53.428314395949265],[-100.78858482316367,49.704088727598915],[-104.51281049151405,49.704088727598915],[-104.51281049151405,53.428314395949265]]],[[[-100.78858482316367,53.428314395949265],[-97.06435915481335,53.428314395949265],[-97.06435915481335,49.704088727598915],[-100.78858482316367,49.704088727598915],[-100.78858482316367,53.428314395949265]]],[[[-97.06435915481335,53.428314395949265],[-93.34013348646297,53.428314395949265],[-93.34013348646297,49.704088727598915],[-97.06435915481335,49.704088727598915],[-97.06435915481335,53.428314395949265]]],[[[-93.34013348646297,53.428314395949265],[-89.61590781811266,53.428314395949265],[-89.61590781811266,49.704088727598915],[-93.34013348646297,49.704088727598915],[-93.34013348646297,53.428314395949265]]],[[[-89.61590781811266,53.428314395949265],[-85.89168214976227,53.428314395949265],[-85.89168214976227,49.704088727598915],[-89.61590781811266,49.704088727598915],[-89.61590781811266,53.428314395949265]]],[[[-85.89168214976227,53.428314395949265],[-82.16745648141196,53.428314395949265],[-82.16745648141196,49.704088727598915],[-85.89168214976227,49.704088727598915],[-85.89168214976227,53.428314395949265]]],[[[-78.44323081306159,53.428314395949265],[-74.7190051447112,53.428314395949265],[-74.7190051447112,49.704088727598915],[-78.44323081306159,49.704088727598915],[-78.44323081306159,53.428314395949265]]],[[[-74.7190051447112,53.428314395949265],[-70.99477947636089,53.428314395949265],[-70.99477947636089,49.704088727598915],[-74.7190051447112,49.704088727598915],[-74.7190051447112,53.428314395949265]]],[[[-70.99477947636089,53.428314395949265],[-67.27055380801052,53.428314395949265],[-67.27055380801052,49.704088727598915],[-70.99477947636089,49.704088727598915],[-70.99477947636089,53.428314395949265]]],[[[-67.27055380801052,53.428314395949265],[-63.54632813966014,53.428314395949265],[-63.54632813966014,49.704088727598915],[-67.27055380801052,49.704088727598915],[-67.27055380801052,53.428314395949265]]],[[[-63.54632813966014,53.428314395949265],[-59.82210247130982,53.428314395949265],[-59.82210247130982,49.704088727598915],[-63.54632813966014,49.704088727598915],[-63.54632813966014,53.428314395949265]]],[[[2.2398440606620906,49.704088727598915],[5.964069729012438,49.704088727598915],[5.964069729012438,45.979863059248565],[2.2398440606620906,45.979863059248565],[2.2398440606620906,49.704088727598915]]],[[[5.964069729012438,49.704088727598915],[9.688295397362786,49.704088727598915],[9.688295397362786,45.979863059248565],[5.964069729012438,45.979863059248565],[5.964069729012438,49.704088727598915]]],[[[9.688295397362786,49.704088727598915],[13.412521065713134,49.704088727598915],[13.412521065713134,45.979863059248565],[9.688295397362786,45.979863059248565],[9.688295397362786,49.704088727598915]]],[[[13.412521065713134,49.704088727598915],[17.136746734063507,49.704088727598915],[17.136746734063507,45.979863059248565],[13.412521065713134,45.979863059248565],[13.412521065713134,49.704088727598915]]],[[[17.136746734063507,49.704088727598915],[20.860972402413857,49.704088727598915],[20.860972402413857,45.979863059248565],[17.136746734063507,45.979863059248565],[17.136746734063507,49.704088727598915]]],[[[20.860972402413857,49.704088727598915],[24.585198070764203,49.704088727598915],[24.585198070764203,45.979863059248565],[20.860972402413857,45.979863059248565],[20.860972402413857,49.704088727598915]]],[[[24.585198070764203,49.704088727598915],[28.30942373911455,49.704088727598915],[28.30942373911455,45.979863059248565],[24.585198070764203,45.979863059248565],[24.585198070764203,49.704088727598915]]],[[[28.30942373911455,49.704088727598915],[32.0336494074649,49.704088727598915],[32.0336494074649,45.979863059248565],[28.30942373911455,45.979863059248565],[28.30942373911455,49.704088727598915]]],[[[32.0336494074649,49.704088727598915],[35.75787507581525,49.704088727598915],[35.75787507581525,45.979863059248565],[32.0336494074649,45.979863059248565],[32.0336494074649,49.704088727598915]]],[[[39.48210074416559,49.704088727598915],[43.20632641251594,49.704088727598915],[43.20632641251594,45.979863059248565],[39.48210074416559,45.979863059248565],[39.48210074416559,49.704088727598915]]],[[[43.20632641251594,49.704088727598915],[46.93055208086631,49.704088727598915],[46.93055208086631,45.979863059248565],[43.20632641251594,45.979863059248565],[43.20632641251594,49.704088727598915]]],[[[46.93055208086631,49.704088727598915],[50.65477774921666,49.704088727598915],[50.65477774921666,45.979863059248565],[46.93055208086631,45.979863059248565],[46.93055208086631,49.704088727598915]]],[[[54.37900341756701,49.704088727598915],[58.10322908591736,49.704088727598915],[58.10322908591736,45.979863059248565],[54.37900341756701,45.979863059248565],[54.37900341756701,49.704088727598915]]],[[[58.10322908591736,49.704088727598915],[61.827454754267706,49.704088727598915],[61.827454754267706,45.979863059248565],[58.10322908591736,45.979863059248565],[58.10322908591736,49.704088727598915]]],[[[61.827454754267706,49.704088727598915],[65.55168042261806,49.704088727598915],[65.55168042261806,45.979863059248565],[61.827454754267706,45.979863059248565],[61.827454754267706,49.704088727598915]]],[[[65.55168042261806,49.704088727598915],[69.2759060909684,49.704088727598915],[69.2759060909684,45.979863059248565],[65.55168042261806,45.979863059248565],[65.55168042261806,49.704088727598915]]],[[[69.2759060909684,49.704088727598915],[73.00013175931876,49.704088727598915],[73.00013175931876,45.979863059248565],[69.2759060909684,45.979863059248565],[69.2759060909684,49.704088727598915]]],[[[73.00013175931876,49.704088727598915],[76.72435742766912,49.704088727598915],[76.72435742766912,45.979863059248565],[73.00013175931876,45.979863059248565],[73.00013175931876,49.704088727598915]]],[[[76.72435742766912,49.704088727598915],[80.44858309601946,49.704088727598915],[80.44858309601946,45.979863059248565],[76.72435742766912,45.979863059248565],[76.72435742766912,49.704088727598915]]],[[[80.44858309601946,49.704088727598915],[84.1728087643698,49.704088727598915],[84.1728087643698,45.979863059248565],[80.44858309601946,45.979863059248565],[80.44858309601946,49.704088727598915]]],[[[84.1728087643698,49.704088727598915],[87.89703443272018,49.704088727598915],[87.89703443272018,45.979863059248565],[84.1728087643698,45.979863059248565],[84.1728087643698,49.704088727598915]]],[[[87.89703443272018,49.704088727598915],[91.62126010107052,49.704088727598915],[91.62126010107052,45.979863059248565],[87.89703443272018,45.979863059248565],[87.89703443272018,49.704088727598915]]],[[[91.62126010107052,49.704088727598915],[95.34548576942086,49.704088727598915],[95.34548576942086,45.979863059248565],[91.62126010107052,45.979863059248565],[91.62126010107052,49.704088727598915]]],[[[95.34548576942086,49.704088727598915],[99.06971143777122,49.704088727598915],[99.06971143777122,45.979863059248565],[95.34548576942086,45.979863059248565],[95.34548576942086,49.704088727598915]]],[[[99.06971143777122,49.704088727598915],[102.79393710612158,49.704088727598915],[102.79393710612158,45.979863059248565],[99.06971143777122,45.979863059248565],[99.06971143777122,49.704088727598915]]],[[[102.79393710612158,49.704088727598915],[106.51816277447192,49.704088727598915],[106.51816277447192,45.979863059248565],[102.79393710612158,45.979863059248565],[102.79393710612158,49.704088727598915]]],[[[106.51816277447192,49.704088727598915],[110.24238844282227,49.704088727598915],[110.24238844282227,45.979863059248565],[106.51816277447192,45.979863059248565],[106.51816277447192,49.704088727598915]]],[[[110.24238844282227,49.704088727598915],[113.96661411117262,49.704088727598915],[113.96661411117262,45.979863059248565],[110.24238844282227,45.979863059248565],[110.24238844282227,49.704088727598915]]],[[[113.96661411117262,49.704088727598915],[117.69083977952297,49.704088727598915],[117.69083977952297,45.979863059248565],[113.96661411117262,45.979863059248565],[113.96661411117262,49.704088727598915]]],[[[117.69083977952297,49.704088727598915],[121.41506544787333,49.704088727598915],[121.41506544787333,45.979863059248565],[117.69083977952297,45.979863059248565],[117.69083977952297,49.704088727598915]]],[[[121.41506544787333,49.704088727598915],[125.13929111622367,49.704088727598915],[125.13929111622367,45.979863059248565],[121.41506544787333,45.979863059248565],[121.41506544787333,49.704088727598915]]],[[[125.13929111622367,49.704088727598915],[128.86351678457402,49.704088727598915],[128.86351678457402,45.979863059248565],[125.13929111622367,45.979863059248565],[125.13929111622367,49.704088727598915]]],[[[128.86351678457402,49.704088727598915],[132.58774245292437,49.704088727598915],[132.58774245292437,45.979863059248565],[128.86351678457402,45.979863059248565],[128.86351678457402,49.704088727598915]]],[[[132.58774245292437,49.704088727598915],[136.31196812127473,49.704088727598915],[136.31196812127473,45.979863059248565],[132.58774245292437,45.979863059248565],[132.58774245292437,49.704088727598915]]],[[[-123.13393883326582,49.704088727598915],[-119.40971316491543,49.704088727598915],[-119.40971316491543,45.979863059248565],[-123.13393883326582,45.979863059248565],[-123.13393883326582,49.704088727598915]]],[[[-119.40971316491543,49.704088727598915],[-115.68548749656506,49.704088727598915],[-115.68548749656506,45.979863059248565],[-119.40971316491543,45.979863059248565],[-119.40971316491543,49.704088727598915]]],[[[-115.68548749656506,49.704088727598915],[-111.96126182821475,49.704088727598915],[-111.96126182821475,45.979863059248565],[-115.68548749656506,45.979863059248565],[-115.68548749656506,49.704088727598915]]],[[[-111.96126182821475,49.704088727598915],[-108.23703615986442,49.704088727598915],[-108.23703615986442,45.979863059248565],[-111.96126182821475,45.979863059248565],[-111.96126182821475,49.704088727598915]]],[[[-108.23703615986442,49.704088727598915],[-104.51281049151405,49.704088727598915],[-104.51281049151405,45.979863059248565],[-108.23703615986442,45.979863059248565],[-108.23703615986442,49.704088727598915]]],[[[-104.51281049151405,49.704088727598915],[-100.78858482316367,49.704088727598915],[-100.78858482316367,45.979863059248565],[-104.51281049151405,45.979863059248565],[-104.51281049151405,49.704088727598915]]],[[[-100.78858482316367,49.704088727598915],[-97.06435915481335,49.704088727598915],[-97.06435915481335,45.979863059248565],[-100.78858482316367,45.979863059248565],[-100.78858482316367,49.704088727598915]]],[[[-97.06435915481335,49.704088727598915],[-93.34013348646297,49.704088727598915],[-93.34013348646297,45.979863059248565],[-97.06435915481335,45.979863059248565],[-97.06435915481335,49.704088727598915]]],[[[-93.34013348646297,49.704088727598915],[-89.61590781811266,49.704088727598915],[-89.61590781811266,45.979863059248565],[-93.34013348646297,45.979863059248565],[-93.34013348646297,49.704088727598915]]],[[[-89.61590781811266,49.704088727598915],[-85.89168214976227,49.704088727598915],[-85.89168214976227,45.979863059248565],[-89.61590781811266,45.979863059248565],[-89.61590781811266,49.704088727598915]]],[[[-85.89168214976227,49.704088727598915],[-82.16745648141196,49.704088727598915],[-82.16745648141196,45.979863059248565],[-85.89168214976227,45.979863059248565],[-85.89168214976227,49.704088727598915]]],[[[-82.16745648141196,49.704088727598915],[-78.44323081306159,49.704088727598915],[-78.44323081306159,45.979863059248565],[-82.16745648141196,45.979863059248565],[-82.16745648141196,49.704088727598915]]],[[[-78.44323081306159,49.704088727598915],[-74.7190051447112,49.704088727598915],[-74.7190051447112,45.979863059248565],[-78.44323081306159,45.979863059248565],[-78.44323081306159,49.704088727598915]]],[[[-74.7190051447112,49.704088727598915],[-70.99477947636089,49.704088727598915],[-70.99477947636089,45.979863059248565],[-74.7190051447112,45.979863059248565],[-74.7190051447112,49.704088727598915]]],[[[-70.99477947636089,49.704088727598915],[-67.27055380801052,49.704088727598915],[-67.27055380801052,45.979863059248565],[-70.99477947636089,45.979863059248565],[-70.99477947636089,49.704088727598915]]],[[[17.136746734063507,45.979863059248565],[20.860972402413857,45.979863059248565],[20.860972402413857,42.255637390898215],[17.136746734063507,42.255637390898215],[17.136746734063507,45.979863059248565]]],[[[20.860972402413857,45.979863059248565],[24.585198070764203,45.979863059248565],[24.585198070764203,42.255637390898215],[20.860972402413857,42.255637390898215],[20.860972402413857,45.979863059248565]]],[[[24.585198070764203,45.979863059248565],[28.30942373911455,45.979863059248565],[28.30942373911455,42.255637390898215],[24.585198070764203,42.255637390898215],[24.585198070764203,45.979863059248565]]],[[[39.48210074416559,45.979863059248565],[43.20632641251594,45.979863059248565],[43.20632641251594,42.255637390898215],[39.48210074416559,42.255637390898215],[39.48210074416559,45.979863059248565]]],[[[43.20632641251594,45.979863059248565],[46.93055208086631,45.979863059248565],[46.93055208086631,42.255637390898215],[43.20632641251594,42.255637390898215],[43.20632641251594,45.979863059248565]]],[[[54.37900341756701,45.979863059248565],[58.10322908591736,45.979863059248565],[58.10322908591736,42.255637390898215],[54.37900341756701,42.255637390898215],[54.37900341756701,45.979863059248565]]],[[[58.10322908591736,45.979863059248565],[61.827454754267706,45.979863059248565],[61.827454754267706,42.255637390898215],[58.10322908591736,42.255637390898215],[58.10322908591736,45.979863059248565]]],[[[61.827454754267706,45.979863059248565],[65.55168042261806,45.979863059248565],[65.55168042261806,42.255637390898215],[61.827454754267706,42.255637390898215],[61.827454754267706,45.979863059248565]]],[[[65.55168042261806,45.979863059248565],[69.2759060909684,45.979863059248565],[69.2759060909684,42.255637390898215],[65.55168042261806,42.255637390898215],[65.55168042261806,45.979863059248565]]],[[[69.2759060909684,45.979863059248565],[73.00013175931876,45.979863059248565],[73.00013175931876,42.255637390898215],[69.2759060909684,42.255637390898215],[69.2759060909684,45.979863059248565]]],[[[73.00013175931876,45.979863059248565],[76.72435742766912,45.979863059248565],[76.72435742766912,42.255637390898215],[73.00013175931876,42.255637390898215],[73.00013175931876,45.979863059248565]]],[[[76.72435742766912,45.979863059248565],[80.44858309601946,45.979863059248565],[80.44858309601946,42.255637390898215],[76.72435742766912,42.255637390898215],[76.72435742766912,45.979863059248565]]],[[[80.44858309601946,45.979863059248565],[84.1728087643698,45.979863059248565],[84.1728087643698,42.255637390898215],[80.44858309601946,42.255637390898215],[80.44858309601946,45.979863059248565]]],[[[84.1728087643698,45.979863059248565],[87.89703443272018,45.979863059248565],[87.89703443272018,42.255637390898215],[84.1728087643698,42.255637390898215],[84.1728087643698,45.979863059248565]]],[[[87.89703443272018,45.979863059248565],[91.62126010107052,45.979863059248565],[91.62126010107052,42.255637390898215],[87.89703443272018,42.255637390898215],[87.89703443272018,45.979863059248565]]],[[[91.62126010107052,45.979863059248565],[95.34548576942086,45.979863059248565],[95.34548576942086,42.255637390898215],[91.62126010107052,42.255637390898215],[91.62126010107052,45.979863059248565]]],[[[95.34548576942086,45.979863059248565],[99.06971143777122,45.979863059248565],[99.06971143777122,42.255637390898215],[95.34548576942086,42.255637390898215],[95.34548576942086,45.979863059248565]]],[[[99.06971143777122,45.979863059248565],[102.79393710612158,45.979863059248565],[102.79393710612158,42.255637390898215],[99.06971143777122,42.255637390898215],[99.06971143777122,45.979863059248565]]],[[[102.79393710612158,45.979863059248565],[106.51816277447192,45.979863059248565],[106.51816277447192,42.255637390898215],[102.79393710612158,42.255637390898215],[102.79393710612158,45.979863059248565]]],[[[106.51816277447192,45.979863059248565],[110.24238844282227,45.979863059248565],[110.24238844282227,42.255637390898215],[106.51816277447192,42.255637390898215],[106.51816277447192,45.979863059248565]]],[[[110.24238844282227,45.979863059248565],[113.96661411117262,45.979863059248565],[113.96661411117262,42.255637390898215],[110.24238844282227,42.255637390898215],[110.24238844282227,45.979863059248565]]],[[[113.96661411117262,45.979863059248565],[117.69083977952297,45.979863059248565],[117.69083977952297,42.255637390898215],[113.96661411117262,42.255637390898215],[113.96661411117262,45.979863059248565]]],[[[117.69083977952297,45.979863059248565],[121.41506544787333,45.979863059248565],[121.41506544787333,42.255637390898215],[117.69083977952297,42.255637390898215],[117.69083977952297,45.979863059248565]]],[[[121.41506544787333,45.979863059248565],[125.13929111622367,45.979863059248565],[125.13929111622367,42.255637390898215],[121.41506544787333,42.255637390898215],[121.41506544787333,45.979863059248565]]],[[[125.13929111622367,45.979863059248565],[128.86351678457402,45.979863059248565],[128.86351678457402,42.255637390898215],[125.13929111622367,42.255637390898215],[125.13929111622367,45.979863059248565]]],[[[128.86351678457402,45.979863059248565],[132.58774245292437,45.979863059248565],[132.58774245292437,42.255637390898215],[128.86351678457402,42.255637390898215],[128.86351678457402,45.979863059248565]]],[[[-123.13393883326582,45.979863059248565],[-119.40971316491543,45.979863059248565],[-119.40971316491543,42.255637390898215],[-123.13393883326582,42.255637390898215],[-123.13393883326582,45.979863059248565]]],[[[-119.40971316491543,45.979863059248565],[-115.68548749656506,45.979863059248565],[-115.68548749656506,42.255637390898215],[-119.40971316491543,42.255637390898215],[-119.40971316491543,45.979863059248565]]],[[[-115.68548749656506,45.979863059248565],[-111.96126182821475,45.979863059248565],[-111.96126182821475,42.255637390898215],[-115.68548749656506,42.255637390898215],[-115.68548749656506,45.979863059248565]]],[[[-111.96126182821475,45.979863059248565],[-108.23703615986442,45.979863059248565],[-108.23703615986442,42.255637390898215],[-111.96126182821475,42.255637390898215],[-111.96126182821475,45.979863059248565]]],[[[-108.23703615986442,45.979863059248565],[-104.51281049151405,45.979863059248565],[-104.51281049151405,42.255637390898215],[-108.23703615986442,42.255637390898215],[-108.23703615986442,45.979863059248565]]],[[[-104.51281049151405,45.979863059248565],[-100.78858482316367,45.979863059248565],[-100.78858482316367,42.255637390898215],[-104.51281049151405,42.255637390898215],[-104.51281049151405,45.979863059248565]]],[[[-100.78858482316367,45.979863059248565],[-97.06435915481335,45.979863059248565],[-97.06435915481335,42.255637390898215],[-100.78858482316367,42.255637390898215],[-100.78858482316367,45.979863059248565]]],[[[-97.06435915481335,45.979863059248565],[-93.34013348646297,45.979863059248565],[-93.34013348646297,42.255637390898215],[-97.06435915481335,42.255637390898215],[-97.06435915481335,45.979863059248565]]],[[[-93.34013348646297,45.979863059248565],[-89.61590781811266,45.979863059248565],[-89.61590781811266,42.255637390898215],[-93.34013348646297,42.255637390898215],[-93.34013348646297,45.979863059248565]]],[[[-89.61590781811266,45.979863059248565],[-85.89168214976227,45.979863059248565],[-85.89168214976227,42.255637390898215],[-89.61590781811266,42.255637390898215],[-89.61590781811266,45.979863059248565]]],[[[-85.89168214976227,45.979863059248565],[-82.16745648141196,45.979863059248565],[-82.16745648141196,42.255637390898215],[-85.89168214976227,42.255637390898215],[-85.89168214976227,45.979863059248565]]],[[[-82.16745648141196,45.979863059248565],[-78.44323081306159,45.979863059248565],[-78.44323081306159,42.255637390898215],[-82.16745648141196,42.255637390898215],[-82.16745648141196,45.979863059248565]]],[[[-78.44323081306159,45.979863059248565],[-74.7190051447112,45.979863059248565],[-74.7190051447112,42.255637390898215],[-78.44323081306159,42.255637390898215],[-78.44323081306159,45.979863059248565]]],[[[-74.7190051447112,45.979863059248565],[-70.99477947636089,45.979863059248565],[-70.99477947636089,42.255637390898215],[-74.7190051447112,42.255637390898215],[-74.7190051447112,45.979863059248565]]],[[[32.0336494074649,42.255637390898215],[35.75787507581525,42.255637390898215],[35.75787507581525,38.53141172254786],[32.0336494074649,38.53141172254786],[32.0336494074649,42.255637390898215]]],[[[43.20632641251594,42.255637390898215],[46.93055208086631,42.255637390898215],[46.93055208086631,38.53141172254786],[43.20632641251594,38.53141172254786],[43.20632641251594,42.255637390898215]]],[[[54.37900341756701,42.255637390898215],[58.10322908591736,42.255637390898215],[58.10322908591736,38.53141172254786],[54.37900341756701,38.53141172254786],[54.37900341756701,42.255637390898215]]],[[[58.10322908591736,42.255637390898215],[61.827454754267706,42.255637390898215],[61.827454754267706,38.53141172254786],[58.10322908591736,38.53141172254786],[58.10322908591736,42.255637390898215]]],[[[61.827454754267706,42.255637390898215],[65.55168042261806,42.255637390898215],[65.55168042261806,38.53141172254786],[61.827454754267706,38.53141172254786],[61.827454754267706,42.255637390898215]]],[[[65.55168042261806,42.255637390898215],[69.2759060909684,42.255637390898215],[69.2759060909684,38.53141172254786],[65.55168042261806,38.53141172254786],[65.55168042261806,42.255637390898215]]],[[[69.2759060909684,42.255637390898215],[73.00013175931876,42.255637390898215],[73.00013175931876,38.53141172254786],[69.2759060909684,38.53141172254786],[69.2759060909684,42.255637390898215]]],[[[73.00013175931876,42.255637390898215],[76.72435742766912,42.255637390898215],[76.72435742766912,38.53141172254786],[73.00013175931876,38.53141172254786],[73.00013175931876,42.255637390898215]]],[[[76.72435742766912,42.255637390898215],[80.44858309601946,42.255637390898215],[80.44858309601946,38.53141172254786],[76.72435742766912,38.53141172254786],[76.72435742766912,42.255637390898215]]],[[[80.44858309601946,42.255637390898215],[84.1728087643698,42.255637390898215],[84.1728087643698,38.53141172254786],[80.44858309601946,38.53141172254786],[80.44858309601946,42.255637390898215]]],[[[84.1728087643698,42.255637390898215],[87.89703443272018,42.255637390898215],[87.89703443272018,38.53141172254786],[84.1728087643698,38.53141172254786],[84.1728087643698,42.255637390898215]]],[[[87.89703443272018,42.255637390898215],[91.62126010107052,42.255637390898215],[91.62126010107052,38.53141172254786],[87.89703443272018,38.53141172254786],[87.89703443272018,42.255637390898215]]],[[[91.62126010107052,42.255637390898215],[95.34548576942086,42.255637390898215],[95.34548576942086,38.53141172254786],[91.62126010107052,38.53141172254786],[91.62126010107052,42.255637390898215]]],[[[95.34548576942086,42.255637390898215],[99.06971143777122,42.255637390898215],[99.06971143777122,38.53141172254786],[95.34548576942086,38.53141172254786],[95.34548576942086,42.255637390898215]]],[[[99.06971143777122,42.255637390898215],[102.79393710612158,42.255637390898215],[102.79393710612158,38.53141172254786],[99.06971143777122,38.53141172254786],[99.06971143777122,42.255637390898215]]],[[[102.79393710612158,42.255637390898215],[106.51816277447192,42.255637390898215],[106.51816277447192,38.53141172254786],[102.79393710612158,38.53141172254786],[102.79393710612158,42.255637390898215]]],[[[106.51816277447192,42.255637390898215],[110.24238844282227,42.255637390898215],[110.24238844282227,38.53141172254786],[106.51816277447192,38.53141172254786],[106.51816277447192,42.255637390898215]]],[[[110.24238844282227,42.255637390898215],[113.96661411117262,42.255637390898215],[113.96661411117262,38.53141172254786],[110.24238844282227,38.53141172254786],[110.24238844282227,42.255637390898215]]],[[[113.96661411117262,42.255637390898215],[117.69083977952297,42.255637390898215],[117.69083977952297,38.53141172254786],[113.96661411117262,38.53141172254786],[113.96661411117262,42.255637390898215]]],[[[-123.13393883326582,42.255637390898215],[-119.40971316491543,42.255637390898215],[-119.40971316491543,38.53141172254786],[-123.13393883326582,38.53141172254786],[-123.13393883326582,42.255637390898215]]],[[[-119.40971316491543,42.255637390898215],[-115.68548749656506,42.255637390898215],[-115.68548749656506,38.53141172254786],[-119.40971316491543,38.53141172254786],[-119.40971316491543,42.255637390898215]]],[[[-115.68548749656506,42.255637390898215],[-111.96126182821475,42.255637390898215],[-111.96126182821475,38.53141172254786],[-115.68548749656506,38.53141172254786],[-115.68548749656506,42.255637390898215]]],[[[-111.96126182821475,42.255637390898215],[-108.23703615986442,42.255637390898215],[-108.23703615986442,38.53141172254786],[-111.96126182821475,38.53141172254786],[-111.96126182821475,42.255637390898215]]],[[[-108.23703615986442,42.255637390898215],[-104.51281049151405,42.255637390898215],[-104.51281049151405,38.53141172254786],[-108.23703615986442,38.53141172254786],[-108.23703615986442,42.255637390898215]]],[[[-104.51281049151405,42.255637390898215],[-100.78858482316367,42.255637390898215],[-100.78858482316367,38.53141172254786],[-104.51281049151405,38.53141172254786],[-104.51281049151405,42.255637390898215]]],[[[-100.78858482316367,42.255637390898215],[-97.06435915481335,42.255637390898215],[-97.06435915481335,38.53141172254786],[-100.78858482316367,38.53141172254786],[-100.78858482316367,42.255637390898215]]],[[[-97.06435915481335,42.255637390898215],[-93.34013348646297,42.255637390898215],[-93.34013348646297,38.53141172254786],[-97.06435915481335,38.53141172254786],[-97.06435915481335,42.255637390898215]]],[[[-93.34013348646297,42.255637390898215],[-89.61590781811266,42.255637390898215],[-89.61590781811266,38.53141172254786],[-93.34013348646297,38.53141172254786],[-93.34013348646297,42.255637390898215]]],[[[-89.61590781811266,42.255637390898215],[-85.89168214976227,42.255637390898215],[-85.89168214976227,38.53141172254786],[-89.61590781811266,38.53141172254786],[-89.61590781811266,42.255637390898215]]],[[[-85.89168214976227,42.255637390898215],[-82.16745648141196,42.255637390898215],[-82.16745648141196,38.53141172254786],[-85.89168214976227,38.53141172254786],[-85.89168214976227,42.255637390898215]]],[[[-82.16745648141196,42.255637390898215],[-78.44323081306159,42.255637390898215],[-78.44323081306159,38.53141172254786],[-82.16745648141196,38.53141172254786],[-82.16745648141196,42.255637390898215]]],[[[-78.44323081306159,42.255637390898215],[-74.7190051447112,42.255637390898215],[-74.7190051447112,38.53141172254786],[-78.44323081306159,38.53141172254786],[-78.44323081306159,42.255637390898215]]],[[[-7.682943114404897,42.255637390898215],[-3.9587174460545747,42.255637390898215],[-3.9587174460545747,38.53141172254786],[-7.682943114404897,38.53141172254786],[-7.682943114404897,42.255637390898215]]],[[[-3.9587174460545747,42.255637390898215],[-0.23449177770420107,42.255637390898215],[-0.23449177770420107,38.53141172254786],[-3.9587174460545747,38.53141172254786],[-3.9587174460545747,42.255637390898215]]],[[[35.75787507581525,38.53141172254786],[39.48210074416559,38.53141172254786],[39.48210074416559,34.807186054197516],[35.75787507581525,34.807186054197516],[35.75787507581525,38.53141172254786]]],[[[39.48210074416559,38.53141172254786],[43.20632641251594,38.53141172254786],[43.20632641251594,34.807186054197516],[39.48210074416559,34.807186054197516],[39.48210074416559,38.53141172254786]]],[[[43.20632641251594,38.53141172254786],[46.93055208086631,38.53141172254786],[46.93055208086631,34.807186054197516],[43.20632641251594,34.807186054197516],[43.20632641251594,38.53141172254786]]],[[[54.37900341756701,38.53141172254786],[58.10322908591736,38.53141172254786],[58.10322908591736,34.807186054197516],[54.37900341756701,34.807186054197516],[54.37900341756701,38.53141172254786]]],[[[58.10322908591736,38.53141172254786],[61.827454754267706,38.53141172254786],[61.827454754267706,34.807186054197516],[58.10322908591736,34.807186054197516],[58.10322908591736,38.53141172254786]]],[[[61.827454754267706,38.53141172254786],[65.55168042261806,38.53141172254786],[65.55168042261806,34.807186054197516],[61.827454754267706,34.807186054197516],[61.827454754267706,38.53141172254786]]],[[[65.55168042261806,38.53141172254786],[69.2759060909684,38.53141172254786],[69.2759060909684,34.807186054197516],[65.55168042261806,34.807186054197516],[65.55168042261806,38.53141172254786]]],[[[69.2759060909684,38.53141172254786],[73.00013175931876,38.53141172254786],[73.00013175931876,34.807186054197516],[69.2759060909684,34.807186054197516],[69.2759060909684,38.53141172254786]]],[[[73.00013175931876,38.53141172254786],[76.72435742766912,38.53141172254786],[76.72435742766912,34.807186054197516],[73.00013175931876,34.807186054197516],[73.00013175931876,38.53141172254786]]],[[[76.72435742766912,38.53141172254786],[80.44858309601946,38.53141172254786],[80.44858309601946,34.807186054197516],[76.72435742766912,34.807186054197516],[76.72435742766912,38.53141172254786]]],[[[80.44858309601946,38.53141172254786],[84.1728087643698,38.53141172254786],[84.1728087643698,34.807186054197516],[80.44858309601946,34.807186054197516],[80.44858309601946,38.53141172254786]]],[[[84.1728087643698,38.53141172254786],[87.89703443272018,38.53141172254786],[87.89703443272018,34.807186054197516],[84.1728087643698,34.807186054197516],[84.1728087643698,38.53141172254786]]],[[[87.89703443272018,38.53141172254786],[91.62126010107052,38.53141172254786],[91.62126010107052,34.807186054197516],[87.89703443272018,34.807186054197516],[87.89703443272018,38.53141172254786]]],[[[91.62126010107052,38.53141172254786],[95.34548576942086,38.53141172254786],[95.34548576942086,34.807186054197516],[91.62126010107052,34.807186054197516],[91.62126010107052,38.53141172254786]]],[[[95.34548576942086,38.53141172254786],[99.06971143777122,38.53141172254786],[99.06971143777122,34.807186054197516],[95.34548576942086,34.807186054197516],[95.34548576942086,38.53141172254786]]],[[[99.06971143777122,38.53141172254786],[102.79393710612158,38.53141172254786],[102.79393710612158,34.807186054197516],[99.06971143777122,34.807186054197516],[99.06971143777122,38.53141172254786]]],[[[102.79393710612158,38.53141172254786],[106.51816277447192,38.53141172254786],[106.51816277447192,34.807186054197516],[102.79393710612158,34.807186054197516],[102.79393710612158,38.53141172254786]]],[[[106.51816277447192,38.53141172254786],[110.24238844282227,38.53141172254786],[110.24238844282227,34.807186054197516],[106.51816277447192,34.807186054197516],[106.51816277447192,38.53141172254786]]],[[[110.24238844282227,38.53141172254786],[113.96661411117262,38.53141172254786],[113.96661411117262,34.807186054197516],[110.24238844282227,34.807186054197516],[110.24238844282227,38.53141172254786]]],[[[113.96661411117262,38.53141172254786],[117.69083977952297,38.53141172254786],[117.69083977952297,34.807186054197516],[113.96661411117262,34.807186054197516],[113.96661411117262,38.53141172254786]]],[[[-119.40971316491543,38.53141172254786],[-115.68548749656506,38.53141172254786],[-115.68548749656506,34.807186054197516],[-119.40971316491543,34.807186054197516],[-119.40971316491543,38.53141172254786]]],[[[-115.68548749656506,38.53141172254786],[-111.96126182821475,38.53141172254786],[-111.96126182821475,34.807186054197516],[-115.68548749656506,34.807186054197516],[-115.68548749656506,38.53141172254786]]],[[[-111.96126182821475,38.53141172254786],[-108.23703615986442,38.53141172254786],[-108.23703615986442,34.807186054197516],[-111.96126182821475,34.807186054197516],[-111.96126182821475,38.53141172254786]]],[[[-108.23703615986442,38.53141172254786],[-104.51281049151405,38.53141172254786],[-104.51281049151405,34.807186054197516],[-108.23703615986442,34.807186054197516],[-108.23703615986442,38.53141172254786]]],[[[-104.51281049151405,38.53141172254786],[-100.78858482316367,38.53141172254786],[-100.78858482316367,34.807186054197516],[-104.51281049151405,34.807186054197516],[-104.51281049151405,38.53141172254786]]],[[[-100.78858482316367,38.53141172254786],[-97.06435915481335,38.53141172254786],[-97.06435915481335,34.807186054197516],[-100.78858482316367,34.807186054197516],[-100.78858482316367,38.53141172254786]]],[[[-97.06435915481335,38.53141172254786],[-93.34013348646297,38.53141172254786],[-93.34013348646297,34.807186054197516],[-97.06435915481335,34.807186054197516],[-97.06435915481335,38.53141172254786]]],[[[-93.34013348646297,38.53141172254786],[-89.61590781811266,38.53141172254786],[-89.61590781811266,34.807186054197516],[-93.34013348646297,34.807186054197516],[-93.34013348646297,38.53141172254786]]],[[[-89.61590781811266,38.53141172254786],[-85.89168214976227,38.53141172254786],[-85.89168214976227,34.807186054197516],[-89.61590781811266,34.807186054197516],[-89.61590781811266,38.53141172254786]]],[[[-85.89168214976227,38.53141172254786],[-82.16745648141196,38.53141172254786],[-82.16745648141196,34.807186054197516],[-85.89168214976227,34.807186054197516],[-85.89168214976227,38.53141172254786]]],[[[-82.16745648141196,38.53141172254786],[-78.44323081306159,38.53141172254786],[-78.44323081306159,34.807186054197516],[-82.16745648141196,34.807186054197516],[-82.16745648141196,38.53141172254786]]],[[[2.2398440606620906,34.807186054197516],[5.964069729012438,34.807186054197516],[5.964069729012438,31.08296038584716],[2.2398440606620906,31.08296038584716],[2.2398440606620906,34.807186054197516]]],[[[5.964069729012438,34.807186054197516],[9.688295397362786,34.807186054197516],[9.688295397362786,31.08296038584716],[5.964069729012438,31.08296038584716],[5.964069729012438,34.807186054197516]]],[[[35.75787507581525,34.807186054197516],[39.48210074416559,34.807186054197516],[39.48210074416559,31.08296038584716],[35.75787507581525,31.08296038584716],[35.75787507581525,34.807186054197516]]],[[[39.48210074416559,34.807186054197516],[43.20632641251594,34.807186054197516],[43.20632641251594,31.08296038584716],[39.48210074416559,31.08296038584716],[39.48210074416559,34.807186054197516]]],[[[43.20632641251594,34.807186054197516],[46.93055208086631,34.807186054197516],[46.93055208086631,31.08296038584716],[43.20632641251594,31.08296038584716],[43.20632641251594,34.807186054197516]]],[[[46.93055208086631,34.807186054197516],[50.65477774921666,34.807186054197516],[50.65477774921666,31.08296038584716],[46.93055208086631,31.08296038584716],[46.93055208086631,34.807186054197516]]],[[[50.65477774921666,34.807186054197516],[54.37900341756701,34.807186054197516],[54.37900341756701,31.08296038584716],[50.65477774921666,31.08296038584716],[50.65477774921666,34.807186054197516]]],[[[54.37900341756701,34.807186054197516],[58.10322908591736,34.807186054197516],[58.10322908591736,31.08296038584716],[54.37900341756701,31.08296038584716],[54.37900341756701,34.807186054197516]]],[[[58.10322908591736,34.807186054197516],[61.827454754267706,34.807186054197516],[61.827454754267706,31.08296038584716],[58.10322908591736,31.08296038584716],[58.10322908591736,34.807186054197516]]],[[[61.827454754267706,34.807186054197516],[65.55168042261806,34.807186054197516],[65.55168042261806,31.08296038584716],[61.827454754267706,31.08296038584716],[61.827454754267706,34.807186054197516]]],[[[65.55168042261806,34.807186054197516],[69.2759060909684,34.807186054197516],[69.2759060909684,31.08296038584716],[65.55168042261806,31.08296038584716],[65.55168042261806,34.807186054197516]]],[[[69.2759060909684,34.807186054197516],[73.00013175931876,34.807186054197516],[73.00013175931876,31.08296038584716],[69.2759060909684,31.08296038584716],[69.2759060909684,34.807186054197516]]],[[[73.00013175931876,34.807186054197516],[76.72435742766912,34.807186054197516],[76.72435742766912,31.08296038584716],[73.00013175931876,31.08296038584716],[73.00013175931876,34.807186054197516]]],[[[76.72435742766912,34.807186054197516],[80.44858309601946,34.807186054197516],[80.44858309601946,31.08296038584716],[76.72435742766912,31.08296038584716],[76.72435742766912,34.807186054197516]]],[[[80.44858309601946,34.807186054197516],[84.1728087643698,34.807186054197516],[84.1728087643698,31.08296038584716],[80.44858309601946,31.08296038584716],[80.44858309601946,34.807186054197516]]],[[[84.1728087643698,34.807186054197516],[87.89703443272018,34.807186054197516],[87.89703443272018,31.08296038584716],[84.1728087643698,31.08296038584716],[84.1728087643698,34.807186054197516]]],[[[87.89703443272018,34.807186054197516],[91.62126010107052,34.807186054197516],[91.62126010107052,31.08296038584716],[87.89703443272018,31.08296038584716],[87.89703443272018,34.807186054197516]]],[[[91.62126010107052,34.807186054197516],[95.34548576942086,34.807186054197516],[95.34548576942086,31.08296038584716],[91.62126010107052,31.08296038584716],[91.62126010107052,34.807186054197516]]],[[[95.34548576942086,34.807186054197516],[99.06971143777122,34.807186054197516],[99.06971143777122,31.08296038584716],[95.34548576942086,31.08296038584716],[95.34548576942086,34.807186054197516]]],[[[99.06971143777122,34.807186054197516],[102.79393710612158,34.807186054197516],[102.79393710612158,31.08296038584716],[99.06971143777122,31.08296038584716],[99.06971143777122,34.807186054197516]]],[[[102.79393710612158,34.807186054197516],[106.51816277447192,34.807186054197516],[106.51816277447192,31.08296038584716],[102.79393710612158,31.08296038584716],[102.79393710612158,34.807186054197516]]],[[[106.51816277447192,34.807186054197516],[110.24238844282227,34.807186054197516],[110.24238844282227,31.08296038584716],[106.51816277447192,31.08296038584716],[106.51816277447192,34.807186054197516]]],[[[110.24238844282227,34.807186054197516],[113.96661411117262,34.807186054197516],[113.96661411117262,31.08296038584716],[110.24238844282227,31.08296038584716],[110.24238844282227,34.807186054197516]]],[[[113.96661411117262,34.807186054197516],[117.69083977952297,34.807186054197516],[117.69083977952297,31.08296038584716],[113.96661411117262,31.08296038584716],[113.96661411117262,34.807186054197516]]],[[[-115.68548749656506,34.807186054197516],[-111.96126182821475,34.807186054197516],[-111.96126182821475,31.08296038584716],[-115.68548749656506,31.08296038584716],[-115.68548749656506,34.807186054197516]]],[[[-111.96126182821475,34.807186054197516],[-108.23703615986442,34.807186054197516],[-108.23703615986442,31.08296038584716],[-111.96126182821475,31.08296038584716],[-111.96126182821475,34.807186054197516]]],[[[-108.23703615986442,34.807186054197516],[-104.51281049151405,34.807186054197516],[-104.51281049151405,31.08296038584716],[-108.23703615986442,31.08296038584716],[-108.23703615986442,34.807186054197516]]],[[[-104.51281049151405,34.807186054197516],[-100.78858482316367,34.807186054197516],[-100.78858482316367,31.08296038584716],[-104.51281049151405,31.08296038584716],[-104.51281049151405,34.807186054197516]]],[[[-100.78858482316367,34.807186054197516],[-97.06435915481335,34.807186054197516],[-97.06435915481335,31.08296038584716],[-100.78858482316367,31.08296038584716],[-100.78858482316367,34.807186054197516]]],[[[-97.06435915481335,34.807186054197516],[-93.34013348646297,34.807186054197516],[-93.34013348646297,31.08296038584716],[-97.06435915481335,31.08296038584716],[-97.06435915481335,34.807186054197516]]],[[[-93.34013348646297,34.807186054197516],[-89.61590781811266,34.807186054197516],[-89.61590781811266,31.08296038584716],[-93.34013348646297,31.08296038584716],[-93.34013348646297,34.807186054197516]]],[[[-89.61590781811266,34.807186054197516],[-85.89168214976227,34.807186054197516],[-85.89168214976227,31.08296038584716],[-89.61590781811266,31.08296038584716],[-89.61590781811266,34.807186054197516]]],[[[-85.89168214976227,34.807186054197516],[-82.16745648141196,34.807186054197516],[-82.16745648141196,31.08296038584716],[-85.89168214976227,31.08296038584716],[-85.89168214976227,34.807186054197516]]],[[[-7.682943114404897,34.807186054197516],[-3.9587174460545747,34.807186054197516],[-3.9587174460545747,31.08296038584716],[-7.682943114404897,31.08296038584716],[-7.682943114404897,34.807186054197516]]],[[[-3.9587174460545747,34.807186054197516],[-0.23449177770420107,34.807186054197516],[-0.23449177770420107,31.08296038584716],[-3.9587174460545747,31.08296038584716],[-3.9587174460545747,34.807186054197516]]],[[[2.2398440606620906,31.08296038584716],[5.964069729012438,31.08296038584716],[5.964069729012438,27.35873471749681],[2.2398440606620906,27.35873471749681],[2.2398440606620906,31.08296038584716]]],[[[5.964069729012438,31.08296038584716],[9.688295397362786,31.08296038584716],[9.688295397362786,27.35873471749681],[5.964069729012438,27.35873471749681],[5.964069729012438,31.08296038584716]]],[[[9.688295397362786,31.08296038584716],[13.412521065713134,31.08296038584716],[13.412521065713134,27.35873471749681],[9.688295397362786,27.35873471749681],[9.688295397362786,31.08296038584716]]],[[[13.412521065713134,31.08296038584716],[17.136746734063507,31.08296038584716],[17.136746734063507,27.35873471749681],[13.412521065713134,27.35873471749681],[13.412521065713134,31.08296038584716]]],[[[17.136746734063507,31.08296038584716],[20.860972402413857,31.08296038584716],[20.860972402413857,27.35873471749681],[17.136746734063507,27.35873471749681],[17.136746734063507,31.08296038584716]]],[[[20.860972402413857,31.08296038584716],[24.585198070764203,31.08296038584716],[24.585198070764203,27.35873471749681],[20.860972402413857,27.35873471749681],[20.860972402413857,31.08296038584716]]],[[[24.585198070764203,31.08296038584716],[28.30942373911455,31.08296038584716],[28.30942373911455,27.35873471749681],[24.585198070764203,27.35873471749681],[24.585198070764203,31.08296038584716]]],[[[28.30942373911455,31.08296038584716],[32.0336494074649,31.08296038584716],[32.0336494074649,27.35873471749681],[28.30942373911455,27.35873471749681],[28.30942373911455,31.08296038584716]]],[[[32.0336494074649,31.08296038584716],[35.75787507581525,31.08296038584716],[35.75787507581525,27.35873471749681],[32.0336494074649,27.35873471749681],[32.0336494074649,31.08296038584716]]],[[[35.75787507581525,31.08296038584716],[39.48210074416559,31.08296038584716],[39.48210074416559,27.35873471749681],[35.75787507581525,27.35873471749681],[35.75787507581525,31.08296038584716]]],[[[39.48210074416559,31.08296038584716],[43.20632641251594,31.08296038584716],[43.20632641251594,27.35873471749681],[39.48210074416559,27.35873471749681],[39.48210074416559,31.08296038584716]]],[[[43.20632641251594,31.08296038584716],[46.93055208086631,31.08296038584716],[46.93055208086631,27.35873471749681],[43.20632641251594,27.35873471749681],[43.20632641251594,31.08296038584716]]],[[[50.65477774921666,31.08296038584716],[54.37900341756701,31.08296038584716],[54.37900341756701,27.35873471749681],[50.65477774921666,27.35873471749681],[50.65477774921666,31.08296038584716]]],[[[54.37900341756701,31.08296038584716],[58.10322908591736,31.08296038584716],[58.10322908591736,27.35873471749681],[54.37900341756701,27.35873471749681],[54.37900341756701,31.08296038584716]]],[[[58.10322908591736,31.08296038584716],[61.827454754267706,31.08296038584716],[61.827454754267706,27.35873471749681],[58.10322908591736,27.35873471749681],[58.10322908591736,31.08296038584716]]],[[[61.827454754267706,31.08296038584716],[65.55168042261806,31.08296038584716],[65.55168042261806,27.35873471749681],[61.827454754267706,27.35873471749681],[61.827454754267706,31.08296038584716]]],[[[65.55168042261806,31.08296038584716],[69.2759060909684,31.08296038584716],[69.2759060909684,27.35873471749681],[65.55168042261806,27.35873471749681],[65.55168042261806,31.08296038584716]]],[[[69.2759060909684,31.08296038584716],[73.00013175931876,31.08296038584716],[73.00013175931876,27.35873471749681],[69.2759060909684,27.35873471749681],[69.2759060909684,31.08296038584716]]],[[[73.00013175931876,31.08296038584716],[76.72435742766912,31.08296038584716],[76.72435742766912,27.35873471749681],[73.00013175931876,27.35873471749681],[73.00013175931876,31.08296038584716]]],[[[76.72435742766912,31.08296038584716],[80.44858309601946,31.08296038584716],[80.44858309601946,27.35873471749681],[76.72435742766912,27.35873471749681],[76.72435742766912,31.08296038584716]]],[[[80.44858309601946,31.08296038584716],[84.1728087643698,31.08296038584716],[84.1728087643698,27.35873471749681],[80.44858309601946,27.35873471749681],[80.44858309601946,31.08296038584716]]],[[[84.1728087643698,31.08296038584716],[87.89703443272018,31.08296038584716],[87.89703443272018,27.35873471749681],[84.1728087643698,27.35873471749681],[84.1728087643698,31.08296038584716]]],[[[87.89703443272018,31.08296038584716],[91.62126010107052,31.08296038584716],[91.62126010107052,27.35873471749681],[87.89703443272018,27.35873471749681],[87.89703443272018,31.08296038584716]]],[[[91.62126010107052,31.08296038584716],[95.34548576942086,31.08296038584716],[95.34548576942086,27.35873471749681],[91.62126010107052,27.35873471749681],[91.62126010107052,31.08296038584716]]],[[[95.34548576942086,31.08296038584716],[99.06971143777122,31.08296038584716],[99.06971143777122,27.35873471749681],[95.34548576942086,27.35873471749681],[95.34548576942086,31.08296038584716]]],[[[99.06971143777122,31.08296038584716],[102.79393710612158,31.08296038584716],[102.79393710612158,27.35873471749681],[99.06971143777122,27.35873471749681],[99.06971143777122,31.08296038584716]]],[[[102.79393710612158,31.08296038584716],[106.51816277447192,31.08296038584716],[106.51816277447192,27.35873471749681],[102.79393710612158,27.35873471749681],[102.79393710612158,31.08296038584716]]],[[[106.51816277447192,31.08296038584716],[110.24238844282227,31.08296038584716],[110.24238844282227,27.35873471749681],[106.51816277447192,27.35873471749681],[106.51816277447192,31.08296038584716]]],[[[110.24238844282227,31.08296038584716],[113.96661411117262,31.08296038584716],[113.96661411117262,27.35873471749681],[110.24238844282227,27.35873471749681],[110.24238844282227,31.08296038584716]]],[[[113.96661411117262,31.08296038584716],[117.69083977952297,31.08296038584716],[117.69083977952297,27.35873471749681],[113.96661411117262,27.35873471749681],[113.96661411117262,31.08296038584716]]],[[[117.69083977952297,31.08296038584716],[121.41506544787333,31.08296038584716],[121.41506544787333,27.35873471749681],[117.69083977952297,27.35873471749681],[117.69083977952297,31.08296038584716]]],[[[-111.96126182821475,31.08296038584716],[-108.23703615986442,31.08296038584716],[-108.23703615986442,27.35873471749681],[-111.96126182821475,27.35873471749681],[-111.96126182821475,31.08296038584716]]],[[[-108.23703615986442,31.08296038584716],[-104.51281049151405,31.08296038584716],[-104.51281049151405,27.35873471749681],[-108.23703615986442,27.35873471749681],[-108.23703615986442,31.08296038584716]]],[[[-104.51281049151405,31.08296038584716],[-100.78858482316367,31.08296038584716],[-100.78858482316367,27.35873471749681],[-104.51281049151405,27.35873471749681],[-104.51281049151405,31.08296038584716]]],[[[-100.78858482316367,31.08296038584716],[-97.06435915481335,31.08296038584716],[-97.06435915481335,27.35873471749681],[-100.78858482316367,27.35873471749681],[-100.78858482316367,31.08296038584716]]],[[[-7.682943114404897,31.08296038584716],[-3.9587174460545747,31.08296038584716],[-3.9587174460545747,27.35873471749681],[-7.682943114404897,27.35873471749681],[-7.682943114404897,31.08296038584716]]],[[[-3.9587174460545747,31.08296038584716],[-0.23449177770420107,31.08296038584716],[-0.23449177770420107,27.35873471749681],[-3.9587174460545747,27.35873471749681],[-3.9587174460545747,31.08296038584716]]],[[[2.2398440606620906,27.35873471749681],[5.964069729012438,27.35873471749681],[5.964069729012438,23.634509049146455],[2.2398440606620906,23.634509049146455],[2.2398440606620906,27.35873471749681]]],[[[5.964069729012438,27.35873471749681],[9.688295397362786,27.35873471749681],[9.688295397362786,23.634509049146455],[5.964069729012438,23.634509049146455],[5.964069729012438,27.35873471749681]]],[[[9.688295397362786,27.35873471749681],[13.412521065713134,27.35873471749681],[13.412521065713134,23.634509049146455],[9.688295397362786,23.634509049146455],[9.688295397362786,27.35873471749681]]],[[[13.412521065713134,27.35873471749681],[17.136746734063507,27.35873471749681],[17.136746734063507,23.634509049146455],[13.412521065713134,23.634509049146455],[13.412521065713134,27.35873471749681]]],[[[17.136746734063507,27.35873471749681],[20.860972402413857,27.35873471749681],[20.860972402413857,23.634509049146455],[17.136746734063507,23.634509049146455],[17.136746734063507,27.35873471749681]]],[[[20.860972402413857,27.35873471749681],[24.585198070764203,27.35873471749681],[24.585198070764203,23.634509049146455],[20.860972402413857,23.634509049146455],[20.860972402413857,27.35873471749681]]],[[[24.585198070764203,27.35873471749681],[28.30942373911455,27.35873471749681],[28.30942373911455,23.634509049146455],[24.585198070764203,23.634509049146455],[24.585198070764203,27.35873471749681]]],[[[28.30942373911455,27.35873471749681],[32.0336494074649,27.35873471749681],[32.0336494074649,23.634509049146455],[28.30942373911455,23.634509049146455],[28.30942373911455,27.35873471749681]]],[[[39.48210074416559,27.35873471749681],[43.20632641251594,27.35873471749681],[43.20632641251594,23.634509049146455],[39.48210074416559,23.634509049146455],[39.48210074416559,27.35873471749681]]],[[[43.20632641251594,27.35873471749681],[46.93055208086631,27.35873471749681],[46.93055208086631,23.634509049146455],[43.20632641251594,23.634509049146455],[43.20632641251594,27.35873471749681]]],[[[46.93055208086631,27.35873471749681],[50.65477774921666,27.35873471749681],[50.65477774921666,23.634509049146455],[46.93055208086631,23.634509049146455],[46.93055208086631,27.35873471749681]]],[[[69.2759060909684,27.35873471749681],[73.00013175931876,27.35873471749681],[73.00013175931876,23.634509049146455],[69.2759060909684,23.634509049146455],[69.2759060909684,27.35873471749681]]],[[[73.00013175931876,27.35873471749681],[76.72435742766912,27.35873471749681],[76.72435742766912,23.634509049146455],[73.00013175931876,23.634509049146455],[73.00013175931876,27.35873471749681]]],[[[76.72435742766912,27.35873471749681],[80.44858309601946,27.35873471749681],[80.44858309601946,23.634509049146455],[76.72435742766912,23.634509049146455],[76.72435742766912,27.35873471749681]]],[[[80.44858309601946,27.35873471749681],[84.1728087643698,27.35873471749681],[84.1728087643698,23.634509049146455],[80.44858309601946,23.634509049146455],[80.44858309601946,27.35873471749681]]],[[[84.1728087643698,27.35873471749681],[87.89703443272018,27.35873471749681],[87.89703443272018,23.634509049146455],[84.1728087643698,23.634509049146455],[84.1728087643698,27.35873471749681]]],[[[87.89703443272018,27.35873471749681],[91.62126010107052,27.35873471749681],[91.62126010107052,23.634509049146455],[87.89703443272018,23.634509049146455],[87.89703443272018,27.35873471749681]]],[[[91.62126010107052,27.35873471749681],[95.34548576942086,27.35873471749681],[95.34548576942086,23.634509049146455],[91.62126010107052,23.634509049146455],[91.62126010107052,27.35873471749681]]],[[[95.34548576942086,27.35873471749681],[99.06971143777122,27.35873471749681],[99.06971143777122,23.634509049146455],[95.34548576942086,23.634509049146455],[95.34548576942086,27.35873471749681]]],[[[99.06971143777122,27.35873471749681],[102.79393710612158,27.35873471749681],[102.79393710612158,23.634509049146455],[99.06971143777122,23.634509049146455],[99.06971143777122,27.35873471749681]]],[[[102.79393710612158,27.35873471749681],[106.51816277447192,27.35873471749681],[106.51816277447192,23.634509049146455],[102.79393710612158,23.634509049146455],[102.79393710612158,27.35873471749681]]],[[[106.51816277447192,27.35873471749681],[110.24238844282227,27.35873471749681],[110.24238844282227,23.634509049146455],[106.51816277447192,23.634509049146455],[106.51816277447192,27.35873471749681]]],[[[110.24238844282227,27.35873471749681],[113.96661411117262,27.35873471749681],[113.96661411117262,23.634509049146455],[110.24238844282227,23.634509049146455],[110.24238844282227,27.35873471749681]]],[[[113.96661411117262,27.35873471749681],[117.69083977952297,27.35873471749681],[117.69083977952297,23.634509049146455],[113.96661411117262,23.634509049146455],[113.96661411117262,27.35873471749681]]],[[[-108.23703615986442,27.35873471749681],[-104.51281049151405,27.35873471749681],[-104.51281049151405,23.634509049146455],[-108.23703615986442,23.634509049146455],[-108.23703615986442,27.35873471749681]]],[[[-104.51281049151405,27.35873471749681],[-100.78858482316367,27.35873471749681],[-100.78858482316367,23.634509049146455],[-104.51281049151405,23.634509049146455],[-104.51281049151405,27.35873471749681]]],[[[-100.78858482316367,27.35873471749681],[-97.06435915481335,27.35873471749681],[-97.06435915481335,23.634509049146455],[-100.78858482316367,23.634509049146455],[-100.78858482316367,27.35873471749681]]],[[[-11.40716878275527,27.35873471749681],[-7.682943114404897,27.35873471749681],[-7.682943114404897,23.634509049146455],[-11.40716878275527,23.634509049146455],[-11.40716878275527,27.35873471749681]]],[[[-7.682943114404897,27.35873471749681],[-3.9587174460545747,27.35873471749681],[-3.9587174460545747,23.634509049146455],[-7.682943114404897,23.634509049146455],[-7.682943114404897,27.35873471749681]]],[[[-3.9587174460545747,27.35873471749681],[-0.23449177770420107,27.35873471749681],[-0.23449177770420107,23.634509049146455],[-3.9587174460545747,23.634509049146455],[-3.9587174460545747,27.35873471749681]]],[[[2.2398440606620906,23.634509049146455],[5.964069729012438,23.634509049146455],[5.964069729012438,19.910283380796105],[2.2398440606620906,19.910283380796105],[2.2398440606620906,23.634509049146455]]],[[[5.964069729012438,23.634509049146455],[9.688295397362786,23.634509049146455],[9.688295397362786,19.910283380796105],[5.964069729012438,19.910283380796105],[5.964069729012438,23.634509049146455]]],[[[9.688295397362786,23.634509049146455],[13.412521065713134,23.634509049146455],[13.412521065713134,19.910283380796105],[9.688295397362786,19.910283380796105],[9.688295397362786,23.634509049146455]]],[[[13.412521065713134,23.634509049146455],[17.136746734063507,23.634509049146455],[17.136746734063507,19.910283380796105],[13.412521065713134,19.910283380796105],[13.412521065713134,23.634509049146455]]],[[[17.136746734063507,23.634509049146455],[20.860972402413857,23.634509049146455],[20.860972402413857,19.910283380796105],[17.136746734063507,19.910283380796105],[17.136746734063507,23.634509049146455]]],[[[20.860972402413857,23.634509049146455],[24.585198070764203,23.634509049146455],[24.585198070764203,19.910283380796105],[20.860972402413857,19.910283380796105],[20.860972402413857,23.634509049146455]]],[[[24.585198070764203,23.634509049146455],[28.30942373911455,23.634509049146455],[28.30942373911455,19.910283380796105],[24.585198070764203,19.910283380796105],[24.585198070764203,23.634509049146455]]],[[[28.30942373911455,23.634509049146455],[32.0336494074649,23.634509049146455],[32.0336494074649,19.910283380796105],[28.30942373911455,19.910283380796105],[28.30942373911455,23.634509049146455]]],[[[32.0336494074649,23.634509049146455],[35.75787507581525,23.634509049146455],[35.75787507581525,19.910283380796105],[32.0336494074649,19.910283380796105],[32.0336494074649,23.634509049146455]]],[[[39.48210074416559,23.634509049146455],[43.20632641251594,23.634509049146455],[43.20632641251594,19.910283380796105],[39.48210074416559,19.910283380796105],[39.48210074416559,23.634509049146455]]],[[[43.20632641251594,23.634509049146455],[46.93055208086631,23.634509049146455],[46.93055208086631,19.910283380796105],[43.20632641251594,19.910283380796105],[43.20632641251594,23.634509049146455]]],[[[46.93055208086631,23.634509049146455],[50.65477774921666,23.634509049146455],[50.65477774921666,19.910283380796105],[46.93055208086631,19.910283380796105],[46.93055208086631,23.634509049146455]]],[[[50.65477774921666,23.634509049146455],[54.37900341756701,23.634509049146455],[54.37900341756701,19.910283380796105],[50.65477774921666,19.910283380796105],[50.65477774921666,23.634509049146455]]],[[[54.37900341756701,23.634509049146455],[58.10322908591736,23.634509049146455],[58.10322908591736,19.910283380796105],[54.37900341756701,19.910283380796105],[54.37900341756701,23.634509049146455]]],[[[73.00013175931876,23.634509049146455],[76.72435742766912,23.634509049146455],[76.72435742766912,19.910283380796105],[73.00013175931876,19.910283380796105],[73.00013175931876,23.634509049146455]]],[[[76.72435742766912,23.634509049146455],[80.44858309601946,23.634509049146455],[80.44858309601946,19.910283380796105],[76.72435742766912,19.910283380796105],[76.72435742766912,23.634509049146455]]],[[[80.44858309601946,23.634509049146455],[84.1728087643698,23.634509049146455],[84.1728087643698,19.910283380796105],[80.44858309601946,19.910283380796105],[80.44858309601946,23.634509049146455]]],[[[91.62126010107052,23.634509049146455],[95.34548576942086,23.634509049146455],[95.34548576942086,19.910283380796105],[91.62126010107052,19.910283380796105],[91.62126010107052,23.634509049146455]]],[[[95.34548576942086,23.634509049146455],[99.06971143777122,23.634509049146455],[99.06971143777122,19.910283380796105],[95.34548576942086,19.910283380796105],[95.34548576942086,23.634509049146455]]],[[[99.06971143777122,23.634509049146455],[102.79393710612158,23.634509049146455],[102.79393710612158,19.910283380796105],[99.06971143777122,19.910283380796105],[99.06971143777122,23.634509049146455]]],[[[102.79393710612158,23.634509049146455],[106.51816277447192,23.634509049146455],[106.51816277447192,19.910283380796105],[102.79393710612158,19.910283380796105],[102.79393710612158,23.634509049146455]]],[[[-104.51281049151405,23.634509049146455],[-100.78858482316367,23.634509049146455],[-100.78858482316367,19.910283380796105],[-104.51281049151405,19.910283380796105],[-104.51281049151405,23.634509049146455]]],[[[-100.78858482316367,23.634509049146455],[-97.06435915481335,23.634509049146455],[-97.06435915481335,19.910283380796105],[-100.78858482316367,19.910283380796105],[-100.78858482316367,23.634509049146455]]],[[[-15.131394451105644,23.634509049146455],[-11.40716878275527,23.634509049146455],[-11.40716878275527,19.910283380796105],[-15.131394451105644,19.910283380796105],[-15.131394451105644,23.634509049146455]]],[[[-11.40716878275527,23.634509049146455],[-7.682943114404897,23.634509049146455],[-7.682943114404897,19.910283380796105],[-11.40716878275527,19.910283380796105],[-11.40716878275527,23.634509049146455]]],[[[-7.682943114404897,23.634509049146455],[-3.9587174460545747,23.634509049146455],[-3.9587174460545747,19.910283380796105],[-7.682943114404897,19.910283380796105],[-7.682943114404897,23.634509049146455]]],[[[-3.9587174460545747,23.634509049146455],[-0.23449177770420107,23.634509049146455],[-0.23449177770420107,19.910283380796105],[-3.9587174460545747,19.910283380796105],[-3.9587174460545747,23.634509049146455]]],[[[2.2398440606620906,19.910283380796105],[5.964069729012438,19.910283380796105],[5.964069729012438,16.186057712445756],[2.2398440606620906,16.186057712445756],[2.2398440606620906,19.910283380796105]]],[[[5.964069729012438,19.910283380796105],[9.688295397362786,19.910283380796105],[9.688295397362786,16.186057712445756],[5.964069729012438,16.186057712445756],[5.964069729012438,19.910283380796105]]],[[[9.688295397362786,19.910283380796105],[13.412521065713134,19.910283380796105],[13.412521065713134,16.186057712445756],[9.688295397362786,16.186057712445756],[9.688295397362786,19.910283380796105]]],[[[13.412521065713134,19.910283380796105],[17.136746734063507,19.910283380796105],[17.136746734063507,16.186057712445756],[13.412521065713134,16.186057712445756],[13.412521065713134,19.910283380796105]]],[[[17.136746734063507,19.910283380796105],[20.860972402413857,19.910283380796105],[20.860972402413857,16.186057712445756],[17.136746734063507,16.186057712445756],[17.136746734063507,19.910283380796105]]],[[[20.860972402413857,19.910283380796105],[24.585198070764203,19.910283380796105],[24.585198070764203,16.186057712445756],[20.860972402413857,16.186057712445756],[20.860972402413857,19.910283380796105]]],[[[24.585198070764203,19.910283380796105],[28.30942373911455,19.910283380796105],[28.30942373911455,16.186057712445756],[24.585198070764203,16.186057712445756],[24.585198070764203,19.910283380796105]]],[[[28.30942373911455,19.910283380796105],[32.0336494074649,19.910283380796105],[32.0336494074649,16.186057712445756],[28.30942373911455,16.186057712445756],[28.30942373911455,19.910283380796105]]],[[[32.0336494074649,19.910283380796105],[35.75787507581525,19.910283380796105],[35.75787507581525,16.186057712445756],[32.0336494074649,16.186057712445756],[32.0336494074649,19.910283380796105]]],[[[43.20632641251594,19.910283380796105],[46.93055208086631,19.910283380796105],[46.93055208086631,16.186057712445756],[43.20632641251594,16.186057712445756],[43.20632641251594,19.910283380796105]]],[[[46.93055208086631,19.910283380796105],[50.65477774921666,19.910283380796105],[50.65477774921666,16.186057712445756],[46.93055208086631,16.186057712445756],[46.93055208086631,19.910283380796105]]],[[[50.65477774921666,19.910283380796105],[54.37900341756701,19.910283380796105],[54.37900341756701,16.186057712445756],[50.65477774921666,16.186057712445756],[50.65477774921666,19.910283380796105]]],[[[73.00013175931876,19.910283380796105],[76.72435742766912,19.910283380796105],[76.72435742766912,16.186057712445756],[73.00013175931876,16.186057712445756],[73.00013175931876,19.910283380796105]]],[[[76.72435742766912,19.910283380796105],[80.44858309601946,19.910283380796105],[80.44858309601946,16.186057712445756],[76.72435742766912,16.186057712445756],[76.72435742766912,19.910283380796105]]],[[[95.34548576942086,19.910283380796105],[99.06971143777122,19.910283380796105],[99.06971143777122,16.186057712445756],[95.34548576942086,16.186057712445756],[95.34548576942086,19.910283380796105]]],[[[99.06971143777122,19.910283380796105],[102.79393710612158,19.910283380796105],[102.79393710612158,16.186057712445756],[99.06971143777122,16.186057712445756],[99.06971143777122,19.910283380796105]]],[[[102.79393710612158,19.910283380796105],[106.51816277447192,19.910283380796105],[106.51816277447192,16.186057712445756],[102.79393710612158,16.186057712445756],[102.79393710612158,19.910283380796105]]],[[[-100.78858482316367,19.910283380796105],[-97.06435915481335,19.910283380796105],[-97.06435915481335,16.186057712445756],[-100.78858482316367,16.186057712445756],[-100.78858482316367,19.910283380796105]]],[[[-15.131394451105644,19.910283380796105],[-11.40716878275527,19.910283380796105],[-11.40716878275527,16.186057712445756],[-15.131394451105644,16.186057712445756],[-15.131394451105644,19.910283380796105]]],[[[-11.40716878275527,19.910283380796105],[-7.682943114404897,19.910283380796105],[-7.682943114404897,16.186057712445756],[-11.40716878275527,16.186057712445756],[-11.40716878275527,19.910283380796105]]],[[[-7.682943114404897,19.910283380796105],[-3.9587174460545747,19.910283380796105],[-3.9587174460545747,16.186057712445756],[-7.682943114404897,16.186057712445756],[-7.682943114404897,19.910283380796105]]],[[[-3.9587174460545747,19.910283380796105],[-0.23449177770420107,19.910283380796105],[-0.23449177770420107,16.186057712445756],[-3.9587174460545747,16.186057712445756],[-3.9587174460545747,19.910283380796105]]],[[[2.2398440606620906,16.186057712445756],[5.964069729012438,16.186057712445756],[5.964069729012438,12.461832044095406],[2.2398440606620906,12.461832044095406],[2.2398440606620906,16.186057712445756]]],[[[5.964069729012438,16.186057712445756],[9.688295397362786,16.186057712445756],[9.688295397362786,12.461832044095406],[5.964069729012438,12.461832044095406],[5.964069729012438,16.186057712445756]]],[[[9.688295397362786,16.186057712445756],[13.412521065713134,16.186057712445756],[13.412521065713134,12.461832044095406],[9.688295397362786,12.461832044095406],[9.688295397362786,16.186057712445756]]],[[[13.412521065713134,16.186057712445756],[17.136746734063507,16.186057712445756],[17.136746734063507,12.461832044095406],[13.412521065713134,12.461832044095406],[13.412521065713134,16.186057712445756]]],[[[17.136746734063507,16.186057712445756],[20.860972402413857,16.186057712445756],[20.860972402413857,12.461832044095406],[17.136746734063507,12.461832044095406],[17.136746734063507,16.186057712445756]]],[[[20.860972402413857,16.186057712445756],[24.585198070764203,16.186057712445756],[24.585198070764203,12.461832044095406],[20.860972402413857,12.461832044095406],[20.860972402413857,16.186057712445756]]],[[[24.585198070764203,16.186057712445756],[28.30942373911455,16.186057712445756],[28.30942373911455,12.461832044095406],[24.585198070764203,12.461832044095406],[24.585198070764203,16.186057712445756]]],[[[28.30942373911455,16.186057712445756],[32.0336494074649,16.186057712445756],[32.0336494074649,12.461832044095406],[28.30942373911455,12.461832044095406],[28.30942373911455,16.186057712445756]]],[[[32.0336494074649,16.186057712445756],[35.75787507581525,16.186057712445756],[35.75787507581525,12.461832044095406],[32.0336494074649,12.461832044095406],[32.0336494074649,16.186057712445756]]],[[[35.75787507581525,16.186057712445756],[39.48210074416559,16.186057712445756],[39.48210074416559,12.461832044095406],[35.75787507581525,12.461832044095406],[35.75787507581525,16.186057712445756]]],[[[43.20632641251594,16.186057712445756],[46.93055208086631,16.186057712445756],[46.93055208086631,12.461832044095406],[43.20632641251594,12.461832044095406],[43.20632641251594,16.186057712445756]]],[[[76.72435742766912,16.186057712445756],[80.44858309601946,16.186057712445756],[80.44858309601946,12.461832044095406],[76.72435742766912,12.461832044095406],[76.72435742766912,16.186057712445756]]],[[[99.06971143777122,16.186057712445756],[102.79393710612158,16.186057712445756],[102.79393710612158,12.461832044095406],[99.06971143777122,12.461832044095406],[99.06971143777122,16.186057712445756]]],[[[102.79393710612158,16.186057712445756],[106.51816277447192,16.186057712445756],[106.51816277447192,12.461832044095406],[102.79393710612158,12.461832044095406],[102.79393710612158,16.186057712445756]]],[[[-15.131394451105644,16.186057712445756],[-11.40716878275527,16.186057712445756],[-11.40716878275527,12.461832044095406],[-15.131394451105644,12.461832044095406],[-15.131394451105644,16.186057712445756]]],[[[-11.40716878275527,16.186057712445756],[-7.682943114404897,16.186057712445756],[-7.682943114404897,12.461832044095406],[-11.40716878275527,12.461832044095406],[-11.40716878275527,16.186057712445756]]],[[[-7.682943114404897,16.186057712445756],[-3.9587174460545747,16.186057712445756],[-3.9587174460545747,12.461832044095406],[-7.682943114404897,12.461832044095406],[-7.682943114404897,16.186057712445756]]],[[[-3.9587174460545747,16.186057712445756],[-0.23449177770420107,16.186057712445756],[-0.23449177770420107,12.461832044095406],[-3.9587174460545747,12.461832044095406],[-3.9587174460545747,16.186057712445756]]],[[[2.2398440606620906,12.461832044095406],[5.964069729012438,12.461832044095406],[5.964069729012438,8.737606375745054],[2.2398440606620906,8.737606375745054],[2.2398440606620906,12.461832044095406]]],[[[5.964069729012438,12.461832044095406],[9.688295397362786,12.461832044095406],[9.688295397362786,8.737606375745054],[5.964069729012438,8.737606375745054],[5.964069729012438,12.461832044095406]]],[[[9.688295397362786,12.461832044095406],[13.412521065713134,12.461832044095406],[13.412521065713134,8.737606375745054],[9.688295397362786,8.737606375745054],[9.688295397362786,12.461832044095406]]],[[[13.412521065713134,12.461832044095406],[17.136746734063507,12.461832044095406],[17.136746734063507,8.737606375745054],[13.412521065713134,8.737606375745054],[13.412521065713134,12.461832044095406]]],[[[17.136746734063507,12.461832044095406],[20.860972402413857,12.461832044095406],[20.860972402413857,8.737606375745054],[17.136746734063507,8.737606375745054],[17.136746734063507,12.461832044095406]]],[[[20.860972402413857,12.461832044095406],[24.585198070764203,12.461832044095406],[24.585198070764203,8.737606375745054],[20.860972402413857,8.737606375745054],[20.860972402413857,12.461832044095406]]],[[[24.585198070764203,12.461832044095406],[28.30942373911455,12.461832044095406],[28.30942373911455,8.737606375745054],[24.585198070764203,8.737606375745054],[24.585198070764203,12.461832044095406]]],[[[28.30942373911455,12.461832044095406],[32.0336494074649,12.461832044095406],[32.0336494074649,8.737606375745054],[28.30942373911455,8.737606375745054],[28.30942373911455,12.461832044095406]]],[[[32.0336494074649,12.461832044095406],[35.75787507581525,12.461832044095406],[35.75787507581525,8.737606375745054],[32.0336494074649,8.737606375745054],[32.0336494074649,12.461832044095406]]],[[[35.75787507581525,12.461832044095406],[39.48210074416559,12.461832044095406],[39.48210074416559,8.737606375745054],[35.75787507581525,8.737606375745054],[35.75787507581525,12.461832044095406]]],[[[39.48210074416559,12.461832044095406],[43.20632641251594,12.461832044095406],[43.20632641251594,8.737606375745054],[39.48210074416559,8.737606375745054],[39.48210074416559,12.461832044095406]]],[[[-11.40716878275527,12.461832044095406],[-7.682943114404897,12.461832044095406],[-7.682943114404897,8.737606375745054],[-11.40716878275527,8.737606375745054],[-11.40716878275527,12.461832044095406]]],[[[-7.682943114404897,12.461832044095406],[-3.9587174460545747,12.461832044095406],[-3.9587174460545747,8.737606375745054],[-7.682943114404897,8.737606375745054],[-7.682943114404897,12.461832044095406]]],[[[-3.9587174460545747,12.461832044095406],[-0.23449177770420107,12.461832044095406],[-0.23449177770420107,8.737606375745054],[-3.9587174460545747,8.737606375745054],[-3.9587174460545747,12.461832044095406]]],[[[5.964069729012438,8.737606375745054],[9.688295397362786,8.737606375745054],[9.688295397362786,5.0133807073947025],[5.964069729012438,5.0133807073947025],[5.964069729012438,8.737606375745054]]],[[[9.688295397362786,8.737606375745054],[13.412521065713134,8.737606375745054],[13.412521065713134,5.0133807073947025],[9.688295397362786,5.0133807073947025],[9.688295397362786,8.737606375745054]]],[[[13.412521065713134,8.737606375745054],[17.136746734063507,8.737606375745054],[17.136746734063507,5.0133807073947025],[13.412521065713134,5.0133807073947025],[13.412521065713134,8.737606375745054]]],[[[17.136746734063507,8.737606375745054],[20.860972402413857,8.737606375745054],[20.860972402413857,5.0133807073947025],[17.136746734063507,5.0133807073947025],[17.136746734063507,8.737606375745054]]],[[[20.860972402413857,8.737606375745054],[24.585198070764203,8.737606375745054],[24.585198070764203,5.0133807073947025],[20.860972402413857,5.0133807073947025],[20.860972402413857,8.737606375745054]]],[[[24.585198070764203,8.737606375745054],[28.30942373911455,8.737606375745054],[28.30942373911455,5.0133807073947025],[24.585198070764203,5.0133807073947025],[24.585198070764203,8.737606375745054]]],[[[28.30942373911455,8.737606375745054],[32.0336494074649,8.737606375745054],[32.0336494074649,5.0133807073947025],[28.30942373911455,5.0133807073947025],[28.30942373911455,8.737606375745054]]],[[[32.0336494074649,8.737606375745054],[35.75787507581525,8.737606375745054],[35.75787507581525,5.0133807073947025],[32.0336494074649,5.0133807073947025],[32.0336494074649,8.737606375745054]]],[[[35.75787507581525,8.737606375745054],[39.48210074416559,8.737606375745054],[39.48210074416559,5.0133807073947025],[35.75787507581525,5.0133807073947025],[35.75787507581525,8.737606375745054]]],[[[39.48210074416559,8.737606375745054],[43.20632641251594,8.737606375745054],[43.20632641251594,5.0133807073947025],[39.48210074416559,5.0133807073947025],[39.48210074416559,8.737606375745054]]],[[[43.20632641251594,8.737606375745054],[46.93055208086631,8.737606375745054],[46.93055208086631,5.0133807073947025],[43.20632641251594,5.0133807073947025],[43.20632641251594,8.737606375745054]]],[[[-74.7190051447112,8.737606375745054],[-70.99477947636089,8.737606375745054],[-70.99477947636089,5.0133807073947025],[-74.7190051447112,5.0133807073947025],[-74.7190051447112,8.737606375745054]]],[[[-70.99477947636089,8.737606375745054],[-67.27055380801052,8.737606375745054],[-67.27055380801052,5.0133807073947025],[-70.99477947636089,5.0133807073947025],[-70.99477947636089,8.737606375745054]]],[[[-67.27055380801052,8.737606375745054],[-63.54632813966014,8.737606375745054],[-63.54632813966014,5.0133807073947025],[-67.27055380801052,5.0133807073947025],[-67.27055380801052,8.737606375745054]]],[[[-63.54632813966014,8.737606375745054],[-59.82210247130982,8.737606375745054],[-59.82210247130982,5.0133807073947025],[-63.54632813966014,5.0133807073947025],[-63.54632813966014,8.737606375745054]]],[[[-7.682943114404897,8.737606375745054],[-3.9587174460545747,8.737606375745054],[-3.9587174460545747,5.0133807073947025],[-7.682943114404897,5.0133807073947025],[-7.682943114404897,8.737606375745054]]],[[[-3.9587174460545747,8.737606375745054],[-0.23449177770420107,8.737606375745054],[-0.23449177770420107,5.0133807073947025],[-3.9587174460545747,5.0133807073947025],[-3.9587174460545747,8.737606375745054]]],[[[9.688295397362786,5.0133807073947025],[13.412521065713134,5.0133807073947025],[13.412521065713134,1.2891550390443522],[9.688295397362786,1.2891550390443522],[9.688295397362786,5.0133807073947025]]],[[[13.412521065713134,5.0133807073947025],[17.136746734063507,5.0133807073947025],[17.136746734063507,1.2891550390443522],[13.412521065713134,1.2891550390443522],[13.412521065713134,5.0133807073947025]]],[[[17.136746734063507,5.0133807073947025],[20.860972402413857,5.0133807073947025],[20.860972402413857,1.2891550390443522],[17.136746734063507,1.2891550390443522],[17.136746734063507,5.0133807073947025]]],[[[20.860972402413857,5.0133807073947025],[24.585198070764203,5.0133807073947025],[24.585198070764203,1.2891550390443522],[20.860972402413857,1.2891550390443522],[20.860972402413857,5.0133807073947025]]],[[[24.585198070764203,5.0133807073947025],[28.30942373911455,5.0133807073947025],[28.30942373911455,1.2891550390443522],[24.585198070764203,1.2891550390443522],[24.585198070764203,5.0133807073947025]]],[[[28.30942373911455,5.0133807073947025],[32.0336494074649,5.0133807073947025],[32.0336494074649,1.2891550390443522],[28.30942373911455,1.2891550390443522],[28.30942373911455,5.0133807073947025]]],[[[32.0336494074649,5.0133807073947025],[35.75787507581525,5.0133807073947025],[35.75787507581525,1.2891550390443522],[32.0336494074649,1.2891550390443522],[32.0336494074649,5.0133807073947025]]],[[[35.75787507581525,5.0133807073947025],[39.48210074416559,5.0133807073947025],[39.48210074416559,1.2891550390443522],[35.75787507581525,1.2891550390443522],[35.75787507581525,5.0133807073947025]]],[[[39.48210074416559,5.0133807073947025],[43.20632641251594,5.0133807073947025],[43.20632641251594,1.2891550390443522],[39.48210074416559,1.2891550390443522],[39.48210074416559,5.0133807073947025]]],[[[113.96661411117262,5.0133807073947025],[117.69083977952297,5.0133807073947025],[117.69083977952297,1.2891550390443522],[113.96661411117262,1.2891550390443522],[113.96661411117262,5.0133807073947025]]],[[[-74.7190051447112,5.0133807073947025],[-70.99477947636089,5.0133807073947025],[-70.99477947636089,1.2891550390443522],[-74.7190051447112,1.2891550390443522],[-74.7190051447112,5.0133807073947025]]],[[[-70.99477947636089,5.0133807073947025],[-67.27055380801052,5.0133807073947025],[-67.27055380801052,1.2891550390443522],[-70.99477947636089,1.2891550390443522],[-70.99477947636089,5.0133807073947025]]],[[[-67.27055380801052,5.0133807073947025],[-63.54632813966014,5.0133807073947025],[-63.54632813966014,1.2891550390443522],[-67.27055380801052,1.2891550390443522],[-67.27055380801052,5.0133807073947025]]],[[[-63.54632813966014,5.0133807073947025],[-59.82210247130982,5.0133807073947025],[-59.82210247130982,1.2891550390443522],[-63.54632813966014,1.2891550390443522],[-63.54632813966014,5.0133807073947025]]],[[[-59.82210247130982,5.0133807073947025],[-56.0978768029595,5.0133807073947025],[-56.0978768029595,1.2891550390443522],[-59.82210247130982,1.2891550390443522],[-59.82210247130982,5.0133807073947025]]],[[[-56.0978768029595,5.0133807073947025],[-52.373651134609126,5.0133807073947025],[-52.373651134609126,1.2891550390443522],[-56.0978768029595,1.2891550390443522],[-56.0978768029595,5.0133807073947025]]],[[[9.688295397362786,1.2891550390443522],[13.412521065713134,1.2891550390443522],[13.412521065713134,-2.435070629305999],[9.688295397362786,-2.435070629305999],[9.688295397362786,1.2891550390443522]]],[[[13.412521065713134,1.2891550390443522],[17.136746734063507,1.2891550390443522],[17.136746734063507,-2.435070629305999],[13.412521065713134,-2.435070629305999],[13.412521065713134,1.2891550390443522]]],[[[17.136746734063507,1.2891550390443522],[20.860972402413857,1.2891550390443522],[20.860972402413857,-2.435070629305999],[17.136746734063507,-2.435070629305999],[17.136746734063507,1.2891550390443522]]],[[[20.860972402413857,1.2891550390443522],[24.585198070764203,1.2891550390443522],[24.585198070764203,-2.435070629305999],[20.860972402413857,-2.435070629305999],[20.860972402413857,1.2891550390443522]]],[[[24.585198070764203,1.2891550390443522],[28.30942373911455,1.2891550390443522],[28.30942373911455,-2.435070629305999],[24.585198070764203,-2.435070629305999],[24.585198070764203,1.2891550390443522]]],[[[28.30942373911455,1.2891550390443522],[32.0336494074649,1.2891550390443522],[32.0336494074649,-2.435070629305999],[28.30942373911455,-2.435070629305999],[28.30942373911455,1.2891550390443522]]],[[[32.0336494074649,1.2891550390443522],[35.75787507581525,1.2891550390443522],[35.75787507581525,-2.435070629305999],[32.0336494074649,-2.435070629305999],[32.0336494074649,1.2891550390443522]]],[[[35.75787507581525,1.2891550390443522],[39.48210074416559,1.2891550390443522],[39.48210074416559,-2.435070629305999],[35.75787507581525,-2.435070629305999],[35.75787507581525,1.2891550390443522]]],[[[110.24238844282227,1.2891550390443522],[113.96661411117262,1.2891550390443522],[113.96661411117262,-2.435070629305999],[110.24238844282227,-2.435070629305999],[110.24238844282227,1.2891550390443522]]],[[[-78.44323081306159,1.2891550390443522],[-74.7190051447112,1.2891550390443522],[-74.7190051447112,-2.435070629305999],[-78.44323081306159,-2.435070629305999],[-78.44323081306159,1.2891550390443522]]],[[[-74.7190051447112,1.2891550390443522],[-70.99477947636089,1.2891550390443522],[-70.99477947636089,-2.435070629305999],[-74.7190051447112,-2.435070629305999],[-74.7190051447112,1.2891550390443522]]],[[[-70.99477947636089,1.2891550390443522],[-67.27055380801052,1.2891550390443522],[-67.27055380801052,-2.435070629305999],[-70.99477947636089,-2.435070629305999],[-70.99477947636089,1.2891550390443522]]],[[[-67.27055380801052,1.2891550390443522],[-63.54632813966014,1.2891550390443522],[-63.54632813966014,-2.435070629305999],[-67.27055380801052,-2.435070629305999],[-67.27055380801052,1.2891550390443522]]],[[[-63.54632813966014,1.2891550390443522],[-59.82210247130982,1.2891550390443522],[-59.82210247130982,-2.435070629305999],[-63.54632813966014,-2.435070629305999],[-63.54632813966014,1.2891550390443522]]],[[[-59.82210247130982,1.2891550390443522],[-56.0978768029595,1.2891550390443522],[-56.0978768029595,-2.435070629305999],[-59.82210247130982,-2.435070629305999],[-59.82210247130982,1.2891550390443522]]],[[[-56.0978768029595,1.2891550390443522],[-52.373651134609126,1.2891550390443522],[-52.373651134609126,-2.435070629305999],[-56.0978768029595,-2.435070629305999],[-56.0978768029595,1.2891550390443522]]],[[[13.412521065713134,-2.435070629305999],[17.136746734063507,-2.435070629305999],[17.136746734063507,-6.15929629765635],[13.412521065713134,-6.15929629765635],[13.412521065713134,-2.435070629305999]]],[[[17.136746734063507,-2.435070629305999],[20.860972402413857,-2.435070629305999],[20.860972402413857,-6.15929629765635],[17.136746734063507,-6.15929629765635],[17.136746734063507,-2.435070629305999]]],[[[20.860972402413857,-2.435070629305999],[24.585198070764203,-2.435070629305999],[24.585198070764203,-6.15929629765635],[20.860972402413857,-6.15929629765635],[20.860972402413857,-2.435070629305999]]],[[[24.585198070764203,-2.435070629305999],[28.30942373911455,-2.435070629305999],[28.30942373911455,-6.15929629765635],[24.585198070764203,-6.15929629765635],[24.585198070764203,-2.435070629305999]]],[[[28.30942373911455,-2.435070629305999],[32.0336494074649,-2.435070629305999],[32.0336494074649,-6.15929629765635],[28.30942373911455,-6.15929629765635],[28.30942373911455,-2.435070629305999]]],[[[32.0336494074649,-2.435070629305999],[35.75787507581525,-2.435070629305999],[35.75787507581525,-6.15929629765635],[32.0336494074649,-6.15929629765635],[32.0336494074649,-2.435070629305999]]],[[[35.75787507581525,-2.435070629305999],[39.48210074416559,-2.435070629305999],[39.48210074416559,-6.15929629765635],[35.75787507581525,-6.15929629765635],[35.75787507581525,-2.435070629305999]]],[[[140.0361937896251,-2.435070629305999],[143.76041945797544,-2.435070629305999],[143.76041945797544,-6.15929629765635],[140.0361937896251,-6.15929629765635],[140.0361937896251,-2.435070629305999]]],[[[-78.44323081306159,-2.435070629305999],[-74.7190051447112,-2.435070629305999],[-74.7190051447112,-6.15929629765635],[-78.44323081306159,-6.15929629765635],[-78.44323081306159,-2.435070629305999]]],[[[-74.7190051447112,-2.435070629305999],[-70.99477947636089,-2.435070629305999],[-70.99477947636089,-6.15929629765635],[-74.7190051447112,-6.15929629765635],[-74.7190051447112,-2.435070629305999]]],[[[-70.99477947636089,-2.435070629305999],[-67.27055380801052,-2.435070629305999],[-67.27055380801052,-6.15929629765635],[-70.99477947636089,-6.15929629765635],[-70.99477947636089,-2.435070629305999]]],[[[-67.27055380801052,-2.435070629305999],[-63.54632813966014,-2.435070629305999],[-63.54632813966014,-6.15929629765635],[-67.27055380801052,-6.15929629765635],[-67.27055380801052,-2.435070629305999]]],[[[-63.54632813966014,-2.435070629305999],[-59.82210247130982,-2.435070629305999],[-59.82210247130982,-6.15929629765635],[-63.54632813966014,-6.15929629765635],[-63.54632813966014,-2.435070629305999]]],[[[-59.82210247130982,-2.435070629305999],[-56.0978768029595,-2.435070629305999],[-56.0978768029595,-6.15929629765635],[-59.82210247130982,-6.15929629765635],[-59.82210247130982,-2.435070629305999]]],[[[-56.0978768029595,-2.435070629305999],[-52.373651134609126,-2.435070629305999],[-52.373651134609126,-6.15929629765635],[-56.0978768029595,-6.15929629765635],[-56.0978768029595,-2.435070629305999]]],[[[-52.373651134609126,-2.435070629305999],[-48.64942546625875,-2.435070629305999],[-48.64942546625875,-6.15929629765635],[-52.373651134609126,-6.15929629765635],[-52.373651134609126,-2.435070629305999]]],[[[-48.64942546625875,-2.435070629305999],[-44.92519979790843,-2.435070629305999],[-44.92519979790843,-6.15929629765635],[-48.64942546625875,-6.15929629765635],[-48.64942546625875,-2.435070629305999]]],[[[-44.92519979790843,-2.435070629305999],[-41.200974129558105,-2.435070629305999],[-41.200974129558105,-6.15929629765635],[-44.92519979790843,-6.15929629765635],[-44.92519979790843,-2.435070629305999]]],[[[13.412521065713134,-6.15929629765635],[17.136746734063507,-6.15929629765635],[17.136746734063507,-9.8835219660067],[13.412521065713134,-9.8835219660067],[13.412521065713134,-6.15929629765635]]],[[[17.136746734063507,-6.15929629765635],[20.860972402413857,-6.15929629765635],[20.860972402413857,-9.8835219660067],[17.136746734063507,-9.8835219660067],[17.136746734063507,-6.15929629765635]]],[[[20.860972402413857,-6.15929629765635],[24.585198070764203,-6.15929629765635],[24.585198070764203,-9.8835219660067],[20.860972402413857,-9.8835219660067],[20.860972402413857,-6.15929629765635]]],[[[24.585198070764203,-6.15929629765635],[28.30942373911455,-6.15929629765635],[28.30942373911455,-9.8835219660067],[24.585198070764203,-9.8835219660067],[24.585198070764203,-6.15929629765635]]],[[[28.30942373911455,-6.15929629765635],[32.0336494074649,-6.15929629765635],[32.0336494074649,-9.8835219660067],[28.30942373911455,-9.8835219660067],[28.30942373911455,-6.15929629765635]]],[[[32.0336494074649,-6.15929629765635],[35.75787507581525,-6.15929629765635],[35.75787507581525,-9.8835219660067],[32.0336494074649,-9.8835219660067],[32.0336494074649,-6.15929629765635]]],[[[35.75787507581525,-6.15929629765635],[39.48210074416559,-6.15929629765635],[39.48210074416559,-9.8835219660067],[35.75787507581525,-9.8835219660067],[35.75787507581525,-6.15929629765635]]],[[[-78.44323081306159,-6.15929629765635],[-74.7190051447112,-6.15929629765635],[-74.7190051447112,-9.8835219660067],[-78.44323081306159,-9.8835219660067],[-78.44323081306159,-6.15929629765635]]],[[[-74.7190051447112,-6.15929629765635],[-70.99477947636089,-6.15929629765635],[-70.99477947636089,-9.8835219660067],[-74.7190051447112,-9.8835219660067],[-74.7190051447112,-6.15929629765635]]],[[[-70.99477947636089,-6.15929629765635],[-67.27055380801052,-6.15929629765635],[-67.27055380801052,-9.8835219660067],[-70.99477947636089,-9.8835219660067],[-70.99477947636089,-6.15929629765635]]],[[[-67.27055380801052,-6.15929629765635],[-63.54632813966014,-6.15929629765635],[-63.54632813966014,-9.8835219660067],[-67.27055380801052,-9.8835219660067],[-67.27055380801052,-6.15929629765635]]],[[[-63.54632813966014,-6.15929629765635],[-59.82210247130982,-6.15929629765635],[-59.82210247130982,-9.8835219660067],[-63.54632813966014,-9.8835219660067],[-63.54632813966014,-6.15929629765635]]],[[[-59.82210247130982,-6.15929629765635],[-56.0978768029595,-6.15929629765635],[-56.0978768029595,-9.8835219660067],[-59.82210247130982,-9.8835219660067],[-59.82210247130982,-6.15929629765635]]],[[[-56.0978768029595,-6.15929629765635],[-52.373651134609126,-6.15929629765635],[-52.373651134609126,-9.8835219660067],[-56.0978768029595,-9.8835219660067],[-56.0978768029595,-6.15929629765635]]],[[[-52.373651134609126,-6.15929629765635],[-48.64942546625875,-6.15929629765635],[-48.64942546625875,-9.8835219660067],[-52.373651134609126,-9.8835219660067],[-52.373651134609126,-6.15929629765635]]],[[[-48.64942546625875,-6.15929629765635],[-44.92519979790843,-6.15929629765635],[-44.92519979790843,-9.8835219660067],[-48.64942546625875,-9.8835219660067],[-48.64942546625875,-6.15929629765635]]],[[[-44.92519979790843,-6.15929629765635],[-41.200974129558105,-6.15929629765635],[-41.200974129558105,-9.8835219660067],[-44.92519979790843,-9.8835219660067],[-44.92519979790843,-6.15929629765635]]],[[[-41.200974129558105,-6.15929629765635],[-37.476748461207734,-6.15929629765635],[-37.476748461207734,-9.8835219660067],[-41.200974129558105,-9.8835219660067],[-41.200974129558105,-6.15929629765635]]],[[[13.412521065713134,-9.8835219660067],[17.136746734063507,-9.8835219660067],[17.136746734063507,-13.60774763435705],[13.412521065713134,-13.60774763435705],[13.412521065713134,-9.8835219660067]]],[[[17.136746734063507,-9.8835219660067],[20.860972402413857,-9.8835219660067],[20.860972402413857,-13.60774763435705],[17.136746734063507,-13.60774763435705],[17.136746734063507,-9.8835219660067]]],[[[20.860972402413857,-9.8835219660067],[24.585198070764203,-9.8835219660067],[24.585198070764203,-13.60774763435705],[20.860972402413857,-13.60774763435705],[20.860972402413857,-9.8835219660067]]],[[[24.585198070764203,-9.8835219660067],[28.30942373911455,-9.8835219660067],[28.30942373911455,-13.60774763435705],[24.585198070764203,-13.60774763435705],[24.585198070764203,-9.8835219660067]]],[[[28.30942373911455,-9.8835219660067],[32.0336494074649,-9.8835219660067],[32.0336494074649,-13.60774763435705],[28.30942373911455,-13.60774763435705],[28.30942373911455,-9.8835219660067]]],[[[32.0336494074649,-9.8835219660067],[35.75787507581525,-9.8835219660067],[35.75787507581525,-13.60774763435705],[32.0336494074649,-13.60774763435705],[32.0336494074649,-9.8835219660067]]],[[[35.75787507581525,-9.8835219660067],[39.48210074416559,-9.8835219660067],[39.48210074416559,-13.60774763435705],[35.75787507581525,-13.60774763435705],[35.75787507581525,-9.8835219660067]]],[[[-74.7190051447112,-9.8835219660067],[-70.99477947636089,-9.8835219660067],[-70.99477947636089,-13.60774763435705],[-74.7190051447112,-13.60774763435705],[-74.7190051447112,-9.8835219660067]]],[[[-70.99477947636089,-9.8835219660067],[-67.27055380801052,-9.8835219660067],[-67.27055380801052,-13.60774763435705],[-70.99477947636089,-13.60774763435705],[-70.99477947636089,-9.8835219660067]]],[[[-67.27055380801052,-9.8835219660067],[-63.54632813966014,-9.8835219660067],[-63.54632813966014,-13.60774763435705],[-67.27055380801052,-13.60774763435705],[-67.27055380801052,-9.8835219660067]]],[[[-63.54632813966014,-9.8835219660067],[-59.82210247130982,-9.8835219660067],[-59.82210247130982,-13.60774763435705],[-63.54632813966014,-13.60774763435705],[-63.54632813966014,-9.8835219660067]]],[[[-59.82210247130982,-9.8835219660067],[-56.0978768029595,-9.8835219660067],[-56.0978768029595,-13.60774763435705],[-59.82210247130982,-13.60774763435705],[-59.82210247130982,-9.8835219660067]]],[[[-56.0978768029595,-9.8835219660067],[-52.373651134609126,-9.8835219660067],[-52.373651134609126,-13.60774763435705],[-56.0978768029595,-13.60774763435705],[-56.0978768029595,-9.8835219660067]]],[[[-52.373651134609126,-9.8835219660067],[-48.64942546625875,-9.8835219660067],[-48.64942546625875,-13.60774763435705],[-52.373651134609126,-13.60774763435705],[-52.373651134609126,-9.8835219660067]]],[[[-48.64942546625875,-9.8835219660067],[-44.92519979790843,-9.8835219660067],[-44.92519979790843,-13.60774763435705],[-48.64942546625875,-13.60774763435705],[-48.64942546625875,-9.8835219660067]]],[[[-44.92519979790843,-9.8835219660067],[-41.200974129558105,-9.8835219660067],[-41.200974129558105,-13.60774763435705],[-44.92519979790843,-13.60774763435705],[-44.92519979790843,-9.8835219660067]]],[[[-41.200974129558105,-9.8835219660067],[-37.476748461207734,-9.8835219660067],[-37.476748461207734,-13.60774763435705],[-41.200974129558105,-13.60774763435705],[-41.200974129558105,-9.8835219660067]]],[[[13.412521065713134,-13.60774763435705],[17.136746734063507,-13.60774763435705],[17.136746734063507,-17.331973302707404],[13.412521065713134,-17.331973302707404],[13.412521065713134,-13.60774763435705]]],[[[17.136746734063507,-13.60774763435705],[20.860972402413857,-13.60774763435705],[20.860972402413857,-17.331973302707404],[17.136746734063507,-17.331973302707404],[17.136746734063507,-13.60774763435705]]],[[[20.860972402413857,-13.60774763435705],[24.585198070764203,-13.60774763435705],[24.585198070764203,-17.331973302707404],[20.860972402413857,-17.331973302707404],[20.860972402413857,-13.60774763435705]]],[[[24.585198070764203,-13.60774763435705],[28.30942373911455,-13.60774763435705],[28.30942373911455,-17.331973302707404],[24.585198070764203,-17.331973302707404],[24.585198070764203,-13.60774763435705]]],[[[28.30942373911455,-13.60774763435705],[32.0336494074649,-13.60774763435705],[32.0336494074649,-17.331973302707404],[28.30942373911455,-17.331973302707404],[28.30942373911455,-13.60774763435705]]],[[[32.0336494074649,-13.60774763435705],[35.75787507581525,-13.60774763435705],[35.75787507581525,-17.331973302707404],[32.0336494074649,-17.331973302707404],[32.0336494074649,-13.60774763435705]]],[[[35.75787507581525,-13.60774763435705],[39.48210074416559,-13.60774763435705],[39.48210074416559,-17.331973302707404],[35.75787507581525,-17.331973302707404],[35.75787507581525,-13.60774763435705]]],[[[128.86351678457402,-13.60774763435705],[132.58774245292437,-13.60774763435705],[132.58774245292437,-17.331973302707404],[128.86351678457402,-17.331973302707404],[128.86351678457402,-13.60774763435705]]],[[[132.58774245292437,-13.60774763435705],[136.31196812127473,-13.60774763435705],[136.31196812127473,-17.331973302707404],[132.58774245292437,-17.331973302707404],[132.58774245292437,-13.60774763435705]]],[[[-70.99477947636089,-13.60774763435705],[-67.27055380801052,-13.60774763435705],[-67.27055380801052,-17.331973302707404],[-70.99477947636089,-17.331973302707404],[-70.99477947636089,-13.60774763435705]]],[[[-67.27055380801052,-13.60774763435705],[-63.54632813966014,-13.60774763435705],[-63.54632813966014,-17.331973302707404],[-67.27055380801052,-17.331973302707404],[-67.27055380801052,-13.60774763435705]]],[[[-63.54632813966014,-13.60774763435705],[-59.82210247130982,-13.60774763435705],[-59.82210247130982,-17.331973302707404],[-63.54632813966014,-17.331973302707404],[-63.54632813966014,-13.60774763435705]]],[[[-59.82210247130982,-13.60774763435705],[-56.0978768029595,-13.60774763435705],[-56.0978768029595,-17.331973302707404],[-59.82210247130982,-17.331973302707404],[-59.82210247130982,-13.60774763435705]]],[[[-56.0978768029595,-13.60774763435705],[-52.373651134609126,-13.60774763435705],[-52.373651134609126,-17.331973302707404],[-56.0978768029595,-17.331973302707404],[-56.0978768029595,-13.60774763435705]]],[[[-52.373651134609126,-13.60774763435705],[-48.64942546625875,-13.60774763435705],[-48.64942546625875,-17.331973302707404],[-52.373651134609126,-17.331973302707404],[-52.373651134609126,-13.60774763435705]]],[[[-48.64942546625875,-13.60774763435705],[-44.92519979790843,-13.60774763435705],[-44.92519979790843,-17.331973302707404],[-48.64942546625875,-17.331973302707404],[-48.64942546625875,-13.60774763435705]]],[[[-44.92519979790843,-13.60774763435705],[-41.200974129558105,-13.60774763435705],[-41.200974129558105,-17.331973302707404],[-44.92519979790843,-17.331973302707404],[-44.92519979790843,-13.60774763435705]]],[[[13.412521065713134,-17.331973302707404],[17.136746734063507,-17.331973302707404],[17.136746734063507,-21.056198971057754],[13.412521065713134,-21.056198971057754],[13.412521065713134,-17.331973302707404]]],[[[17.136746734063507,-17.331973302707404],[20.860972402413857,-17.331973302707404],[20.860972402413857,-21.056198971057754],[17.136746734063507,-21.056198971057754],[17.136746734063507,-17.331973302707404]]],[[[20.860972402413857,-17.331973302707404],[24.585198070764203,-17.331973302707404],[24.585198070764203,-21.056198971057754],[20.860972402413857,-21.056198971057754],[20.860972402413857,-17.331973302707404]]],[[[24.585198070764203,-17.331973302707404],[28.30942373911455,-17.331973302707404],[28.30942373911455,-21.056198971057754],[24.585198070764203,-21.056198971057754],[24.585198070764203,-17.331973302707404]]],[[[28.30942373911455,-17.331973302707404],[32.0336494074649,-17.331973302707404],[32.0336494074649,-21.056198971057754],[28.30942373911455,-21.056198971057754],[28.30942373911455,-17.331973302707404]]],[[[32.0336494074649,-17.331973302707404],[35.75787507581525,-17.331973302707404],[35.75787507581525,-21.056198971057754],[32.0336494074649,-21.056198971057754],[32.0336494074649,-17.331973302707404]]],[[[121.41506544787333,-17.331973302707404],[125.13929111622367,-17.331973302707404],[125.13929111622367,-21.056198971057754],[121.41506544787333,-21.056198971057754],[121.41506544787333,-17.331973302707404]]],[[[125.13929111622367,-17.331973302707404],[128.86351678457402,-17.331973302707404],[128.86351678457402,-21.056198971057754],[125.13929111622367,-21.056198971057754],[125.13929111622367,-17.331973302707404]]],[[[128.86351678457402,-17.331973302707404],[132.58774245292437,-17.331973302707404],[132.58774245292437,-21.056198971057754],[128.86351678457402,-21.056198971057754],[128.86351678457402,-17.331973302707404]]],[[[132.58774245292437,-17.331973302707404],[136.31196812127473,-17.331973302707404],[136.31196812127473,-21.056198971057754],[132.58774245292437,-21.056198971057754],[132.58774245292437,-17.331973302707404]]],[[[136.31196812127473,-17.331973302707404],[140.0361937896251,-17.331973302707404],[140.0361937896251,-21.056198971057754],[136.31196812127473,-21.056198971057754],[136.31196812127473,-17.331973302707404]]],[[[140.0361937896251,-17.331973302707404],[143.76041945797544,-17.331973302707404],[143.76041945797544,-21.056198971057754],[140.0361937896251,-21.056198971057754],[140.0361937896251,-17.331973302707404]]],[[[-67.27055380801052,-17.331973302707404],[-63.54632813966014,-17.331973302707404],[-63.54632813966014,-21.056198971057754],[-67.27055380801052,-21.056198971057754],[-67.27055380801052,-17.331973302707404]]],[[[-63.54632813966014,-17.331973302707404],[-59.82210247130982,-17.331973302707404],[-59.82210247130982,-21.056198971057754],[-63.54632813966014,-21.056198971057754],[-63.54632813966014,-17.331973302707404]]],[[[-59.82210247130982,-17.331973302707404],[-56.0978768029595,-17.331973302707404],[-56.0978768029595,-21.056198971057754],[-59.82210247130982,-21.056198971057754],[-59.82210247130982,-17.331973302707404]]],[[[-56.0978768029595,-17.331973302707404],[-52.373651134609126,-17.331973302707404],[-52.373651134609126,-21.056198971057754],[-56.0978768029595,-21.056198971057754],[-56.0978768029595,-17.331973302707404]]],[[[-52.373651134609126,-17.331973302707404],[-48.64942546625875,-17.331973302707404],[-48.64942546625875,-21.056198971057754],[-52.373651134609126,-21.056198971057754],[-52.373651134609126,-17.331973302707404]]],[[[-48.64942546625875,-17.331973302707404],[-44.92519979790843,-17.331973302707404],[-44.92519979790843,-21.056198971057754],[-48.64942546625875,-21.056198971057754],[-48.64942546625875,-17.331973302707404]]],[[[-44.92519979790843,-17.331973302707404],[-41.200974129558105,-17.331973302707404],[-41.200974129558105,-21.056198971057754],[-44.92519979790843,-21.056198971057754],[-44.92519979790843,-17.331973302707404]]],[[[17.136746734063507,-21.056198971057754],[20.860972402413857,-21.056198971057754],[20.860972402413857,-24.780424639408103],[17.136746734063507,-24.780424639408103],[17.136746734063507,-21.056198971057754]]],[[[20.860972402413857,-21.056198971057754],[24.585198070764203,-21.056198971057754],[24.585198070764203,-24.780424639408103],[20.860972402413857,-24.780424639408103],[20.860972402413857,-21.056198971057754]]],[[[24.585198070764203,-21.056198971057754],[28.30942373911455,-21.056198971057754],[28.30942373911455,-24.780424639408103],[24.585198070764203,-24.780424639408103],[24.585198070764203,-21.056198971057754]]],[[[28.30942373911455,-21.056198971057754],[32.0336494074649,-21.056198971057754],[32.0336494074649,-24.780424639408103],[28.30942373911455,-24.780424639408103],[28.30942373911455,-21.056198971057754]]],[[[32.0336494074649,-21.056198971057754],[35.75787507581525,-21.056198971057754],[35.75787507581525,-24.780424639408103],[32.0336494074649,-24.780424639408103],[32.0336494074649,-21.056198971057754]]],[[[43.20632641251594,-21.056198971057754],[46.93055208086631,-21.056198971057754],[46.93055208086631,-24.780424639408103],[43.20632641251594,-24.780424639408103],[43.20632641251594,-21.056198971057754]]],[[[113.96661411117262,-21.056198971057754],[117.69083977952297,-21.056198971057754],[117.69083977952297,-24.780424639408103],[113.96661411117262,-24.780424639408103],[113.96661411117262,-21.056198971057754]]],[[[117.69083977952297,-21.056198971057754],[121.41506544787333,-21.056198971057754],[121.41506544787333,-24.780424639408103],[117.69083977952297,-24.780424639408103],[117.69083977952297,-21.056198971057754]]],[[[121.41506544787333,-21.056198971057754],[125.13929111622367,-21.056198971057754],[125.13929111622367,-24.780424639408103],[121.41506544787333,-24.780424639408103],[121.41506544787333,-21.056198971057754]]],[[[125.13929111622367,-21.056198971057754],[128.86351678457402,-21.056198971057754],[128.86351678457402,-24.780424639408103],[125.13929111622367,-24.780424639408103],[125.13929111622367,-21.056198971057754]]],[[[128.86351678457402,-21.056198971057754],[132.58774245292437,-21.056198971057754],[132.58774245292437,-24.780424639408103],[128.86351678457402,-24.780424639408103],[128.86351678457402,-21.056198971057754]]],[[[132.58774245292437,-21.056198971057754],[136.31196812127473,-21.056198971057754],[136.31196812127473,-24.780424639408103],[132.58774245292437,-24.780424639408103],[132.58774245292437,-21.056198971057754]]],[[[136.31196812127473,-21.056198971057754],[140.0361937896251,-21.056198971057754],[140.0361937896251,-24.780424639408103],[136.31196812127473,-24.780424639408103],[136.31196812127473,-21.056198971057754]]],[[[140.0361937896251,-21.056198971057754],[143.76041945797544,-21.056198971057754],[143.76041945797544,-24.780424639408103],[140.0361937896251,-24.780424639408103],[140.0361937896251,-21.056198971057754]]],[[[143.76041945797544,-21.056198971057754],[147.48464512632577,-21.056198971057754],[147.48464512632577,-24.780424639408103],[143.76041945797544,-24.780424639408103],[143.76041945797544,-21.056198971057754]]],[[[-67.27055380801052,-21.056198971057754],[-63.54632813966014,-21.056198971057754],[-63.54632813966014,-24.780424639408103],[-67.27055380801052,-24.780424639408103],[-67.27055380801052,-21.056198971057754]]],[[[-63.54632813966014,-21.056198971057754],[-59.82210247130982,-21.056198971057754],[-59.82210247130982,-24.780424639408103],[-63.54632813966014,-24.780424639408103],[-63.54632813966014,-21.056198971057754]]],[[[-59.82210247130982,-21.056198971057754],[-56.0978768029595,-21.056198971057754],[-56.0978768029595,-24.780424639408103],[-59.82210247130982,-24.780424639408103],[-59.82210247130982,-21.056198971057754]]],[[[-56.0978768029595,-21.056198971057754],[-52.373651134609126,-21.056198971057754],[-52.373651134609126,-24.780424639408103],[-56.0978768029595,-24.780424639408103],[-56.0978768029595,-21.056198971057754]]],[[[-52.373651134609126,-21.056198971057754],[-48.64942546625875,-21.056198971057754],[-48.64942546625875,-24.780424639408103],[-52.373651134609126,-24.780424639408103],[-52.373651134609126,-21.056198971057754]]],[[[17.136746734063507,-24.780424639408103],[20.860972402413857,-24.780424639408103],[20.860972402413857,-28.504650307758457],[17.136746734063507,-28.504650307758457],[17.136746734063507,-24.780424639408103]]],[[[20.860972402413857,-24.780424639408103],[24.585198070764203,-24.780424639408103],[24.585198070764203,-28.504650307758457],[20.860972402413857,-28.504650307758457],[20.860972402413857,-24.780424639408103]]],[[[24.585198070764203,-24.780424639408103],[28.30942373911455,-24.780424639408103],[28.30942373911455,-28.504650307758457],[24.585198070764203,-28.504650307758457],[24.585198070764203,-24.780424639408103]]],[[[28.30942373911455,-24.780424639408103],[32.0336494074649,-24.780424639408103],[32.0336494074649,-28.504650307758457],[28.30942373911455,-28.504650307758457],[28.30942373911455,-24.780424639408103]]],[[[113.96661411117262,-24.780424639408103],[117.69083977952297,-24.780424639408103],[117.69083977952297,-28.504650307758457],[113.96661411117262,-28.504650307758457],[113.96661411117262,-24.780424639408103]]],[[[117.69083977952297,-24.780424639408103],[121.41506544787333,-24.780424639408103],[121.41506544787333,-28.504650307758457],[117.69083977952297,-28.504650307758457],[117.69083977952297,-24.780424639408103]]],[[[121.41506544787333,-24.780424639408103],[125.13929111622367,-24.780424639408103],[125.13929111622367,-28.504650307758457],[121.41506544787333,-28.504650307758457],[121.41506544787333,-24.780424639408103]]],[[[125.13929111622367,-24.780424639408103],[128.86351678457402,-24.780424639408103],[128.86351678457402,-28.504650307758457],[125.13929111622367,-28.504650307758457],[125.13929111622367,-24.780424639408103]]],[[[128.86351678457402,-24.780424639408103],[132.58774245292437,-24.780424639408103],[132.58774245292437,-28.504650307758457],[128.86351678457402,-28.504650307758457],[128.86351678457402,-24.780424639408103]]],[[[132.58774245292437,-24.780424639408103],[136.31196812127473,-24.780424639408103],[136.31196812127473,-28.504650307758457],[132.58774245292437,-28.504650307758457],[132.58774245292437,-24.780424639408103]]],[[[136.31196812127473,-24.780424639408103],[140.0361937896251,-24.780424639408103],[140.0361937896251,-28.504650307758457],[136.31196812127473,-28.504650307758457],[136.31196812127473,-24.780424639408103]]],[[[140.0361937896251,-24.780424639408103],[143.76041945797544,-24.780424639408103],[143.76041945797544,-28.504650307758457],[140.0361937896251,-28.504650307758457],[140.0361937896251,-24.780424639408103]]],[[[143.76041945797544,-24.780424639408103],[147.48464512632577,-24.780424639408103],[147.48464512632577,-28.504650307758457],[143.76041945797544,-28.504650307758457],[143.76041945797544,-24.780424639408103]]],[[[147.48464512632577,-24.780424639408103],[151.20887079467613,-24.780424639408103],[151.20887079467613,-28.504650307758457],[147.48464512632577,-28.504650307758457],[147.48464512632577,-24.780424639408103]]],[[[-70.99477947636089,-24.780424639408103],[-67.27055380801052,-24.780424639408103],[-67.27055380801052,-28.504650307758457],[-70.99477947636089,-28.504650307758457],[-70.99477947636089,-24.780424639408103]]],[[[-67.27055380801052,-24.780424639408103],[-63.54632813966014,-24.780424639408103],[-63.54632813966014,-28.504650307758457],[-67.27055380801052,-28.504650307758457],[-67.27055380801052,-24.780424639408103]]],[[[-63.54632813966014,-24.780424639408103],[-59.82210247130982,-24.780424639408103],[-59.82210247130982,-28.504650307758457],[-63.54632813966014,-28.504650307758457],[-63.54632813966014,-24.780424639408103]]],[[[-59.82210247130982,-24.780424639408103],[-56.0978768029595,-24.780424639408103],[-56.0978768029595,-28.504650307758457],[-59.82210247130982,-28.504650307758457],[-59.82210247130982,-24.780424639408103]]],[[[-56.0978768029595,-24.780424639408103],[-52.373651134609126,-24.780424639408103],[-52.373651134609126,-28.504650307758457],[-56.0978768029595,-28.504650307758457],[-56.0978768029595,-24.780424639408103]]],[[[-52.373651134609126,-24.780424639408103],[-48.64942546625875,-24.780424639408103],[-48.64942546625875,-28.504650307758457],[-52.373651134609126,-28.504650307758457],[-52.373651134609126,-24.780424639408103]]],[[[17.136746734063507,-28.504650307758457],[20.860972402413857,-28.504650307758457],[20.860972402413857,-32.22887597610881],[17.136746734063507,-32.22887597610881],[17.136746734063507,-28.504650307758457]]],[[[20.860972402413857,-28.504650307758457],[24.585198070764203,-28.504650307758457],[24.585198070764203,-32.22887597610881],[20.860972402413857,-32.22887597610881],[20.860972402413857,-28.504650307758457]]],[[[24.585198070764203,-28.504650307758457],[28.30942373911455,-28.504650307758457],[28.30942373911455,-32.22887597610881],[24.585198070764203,-32.22887597610881],[24.585198070764203,-28.504650307758457]]],[[[117.69083977952297,-28.504650307758457],[121.41506544787333,-28.504650307758457],[121.41506544787333,-32.22887597610881],[117.69083977952297,-32.22887597610881],[117.69083977952297,-28.504650307758457]]],[[[121.41506544787333,-28.504650307758457],[125.13929111622367,-28.504650307758457],[125.13929111622367,-32.22887597610881],[121.41506544787333,-32.22887597610881],[121.41506544787333,-28.504650307758457]]],[[[125.13929111622367,-28.504650307758457],[128.86351678457402,-28.504650307758457],[128.86351678457402,-32.22887597610881],[125.13929111622367,-32.22887597610881],[125.13929111622367,-28.504650307758457]]],[[[132.58774245292437,-28.504650307758457],[136.31196812127473,-28.504650307758457],[136.31196812127473,-32.22887597610881],[132.58774245292437,-32.22887597610881],[132.58774245292437,-28.504650307758457]]],[[[136.31196812127473,-28.504650307758457],[140.0361937896251,-28.504650307758457],[140.0361937896251,-32.22887597610881],[136.31196812127473,-32.22887597610881],[136.31196812127473,-28.504650307758457]]],[[[140.0361937896251,-28.504650307758457],[143.76041945797544,-28.504650307758457],[143.76041945797544,-32.22887597610881],[140.0361937896251,-32.22887597610881],[140.0361937896251,-28.504650307758457]]],[[[143.76041945797544,-28.504650307758457],[147.48464512632577,-28.504650307758457],[147.48464512632577,-32.22887597610881],[143.76041945797544,-32.22887597610881],[143.76041945797544,-28.504650307758457]]],[[[147.48464512632577,-28.504650307758457],[151.20887079467613,-28.504650307758457],[151.20887079467613,-32.22887597610881],[147.48464512632577,-32.22887597610881],[147.48464512632577,-28.504650307758457]]],[[[-70.99477947636089,-28.504650307758457],[-67.27055380801052,-28.504650307758457],[-67.27055380801052,-32.22887597610881],[-70.99477947636089,-32.22887597610881],[-70.99477947636089,-28.504650307758457]]],[[[-67.27055380801052,-28.504650307758457],[-63.54632813966014,-28.504650307758457],[-63.54632813966014,-32.22887597610881],[-67.27055380801052,-32.22887597610881],[-67.27055380801052,-28.504650307758457]]],[[[-63.54632813966014,-28.504650307758457],[-59.82210247130982,-28.504650307758457],[-59.82210247130982,-32.22887597610881],[-63.54632813966014,-32.22887597610881],[-63.54632813966014,-28.504650307758457]]],[[[-59.82210247130982,-28.504650307758457],[-56.0978768029595,-28.504650307758457],[-56.0978768029595,-32.22887597610881],[-59.82210247130982,-32.22887597610881],[-59.82210247130982,-28.504650307758457]]],[[[-56.0978768029595,-28.504650307758457],[-52.373651134609126,-28.504650307758457],[-52.373651134609126,-32.22887597610881],[-56.0978768029595,-32.22887597610881],[-56.0978768029595,-28.504650307758457]]],[[[140.0361937896251,-32.22887597610881],[143.76041945797544,-32.22887597610881],[143.76041945797544,-35.95310164445915],[140.0361937896251,-35.95310164445915],[140.0361937896251,-32.22887597610881]]],[[[143.76041945797544,-32.22887597610881],[147.48464512632577,-32.22887597610881],[147.48464512632577,-35.95310164445915],[143.76041945797544,-35.95310164445915],[143.76041945797544,-32.22887597610881]]],[[[147.48464512632577,-32.22887597610881],[151.20887079467613,-32.22887597610881],[151.20887079467613,-35.95310164445915],[147.48464512632577,-35.95310164445915],[147.48464512632577,-32.22887597610881]]],[[[-70.99477947636089,-32.22887597610881],[-67.27055380801052,-32.22887597610881],[-67.27055380801052,-35.95310164445915],[-70.99477947636089,-35.95310164445915],[-70.99477947636089,-32.22887597610881]]],[[[-67.27055380801052,-32.22887597610881],[-63.54632813966014,-32.22887597610881],[-63.54632813966014,-35.95310164445915],[-67.27055380801052,-35.95310164445915],[-67.27055380801052,-32.22887597610881]]],[[[-63.54632813966014,-32.22887597610881],[-59.82210247130982,-32.22887597610881],[-59.82210247130982,-35.95310164445915],[-63.54632813966014,-35.95310164445915],[-63.54632813966014,-32.22887597610881]]],[[[-59.82210247130982,-32.22887597610881],[-56.0978768029595,-32.22887597610881],[-56.0978768029595,-35.95310164445915],[-59.82210247130982,-35.95310164445915],[-59.82210247130982,-32.22887597610881]]],[[[-70.99477947636089,-35.95310164445915],[-67.27055380801052,-35.95310164445915],[-67.27055380801052,-39.67732731280951],[-70.99477947636089,-39.67732731280951],[-70.99477947636089,-35.95310164445915]]],[[[-67.27055380801052,-35.95310164445915],[-63.54632813966014,-35.95310164445915],[-63.54632813966014,-39.67732731280951],[-67.27055380801052,-39.67732731280951],[-67.27055380801052,-35.95310164445915]]],[[[-63.54632813966014,-35.95310164445915],[-59.82210247130982,-35.95310164445915],[-59.82210247130982,-39.67732731280951],[-63.54632813966014,-39.67732731280951],[-63.54632813966014,-35.95310164445915]]],[[[-70.99477947636089,-39.67732731280951],[-67.27055380801052,-39.67732731280951],[-67.27055380801052,-43.40155298115986],[-70.99477947636089,-43.40155298115986],[-70.99477947636089,-39.67732731280951]]],[[[-74.7190051447112,-43.40155298115986],[-70.99477947636089,-43.40155298115986],[-70.99477947636089,-47.12577864951021],[-74.7190051447112,-47.12577864951021],[-74.7190051447112,-43.40155298115986]]],[[[-70.99477947636089,-43.40155298115986],[-67.27055380801052,-43.40155298115986],[-67.27055380801052,-47.12577864951021],[-70.99477947636089,-47.12577864951021],[-70.99477947636089,-43.40155298115986]]],[[[-74.7190051447112,-47.12577864951021],[-70.99477947636089,-47.12577864951021],[-70.99477947636089,-50.85000431786056],[-74.7190051447112,-50.85000431786056],[-74.7190051447112,-47.12577864951021]]],[[[50.65477774921666,-65.74690699126197],[54.37900341756701,-65.74690699126197],[54.37900341756701,-69.47113265961231],[50.65477774921666,-69.47113265961231],[50.65477774921666,-65.74690699126197]]],[[[99.06971143777122,-65.74690699126197],[102.79393710612158,-65.74690699126197],[102.79393710612158,-69.47113265961231],[99.06971143777122,-69.47113265961231],[99.06971143777122,-65.74690699126197]]],[[[102.79393710612158,-65.74690699126197],[106.51816277447192,-65.74690699126197],[106.51816277447192,-69.47113265961231],[102.79393710612158,-69.47113265961231],[102.79393710612158,-65.74690699126197]]],[[[110.24238844282227,-65.74690699126197],[113.96661411117262,-65.74690699126197],[113.96661411117262,-69.47113265961231],[110.24238844282227,-69.47113265961231],[110.24238844282227,-65.74690699126197]]],[[[132.58774245292437,-65.74690699126197],[136.31196812127473,-65.74690699126197],[136.31196812127473,-69.47113265961231],[132.58774245292437,-69.47113265961231],[132.58774245292437,-65.74690699126197]]],[[[32.0336494074649,-69.47113265961231],[35.75787507581525,-69.47113265961231],[35.75787507581525,-73.19535832796267],[32.0336494074649,-73.19535832796267],[32.0336494074649,-69.47113265961231]]],[[[35.75787507581525,-69.47113265961231],[39.48210074416559,-69.47113265961231],[39.48210074416559,-73.19535832796267],[35.75787507581525,-73.19535832796267],[35.75787507581525,-69.47113265961231]]],[[[39.48210074416559,-69.47113265961231],[43.20632641251594,-69.47113265961231],[43.20632641251594,-73.19535832796267],[39.48210074416559,-73.19535832796267],[39.48210074416559,-69.47113265961231]]],[[[43.20632641251594,-69.47113265961231],[46.93055208086631,-69.47113265961231],[46.93055208086631,-73.19535832796267],[43.20632641251594,-73.19535832796267],[43.20632641251594,-69.47113265961231]]],[[[46.93055208086631,-69.47113265961231],[50.65477774921666,-69.47113265961231],[50.65477774921666,-73.19535832796267],[46.93055208086631,-73.19535832796267],[46.93055208086631,-69.47113265961231]]],[[[50.65477774921666,-69.47113265961231],[54.37900341756701,-69.47113265961231],[54.37900341756701,-73.19535832796267],[50.65477774921666,-73.19535832796267],[50.65477774921666,-69.47113265961231]]],[[[54.37900341756701,-69.47113265961231],[58.10322908591736,-69.47113265961231],[58.10322908591736,-73.19535832796267],[54.37900341756701,-73.19535832796267],[54.37900341756701,-69.47113265961231]]],[[[58.10322908591736,-69.47113265961231],[61.827454754267706,-69.47113265961231],[61.827454754267706,-73.19535832796267],[58.10322908591736,-73.19535832796267],[58.10322908591736,-69.47113265961231]]],[[[61.827454754267706,-69.47113265961231],[65.55168042261806,-69.47113265961231],[65.55168042261806,-73.19535832796267],[61.827454754267706,-73.19535832796267],[61.827454754267706,-69.47113265961231]]],[[[73.00013175931876,-69.47113265961231],[76.72435742766912,-69.47113265961231],[76.72435742766912,-73.19535832796267],[73.00013175931876,-73.19535832796267],[73.00013175931876,-69.47113265961231]]],[[[76.72435742766912,-69.47113265961231],[80.44858309601946,-69.47113265961231],[80.44858309601946,-73.19535832796267],[76.72435742766912,-73.19535832796267],[76.72435742766912,-69.47113265961231]]],[[[80.44858309601946,-69.47113265961231],[84.1728087643698,-69.47113265961231],[84.1728087643698,-73.19535832796267],[80.44858309601946,-73.19535832796267],[80.44858309601946,-69.47113265961231]]],[[[84.1728087643698,-69.47113265961231],[87.89703443272018,-69.47113265961231],[87.89703443272018,-73.19535832796267],[84.1728087643698,-73.19535832796267],[84.1728087643698,-69.47113265961231]]],[[[87.89703443272018,-69.47113265961231],[91.62126010107052,-69.47113265961231],[91.62126010107052,-73.19535832796267],[87.89703443272018,-73.19535832796267],[87.89703443272018,-69.47113265961231]]],[[[91.62126010107052,-69.47113265961231],[95.34548576942086,-69.47113265961231],[95.34548576942086,-73.19535832796267],[91.62126010107052,-73.19535832796267],[91.62126010107052,-69.47113265961231]]],[[[95.34548576942086,-69.47113265961231],[99.06971143777122,-69.47113265961231],[99.06971143777122,-73.19535832796267],[95.34548576942086,-73.19535832796267],[95.34548576942086,-69.47113265961231]]],[[[99.06971143777122,-69.47113265961231],[102.79393710612158,-69.47113265961231],[102.79393710612158,-73.19535832796267],[99.06971143777122,-73.19535832796267],[99.06971143777122,-69.47113265961231]]],[[[102.79393710612158,-69.47113265961231],[106.51816277447192,-69.47113265961231],[106.51816277447192,-73.19535832796267],[102.79393710612158,-73.19535832796267],[102.79393710612158,-69.47113265961231]]],[[[106.51816277447192,-69.47113265961231],[110.24238844282227,-69.47113265961231],[110.24238844282227,-73.19535832796267],[106.51816277447192,-73.19535832796267],[106.51816277447192,-69.47113265961231]]],[[[110.24238844282227,-69.47113265961231],[113.96661411117262,-69.47113265961231],[113.96661411117262,-73.19535832796267],[110.24238844282227,-73.19535832796267],[110.24238844282227,-69.47113265961231]]],[[[113.96661411117262,-69.47113265961231],[117.69083977952297,-69.47113265961231],[117.69083977952297,-73.19535832796267],[113.96661411117262,-73.19535832796267],[113.96661411117262,-69.47113265961231]]],[[[117.69083977952297,-69.47113265961231],[121.41506544787333,-69.47113265961231],[121.41506544787333,-73.19535832796267],[117.69083977952297,-73.19535832796267],[117.69083977952297,-69.47113265961231]]],[[[121.41506544787333,-69.47113265961231],[125.13929111622367,-69.47113265961231],[125.13929111622367,-73.19535832796267],[121.41506544787333,-73.19535832796267],[121.41506544787333,-69.47113265961231]]],[[[125.13929111622367,-69.47113265961231],[128.86351678457402,-69.47113265961231],[128.86351678457402,-73.19535832796267],[125.13929111622367,-73.19535832796267],[125.13929111622367,-69.47113265961231]]],[[[128.86351678457402,-69.47113265961231],[132.58774245292437,-69.47113265961231],[132.58774245292437,-73.19535832796267],[128.86351678457402,-73.19535832796267],[128.86351678457402,-69.47113265961231]]],[[[132.58774245292437,-69.47113265961231],[136.31196812127473,-69.47113265961231],[136.31196812127473,-73.19535832796267],[132.58774245292437,-73.19535832796267],[132.58774245292437,-69.47113265961231]]],[[[136.31196812127473,-69.47113265961231],[140.0361937896251,-69.47113265961231],[140.0361937896251,-73.19535832796267],[136.31196812127473,-73.19535832796267],[136.31196812127473,-69.47113265961231]]],[[[140.0361937896251,-69.47113265961231],[143.76041945797544,-69.47113265961231],[143.76041945797544,-73.19535832796267],[140.0361937896251,-73.19535832796267],[140.0361937896251,-69.47113265961231]]],[[[143.76041945797544,-69.47113265961231],[147.48464512632577,-69.47113265961231],[147.48464512632577,-73.19535832796267],[143.76041945797544,-73.19535832796267],[143.76041945797544,-69.47113265961231]]],[[[147.48464512632577,-69.47113265961231],[151.20887079467613,-69.47113265961231],[151.20887079467613,-73.19535832796267],[147.48464512632577,-73.19535832796267],[147.48464512632577,-69.47113265961231]]],[[[151.20887079467613,-69.47113265961231],[154.9330964630265,-69.47113265961231],[154.9330964630265,-73.19535832796267],[151.20887079467613,-73.19535832796267],[151.20887079467613,-69.47113265961231]]],[[[154.9330964630265,-69.47113265961231],[158.65732213137684,-69.47113265961231],[158.65732213137684,-73.19535832796267],[154.9330964630265,-73.19535832796267],[154.9330964630265,-69.47113265961231]]],[[[-67.27055380801052,-69.47113265961231],[-63.54632813966014,-69.47113265961231],[-63.54632813966014,-73.19535832796267],[-67.27055380801052,-73.19535832796267],[-67.27055380801052,-69.47113265961231]]],[[[2.2398440606620906,-73.19535832796267],[5.964069729012438,-73.19535832796267],[5.964069729012438,-76.91958399631302],[2.2398440606620906,-76.91958399631302],[2.2398440606620906,-73.19535832796267]]],[[[5.964069729012438,-73.19535832796267],[9.688295397362786,-73.19535832796267],[9.688295397362786,-76.91958399631302],[5.964069729012438,-76.91958399631302],[5.964069729012438,-73.19535832796267]]],[[[9.688295397362786,-73.19535832796267],[13.412521065713134,-73.19535832796267],[13.412521065713134,-76.91958399631302],[9.688295397362786,-76.91958399631302],[9.688295397362786,-73.19535832796267]]],[[[13.412521065713134,-73.19535832796267],[17.136746734063507,-73.19535832796267],[17.136746734063507,-76.91958399631302],[13.412521065713134,-76.91958399631302],[13.412521065713134,-73.19535832796267]]],[[[17.136746734063507,-73.19535832796267],[20.860972402413857,-73.19535832796267],[20.860972402413857,-76.91958399631302],[17.136746734063507,-76.91958399631302],[17.136746734063507,-73.19535832796267]]],[[[20.860972402413857,-73.19535832796267],[24.585198070764203,-73.19535832796267],[24.585198070764203,-76.91958399631302],[20.860972402413857,-76.91958399631302],[20.860972402413857,-73.19535832796267]]],[[[24.585198070764203,-73.19535832796267],[28.30942373911455,-73.19535832796267],[28.30942373911455,-76.91958399631302],[24.585198070764203,-76.91958399631302],[24.585198070764203,-73.19535832796267]]],[[[28.30942373911455,-73.19535832796267],[32.0336494074649,-73.19535832796267],[32.0336494074649,-76.91958399631302],[28.30942373911455,-76.91958399631302],[28.30942373911455,-73.19535832796267]]],[[[32.0336494074649,-73.19535832796267],[35.75787507581525,-73.19535832796267],[35.75787507581525,-76.91958399631302],[32.0336494074649,-76.91958399631302],[32.0336494074649,-73.19535832796267]]],[[[35.75787507581525,-73.19535832796267],[39.48210074416559,-73.19535832796267],[39.48210074416559,-76.91958399631302],[35.75787507581525,-76.91958399631302],[35.75787507581525,-73.19535832796267]]],[[[39.48210074416559,-73.19535832796267],[43.20632641251594,-73.19535832796267],[43.20632641251594,-76.91958399631302],[39.48210074416559,-76.91958399631302],[39.48210074416559,-73.19535832796267]]],[[[43.20632641251594,-73.19535832796267],[46.93055208086631,-73.19535832796267],[46.93055208086631,-76.91958399631302],[43.20632641251594,-76.91958399631302],[43.20632641251594,-73.19535832796267]]],[[[46.93055208086631,-73.19535832796267],[50.65477774921666,-73.19535832796267],[50.65477774921666,-76.91958399631302],[46.93055208086631,-76.91958399631302],[46.93055208086631,-73.19535832796267]]],[[[50.65477774921666,-73.19535832796267],[54.37900341756701,-73.19535832796267],[54.37900341756701,-76.91958399631302],[50.65477774921666,-76.91958399631302],[50.65477774921666,-73.19535832796267]]],[[[54.37900341756701,-73.19535832796267],[58.10322908591736,-73.19535832796267],[58.10322908591736,-76.91958399631302],[54.37900341756701,-76.91958399631302],[54.37900341756701,-73.19535832796267]]],[[[58.10322908591736,-73.19535832796267],[61.827454754267706,-73.19535832796267],[61.827454754267706,-76.91958399631302],[58.10322908591736,-76.91958399631302],[58.10322908591736,-73.19535832796267]]],[[[61.827454754267706,-73.19535832796267],[65.55168042261806,-73.19535832796267],[65.55168042261806,-76.91958399631302],[61.827454754267706,-76.91958399631302],[61.827454754267706,-73.19535832796267]]],[[[65.55168042261806,-73.19535832796267],[69.2759060909684,-73.19535832796267],[69.2759060909684,-76.91958399631302],[65.55168042261806,-76.91958399631302],[65.55168042261806,-73.19535832796267]]],[[[69.2759060909684,-73.19535832796267],[73.00013175931876,-73.19535832796267],[73.00013175931876,-76.91958399631302],[69.2759060909684,-76.91958399631302],[69.2759060909684,-73.19535832796267]]],[[[73.00013175931876,-73.19535832796267],[76.72435742766912,-73.19535832796267],[76.72435742766912,-76.91958399631302],[73.00013175931876,-76.91958399631302],[73.00013175931876,-73.19535832796267]]],[[[76.72435742766912,-73.19535832796267],[80.44858309601946,-73.19535832796267],[80.44858309601946,-76.91958399631302],[76.72435742766912,-76.91958399631302],[76.72435742766912,-73.19535832796267]]],[[[80.44858309601946,-73.19535832796267],[84.1728087643698,-73.19535832796267],[84.1728087643698,-76.91958399631302],[80.44858309601946,-76.91958399631302],[80.44858309601946,-73.19535832796267]]],[[[84.1728087643698,-73.19535832796267],[87.89703443272018,-73.19535832796267],[87.89703443272018,-76.91958399631302],[84.1728087643698,-76.91958399631302],[84.1728087643698,-73.19535832796267]]],[[[87.89703443272018,-73.19535832796267],[91.62126010107052,-73.19535832796267],[91.62126010107052,-76.91958399631302],[87.89703443272018,-76.91958399631302],[87.89703443272018,-73.19535832796267]]],[[[91.62126010107052,-73.19535832796267],[95.34548576942086,-73.19535832796267],[95.34548576942086,-76.91958399631302],[91.62126010107052,-76.91958399631302],[91.62126010107052,-73.19535832796267]]],[[[95.34548576942086,-73.19535832796267],[99.06971143777122,-73.19535832796267],[99.06971143777122,-76.91958399631302],[95.34548576942086,-76.91958399631302],[95.34548576942086,-73.19535832796267]]],[[[99.06971143777122,-73.19535832796267],[102.79393710612158,-73.19535832796267],[102.79393710612158,-76.91958399631302],[99.06971143777122,-76.91958399631302],[99.06971143777122,-73.19535832796267]]],[[[102.79393710612158,-73.19535832796267],[106.51816277447192,-73.19535832796267],[106.51816277447192,-76.91958399631302],[102.79393710612158,-76.91958399631302],[102.79393710612158,-73.19535832796267]]],[[[106.51816277447192,-73.19535832796267],[110.24238844282227,-73.19535832796267],[110.24238844282227,-76.91958399631302],[106.51816277447192,-76.91958399631302],[106.51816277447192,-73.19535832796267]]],[[[110.24238844282227,-73.19535832796267],[113.96661411117262,-73.19535832796267],[113.96661411117262,-76.91958399631302],[110.24238844282227,-76.91958399631302],[110.24238844282227,-73.19535832796267]]],[[[113.96661411117262,-73.19535832796267],[117.69083977952297,-73.19535832796267],[117.69083977952297,-76.91958399631302],[113.96661411117262,-76.91958399631302],[113.96661411117262,-73.19535832796267]]],[[[117.69083977952297,-73.19535832796267],[121.41506544787333,-73.19535832796267],[121.41506544787333,-76.91958399631302],[117.69083977952297,-76.91958399631302],[117.69083977952297,-73.19535832796267]]],[[[121.41506544787333,-73.19535832796267],[125.13929111622367,-73.19535832796267],[125.13929111622367,-76.91958399631302],[121.41506544787333,-76.91958399631302],[121.41506544787333,-73.19535832796267]]],[[[125.13929111622367,-73.19535832796267],[128.86351678457402,-73.19535832796267],[128.86351678457402,-76.91958399631302],[125.13929111622367,-76.91958399631302],[125.13929111622367,-73.19535832796267]]],[[[128.86351678457402,-73.19535832796267],[132.58774245292437,-73.19535832796267],[132.58774245292437,-76.91958399631302],[128.86351678457402,-76.91958399631302],[128.86351678457402,-73.19535832796267]]],[[[132.58774245292437,-73.19535832796267],[136.31196812127473,-73.19535832796267],[136.31196812127473,-76.91958399631302],[132.58774245292437,-76.91958399631302],[132.58774245292437,-73.19535832796267]]],[[[136.31196812127473,-73.19535832796267],[140.0361937896251,-73.19535832796267],[140.0361937896251,-76.91958399631302],[136.31196812127473,-76.91958399631302],[136.31196812127473,-73.19535832796267]]],[[[140.0361937896251,-73.19535832796267],[143.76041945797544,-73.19535832796267],[143.76041945797544,-76.91958399631302],[140.0361937896251,-76.91958399631302],[140.0361937896251,-73.19535832796267]]],[[[143.76041945797544,-73.19535832796267],[147.48464512632577,-73.19535832796267],[147.48464512632577,-76.91958399631302],[143.76041945797544,-76.91958399631302],[143.76041945797544,-73.19535832796267]]],[[[147.48464512632577,-73.19535832796267],[151.20887079467613,-73.19535832796267],[151.20887079467613,-76.91958399631302],[147.48464512632577,-76.91958399631302],[147.48464512632577,-73.19535832796267]]],[[[151.20887079467613,-73.19535832796267],[154.9330964630265,-73.19535832796267],[154.9330964630265,-76.91958399631302],[151.20887079467613,-76.91958399631302],[151.20887079467613,-73.19535832796267]]],[[[154.9330964630265,-73.19535832796267],[158.65732213137684,-73.19535832796267],[158.65732213137684,-76.91958399631302],[154.9330964630265,-76.91958399631302],[154.9330964630265,-73.19535832796267]]],[[[158.65732213137684,-73.19535832796267],[162.38154779972717,-73.19535832796267],[162.38154779972717,-76.91958399631302],[158.65732213137684,-76.91958399631302],[158.65732213137684,-73.19535832796267]]],[[[-100.78858482316367,-73.19535832796267],[-97.06435915481335,-73.19535832796267],[-97.06435915481335,-76.91958399631302],[-100.78858482316367,-76.91958399631302],[-100.78858482316367,-73.19535832796267]]],[[[-97.06435915481335,-73.19535832796267],[-93.34013348646297,-73.19535832796267],[-93.34013348646297,-76.91958399631302],[-97.06435915481335,-76.91958399631302],[-97.06435915481335,-73.19535832796267]]],[[[-93.34013348646297,-73.19535832796267],[-89.61590781811266,-73.19535832796267],[-89.61590781811266,-76.91958399631302],[-93.34013348646297,-76.91958399631302],[-93.34013348646297,-73.19535832796267]]],[[[-89.61590781811266,-73.19535832796267],[-85.89168214976227,-73.19535832796267],[-85.89168214976227,-76.91958399631302],[-89.61590781811266,-76.91958399631302],[-89.61590781811266,-73.19535832796267]]],[[[-82.16745648141196,-73.19535832796267],[-78.44323081306159,-73.19535832796267],[-78.44323081306159,-76.91958399631302],[-82.16745648141196,-76.91958399631302],[-82.16745648141196,-73.19535832796267]]],[[[-74.7190051447112,-73.19535832796267],[-70.99477947636089,-73.19535832796267],[-70.99477947636089,-76.91958399631302],[-74.7190051447112,-76.91958399631302],[-74.7190051447112,-73.19535832796267]]],[[[-15.131394451105644,-73.19535832796267],[-11.40716878275527,-73.19535832796267],[-11.40716878275527,-76.91958399631302],[-15.131394451105644,-76.91958399631302],[-15.131394451105644,-73.19535832796267]]],[[[-11.40716878275527,-73.19535832796267],[-7.682943114404897,-73.19535832796267],[-7.682943114404897,-76.91958399631302],[-11.40716878275527,-76.91958399631302],[-11.40716878275527,-73.19535832796267]]],[[[-7.682943114404897,-73.19535832796267],[-3.9587174460545747,-73.19535832796267],[-3.9587174460545747,-76.91958399631302],[-7.682943114404897,-76.91958399631302],[-7.682943114404897,-73.19535832796267]]],[[[-3.9587174460545747,-73.19535832796267],[-0.23449177770420107,-73.19535832796267],[-0.23449177770420107,-76.91958399631302],[-3.9587174460545747,-76.91958399631302],[-3.9587174460545747,-73.19535832796267]]]]}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment