Skip to content

Instantly share code, notes, and snippets.

@pere
Created June 28, 2012 17:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pere/3012590 to your computer and use it in GitHub Desktop.
Save pere/3012590 to your computer and use it in GitHub Desktop.
Geographic d3.js bubbles
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>France bubbling</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.7.4"></script>
<style type="text/css">
svg {
width: 900px;
height: 500px;
border: solid 1px #ccc;
background: #eee;
}
line {
stroke: brown;
stroke-dasharray: 4,2;
}
path {
fill: #ccc;
stroke: #fff;
}
div {
width: 900px;
}
</style>
</head>
<body>
<h3>Mercator Projection</h3>
<script type="text/javascript">
width= 900;
height= 500;
//focusing france on SVG
xy=d3.geo.mercator().translate([453,1872]).scale(11000)
path=d3.geo.path().projection(xy);
var svg = d3.select("body")
.append("svg")
.append("g")
.attr("id", "polygons");
d3.json('regions.json', function(collection) {
//console.warn(collection.features)
d3.select("#polygons")
.selectAll("path")
.data(collection.features)
.enter().append("path")
.attr("d", d3.geo.path().projection(xy));
});
d3.json('datapublishers.json', function(data) {
var force = d3.layout.force()
// .gravity(0)
.charge(-0.7)
.nodes(data.features)
.size([0, 0])
.start();
var to_bubble=[]
//this function could be used to filter circles by city parameter
filter_by_city =function (city)
{
data.features.forEach(function(data) {
if (data.properties.city==city)
{
to_bubble.push(data)
}
})
return to_bubble;
}
var node = d3.select("svg").selectAll("g")
.data(data.features) //filter_by_city('Paris') could be used here, assigning later a more negative charge but its not the ideal solution at all
.enter().append("g")
.attr("id", function(d){ return d.properties.city;})
node.append("circle")
.attr("transform", function(d) {
return "translate(" + xy(d.geometry.coordinates) + ")"; })
.attr("id", function(d){ return d.id;})
.attr("class", "node")
.attr('fill','blue')
.attr('opacity',0.5)
.attr('r', function(d) {
return d.properties.num_collections*5})
.call(force.drag);
force.on("tick", function() {
node.attr(
"transform",
function(d) { return "translate(" + d.x + "," + d.y + ")"; }
);
});
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.83,50.16],[4.87,50.15],[4.88,50.14],[4.9,50.14],[4.9,50.14],[4.88,50.13],[4.87,50.12],[4.87,50.09],[4.87,50.09],[4.86,50.09],[4.86,50.1],[4.85,50.1],[4.84,50.09],[4.85,50.08],[4.84,50.08],[4.84,50.07],[4.82,50.07],[4.82,50.06],[4.83,50.06],[4.83,50.05],[4.84,50.05],[4.84,50.04],[4.82,50.02],[4.82,49.99],[4.81,49.98],[4.8,49.98],[4.79,49.97],[4.79,49.96],[4.85,49.95],[4.86,49.93],[4.88,49.92],[4.89,49.91],[4.88,49.9],[4.86,49.87],[4.85,49.86],[4.86,49.85],[4.86,49.84],[4.87,49.84],[4.87,49.82],[4.86,49.79],[4.86,49.79],[4.87,49.79],[4.89,49.79],[4.9,49.79],[4.91,49.79],[4.92,49.79],[4.93,49.79],[4.94,49.79],[4.94,49.79],[4.95,49.8],[4.96,49.8],[4.99,49.8],[5,49.79],[5.01,49.78],[5.05,49.77],[5.07,49.76],[5.09,49.76],[5.1,49.76],[5.12,49.73],[5.12,49.72],[5.14,49.71],[5.15,49.72],[5.16,49.72],[5.17,49.71],[5.17,49.69],[5.19,49.69],[5.2,49.69],[5.21,49.69],[5.22,49.69],[5.23,49.69],[5.25,49.69],[5.27,49.7],[5.28,49.69],[5.28,49.69],[5.29,49.68],[5.32,49.66],[5.33,49.65],[5.32,49.65],[5.3,49.63],[5.32,49.61],[5.34,49.62],[5.35,49.63],[5.39,49.62],[5.38,49.61],[5.38,49.59],[5.36,49.59],[5.35,49.59],[5.34,49.59],[5.31,49.56],[5.31,49.56],[5.28,49.55],[5.28,49.54],[5.26,49.54],[5.25,49.56],[5.23,49.56],[5.23,49.57],[5.21,49.57],[5.2,49.57],[5.19,49.57],[5.17,49.56],[5.16,49.57],[5.15,49.59],[5.12,49.59],[5.11,49.59],[5.11,49.58],[5.11,49.56],[5.11,49.56],[5.1,49.56],[5.09,49.54],[5.1,49.53],[5.09,49.52],[5.09,49.52],[5.08,49.51],[5.06,49.51],[5.06,49.5],[5.07,49.49],[5.08,49.49],[5.08,49.48],[5.08,49.47],[5.1,49.46],[5.1,49.46],[5.11,49.46],[5.1,49.44],[5.11,49.43],[5.12,49.42],[5.11,49.42],[5.1,49.41],[5.08,49.4],[5.09,49.4],[5.1,49.39],[5.1,49.38],[5.09,49.37],[5.06,49.37],[5.05,49.37],[5.06,49.36],[5.03,49.34],[5.03,49.33],[5.04,49.32],[5.03,49.31],[5.03,49.31],[5.04,49.3],[5.06,49.29],[5.06,49.29],[5.05,49.28],[5.05,49.27],[5.04,49.27],[5.03,49.27],[5.01,49.27],[5,49.26],[5,49.26],[4.97,49.25],[4.96,49.24],[4.95,49.24],[4.97,49.24],[4.98,49.22],[4.99,49.21],[4.98,49.2],[4.96,49.2],[4.94,49.19],[4.96,49.15],[4.97,49.13],[4.98,49.12],[5,49.11],[5,49.09],[5.01,49.06],[5,49.05],[4.97,49.02],[5.01,49.03],[5.04,49.02],[5.04,49.01],[5.03,49],[5.03,49],[5.01,48.99],[5,48.98],[5.03,48.98],[5.04,48.97],[5.03,48.95],[5.01,48.95],[5.01,48.94],[5,48.94],[4.97,48.93],[4.96,48.93],[4.95,48.93],[4.94,48.92],[4.93,48.91],[4.92,48.91],[4.91,48.9],[4.92,48.89],[4.92,48.89],[4.91,48.87],[4.92,48.86],[4.93,48.85],[4.94,48.85],[4.94,48.84],[4.91,48.83],[4.89,48.82],[4.9,48.81],[4.89,48.8],[4.89,48.8],[4.93,48.79],[4.94,48.78],[4.95,48.77],[4.98,48.75],[4.98,48.75],[4.99,48.74],[5.01,48.74],[5.01,48.72],[5.02,48.71],[5.01,48.71],[5,48.71],[5.01,48.7],[4.99,48.69],[4.99,48.68],[5.01,48.68],[5.01,48.67],[4.99,48.66],[4.99,48.65],[5,48.63],[5,48.62],[5.01,48.61],[5.03,48.61],[5.05,48.63],[5.06,48.63],[5.06,48.62],[5.07,48.6],[5.09,48.59],[5.12,48.6],[5.12,48.59],[5.13,48.58],[5.13,48.57],[5.14,48.56],[5.15,48.56],[5.17,48.57],[5.17,48.56],[5.2,48.55],[5.19,48.54],[5.21,48.54],[5.21,48.53],[5.22,48.53],[5.23,48.53],[5.27,48.51],[5.29,48.51],[5.29,48.51],[5.3,48.51],[5.31,48.52],[5.32,48.51],[5.33,48.51],[5.35,48.48],[5.37,48.48],[5.38,48.47],[5.4,48.47],[5.41,48.47],[5.4,48.46],[5.41,48.45],[5.43,48.43],[5.44,48.43],[5.45,48.42],[5.46,48.42],[5.46,48.43],[5.47,48.42],[5.45,48.41],[5.41,48.39],[5.39,48.39],[5.41,48.38],[5.44,48.38],[5.42,48.36],[5.42,48.35],[5.42,48.34],[5.43,48.33],[5.44,48.34],[5.46,48.35],[5.47,48.35],[5.47,48.35],[5.5,48.35],[5.51,48.35],[5.53,48.35],[5.52,48.34],[5.53,48.33],[5.59,48.28],[5.59,48.27],[5.61,48.29],[5.65,48.27],[5.65,48.25],[5.64,48.24],[5.68,48.23],[5.69,48.23],[5.71,48.22],[5.73,48.2],[5.73,48.19],[5.7,48.19],[5.68,48.18],[5.69,48.17],[5.68,48.16],[5.69,48.15],[5.68,48.14],[5.68,48.14],[5.66,48.13],[5.66,48.12],[5.67,48.11],[5.65,48.11],[5.64,48.1],[5.63,48.08],[5.65,48.07],[5.66,48.07],[5.66,48.08],[5.66,48.08],[5.69,48.08],[5.7,48.08],[5.7,48.07],[5.71,48.06],[5.72,48.05],[5.72,48.05],[5.74,48.05],[5.76,48.03],[5.77,48.03],[5.78,48.03],[5.78,48.02],[5.79,48.01],[5.79,48],[5.79,48],[5.79,47.99],[5.78,47.98],[5.79,47.95],[5.81,47.95],[5.82,47.96],[5.83,47.96],[5.85,47.98],[5.85,47.97],[5.85,47.97],[5.85,47.97],[5.85,47.96],[5.85,47.95],[5.86,47.95],[5.86,47.95],[5.88,47.93],[5.89,47.91],[5.89,47.9],[5.88,47.9],[5.87,47.9],[5.85,47.91],[5.85,47.9],[5.85,47.9],[5.82,47.87],[5.83,47.85],[5.8,47.85],[5.8,47.86],[5.77,47.86],[5.76,47.86],[5.75,47.85],[5.74,47.85],[5.75,47.83],[5.75,47.82],[5.74,47.82],[5.73,47.82],[5.7,47.82],[5.69,47.81],[5.68,47.78],[5.68,47.78],[5.68,47.77],[5.7,47.77],[5.71,47.77],[5.71,47.75],[5.71,47.74],[5.69,47.73],[5.69,47.73],[5.7,47.73],[5.69,47.72],[5.68,47.71],[5.69,47.7],[5.69,47.69],[5.69,47.68],[5.67,47.68],[5.67,47.69],[5.66,47.68],[5.65,47.68],[5.63,47.68],[5.62,47.67],[5.61,47.68],[5.6,47.67],[5.59,47.69],[5.58,47.7],[5.57,47.71],[5.57,47.71],[5.53,47.67],[5.51,47.67],[5.48,47.68],[5.47,47.67],[5.45,47.67],[5.43,47.67],[5.42,47.68],[5.41,47.67],[5.4,47.65],[5.41,47.65],[5.39,47.64],[5.37,47.62],[5.37,47.6],[5.37,47.6],[5.36,47.59],[5.34,47.6],[5.34,47.6],[5.34,47.61],[5.32,47.61],[5.32,47.61],[5.31,47.61],[5.28,47.59],[5.28,47.58],[5.27,47.58],[5.26,47.58],[5.24,47.6],[5.26,47.62],[5.24,47.62],[5.23,47.63],[5.21,47.64],[5.17,47.65],[5.18,47.68],[5.16,47.68],[5.16,47.67],[5.14,47.66],[5.13,47.65],[5.12,47.65],[5.12,47.65],[5.11,47.65],[5.1,47.66],[5.09,47.66],[5.08,47.66],[5.05,47.67],[5.05,47.68],[5.06,47.69],[5.03,47.69],[5.03,47.71],[5.03,47.71],[5,47.7],[5,47.69],[4.99,47.69],[4.97,47.69],[4.97,47.69],[4.95,47.7],[4.96,47.71],[4.96,47.71],[4.96,47.72],[4.97,47.73],[4.96,47.73],[4.96,47.73],[4.97,47.74],[4.96,47.76],[4.95,47.77],[4.94,47.76],[4.92,47.76],[4.93,47.76],[4.92,47.77],[4.92,47.77],[4.92,47.78],[4.96,47.79],[4.99,47.8],[4.99,47.82],[4.98,47.82],[4.98,47.83],[4.97,47.83],[4.96,47.84],[4.96,47.85],[4.95,47.87],[4.94,47.87],[4.93,47.87],[4.93,47.89],[4.92,47.89],[4.91,47.92],[4.89,47.92],[4.87,47.92],[4.86,47.9],[4.83,47.91],[4.83,47.91],[4.83,47.92],[4.85,47.92],[4.87,47.94],[4.86,47.95],[4.85,47.96],[4.82,47.96],[4.81,47.96],[4.79,47.97],[4.79,47.97],[4.8,47.98],[4.81,47.99],[4.79,48],[4.79,48.01],[4.75,48],[4.72,48.01],[4.7,48.02],[4.7,48.02],[4.67,48.02],[4.65,48.02],[4.62,48.02],[4.62,48.03],[4.61,48.03],[4.6,48.03],[4.58,48.03],[4.55,48.01],[4.55,48.01],[4.54,48.01],[4.54,47.99],[4.56,47.98],[4.56,47.97],[4.55,47.97],[4.53,47.97],[4.52,47.97],[4.5,47.97],[4.45,47.96],[4.42,47.97],[4.35,47.96],[4.31,47.96],[4.3,47.95],[4.3,47.94],[4.29,47.93],[4.27,47.92],[4.25,47.93],[4.22,47.95],[4.23,47.97],[4.2,47.97],[4.2,47.97],[4.2,47.96],[4.2,47.96],[4.21,47.95],[4.2,47.94],[4.19,47.94],[4.18,47.95],[4.17,47.96],[4.14,47.94],[4.14,47.94],[4.13,47.94],[4.11,47.93],[4.09,47.93],[4.09,47.94],[4.09,47.94],[4.06,47.95],[4.05,47.93],[4.05,47.93],[4.03,47.93],[4.03,47.93],[4.02,47.93],[4.01,47.94],[3.99,47.93],[3.98,47.93],[3.96,47.94],[3.95,47.93],[3.93,47.93],[3.92,47.93],[3.91,47.93],[3.91,47.93],[3.9,47.93],[3.89,47.93],[3.9,47.94],[3.91,47.96],[3.91,47.98],[3.9,47.99],[3.9,48],[3.89,48],[3.88,48],[3.88,47.98],[3.86,47.98],[3.86,47.98],[3.85,47.98],[3.84,48],[3.86,48.01],[3.87,48],[3.87,48.02],[3.85,48.03],[3.84,48.04],[3.83,48.04],[3.82,48.04],[3.83,48.05],[3.83,48.06],[3.8,48.09],[3.8,48.1],[3.81,48.1],[3.8,48.11],[3.77,48.13],[3.75,48.13],[3.74,48.13],[3.74,48.14],[3.75,48.15],[3.75,48.17],[3.72,48.17],[3.71,48.17],[3.72,48.16],[3.72,48.15],[3.71,48.15],[3.7,48.15],[3.69,48.16],[3.69,48.15],[3.67,48.14],[3.66,48.16],[3.65,48.17],[3.64,48.18],[3.62,48.19],[3.59,48.18],[3.58,48.19],[3.61,48.21],[3.62,48.23],[3.61,48.23],[3.6,48.23],[3.6,48.24],[3.6,48.24],[3.62,48.26],[3.62,48.27],[3.58,48.28],[3.58,48.29],[3.59,48.3],[3.56,48.31],[3.56,48.32],[3.54,48.32],[3.55,48.33],[3.53,48.34],[3.5,48.37],[3.5,48.37],[3.47,48.37],[3.47,48.37],[3.45,48.37],[3.43,48.36],[3.43,48.36],[3.41,48.38],[3.41,48.39],[3.42,48.41],[3.42,48.42],[3.4,48.42],[3.41,48.42],[3.39,48.43],[3.4,48.43],[3.4,48.44],[3.41,48.45],[3.4,48.46],[3.4,48.47],[3.38,48.48],[3.4,48.49],[3.42,48.49],[3.43,48.49],[3.43,48.5],[3.42,48.51],[3.41,48.53],[3.41,48.53],[3.44,48.53],[3.45,48.53],[3.47,48.54],[3.48,48.54],[3.48,48.55],[3.47,48.57],[3.49,48.58],[3.49,48.59],[3.52,48.59],[3.51,48.6],[3.51,48.61],[3.56,48.62],[3.56,48.62],[3.54,48.63],[3.52,48.63],[3.52,48.64],[3.53,48.65],[3.52,48.64],[3.49,48.65],[3.48,48.64],[3.45,48.63],[3.46,48.65],[3.44,48.66],[3.45,48.67],[3.44,48.67],[3.46,48.68],[3.47,48.69],[3.47,48.7],[3.48,48.7],[3.47,48.71],[3.47,48.74],[3.44,48.74],[3.44,48.74],[3.44,48.75],[3.43,48.76],[3.41,48.75],[3.4,48.76],[3.4,48.76],[3.41,48.78],[3.42,48.78],[3.43,48.78],[3.44,48.78],[3.44,48.79],[3.44,48.8],[3.42,48.8],[3.41,48.81],[3.41,48.81],[3.42,48.82],[3.43,48.81],[3.44,48.81],[3.47,48.82],[3.47,48.82],[3.48,48.81],[3.49,48.82],[3.49,48.83],[3.49,48.84],[3.49,48.85],[3.49,48.86],[3.48,48.87],[3.5,48.87],[3.51,48.89],[3.53,48.91],[3.55,48.92],[3.57,48.91],[3.57,48.92],[3.57,48.94],[3.6,48.95],[3.6,48.95],[3.59,48.96],[3.6,48.97],[3.62,48.97],[3.63,48.99],[3.64,49],[3.67,49.01],[3.68,49.02],[3.66,49.04],[3.65,49.04],[3.64,49.04],[3.63,49.04],[3.62,49.04],[3.61,49.03],[3.59,49.03],[3.59,49.04],[3.59,49.06],[3.6,49.06],[3.61,49.07],[3.63,49.07],[3.64,49.08],[3.63,49.09],[3.62,49.11],[3.61,49.12],[3.6,49.12],[3.6,49.12],[3.61,49.13],[3.61,49.13],[3.62,49.14],[3.62,49.15],[3.62,49.15],[3.65,49.15],[3.68,49.15],[3.69,49.15],[3.7,49.14],[3.72,49.15],[3.74,49.16],[3.75,49.16],[3.75,49.18],[3.74,49.18],[3.73,49.18],[3.71,49.18],[3.7,49.19],[3.7,49.2],[3.7,49.21],[3.68,49.2],[3.68,49.21],[3.66,49.21],[3.65,49.21],[3.65,49.22],[3.67,49.22],[3.68,49.24],[3.68,49.24],[3.67,49.24],[3.66,49.26],[3.67,49.27],[3.65,49.28],[3.66,49.29],[3.66,49.29],[3.64,49.3],[3.64,49.3],[3.64,49.3],[3.65,49.32],[3.66,49.32],[3.67,49.32],[3.69,49.33],[3.71,49.33],[3.74,49.34],[3.74,49.34],[3.74,49.35],[3.76,49.35],[3.78,49.36],[3.78,49.35],[3.8,49.36],[3.82,49.36],[3.83,49.35],[3.85,49.34],[3.85,49.35],[3.86,49.35],[3.85,49.36],[3.86,49.37],[3.86,49.38],[3.9,49.39],[3.91,49.4],[3.92,49.41],[3.96,49.38],[3.99,49.38],[4.01,49.37],[4.01,49.36],[4.04,49.36],[4.04,49.38],[4.04,49.4],[4.05,49.41],[4.05,49.41],[4.04,49.42],[4.04,49.42],[4.04,49.44],[4.05,49.45],[4.06,49.45],[4.07,49.45],[4.04,49.47],[4.04,49.51],[4.06,49.51],[4.06,49.52],[4.07,49.52],[4.08,49.54],[4.07,49.54],[4.05,49.55],[4.05,49.55],[4.06,49.55],[4.08,49.57],[4.06,49.57],[4.06,49.59],[4.06,49.59],[4.05,49.6],[4.03,49.62],[4.04,49.63],[4.04,49.64],[4.05,49.64],[4.05,49.63],[4.07,49.64],[4.1,49.63],[4.12,49.63],[4.12,49.64],[4.12,49.65],[4.12,49.66],[4.13,49.68],[4.15,49.68],[4.14,49.69],[4.15,49.69],[4.19,49.7],[4.18,49.7],[4.19,49.72],[4.21,49.72],[4.23,49.73],[4.23,49.73],[4.23,49.75],[4.25,49.76],[4.24,49.77],[4.22,49.77],[4.21,49.77],[4.21,49.78],[4.22,49.79],[4.23,49.79],[4.22,49.81],[4.21,49.81],[4.22,49.83],[4.23,49.84],[4.23,49.85],[4.25,49.86],[4.25,49.86],[4.26,49.9],[4.24,49.9],[4.23,49.91],[4.22,49.91],[4.22,49.92],[4.22,49.93],[4.23,49.96],[4.26,49.96],[4.29,49.96],[4.31,49.97],[4.32,49.96],[4.34,49.96],[4.35,49.95],[4.38,49.95],[4.39,49.95],[4.42,49.95],[4.45,49.94],[4.48,49.95],[4.51,49.95],[4.52,49.95],[4.54,49.97],[4.56,49.97],[4.57,49.97],[4.58,49.98],[4.6,49.99],[4.63,49.99],[4.67,50],[4.69,50],[4.69,50],[4.69,50.01],[4.69,50.03],[4.7,50.04],[4.7,50.06],[4.69,50.06],[4.68,50.07],[4.7,50.1],[4.71,50.1],[4.72,50.1],[4.75,50.11],[4.75,50.12],[4.76,50.12],[4.77,50.14],[4.78,50.14],[4.8,50.15],[4.82,50.17],[4.83,50.16]]]},"properties":{"id":2,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.62,50.37],[1.63,50.36],[1.63,50.36],[1.64,50.35],[1.65,50.34],[1.65,50.34],[1.66,50.33],[1.66,50.33],[1.68,50.33],[1.69,50.34],[1.69,50.34],[1.73,50.35],[1.74,50.35],[1.76,50.36],[1.76,50.36],[1.8,50.36],[1.83,50.35],[1.85,50.34],[1.85,50.34],[1.87,50.33],[1.88,50.32],[1.88,50.32],[1.9,50.32],[1.9,50.31],[1.92,50.31],[1.94,50.33],[1.95,50.33],[1.96,50.33],[1.96,50.32],[1.96,50.31],[1.93,50.3],[1.95,50.29],[1.95,50.29],[1.96,50.29],[1.97,50.28],[1.99,50.28],[2,50.27],[2.01,50.27],[2.03,50.27],[2.05,50.26],[2.06,50.26],[2.08,50.25],[2.06,50.24],[2.06,50.23],[2.07,50.23],[2.07,50.23],[2.08,50.22],[2.09,50.2],[2.1,50.21],[2.11,50.2],[2.12,50.21],[2.14,50.21],[2.14,50.2],[2.15,50.19],[2.17,50.21],[2.18,50.21],[2.18,50.21],[2.19,50.21],[2.2,50.21],[2.2,50.22],[2.22,50.22],[2.22,50.21],[2.25,50.21],[2.27,50.23],[2.3,50.21],[2.32,50.22],[2.32,50.22],[2.33,50.21],[2.33,50.22],[2.32,50.23],[2.32,50.23],[2.31,50.23],[2.33,50.24],[2.36,50.21],[2.37,50.21],[2.38,50.23],[2.39,50.22],[2.41,50.23],[2.42,50.23],[2.44,50.23],[2.45,50.23],[2.46,50.22],[2.48,50.21],[2.49,50.21],[2.49,50.2],[2.5,50.2],[2.5,50.19],[2.47,50.19],[2.45,50.18],[2.44,50.18],[2.41,50.17],[2.41,50.16],[2.4,50.16],[2.4,50.16],[2.39,50.16],[2.39,50.15],[2.39,50.14],[2.38,50.11],[2.39,50.11],[2.4,50.11],[2.41,50.1],[2.42,50.09],[2.43,50.09],[2.46,50.13],[2.47,50.13],[2.48,50.14],[2.51,50.14],[2.53,50.12],[2.55,50.12],[2.54,50.13],[2.55,50.14],[2.55,50.14],[2.56,50.14],[2.57,50.14],[2.58,50.14],[2.59,50.14],[2.57,50.12],[2.57,50.12],[2.58,50.11],[2.59,50.11],[2.59,50.11],[2.62,50.11],[2.63,50.11],[2.63,50.11],[2.64,50.1],[2.65,50.09],[2.66,50.1],[2.67,50.09],[2.68,50.1],[2.69,50.09],[2.7,50.08],[2.72,50.09],[2.7,50.1],[2.7,50.11],[2.71,50.11],[2.71,50.13],[2.71,50.13],[2.73,50.13],[2.75,50.11],[2.76,50.11],[2.78,50.11],[2.78,50.11],[2.78,50.1],[2.78,50.09],[2.77,50.08],[2.76,50.07],[2.76,50.06],[2.74,50.05],[2.75,50.04],[2.76,50.04],[2.78,50.04],[2.78,50.05],[2.79,50.05],[2.81,50.06],[2.81,50.06],[2.82,50.07],[2.83,50.06],[2.84,50.07],[2.86,50.08],[2.86,50.06],[2.86,50.06],[2.88,50.04],[2.87,50.03],[2.85,50.03],[2.86,50.03],[2.86,50.02],[2.87,50.02],[2.88,50.02],[2.88,50.03],[2.9,50.04],[2.92,50.04],[2.92,50.05],[2.93,50.04],[2.93,50.05],[2.94,50.05],[2.95,50.05],[2.97,50.05],[2.97,50.04],[3.01,50.05],[3.01,50.06],[3.02,50.05],[3.03,50.06],[3.07,50.05],[3.09,50.05],[3.1,50.05],[3.11,50.04],[3.11,50.03],[3.12,50.02],[3.15,50.03],[3.15,50.02],[3.17,50.02],[3.17,50.01],[3.2,50.02],[3.23,50.03],[3.23,50.03],[3.24,50.03],[3.26,50.03],[3.26,50.03],[3.27,50.03],[3.28,50.02],[3.27,50.02],[3.28,50.02],[3.31,50.02],[3.33,50.02],[3.34,50.02],[3.34,50.03],[3.35,50.03],[3.35,50.03],[3.35,50.04],[3.37,50.04],[3.39,50.03],[3.4,50.03],[3.41,50.03],[3.42,50.03],[3.43,50.02],[3.43,50.02],[3.49,50.02],[3.51,50.04],[3.53,50.04],[3.54,50.05],[3.56,50.05],[3.57,50.05],[3.58,50.05],[3.59,50.04],[3.61,50.03],[3.63,50.03],[3.64,50.04],[3.66,50.03],[3.66,50.04],[3.65,50.04],[3.66,50.05],[3.71,50.07],[3.72,50.07],[3.75,50.05],[3.78,50.05],[3.78,50.05],[3.8,50.05],[3.82,50.04],[3.84,50.05],[3.85,50.04],[3.87,50.04],[3.88,50.03],[3.88,50.03],[3.88,50.03],[3.89,50.02],[3.89,50.01],[3.92,50.03],[3.95,50.03],[3.95,50.03],[3.98,50.04],[3.99,50.04],[4,50.03],[3.98,50],[3.98,49.99],[4.01,50],[4.01,49.99],[4.02,49.99],[4.03,49.98],[4.04,49.99],[4.06,49.99],[4.08,49.98],[4.08,49.97],[4.1,49.97],[4.14,49.98],[4.15,49.98],[4.17,49.98],[4.2,49.97],[4.2,49.95],[4.23,49.96],[4.22,49.93],[4.22,49.92],[4.22,49.91],[4.23,49.91],[4.24,49.9],[4.26,49.9],[4.25,49.86],[4.25,49.86],[4.23,49.85],[4.23,49.84],[4.22,49.83],[4.21,49.81],[4.22,49.81],[4.23,49.79],[4.22,49.79],[4.21,49.78],[4.21,49.77],[4.22,49.77],[4.24,49.77],[4.25,49.76],[4.23,49.75],[4.23,49.73],[4.23,49.73],[4.21,49.72],[4.19,49.72],[4.18,49.7],[4.19,49.7],[4.15,49.69],[4.14,49.69],[4.15,49.68],[4.13,49.68],[4.12,49.66],[4.12,49.65],[4.12,49.64],[4.12,49.63],[4.1,49.63],[4.07,49.64],[4.05,49.63],[4.05,49.64],[4.04,49.64],[4.04,49.63],[4.03,49.62],[4.05,49.6],[4.06,49.59],[4.06,49.59],[4.06,49.57],[4.08,49.57],[4.06,49.55],[4.05,49.55],[4.05,49.55],[4.07,49.54],[4.08,49.54],[4.07,49.52],[4.06,49.52],[4.06,49.51],[4.04,49.51],[4.04,49.47],[4.07,49.45],[4.06,49.45],[4.05,49.45],[4.04,49.44],[4.04,49.42],[4.04,49.42],[4.05,49.41],[4.05,49.41],[4.04,49.4],[4.04,49.38],[4.04,49.36],[4.01,49.36],[4.01,49.37],[3.99,49.38],[3.96,49.38],[3.92,49.41],[3.91,49.4],[3.9,49.39],[3.86,49.38],[3.86,49.37],[3.85,49.36],[3.86,49.35],[3.85,49.35],[3.85,49.34],[3.83,49.35],[3.82,49.36],[3.8,49.36],[3.78,49.35],[3.78,49.36],[3.76,49.35],[3.74,49.35],[3.74,49.34],[3.74,49.34],[3.71,49.33],[3.69,49.33],[3.67,49.32],[3.66,49.32],[3.65,49.32],[3.64,49.3],[3.64,49.3],[3.64,49.3],[3.66,49.29],[3.66,49.29],[3.65,49.28],[3.67,49.27],[3.66,49.26],[3.67,49.24],[3.68,49.24],[3.68,49.24],[3.67,49.22],[3.65,49.22],[3.65,49.21],[3.66,49.21],[3.68,49.21],[3.68,49.2],[3.7,49.21],[3.7,49.2],[3.7,49.19],[3.71,49.18],[3.73,49.18],[3.74,49.18],[3.75,49.18],[3.75,49.16],[3.74,49.16],[3.72,49.15],[3.7,49.14],[3.69,49.15],[3.68,49.15],[3.65,49.15],[3.62,49.15],[3.62,49.15],[3.62,49.14],[3.61,49.13],[3.61,49.13],[3.6,49.12],[3.6,49.12],[3.61,49.12],[3.62,49.11],[3.63,49.09],[3.64,49.08],[3.63,49.07],[3.61,49.07],[3.6,49.06],[3.59,49.06],[3.59,49.04],[3.59,49.03],[3.61,49.03],[3.62,49.04],[3.63,49.04],[3.64,49.04],[3.65,49.04],[3.66,49.04],[3.68,49.02],[3.67,49.01],[3.64,49],[3.63,48.99],[3.62,48.97],[3.6,48.97],[3.59,48.96],[3.6,48.95],[3.6,48.95],[3.57,48.94],[3.57,48.92],[3.57,48.91],[3.55,48.92],[3.53,48.91],[3.51,48.89],[3.5,48.87],[3.48,48.87],[3.49,48.86],[3.49,48.85],[3.47,48.85],[3.46,48.84],[3.45,48.84],[3.45,48.86],[3.43,48.86],[3.42,48.87],[3.41,48.86],[3.4,48.87],[3.41,48.88],[3.39,48.87],[3.38,48.87],[3.38,48.89],[3.37,48.9],[3.38,48.91],[3.37,48.93],[3.36,48.92],[3.33,48.91],[3.31,48.92],[3.31,48.94],[3.3,48.95],[3.28,48.94],[3.27,48.94],[3.27,48.94],[3.26,48.94],[3.26,48.95],[3.25,48.97],[3.23,48.98],[3.23,48.99],[3.22,48.99],[3.22,48.99],[3.21,48.99],[3.21,49],[3.2,49.01],[3.17,49.01],[3.16,49.02],[3.16,49.03],[3.18,49.03],[3.18,49.04],[3.19,49.05],[3.19,49.05],[3.18,49.06],[3.18,49.06],[3.17,49.08],[3.16,49.08],[3.16,49.09],[3.17,49.1],[3.15,49.1],[3.14,49.11],[3.12,49.11],[3.12,49.11],[3.11,49.11],[3.08,49.11],[3.07,49.12],[3.06,49.1],[3.06,49.1],[3.07,49.09],[3.03,49.09],[3.03,49.09],[3.01,49.09],[2.99,49.08],[2.99,49.07],[2.97,49.07],[2.97,49.09],[2.97,49.09],[2.95,49.09],[2.95,49.09],[2.94,49.08],[2.94,49.08],[2.93,49.08],[2.92,49.08],[2.9,49.09],[2.89,49.08],[2.89,49.08],[2.87,49.07],[2.86,49.07],[2.84,49.08],[2.84,49.08],[2.83,49.09],[2.81,49.1],[2.79,49.09],[2.78,49.09],[2.79,49.08],[2.77,49.08],[2.79,49.08],[2.76,49.06],[2.74,49.06],[2.72,49.08],[2.7,49.06],[2.69,49.07],[2.69,49.08],[2.68,49.09],[2.65,49.1],[2.64,49.1],[2.63,49.11],[2.62,49.09],[2.61,49.09],[2.61,49.09],[2.59,49.08],[2.58,49.08],[2.58,49.09],[2.56,49.1],[2.55,49.12],[2.55,49.12],[2.54,49.12],[2.54,49.12],[2.53,49.12],[2.53,49.1],[2.49,49.11],[2.5,49.12],[2.5,49.12],[2.48,49.13],[2.48,49.13],[2.46,49.14],[2.46,49.14],[2.46,49.14],[2.44,49.13],[2.44,49.15],[2.41,49.15],[2.39,49.15],[2.37,49.16],[2.36,49.15],[2.32,49.18],[2.3,49.18],[2.3,49.18],[2.29,49.17],[2.29,49.16],[2.27,49.16],[2.26,49.16],[2.26,49.15],[2.24,49.15],[2.22,49.15],[2.23,49.17],[2.22,49.18],[2.21,49.17],[2.19,49.17],[2.18,49.18],[2.18,49.17],[2.17,49.16],[2.16,49.17],[2.16,49.17],[2.16,49.18],[2.15,49.18],[2.14,49.19],[2.14,49.18],[2.13,49.19],[2.12,49.19],[2.1,49.19],[2.09,49.21],[2.08,49.21],[2.08,49.21],[2.07,49.2],[2.05,49.2],[2.04,49.19],[2.02,49.19],[2,49.18],[1.97,49.18],[1.96,49.17],[1.95,49.17],[1.94,49.17],[1.93,49.17],[1.88,49.16],[1.88,49.18],[1.85,49.17],[1.83,49.17],[1.84,49.17],[1.83,49.18],[1.82,49.18],[1.8,49.19],[1.79,49.18],[1.78,49.19],[1.76,49.17],[1.74,49.18],[1.74,49.19],[1.73,49.19],[1.72,49.2],[1.72,49.2],[1.72,49.21],[1.73,49.21],[1.74,49.22],[1.74,49.22],[1.71,49.24],[1.7,49.23],[1.7,49.23],[1.7,49.25],[1.71,49.26],[1.73,49.27],[1.74,49.27],[1.75,49.27],[1.75,49.27],[1.77,49.26],[1.77,49.25],[1.79,49.25],[1.79,49.25],[1.8,49.27],[1.79,49.28],[1.8,49.29],[1.78,49.29],[1.78,49.29],[1.77,49.29],[1.77,49.31],[1.77,49.32],[1.77,49.34],[1.76,49.36],[1.76,49.37],[1.75,49.37],[1.74,49.38],[1.72,49.4],[1.74,49.41],[1.73,49.41],[1.72,49.4],[1.71,49.41],[1.72,49.42],[1.73,49.44],[1.73,49.44],[1.73,49.44],[1.74,49.45],[1.75,49.45],[1.75,49.46],[1.77,49.47],[1.78,49.47],[1.78,49.49],[1.78,49.49],[1.79,49.49],[1.79,49.51],[1.77,49.51],[1.76,49.51],[1.75,49.49],[1.74,49.49],[1.74,49.5],[1.73,49.5],[1.72,49.5],[1.72,49.51],[1.74,49.52],[1.75,49.54],[1.73,49.54],[1.73,49.56],[1.71,49.58],[1.7,49.57],[1.69,49.58],[1.72,49.58],[1.72,49.59],[1.72,49.59],[1.71,49.59],[1.71,49.6],[1.69,49.6],[1.72,49.61],[1.72,49.62],[1.72,49.63],[1.7,49.64],[1.71,49.65],[1.72,49.66],[1.72,49.67],[1.75,49.68],[1.75,49.7],[1.74,49.7],[1.73,49.7],[1.72,49.68],[1.71,49.68],[1.69,49.69],[1.71,49.71],[1.71,49.71],[1.72,49.71],[1.71,49.73],[1.72,49.73],[1.73,49.73],[1.75,49.74],[1.74,49.75],[1.75,49.76],[1.76,49.76],[1.78,49.76],[1.78,49.77],[1.77,49.78],[1.76,49.78],[1.74,49.8],[1.73,49.81],[1.73,49.84],[1.72,49.85],[1.72,49.86],[1.72,49.87],[1.71,49.87],[1.71,49.89],[1.71,49.89],[1.7,49.89],[1.69,49.9],[1.68,49.91],[1.68,49.91],[1.68,49.92],[1.65,49.93],[1.62,49.93],[1.6,49.95],[1.59,49.96],[1.58,49.96],[1.57,49.97],[1.56,49.98],[1.53,50],[1.51,50.01],[1.5,50.02],[1.49,50.02],[1.47,50.03],[1.46,50.04],[1.45,50.04],[1.46,50.06],[1.45,50.06],[1.45,50.07],[1.43,50.07],[1.42,50.07],[1.41,50.06],[1.38,50.07],[1.39,50.08],[1.43,50.09],[1.45,50.11],[1.48,50.17],[1.5,50.19],[1.51,50.2],[1.52,50.21],[1.55,50.22],[1.57,50.22],[1.57,50.22],[1.57,50.22],[1.57,50.21],[1.57,50.21],[1.58,50.21],[1.58,50.21],[1.58,50.21],[1.58,50.2],[1.58,50.2],[1.58,50.2],[1.59,50.2],[1.6,50.2],[1.6,50.2],[1.61,50.19],[1.64,50.19],[1.66,50.18],[1.66,50.18],[1.65,50.18],[1.65,50.19],[1.67,50.19],[1.66,50.19],[1.65,50.19],[1.64,50.19],[1.63,50.19],[1.63,50.19],[1.64,50.2],[1.62,50.2],[1.62,50.2],[1.62,50.2],[1.61,50.2],[1.61,50.21],[1.62,50.21],[1.62,50.2],[1.62,50.2],[1.62,50.2],[1.62,50.21],[1.62,50.21],[1.63,50.21],[1.64,50.21],[1.65,50.21],[1.66,50.21],[1.65,50.21],[1.64,50.21],[1.64,50.21],[1.65,50.22],[1.65,50.22],[1.63,50.22],[1.63,50.21],[1.62,50.21],[1.62,50.22],[1.6,50.24],[1.6,50.24],[1.6,50.24],[1.6,50.24],[1.59,50.25],[1.58,50.25],[1.59,50.25],[1.58,50.25],[1.58,50.25],[1.59,50.26],[1.59,50.26],[1.59,50.26],[1.58,50.26],[1.56,50.26],[1.56,50.26],[1.55,50.26],[1.54,50.26],[1.54,50.27],[1.54,50.27],[1.54,50.27],[1.54,50.27],[1.54,50.28],[1.54,50.29],[1.55,50.33],[1.55,50.34],[1.55,50.36],[1.55,50.36],[1.56,50.37],[1.57,50.37],[1.57,50.36],[1.57,50.36],[1.58,50.36],[1.58,50.37],[1.59,50.37],[1.6,50.37],[1.61,50.37],[1.62,50.37]]]},"properties":{"id":3,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.46,50.06],[1.45,50.04],[1.46,50.04],[1.47,50.03],[1.49,50.02],[1.5,50.02],[1.51,50.01],[1.53,50],[1.56,49.98],[1.57,49.97],[1.58,49.96],[1.59,49.96],[1.6,49.95],[1.62,49.93],[1.65,49.93],[1.68,49.92],[1.68,49.91],[1.68,49.91],[1.69,49.9],[1.7,49.89],[1.71,49.89],[1.71,49.89],[1.71,49.87],[1.72,49.87],[1.72,49.86],[1.72,49.85],[1.73,49.84],[1.73,49.81],[1.74,49.8],[1.76,49.78],[1.77,49.78],[1.78,49.77],[1.78,49.76],[1.76,49.76],[1.75,49.76],[1.74,49.75],[1.75,49.74],[1.73,49.73],[1.72,49.73],[1.71,49.73],[1.72,49.71],[1.71,49.71],[1.71,49.71],[1.69,49.69],[1.71,49.68],[1.72,49.68],[1.73,49.7],[1.74,49.7],[1.75,49.7],[1.75,49.68],[1.72,49.67],[1.72,49.66],[1.71,49.65],[1.7,49.64],[1.72,49.63],[1.72,49.62],[1.72,49.61],[1.69,49.6],[1.71,49.6],[1.71,49.59],[1.72,49.59],[1.72,49.59],[1.72,49.58],[1.69,49.58],[1.7,49.57],[1.71,49.58],[1.73,49.56],[1.73,49.54],[1.75,49.54],[1.74,49.52],[1.72,49.51],[1.72,49.5],[1.73,49.5],[1.74,49.5],[1.74,49.49],[1.75,49.49],[1.76,49.51],[1.77,49.51],[1.79,49.51],[1.79,49.49],[1.78,49.49],[1.78,49.49],[1.78,49.47],[1.77,49.47],[1.75,49.46],[1.75,49.45],[1.74,49.45],[1.73,49.44],[1.73,49.44],[1.73,49.44],[1.72,49.42],[1.71,49.41],[1.72,49.4],[1.73,49.41],[1.74,49.41],[1.72,49.4],[1.74,49.38],[1.75,49.37],[1.76,49.37],[1.76,49.36],[1.77,49.34],[1.77,49.32],[1.77,49.31],[1.77,49.29],[1.78,49.29],[1.78,49.29],[1.8,49.29],[1.79,49.28],[1.8,49.27],[1.79,49.25],[1.79,49.25],[1.77,49.25],[1.77,49.26],[1.75,49.27],[1.75,49.27],[1.74,49.27],[1.73,49.27],[1.71,49.26],[1.7,49.25],[1.7,49.23],[1.7,49.23],[1.7,49.23],[1.68,49.21],[1.67,49.21],[1.68,49.2],[1.67,49.19],[1.67,49.18],[1.67,49.18],[1.67,49.17],[1.66,49.16],[1.66,49.15],[1.65,49.14],[1.66,49.13],[1.65,49.13],[1.62,49.1],[1.62,49.09],[1.62,49.09],[1.61,49.08],[1.6,49.08],[1.59,49.08],[1.57,49.08],[1.56,49.07],[1.55,49.07],[1.52,49.07],[1.52,49.08],[1.51,49.08],[1.51,49.08],[1.5,49.06],[1.49,49.05],[1.48,49.05],[1.46,49.06],[1.45,49.05],[1.45,49.05],[1.45,49.04],[1.46,49.04],[1.46,49.03],[1.48,49.01],[1.47,49.01],[1.48,49.01],[1.47,48.99],[1.46,48.99],[1.47,48.97],[1.48,48.98],[1.49,48.98],[1.51,48.98],[1.51,48.98],[1.52,48.98],[1.5,48.97],[1.5,48.95],[1.51,48.95],[1.5,48.94],[1.49,48.94],[1.48,48.94],[1.46,48.94],[1.46,48.93],[1.45,48.92],[1.46,48.91],[1.46,48.9],[1.47,48.9],[1.47,48.88],[1.46,48.87],[1.44,48.87],[1.43,48.87],[1.42,48.86],[1.4,48.86],[1.4,48.86],[1.39,48.85],[1.36,48.83],[1.36,48.82],[1.38,48.79],[1.37,48.78],[1.36,48.78],[1.36,48.78],[1.33,48.76],[1.3,48.77],[1.28,48.76],[1.27,48.76],[1.26,48.76],[1.25,48.77],[1.25,48.77],[1.22,48.77],[1.23,48.76],[1.22,48.76],[1.19,48.77],[1.16,48.77],[1.15,48.78],[1.15,48.79],[1.13,48.79],[1.12,48.79],[1.12,48.78],[1.12,48.77],[1.12,48.77],[1.11,48.75],[1.09,48.75],[1.09,48.76],[1.07,48.75],[1.06,48.76],[1.04,48.74],[1.04,48.73],[1.03,48.73],[1.02,48.73],[1.02,48.73],[0.99,48.73],[0.98,48.73],[0.96,48.73],[0.95,48.72],[0.92,48.71],[0.92,48.71],[0.9,48.71],[0.89,48.72],[0.88,48.72],[0.87,48.7],[0.86,48.69],[0.84,48.68],[0.83,48.68],[0.81,48.67],[0.8,48.67],[0.78,48.67],[0.77,48.67],[0.76,48.68],[0.76,48.69],[0.77,48.69],[0.77,48.7],[0.75,48.7],[0.73,48.7],[0.73,48.71],[0.74,48.72],[0.76,48.72],[0.76,48.73],[0.78,48.74],[0.75,48.76],[0.76,48.77],[0.76,48.77],[0.74,48.78],[0.73,48.79],[0.72,48.79],[0.71,48.79],[0.7,48.79],[0.69,48.79],[0.66,48.81],[0.65,48.81],[0.63,48.83],[0.61,48.83],[0.63,48.86],[0.62,48.85],[0.61,48.86],[0.61,48.87],[0.61,48.88],[0.59,48.87],[0.59,48.88],[0.6,48.88],[0.6,48.89],[0.58,48.89],[0.55,48.87],[0.52,48.88],[0.5,48.88],[0.47,48.89],[0.46,48.89],[0.46,48.88],[0.44,48.88],[0.45,48.89],[0.44,48.89],[0.43,48.89],[0.42,48.89],[0.42,48.9],[0.39,48.91],[0.39,48.93],[0.4,48.93],[0.43,48.97],[0.43,48.99],[0.43,49],[0.45,49.02],[0.42,49.03],[0.41,49.03],[0.38,49.04],[0.38,49.05],[0.38,49.05],[0.37,49.05],[0.37,49.05],[0.38,49.06],[0.38,49.07],[0.39,49.08],[0.41,49.08],[0.42,49.07],[0.42,49.09],[0.4,49.09],[0.41,49.09],[0.41,49.1],[0.4,49.1],[0.4,49.1],[0.41,49.12],[0.41,49.13],[0.42,49.13],[0.43,49.14],[0.43,49.15],[0.41,49.15],[0.41,49.15],[0.39,49.15],[0.39,49.16],[0.39,49.18],[0.39,49.19],[0.39,49.21],[0.39,49.21],[0.39,49.22],[0.37,49.22],[0.34,49.23],[0.32,49.25],[0.32,49.25],[0.34,49.25],[0.36,49.26],[0.38,49.26],[0.38,49.29],[0.37,49.3],[0.35,49.3],[0.32,49.28],[0.31,49.28],[0.32,49.3],[0.32,49.31],[0.3,49.31],[0.31,49.32],[0.32,49.34],[0.31,49.36],[0.3,49.37],[0.31,49.39],[0.3,49.41],[0.3,49.43],[0.29,49.43],[0.29,49.44],[0.29,49.44],[0.29,49.44],[0.28,49.44],[0.27,49.44],[0.25,49.45],[0.23,49.45],[0.22,49.45],[0.21,49.45],[0.21,49.45],[0.21,49.45],[0.21,49.45],[0.19,49.45],[0.19,49.45],[0.17,49.45],[0.17,49.45],[0.17,49.45],[0.16,49.45],[0.16,49.46],[0.15,49.46],[0.15,49.47],[0.12,49.47],[0.1,49.48],[0.1,49.48],[0.11,49.48],[0.11,49.48],[0.12,49.47],[0.12,49.47],[0.13,49.47],[0.15,49.47],[0.16,49.47],[0.16,49.47],[0.17,49.47],[0.17,49.47],[0.18,49.47],[0.17,49.47],[0.17,49.47],[0.17,49.48],[0.16,49.48],[0.15,49.47],[0.14,49.47],[0.13,49.47],[0.12,49.48],[0.11,49.48],[0.11,49.48],[0.11,49.48],[0.11,49.49],[0.11,49.48],[0.1,49.48],[0.1,49.49],[0.09,49.5],[0.07,49.5],[0.07,49.51],[0.07,49.52],[0.07,49.53],[0.08,49.55],[0.08,49.55],[0.09,49.56],[0.09,49.56],[0.1,49.57],[0.1,49.58],[0.1,49.58],[0.14,49.62],[0.15,49.65],[0.15,49.65],[0.15,49.65],[0.15,49.65],[0.15,49.65],[0.15,49.66],[0.15,49.66],[0.14,49.67],[0.12,49.67],[0.12,49.67],[0.12,49.66],[0.12,49.66],[0.12,49.67],[0.13,49.67],[0.14,49.67],[0.15,49.67],[0.15,49.66],[0.16,49.66],[0.16,49.67],[0.16,49.67],[0.16,49.69],[0.17,49.69],[0.17,49.69],[0.18,49.7],[0.18,49.7],[0.18,49.7],[0.19,49.71],[0.19,49.71],[0.19,49.71],[0.2,49.71],[0.2,49.71],[0.21,49.71],[0.21,49.71],[0.22,49.72],[0.24,49.72],[0.24,49.72],[0.25,49.72],[0.26,49.73],[0.27,49.73],[0.28,49.74],[0.29,49.74],[0.3,49.74],[0.31,49.74],[0.32,49.74],[0.33,49.75],[0.36,49.76],[0.36,49.76],[0.37,49.77],[0.38,49.77],[0.43,49.79],[0.44,49.79],[0.48,49.81],[0.49,49.81],[0.49,49.82],[0.5,49.82],[0.51,49.82],[0.52,49.82],[0.52,49.82],[0.53,49.83],[0.54,49.84],[0.54,49.84],[0.58,49.85],[0.59,49.85],[0.6,49.85],[0.61,49.86],[0.62,49.86],[0.64,49.86],[0.66,49.87],[0.67,49.87],[0.67,49.87],[0.69,49.87],[0.71,49.87],[0.71,49.87],[0.73,49.87],[0.77,49.87],[0.8,49.88],[0.83,49.89],[0.84,49.89],[0.86,49.89],[0.87,49.89],[0.93,49.91],[0.96,49.92],[0.97,49.92],[0.99,49.92],[1,49.92],[1.02,49.92],[1.06,49.92],[1.07,49.93],[1.07,49.93],[1.08,49.93],[1.09,49.93],[1.09,49.93],[1.08,49.94],[1.09,49.94],[1.09,49.93],[1.11,49.94],[1.12,49.94],[1.16,49.95],[1.18,49.97],[1.19,49.97],[1.2,49.97],[1.21,49.97],[1.2,49.98],[1.21,49.98],[1.2,49.98],[1.21,49.98],[1.22,49.99],[1.23,49.99],[1.24,49.99],[1.24,49.99],[1.25,50],[1.25,50],[1.26,50],[1.28,50.02],[1.29,50.02],[1.29,50.02],[1.29,50.03],[1.31,50.03],[1.33,50.04],[1.33,50.05],[1.35,50.06],[1.35,50.06],[1.36,50.06],[1.37,50.06],[1.38,50.06],[1.38,50.07],[1.41,50.06],[1.42,50.07],[1.43,50.07],[1.45,50.07],[1.45,50.06],[1.46,50.06]]],[[[0.13,49.67],[0.13,49.66],[0.13,49.67],[0.13,49.67]]]]},"properties":{"id":4,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.5,48.94],[1.51,48.93],[1.51,48.93],[1.51,48.92],[1.52,48.92],[1.54,48.92],[1.54,48.91],[1.54,48.91],[1.56,48.89],[1.55,48.87],[1.56,48.86],[1.56,48.87],[1.57,48.86],[1.58,48.86],[1.58,48.84],[1.59,48.84],[1.59,48.84],[1.59,48.84],[1.58,48.83],[1.59,48.82],[1.59,48.81],[1.58,48.81],[1.58,48.79],[1.59,48.77],[1.58,48.77],[1.58,48.76],[1.61,48.76],[1.62,48.75],[1.62,48.74],[1.62,48.74],[1.59,48.71],[1.59,48.71],[1.58,48.7],[1.58,48.7],[1.61,48.69],[1.61,48.68],[1.6,48.66],[1.62,48.65],[1.64,48.65],[1.64,48.64],[1.65,48.64],[1.65,48.63],[1.66,48.63],[1.66,48.62],[1.67,48.61],[1.68,48.62],[1.69,48.62],[1.68,48.62],[1.69,48.61],[1.69,48.61],[1.72,48.61],[1.72,48.61],[1.7,48.58],[1.71,48.58],[1.71,48.58],[1.74,48.57],[1.75,48.58],[1.76,48.57],[1.76,48.56],[1.78,48.55],[1.79,48.55],[1.78,48.53],[1.78,48.51],[1.79,48.5],[1.79,48.49],[1.8,48.48],[1.79,48.48],[1.8,48.47],[1.8,48.47],[1.81,48.47],[1.83,48.47],[1.85,48.45],[1.86,48.44],[1.87,48.44],[1.9,48.44],[1.91,48.45],[1.92,48.45],[1.92,48.46],[1.93,48.45],[1.93,48.44],[1.94,48.44],[1.94,48.44],[1.94,48.42],[1.93,48.41],[1.93,48.41],[1.93,48.4],[1.95,48.41],[1.96,48.4],[1.98,48.4],[1.97,48.38],[1.98,48.38],[1.99,48.36],[1.98,48.36],[1.97,48.34],[1.98,48.33],[1.98,48.32],[1.98,48.31],[1.96,48.31],[1.96,48.3],[1.98,48.29],[2.01,48.29],[2.03,48.29],[2.04,48.29],[2.05,48.29],[2.05,48.3],[2.09,48.29],[2.1,48.31],[2.11,48.31],[2.11,48.3],[2.16,48.3],[2.16,48.3],[2.15,48.31],[2.15,48.31],[2.17,48.31],[2.17,48.32],[2.18,48.31],[2.18,48.32],[2.21,48.34],[2.21,48.34],[2.23,48.33],[2.25,48.33],[2.24,48.32],[2.25,48.32],[2.25,48.3],[2.25,48.3],[2.27,48.32],[2.29,48.31],[2.3,48.31],[2.31,48.33],[2.32,48.33],[2.33,48.33],[2.33,48.33],[2.36,48.31],[2.37,48.31],[2.37,48.31],[2.4,48.32],[2.4,48.32],[2.42,48.3],[2.42,48.27],[2.42,48.26],[2.43,48.26],[2.44,48.25],[2.44,48.25],[2.45,48.25],[2.47,48.26],[2.48,48.25],[2.48,48.24],[2.48,48.24],[2.51,48.24],[2.51,48.23],[2.52,48.23],[2.51,48.21],[2.52,48.21],[2.52,48.2],[2.52,48.19],[2.52,48.19],[2.51,48.18],[2.51,48.16],[2.51,48.16],[2.48,48.16],[2.47,48.15],[2.47,48.15],[2.46,48.14],[2.44,48.13],[2.44,48.13],[2.46,48.12],[2.46,48.13],[2.48,48.13],[2.52,48.13],[2.52,48.13],[2.54,48.14],[2.57,48.14],[2.58,48.13],[2.6,48.13],[2.64,48.14],[2.66,48.12],[2.67,48.12],[2.68,48.13],[2.71,48.12],[2.72,48.14],[2.76,48.15],[2.75,48.15],[2.74,48.17],[2.75,48.16],[2.76,48.16],[2.77,48.16],[2.78,48.17],[2.79,48.17],[2.8,48.17],[2.81,48.16],[2.81,48.16],[2.8,48.15],[2.8,48.14],[2.8,48.13],[2.82,48.13],[2.85,48.14],[2.87,48.16],[2.95,48.16],[2.96,48.15],[2.98,48.15],[2.99,48.15],[3,48.14],[3,48.14],[3.01,48.14],[3.02,48.14],[3.03,48.13],[3.03,48.13],[3.02,48.12],[3.04,48.12],[3.04,48.09],[3.05,48.09],[3.05,48.09],[3.05,48.07],[3.06,48.06],[3.1,48.05],[3.09,48.05],[3.1,48.04],[3.12,48.03],[3.1,48.02],[3.1,48.02],[3.11,48.01],[3.12,48.01],[3.12,48],[3.12,47.99],[3.13,47.99],[3.12,47.99],[3.13,47.98],[3.13,47.97],[3.11,47.96],[3.11,47.95],[3.1,47.95],[3.09,47.94],[3.08,47.94],[3.08,47.93],[3.07,47.93],[3.05,47.92],[3.05,47.91],[3.01,47.9],[3.02,47.9],[3.01,47.9],[3.01,47.88],[2.99,47.87],[3.02,47.86],[3.03,47.84],[3.03,47.84],[3.01,47.83],[3.01,47.83],[3.02,47.82],[3.02,47.81],[3.02,47.81],[3.03,47.8],[3.02,47.79],[2.99,47.79],[2.95,47.77],[2.95,47.77],[2.94,47.77],[2.94,47.76],[2.91,47.77],[2.9,47.76],[2.86,47.76],[2.85,47.76],[2.86,47.75],[2.85,47.73],[2.85,47.73],[2.85,47.72],[2.86,47.71],[2.88,47.72],[2.88,47.71],[2.88,47.7],[2.89,47.7],[2.92,47.68],[2.92,47.67],[2.93,47.66],[2.94,47.66],[2.95,47.65],[2.94,47.64],[2.93,47.63],[2.94,47.61],[2.94,47.6],[2.95,47.59],[2.96,47.59],[2.96,47.57],[2.97,47.57],[2.98,47.57],[2.96,47.56],[2.96,47.56],[2.91,47.57],[2.91,47.56],[2.9,47.55],[2.88,47.55],[2.87,47.55],[2.86,47.55],[2.85,47.54],[2.85,47.54],[2.87,47.52],[2.89,47.51],[2.9,47.49],[2.91,47.47],[2.93,47.44],[2.93,47.43],[2.92,47.42],[2.92,47.41],[2.89,47.37],[2.87,47.34],[2.87,47.33],[2.88,47.32],[2.91,47.31],[2.94,47.29],[2.97,47.27],[2.98,47.26],[2.98,47.23],[3,47.2],[3.02,47.16],[3.02,47.16],[3.02,47.14],[3.03,47.13],[3.03,47.09],[3.02,47.08],[3.02,47.07],[3.02,47.06],[3.05,47.05],[3.06,47.05],[3.07,47.03],[3.07,47.01],[3.07,47],[3.06,46.98],[3.07,46.96],[3.08,46.96],[3.08,46.95],[3.07,46.94],[3.05,46.91],[3.06,46.9],[3.06,46.89],[3.07,46.85],[3.05,46.84],[3.06,46.83],[3.06,46.83],[3.04,46.81],[3.03,46.79],[3.03,46.79],[3.02,46.8],[3,46.8],[2.98,46.8],[2.96,46.8],[2.95,46.79],[2.93,46.8],[2.92,46.79],[2.91,46.79],[2.91,46.78],[2.9,46.78],[2.88,46.77],[2.88,46.76],[2.84,46.74],[2.85,46.73],[2.84,46.73],[2.83,46.74],[2.79,46.73],[2.78,46.72],[2.77,46.72],[2.77,46.72],[2.76,46.72],[2.76,46.72],[2.74,46.73],[2.73,46.75],[2.73,46.75],[2.7,46.74],[2.7,46.72],[2.69,46.72],[2.68,46.71],[2.68,46.7],[2.66,46.7],[2.65,46.69],[2.63,46.69],[2.62,46.69],[2.62,46.68],[2.63,46.67],[2.63,46.67],[2.62,46.66],[2.61,46.66],[2.61,46.67],[2.57,46.66],[2.57,46.65],[2.59,46.65],[2.6,46.64],[2.58,46.63],[2.59,46.62],[2.57,46.61],[2.58,46.61],[2.58,46.59],[2.6,46.6],[2.61,46.57],[2.61,46.56],[2.61,46.55],[2.61,46.55],[2.58,46.54],[2.54,46.52],[2.53,46.53],[2.52,46.53],[2.51,46.52],[2.5,46.52],[2.5,46.52],[2.5,46.53],[2.48,46.53],[2.47,46.53],[2.45,46.52],[2.44,46.53],[2.43,46.53],[2.41,46.52],[2.37,46.52],[2.35,46.51],[2.33,46.5],[2.32,46.49],[2.33,46.48],[2.33,46.47],[2.32,46.47],[2.31,46.48],[2.28,46.45],[2.28,46.43],[2.28,46.42],[2.26,46.42],[2.25,46.43],[2.22,46.42],[2.2,46.43],[2.18,46.42],[2.15,46.42],[2.14,46.42],[2.12,46.42],[2.1,46.41],[2.09,46.41],[2.08,46.41],[2.07,46.42],[2.05,46.42],[2.03,46.42],[2.02,46.43],[1.99,46.43],[1.99,46.44],[1.98,46.44],[1.93,46.43],[1.92,46.44],[1.91,46.44],[1.9,46.44],[1.89,46.44],[1.88,46.43],[1.85,46.43],[1.84,46.43],[1.82,46.43],[1.82,46.44],[1.8,46.45],[1.8,46.45],[1.75,46.45],[1.76,46.44],[1.76,46.44],[1.76,46.43],[1.75,46.41],[1.75,46.41],[1.73,46.4],[1.73,46.39],[1.71,46.39],[1.68,46.42],[1.66,46.4],[1.66,46.4],[1.64,46.39],[1.63,46.39],[1.61,46.4],[1.62,46.42],[1.61,46.42],[1.6,46.42],[1.59,46.41],[1.58,46.41],[1.56,46.4],[1.55,46.4],[1.54,46.42],[1.53,46.42],[1.53,46.43],[1.51,46.42],[1.51,46.41],[1.5,46.41],[1.5,46.39],[1.49,46.4],[1.48,46.39],[1.46,46.38],[1.45,46.37],[1.44,46.36],[1.44,46.36],[1.42,46.35],[1.41,46.36],[1.4,46.37],[1.4,46.37],[1.39,46.37],[1.38,46.37],[1.38,46.38],[1.36,46.4],[1.34,46.4],[1.31,46.39],[1.32,46.39],[1.31,46.38],[1.31,46.37],[1.28,46.37],[1.28,46.38],[1.26,46.38],[1.25,46.38],[1.24,46.37],[1.22,46.37],[1.21,46.37],[1.21,46.39],[1.2,46.39],[1.19,46.38],[1.18,46.38],[1.18,46.38],[1.2,46.4],[1.19,46.41],[1.21,46.43],[1.2,46.43],[1.2,46.43],[1.19,46.43],[1.19,46.44],[1.17,46.45],[1.15,46.45],[1.14,46.47],[1.15,46.47],[1.15,46.47],[1.14,46.49],[1.14,46.5],[1.15,46.5],[1.12,46.52],[1.1,46.53],[1.09,46.54],[1.08,46.54],[1.07,46.54],[1.02,46.54],[1.02,46.55],[1.01,46.57],[0.99,46.57],[0.98,46.57],[0.96,46.57],[0.96,46.58],[0.94,46.58],[0.94,46.59],[0.94,46.59],[0.92,46.6],[0.9,46.62],[0.89,46.63],[0.91,46.65],[0.92,46.65],[0.91,46.67],[0.91,46.68],[0.9,46.68],[0.92,46.69],[0.93,46.69],[0.92,46.7],[0.91,46.72],[0.91,46.73],[0.9,46.73],[0.9,46.74],[0.88,46.74],[0.87,46.75],[0.86,46.76],[0.86,46.76],[0.84,46.76],[0.83,46.78],[0.83,46.79],[0.81,46.79],[0.82,46.81],[0.81,46.81],[0.81,46.83],[0.79,46.83],[0.79,46.84],[0.79,46.84],[0.8,46.85],[0.79,46.85],[0.77,46.85],[0.77,46.86],[0.77,46.86],[0.77,46.86],[0.75,46.86],[0.74,46.87],[0.74,46.87],[0.73,46.88],[0.7,46.9],[0.7,46.91],[0.71,46.92],[0.7,46.93],[0.71,46.94],[0.7,46.96],[0.7,46.97],[0.69,46.97],[0.66,46.98],[0.66,46.99],[0.65,46.99],[0.64,46.99],[0.62,46.99],[0.62,47],[0.62,47],[0.62,47.01],[0.59,47.01],[0.58,47],[0.57,47.01],[0.57,47],[0.57,46.99],[0.57,46.98],[0.6,46.97],[0.6,46.96],[0.6,46.96],[0.57,46.96],[0.54,46.96],[0.51,46.96],[0.51,46.96],[0.44,46.94],[0.44,46.93],[0.42,46.94],[0.41,46.94],[0.39,46.94],[0.36,46.95],[0.35,46.94],[0.34,46.94],[0.33,46.93],[0.31,46.94],[0.3,46.96],[0.31,46.96],[0.3,46.97],[0.31,46.98],[0.29,46.99],[0.3,46.99],[0.31,47],[0.31,47],[0.3,47.02],[0.31,47.03],[0.31,47.04],[0.31,47.05],[0.3,47.05],[0.28,47.05],[0.27,47.04],[0.26,47.05],[0.26,47.07],[0.24,47.07],[0.24,47.07],[0.23,47.06],[0.21,47.05],[0.19,47.06],[0.18,47.06],[0.18,47.06],[0.18,47.07],[0.2,47.09],[0.19,47.1],[0.18,47.12],[0.17,47.11],[0.16,47.1],[0.13,47.11],[0.13,47.12],[0.14,47.12],[0.13,47.12],[0.12,47.13],[0.11,47.13],[0.1,47.12],[0.09,47.12],[0.08,47.12],[0.08,47.12],[0.08,47.13],[0.08,47.15],[0.07,47.14],[0.06,47.15],[0.05,47.16],[0.06,47.18],[0.07,47.19],[0.05,47.2],[0.05,47.2],[0.06,47.21],[0.07,47.21],[0.08,47.22],[0.07,47.22],[0.07,47.23],[0.07,47.24],[0.08,47.25],[0.08,47.27],[0.09,47.28],[0.09,47.28],[0.08,47.29],[0.11,47.32],[0.12,47.33],[0.14,47.34],[0.15,47.35],[0.14,47.36],[0.15,47.36],[0.18,47.38],[0.17,47.39],[0.17,47.4],[0.15,47.4],[0.18,47.42],[0.19,47.43],[0.18,47.45],[0.19,47.46],[0.19,47.47],[0.2,47.48],[0.2,47.48],[0.22,47.5],[0.22,47.53],[0.21,47.53],[0.21,47.53],[0.19,47.54],[0.2,47.54],[0.21,47.57],[0.22,47.57],[0.23,47.58],[0.23,47.59],[0.23,47.59],[0.23,47.61],[0.23,47.61],[0.26,47.61],[0.28,47.6],[0.32,47.6],[0.34,47.59],[0.34,47.58],[0.38,47.57],[0.39,47.58],[0.4,47.58],[0.4,47.59],[0.38,47.61],[0.37,47.61],[0.36,47.62],[0.38,47.64],[0.4,47.64],[0.42,47.62],[0.43,47.62],[0.45,47.62],[0.45,47.63],[0.46,47.64],[0.48,47.65],[0.48,47.64],[0.5,47.64],[0.52,47.66],[0.53,47.65],[0.55,47.66],[0.56,47.67],[0.56,47.67],[0.58,47.67],[0.59,47.67],[0.62,47.69],[0.62,47.69],[0.61,47.69],[0.6,47.69],[0.6,47.69],[0.59,47.69],[0.59,47.71],[0.58,47.71],[0.59,47.72],[0.61,47.73],[0.61,47.73],[0.61,47.73],[0.62,47.74],[0.62,47.75],[0.63,47.75],[0.65,47.76],[0.67,47.77],[0.7,47.76],[0.7,47.77],[0.69,47.78],[0.69,47.78],[0.7,47.79],[0.7,47.79],[0.71,47.79],[0.71,47.79],[0.74,47.81],[0.75,47.83],[0.76,47.83],[0.77,47.83],[0.77,47.84],[0.77,47.85],[0.76,47.86],[0.76,47.87],[0.76,47.88],[0.76,47.9],[0.79,47.91],[0.79,47.91],[0.8,47.9],[0.81,47.89],[0.82,47.89],[0.81,47.91],[0.81,47.93],[0.82,47.93],[0.85,47.94],[0.85,47.94],[0.85,47.95],[0.82,47.99],[0.83,48],[0.84,48.02],[0.84,48.03],[0.81,48.03],[0.81,48.04],[0.8,48.04],[0.79,48.05],[0.8,48.06],[0.79,48.07],[0.8,48.07],[0.83,48.07],[0.84,48.07],[0.85,48.09],[0.83,48.09],[0.82,48.09],[0.82,48.1],[0.83,48.1],[0.84,48.1],[0.86,48.12],[0.85,48.13],[0.91,48.14],[0.92,48.14],[0.91,48.14],[0.91,48.15],[0.88,48.16],[0.86,48.17],[0.84,48.17],[0.81,48.18],[0.8,48.19],[0.8,48.19],[0.81,48.2],[0.81,48.2],[0.83,48.21],[0.82,48.22],[0.79,48.26],[0.79,48.27],[0.79,48.27],[0.79,48.28],[0.81,48.29],[0.8,48.29],[0.78,48.3],[0.76,48.3],[0.76,48.3],[0.77,48.32],[0.77,48.32],[0.78,48.33],[0.79,48.34],[0.82,48.35],[0.83,48.34],[0.84,48.35],[0.84,48.35],[0.85,48.35],[0.87,48.36],[0.88,48.36],[0.9,48.37],[0.91,48.37],[0.93,48.38],[0.93,48.39],[0.95,48.4],[0.95,48.42],[0.98,48.44],[0.97,48.44],[0.96,48.45],[0.94,48.46],[0.94,48.48],[0.95,48.48],[0.96,48.49],[0.94,48.5],[0.95,48.5],[0.97,48.52],[0.93,48.53],[0.92,48.54],[0.94,48.55],[0.93,48.56],[0.91,48.56],[0.89,48.57],[0.87,48.57],[0.85,48.59],[0.85,48.61],[0.82,48.61],[0.82,48.62],[0.83,48.63],[0.82,48.64],[0.82,48.65],[0.81,48.66],[0.81,48.67],[0.83,48.68],[0.84,48.68],[0.86,48.69],[0.87,48.7],[0.88,48.72],[0.89,48.72],[0.9,48.71],[0.92,48.71],[0.92,48.71],[0.95,48.72],[0.96,48.73],[0.98,48.73],[0.99,48.73],[1.02,48.73],[1.02,48.73],[1.03,48.73],[1.04,48.73],[1.04,48.74],[1.06,48.76],[1.07,48.75],[1.09,48.76],[1.09,48.75],[1.11,48.75],[1.12,48.77],[1.12,48.77],[1.12,48.78],[1.12,48.79],[1.13,48.79],[1.15,48.79],[1.15,48.78],[1.16,48.77],[1.19,48.77],[1.22,48.76],[1.23,48.76],[1.22,48.77],[1.25,48.77],[1.25,48.77],[1.26,48.76],[1.27,48.76],[1.28,48.76],[1.3,48.77],[1.33,48.76],[1.36,48.78],[1.36,48.78],[1.37,48.78],[1.38,48.79],[1.36,48.82],[1.36,48.83],[1.39,48.85],[1.4,48.86],[1.4,48.86],[1.42,48.86],[1.43,48.87],[1.44,48.87],[1.46,48.87],[1.47,48.88],[1.47,48.9],[1.46,48.9],[1.46,48.91],[1.45,48.92],[1.46,48.93],[1.46,48.94],[1.48,48.94],[1.49,48.94],[1.5,48.94]]]},"properties":{"id":5,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.93,49.73],[-1.93,49.73],[-1.92,49.73],[-1.92,49.72],[-1.91,49.72],[-1.91,49.72],[-1.91,49.72],[-1.91,49.72],[-1.9,49.72],[-1.9,49.72],[-1.9,49.72],[-1.89,49.72],[-1.9,49.71],[-1.89,49.71],[-1.89,49.71],[-1.89,49.71],[-1.87,49.71],[-1.86,49.72],[-1.86,49.71],[-1.86,49.72],[-1.85,49.72],[-1.85,49.72],[-1.85,49.72],[-1.85,49.72],[-1.85,49.71],[-1.84,49.71],[-1.84,49.71],[-1.83,49.71],[-1.84,49.71],[-1.84,49.7],[-1.83,49.7],[-1.83,49.7],[-1.83,49.7],[-1.83,49.7],[-1.83,49.69],[-1.82,49.69],[-1.82,49.69],[-1.79,49.69],[-1.77,49.68],[-1.76,49.68],[-1.73,49.68],[-1.72,49.68],[-1.71,49.68],[-1.71,49.67],[-1.7,49.67],[-1.7,49.67],[-1.69,49.67],[-1.68,49.67],[-1.68,49.67],[-1.68,49.67],[-1.68,49.67],[-1.68,49.67],[-1.68,49.66],[-1.67,49.66],[-1.65,49.66],[-1.65,49.66],[-1.64,49.66],[-1.63,49.66],[-1.63,49.65],[-1.63,49.65],[-1.63,49.65],[-1.62,49.65],[-1.62,49.65],[-1.62,49.65],[-1.62,49.64],[-1.61,49.65],[-1.61,49.65],[-1.61,49.65],[-1.61,49.65],[-1.61,49.65],[-1.6,49.65],[-1.6,49.65],[-1.61,49.65],[-1.61,49.66],[-1.6,49.66],[-1.59,49.65],[-1.59,49.65],[-1.58,49.65],[-1.57,49.66],[-1.56,49.65],[-1.53,49.65],[-1.53,49.66],[-1.53,49.66],[-1.52,49.66],[-1.52,49.66],[-1.51,49.66],[-1.5,49.67],[-1.5,49.67],[-1.49,49.67],[-1.49,49.67],[-1.49,49.68],[-1.48,49.68],[-1.47,49.68],[-1.47,49.69],[-1.47,49.69],[-1.47,49.69],[-1.48,49.69],[-1.47,49.7],[-1.47,49.7],[-1.47,49.69],[-1.46,49.69],[-1.45,49.69],[-1.44,49.69],[-1.44,49.7],[-1.44,49.7],[-1.43,49.7],[-1.42,49.7],[-1.42,49.71],[-1.42,49.7],[-1.41,49.7],[-1.4,49.7],[-1.39,49.71],[-1.38,49.71],[-1.37,49.7],[-1.37,49.7],[-1.37,49.7],[-1.36,49.7],[-1.35,49.7],[-1.34,49.7],[-1.33,49.7],[-1.33,49.7],[-1.32,49.7],[-1.31,49.7],[-1.3,49.69],[-1.3,49.69],[-1.29,49.69],[-1.28,49.69],[-1.28,49.69],[-1.28,49.7],[-1.27,49.69],[-1.27,49.7],[-1.27,49.69],[-1.27,49.69],[-1.27,49.68],[-1.27,49.68],[-1.27,49.68],[-1.27,49.68],[-1.26,49.67],[-1.26,49.67],[-1.26,49.67],[-1.26,49.67],[-1.26,49.67],[-1.26,49.67],[-1.25,49.66],[-1.24,49.65],[-1.24,49.65],[-1.24,49.65],[-1.24,49.65],[-1.24,49.65],[-1.24,49.64],[-1.24,49.64],[-1.23,49.63],[-1.23,49.62],[-1.23,49.62],[-1.23,49.62],[-1.23,49.61],[-1.25,49.61],[-1.25,49.61],[-1.27,49.59],[-1.27,49.59],[-1.26,49.59],[-1.26,49.58],[-1.27,49.58],[-1.28,49.59],[-1.29,49.59],[-1.3,49.58],[-1.3,49.57],[-1.31,49.56],[-1.31,49.55],[-1.3,49.54],[-1.29,49.52],[-1.27,49.5],[-1.26,49.48],[-1.22,49.45],[-1.19,49.43],[-1.17,49.41],[-1.16,49.4],[-1.16,49.4],[-1.16,49.39],[-1.16,49.38],[-1.16,49.38],[-1.17,49.38],[-1.17,49.37],[-1.18,49.37],[-1.17,49.36],[-1.17,49.36],[-1.17,49.36],[-1.17,49.36],[-1.16,49.36],[-1.16,49.36],[-1.15,49.36],[-1.14,49.37],[-1.14,49.37],[-1.13,49.36],[-1.13,49.35],[-1.12,49.35],[-1.12,49.35],[-1.12,49.35],[-1.12,49.34],[-1.12,49.34],[-1.11,49.35],[-1.12,49.36],[-1.11,49.37],[-1.1,49.38],[-1.09,49.38],[-1.07,49.39],[-1.03,49.39],[-1.03,49.39],[-1.01,49.4],[-1,49.4],[-0.99,49.4],[-0.98,49.4],[-0.97,49.4],[-0.95,49.4],[-0.93,49.39],[-0.93,49.39],[-0.92,49.39],[-0.91,49.38],[-0.91,49.38],[-0.9,49.38],[-0.88,49.37],[-0.88,49.37],[-0.87,49.37],[-0.86,49.36],[-0.86,49.37],[-0.85,49.36],[-0.83,49.36],[-0.79,49.35],[-0.72,49.35],[-0.69,49.35],[-0.69,49.35],[-0.67,49.35],[-0.66,49.35],[-0.65,49.35],[-0.64,49.35],[-0.64,49.34],[-0.63,49.34],[-0.63,49.34],[-0.63,49.34],[-0.62,49.34],[-0.59,49.34],[-0.59,49.34],[-0.58,49.34],[-0.55,49.35],[-0.52,49.35],[-0.49,49.34],[-0.47,49.34],[-0.46,49.34],[-0.45,49.34],[-0.41,49.34],[-0.39,49.33],[-0.37,49.33],[-0.37,49.33],[-0.37,49.32],[-0.36,49.32],[-0.33,49.31],[-0.33,49.31],[-0.32,49.3],[-0.31,49.3],[-0.31,49.3],[-0.31,49.3],[-0.31,49.3],[-0.3,49.3],[-0.27,49.29],[-0.26,49.29],[-0.26,49.29],[-0.25,49.29],[-0.25,49.29],[-0.25,49.28],[-0.25,49.28],[-0.25,49.29],[-0.25,49.28],[-0.24,49.28],[-0.23,49.28],[-0.23,49.27],[-0.23,49.27],[-0.24,49.27],[-0.25,49.27],[-0.25,49.27],[-0.24,49.26],[-0.24,49.27],[-0.24,49.27],[-0.23,49.27],[-0.23,49.27],[-0.23,49.27],[-0.22,49.27],[-0.22,49.28],[-0.23,49.28],[-0.23,49.28],[-0.21,49.29],[-0.15,49.29],[-0.1,49.3],[-0.09,49.3],[-0.1,49.3],[-0.1,49.3],[-0.09,49.3],[-0.08,49.3],[-0.08,49.31],[-0.06,49.31],[-0.04,49.32],[-0.04,49.32],[-0.03,49.32],[-0.02,49.32],[0,49.32],[0.03,49.34],[0.03,49.34],[0.04,49.34],[0.05,49.35],[0.05,49.35],[0.07,49.36],[0.07,49.37],[0.08,49.37],[0.08,49.37],[0.09,49.38],[0.11,49.4],[0.12,49.4],[0.13,49.4],[0.13,49.41],[0.15,49.41],[0.16,49.41],[0.17,49.41],[0.22,49.43],[0.27,49.43],[0.28,49.43],[0.29,49.43],[0.29,49.43],[0.29,49.43],[0.3,49.43],[0.3,49.41],[0.31,49.39],[0.3,49.37],[0.31,49.36],[0.32,49.34],[0.31,49.32],[0.3,49.31],[0.32,49.31],[0.32,49.3],[0.31,49.28],[0.32,49.28],[0.35,49.3],[0.37,49.3],[0.38,49.29],[0.38,49.26],[0.36,49.26],[0.34,49.25],[0.32,49.25],[0.32,49.25],[0.34,49.23],[0.37,49.22],[0.39,49.22],[0.39,49.21],[0.39,49.21],[0.39,49.19],[0.39,49.18],[0.39,49.16],[0.39,49.15],[0.41,49.15],[0.41,49.15],[0.43,49.15],[0.43,49.14],[0.42,49.13],[0.41,49.13],[0.41,49.12],[0.4,49.1],[0.4,49.1],[0.41,49.1],[0.41,49.09],[0.4,49.09],[0.42,49.09],[0.42,49.07],[0.41,49.08],[0.39,49.08],[0.38,49.07],[0.38,49.06],[0.37,49.05],[0.37,49.05],[0.38,49.05],[0.38,49.05],[0.38,49.04],[0.41,49.03],[0.42,49.03],[0.45,49.02],[0.43,49],[0.43,48.99],[0.43,48.97],[0.4,48.93],[0.39,48.93],[0.39,48.91],[0.42,48.9],[0.42,48.89],[0.43,48.89],[0.44,48.89],[0.45,48.89],[0.44,48.88],[0.46,48.88],[0.46,48.89],[0.47,48.89],[0.5,48.88],[0.52,48.88],[0.55,48.87],[0.58,48.89],[0.6,48.89],[0.6,48.88],[0.59,48.88],[0.59,48.87],[0.61,48.88],[0.61,48.87],[0.61,48.86],[0.62,48.85],[0.63,48.86],[0.61,48.83],[0.63,48.83],[0.65,48.81],[0.66,48.81],[0.69,48.79],[0.7,48.79],[0.71,48.79],[0.72,48.79],[0.73,48.79],[0.74,48.78],[0.76,48.77],[0.76,48.77],[0.75,48.76],[0.78,48.74],[0.76,48.73],[0.76,48.72],[0.74,48.72],[0.73,48.71],[0.73,48.7],[0.75,48.7],[0.77,48.7],[0.77,48.69],[0.76,48.69],[0.76,48.68],[0.77,48.67],[0.78,48.67],[0.8,48.67],[0.81,48.67],[0.81,48.66],[0.82,48.65],[0.82,48.64],[0.83,48.63],[0.82,48.62],[0.82,48.61],[0.85,48.61],[0.85,48.59],[0.87,48.57],[0.89,48.57],[0.91,48.56],[0.93,48.56],[0.94,48.55],[0.92,48.54],[0.93,48.53],[0.97,48.52],[0.95,48.5],[0.94,48.5],[0.96,48.49],[0.95,48.48],[0.94,48.48],[0.94,48.46],[0.96,48.45],[0.97,48.44],[0.98,48.44],[0.95,48.42],[0.95,48.4],[0.93,48.39],[0.93,48.38],[0.91,48.37],[0.9,48.37],[0.9,48.37],[0.88,48.36],[0.87,48.36],[0.85,48.35],[0.84,48.35],[0.84,48.35],[0.83,48.34],[0.82,48.35],[0.79,48.34],[0.79,48.34],[0.78,48.33],[0.77,48.32],[0.77,48.32],[0.76,48.3],[0.76,48.3],[0.78,48.3],[0.8,48.29],[0.81,48.29],[0.79,48.28],[0.79,48.27],[0.79,48.27],[0.79,48.26],[0.82,48.22],[0.83,48.21],[0.81,48.2],[0.81,48.2],[0.76,48.18],[0.74,48.19],[0.73,48.2],[0.72,48.2],[0.72,48.21],[0.71,48.22],[0.7,48.23],[0.69,48.24],[0.68,48.25],[0.67,48.25],[0.65,48.26],[0.64,48.26],[0.63,48.25],[0.64,48.24],[0.63,48.23],[0.63,48.24],[0.62,48.24],[0.61,48.24],[0.58,48.24],[0.55,48.25],[0.54,48.25],[0.54,48.26],[0.53,48.27],[0.51,48.27],[0.49,48.28],[0.5,48.29],[0.51,48.29],[0.49,48.31],[0.48,48.3],[0.46,48.31],[0.44,48.3],[0.43,48.31],[0.43,48.31],[0.42,48.32],[0.41,48.32],[0.4,48.32],[0.38,48.33],[0.38,48.34],[0.39,48.35],[0.38,48.37],[0.38,48.38],[0.37,48.39],[0.37,48.41],[0.38,48.41],[0.38,48.42],[0.37,48.44],[0.36,48.45],[0.35,48.46],[0.35,48.46],[0.34,48.46],[0.32,48.47],[0.31,48.47],[0.3,48.48],[0.28,48.48],[0.27,48.48],[0.27,48.48],[0.26,48.48],[0.26,48.48],[0.25,48.47],[0.23,48.47],[0.22,48.47],[0.19,48.46],[0.17,48.46],[0.17,48.46],[0.17,48.45],[0.16,48.45],[0.15,48.46],[0.14,48.45],[0.16,48.44],[0.15,48.44],[0.13,48.43],[0.12,48.44],[0.11,48.43],[0.1,48.41],[0.1,48.41],[0.08,48.41],[0.07,48.41],[0.05,48.39],[0.06,48.38],[0.06,48.38],[0.02,48.38],[0.01,48.39],[0,48.4],[-0.02,48.39],[-0.02,48.39],[-0.05,48.38],[-0.05,48.38],[-0.06,48.39],[-0.05,48.39],[-0.06,48.43],[-0.06,48.43],[-0.05,48.45],[-0.06,48.46],[-0.07,48.46],[-0.08,48.45],[-0.11,48.45],[-0.14,48.45],[-0.15,48.46],[-0.15,48.47],[-0.15,48.48],[-0.15,48.48],[-0.16,48.5],[-0.17,48.5],[-0.17,48.5],[-0.17,48.51],[-0.15,48.52],[-0.14,48.53],[-0.18,48.54],[-0.2,48.56],[-0.21,48.56],[-0.22,48.56],[-0.24,48.56],[-0.24,48.57],[-0.25,48.56],[-0.26,48.55],[-0.24,48.54],[-0.25,48.53],[-0.27,48.52],[-0.27,48.51],[-0.29,48.51],[-0.29,48.52],[-0.29,48.52],[-0.31,48.52],[-0.32,48.52],[-0.33,48.51],[-0.34,48.5],[-0.35,48.5],[-0.35,48.48],[-0.37,48.49],[-0.37,48.49],[-0.39,48.5],[-0.39,48.51],[-0.4,48.51],[-0.41,48.51],[-0.43,48.51],[-0.42,48.51],[-0.45,48.51],[-0.45,48.51],[-0.47,48.51],[-0.48,48.5],[-0.49,48.5],[-0.51,48.51],[-0.52,48.5],[-0.53,48.49],[-0.55,48.47],[-0.56,48.47],[-0.56,48.48],[-0.57,48.47],[-0.59,48.47],[-0.59,48.47],[-0.61,48.46],[-0.65,48.44],[-0.65,48.45],[-0.66,48.47],[-0.67,48.49],[-0.67,48.48],[-0.67,48.48],[-0.68,48.48],[-0.68,48.47],[-0.69,48.47],[-0.7,48.47],[-0.7,48.47],[-0.72,48.47],[-0.73,48.47],[-0.73,48.47],[-0.74,48.46],[-0.72,48.45],[-0.76,48.44],[-0.76,48.44],[-0.77,48.44],[-0.78,48.45],[-0.78,48.47],[-0.79,48.47],[-0.81,48.45],[-0.82,48.47],[-0.82,48.47],[-0.84,48.49],[-0.85,48.5],[-0.86,48.5],[-0.9,48.49],[-0.92,48.5],[-0.92,48.51],[-0.95,48.52],[-0.96,48.51],[-0.96,48.5],[-0.97,48.49],[-1,48.49],[-1.06,48.52],[-1.06,48.51],[-1.07,48.51],[-1.1,48.51],[-1.12,48.52],[-1.13,48.52],[-1.15,48.52],[-1.16,48.52],[-1.17,48.53],[-1.19,48.53],[-1.2,48.53],[-1.21,48.54],[-1.21,48.54],[-1.23,48.54],[-1.25,48.54],[-1.27,48.53],[-1.27,48.52],[-1.28,48.51],[-1.29,48.51],[-1.3,48.5],[-1.32,48.5],[-1.32,48.5],[-1.33,48.5],[-1.33,48.49],[-1.34,48.49],[-1.34,48.49],[-1.35,48.48],[-1.35,48.47],[-1.37,48.46],[-1.38,48.46],[-1.4,48.46],[-1.43,48.46],[-1.44,48.47],[-1.44,48.48],[-1.44,48.48],[-1.45,48.49],[-1.46,48.49],[-1.47,48.49],[-1.47,48.49],[-1.49,48.49],[-1.49,48.49],[-1.5,48.51],[-1.52,48.53],[-1.52,48.53],[-1.52,48.54],[-1.53,48.55],[-1.53,48.56],[-1.52,48.57],[-1.53,48.58],[-1.54,48.58],[-1.54,48.6],[-1.55,48.61],[-1.57,48.61],[-1.58,48.64],[-1.57,48.64],[-1.56,48.64],[-1.56,48.64],[-1.54,48.64],[-1.54,48.64],[-1.54,48.64],[-1.53,48.64],[-1.52,48.64],[-1.52,48.63],[-1.51,48.63],[-1.51,48.63],[-1.51,48.63],[-1.51,48.64],[-1.51,48.63],[-1.5,48.63],[-1.51,48.63],[-1.49,48.64],[-1.49,48.64],[-1.48,48.64],[-1.48,48.64],[-1.47,48.64],[-1.47,48.64],[-1.47,48.64],[-1.46,48.64],[-1.45,48.64],[-1.45,48.64],[-1.45,48.64],[-1.44,48.64],[-1.43,48.64],[-1.43,48.64],[-1.43,48.64],[-1.42,48.64],[-1.41,48.64],[-1.4,48.64],[-1.4,48.65],[-1.38,48.65],[-1.38,48.64],[-1.37,48.64],[-1.37,48.64],[-1.37,48.64],[-1.36,48.63],[-1.36,48.64],[-1.36,48.64],[-1.36,48.65],[-1.37,48.65],[-1.37,48.65],[-1.38,48.65],[-1.38,48.65],[-1.4,48.65],[-1.4,48.65],[-1.4,48.65],[-1.41,48.65],[-1.41,48.66],[-1.41,48.67],[-1.41,48.67],[-1.41,48.67],[-1.41,48.67],[-1.41,48.66],[-1.42,48.66],[-1.42,48.65],[-1.43,48.65],[-1.43,48.65],[-1.44,48.65],[-1.44,48.66],[-1.45,48.65],[-1.45,48.66],[-1.46,48.67],[-1.49,48.68],[-1.5,48.68],[-1.5,48.68],[-1.51,48.68],[-1.51,48.69],[-1.52,48.7],[-1.51,48.7],[-1.52,48.72],[-1.52,48.72],[-1.52,48.72],[-1.53,48.72],[-1.53,48.73],[-1.53,48.73],[-1.55,48.73],[-1.55,48.73],[-1.56,48.74],[-1.57,48.74],[-1.57,48.74],[-1.57,48.75],[-1.58,48.76],[-1.57,48.76],[-1.57,48.77],[-1.57,48.78],[-1.57,48.8],[-1.57,48.8],[-1.57,48.81],[-1.57,48.81],[-1.57,48.82],[-1.58,48.83],[-1.58,48.83],[-1.58,48.83],[-1.58,48.83],[-1.59,48.83],[-1.59,48.83],[-1.6,48.83],[-1.6,48.83],[-1.61,48.83],[-1.61,48.83],[-1.61,48.83],[-1.62,48.83],[-1.61,48.84],[-1.61,48.84],[-1.6,48.84],[-1.6,48.84],[-1.59,48.85],[-1.59,48.85],[-1.58,48.85],[-1.57,48.88],[-1.57,48.9],[-1.56,48.93],[-1.56,48.93],[-1.55,48.94],[-1.55,48.93],[-1.55,48.93],[-1.56,48.92],[-1.55,48.92],[-1.55,48.92],[-1.55,48.92],[-1.55,48.92],[-1.55,48.92],[-1.54,48.93],[-1.54,48.94],[-1.55,48.94],[-1.56,48.94],[-1.56,48.94],[-1.56,48.94],[-1.56,48.94],[-1.56,48.96],[-1.56,48.97],[-1.56,48.98],[-1.56,48.99],[-1.56,48.99],[-1.56,49],[-1.56,49],[-1.56,49.01],[-1.56,49.01],[-1.56,49.02],[-1.56,49.03],[-1.55,49.03],[-1.55,49.03],[-1.55,49.03],[-1.55,49.03],[-1.54,49.03],[-1.54,49.03],[-1.54,49.04],[-1.51,49.03],[-1.52,49.03],[-1.52,49.02],[-1.51,49.03],[-1.51,49.03],[-1.53,49.04],[-1.54,49.04],[-1.54,49.04],[-1.56,49.03],[-1.56,49.03],[-1.56,49.02],[-1.57,49.01],[-1.57,49],[-1.58,49],[-1.59,49.02],[-1.6,49.04],[-1.61,49.07],[-1.61,49.07],[-1.6,49.07],[-1.6,49.07],[-1.6,49.07],[-1.61,49.07],[-1.61,49.08],[-1.61,49.1],[-1.6,49.12],[-1.59,49.14],[-1.6,49.14],[-1.6,49.17],[-1.6,49.18],[-1.61,49.2],[-1.61,49.2],[-1.6,49.2],[-1.6,49.21],[-1.61,49.22],[-1.61,49.22],[-1.59,49.22],[-1.59,49.22],[-1.6,49.22],[-1.61,49.23],[-1.62,49.23],[-1.62,49.22],[-1.63,49.22],[-1.62,49.21],[-1.62,49.21],[-1.61,49.21],[-1.61,49.21],[-1.62,49.21],[-1.63,49.21],[-1.64,49.22],[-1.65,49.23],[-1.66,49.24],[-1.66,49.26],[-1.68,49.28],[-1.68,49.29],[-1.67,49.29],[-1.68,49.28],[-1.67,49.28],[-1.67,49.28],[-1.67,49.28],[-1.68,49.29],[-1.68,49.29],[-1.69,49.29],[-1.71,49.32],[-1.71,49.33],[-1.7,49.32],[-1.7,49.32],[-1.69,49.33],[-1.69,49.33],[-1.7,49.33],[-1.7,49.34],[-1.71,49.34],[-1.71,49.34],[-1.7,49.33],[-1.7,49.33],[-1.71,49.33],[-1.72,49.33],[-1.72,49.33],[-1.73,49.33],[-1.74,49.34],[-1.77,49.36],[-1.78,49.37],[-1.78,49.37],[-1.79,49.37],[-1.78,49.38],[-1.77,49.37],[-1.78,49.38],[-1.79,49.38],[-1.79,49.37],[-1.79,49.37],[-1.81,49.37],[-1.81,49.38],[-1.82,49.39],[-1.82,49.4],[-1.82,49.43],[-1.83,49.45],[-1.83,49.46],[-1.83,49.47],[-1.84,49.47],[-1.84,49.47],[-1.85,49.47],[-1.85,49.48],[-1.84,49.49],[-1.85,49.51],[-1.85,49.51],[-1.88,49.51],[-1.88,49.52],[-1.89,49.53],[-1.89,49.53],[-1.89,49.53],[-1.88,49.54],[-1.87,49.55],[-1.87,49.55],[-1.86,49.55],[-1.86,49.56],[-1.85,49.56],[-1.85,49.56],[-1.85,49.56],[-1.84,49.57],[-1.84,49.61],[-1.85,49.63],[-1.86,49.65],[-1.88,49.66],[-1.88,49.66],[-1.89,49.66],[-1.89,49.66],[-1.9,49.67],[-1.91,49.67],[-1.91,49.67],[-1.92,49.67],[-1.93,49.67],[-1.93,49.67],[-1.94,49.67],[-1.94,49.67],[-1.95,49.67],[-1.95,49.68],[-1.94,49.68],[-1.94,49.68],[-1.94,49.69],[-1.94,49.69],[-1.94,49.69],[-1.94,49.7],[-1.94,49.7],[-1.95,49.7],[-1.95,49.71],[-1.94,49.71],[-1.95,49.71],[-1.95,49.72],[-1.95,49.72],[-1.94,49.72],[-1.94,49.73],[-1.94,49.73],[-1.93,49.73]]],[[[-1.14,49.5],[-1.15,49.5],[-1.15,49.5],[-1.14,49.5]]],[[[-1.15,49.49],[-1.16,49.49],[-1.16,49.49],[-1.15,49.49]]],[[[-1.24,49.59],[-1.24,49.59],[-1.24,49.59],[-1.24,49.59],[-1.25,49.59],[-1.25,49.59],[-1.24,49.59]]],[[[-1.27,49.58],[-1.27,49.58],[-1.27,49.58],[-1.27,49.57],[-1.28,49.57],[-1.27,49.58],[-1.27,49.58],[-1.27,49.58]]],[[[-1.51,48.66],[-1.51,48.66],[-1.52,48.66],[-1.52,48.66],[-1.51,48.66]]],[[[-1.77,48.88],[-1.77,48.87],[-1.77,48.87],[-1.77,48.88],[-1.77,48.88]]],[[[-1.77,48.87],[-1.77,48.87],[-1.77,48.87],[-1.77,48.87],[-1.77,48.87]]],[[[-1.79,48.88],[-1.79,48.88],[-1.8,48.88],[-1.79,48.88]]],[[[-1.8,48.88],[-1.8,48.88],[-1.79,48.88],[-1.79,48.88],[-1.8,48.88],[-1.8,48.88],[-1.8,48.88]]],[[[-1.8,48.89],[-1.8,48.89],[-1.8,48.89],[-1.81,48.89],[-1.8,48.89]]],[[[-1.8,48.87],[-1.8,48.87],[-1.81,48.87],[-1.8,48.87]]],[[[-1.81,48.88],[-1.8,48.88],[-1.81,48.88],[-1.81,48.88],[-1.81,48.88]]],[[[-1.81,48.87],[-1.8,48.87],[-1.81,48.87],[-1.81,48.87],[-1.81,48.87],[-1.81,48.87]]],[[[-1.81,48.89],[-1.81,48.89],[-1.81,48.89],[-1.81,48.89]]],[[[-1.82,48.89],[-1.82,48.88],[-1.82,48.88],[-1.82,48.89]]],[[[-1.84,48.89],[-1.83,48.88],[-1.82,48.88],[-1.83,48.88],[-1.82,48.88],[-1.82,48.88],[-1.82,48.87],[-1.83,48.88],[-1.83,48.88],[-1.84,48.88],[-1.84,48.88],[-1.84,48.89]]],[[[-1.84,48.88],[-1.83,48.88],[-1.83,48.87],[-1.82,48.87],[-1.82,48.87],[-1.82,48.87],[-1.82,48.87],[-1.83,48.87],[-1.83,48.87],[-1.83,48.87],[-1.84,48.87],[-1.84,48.87],[-1.83,48.87],[-1.84,48.87],[-1.84,48.87],[-1.84,48.87],[-1.84,48.87],[-1.84,48.87],[-1.84,48.87],[-1.84,48.88],[-1.84,48.87],[-1.85,48.88],[-1.84,48.88]]],[[[-1.82,48.9],[-1.82,48.89],[-1.82,48.89],[-1.83,48.9],[-1.82,48.9]]],[[[-1.82,48.89],[-1.82,48.89],[-1.82,48.88],[-1.83,48.89],[-1.83,48.89],[-1.82,48.89]]],[[[-1.84,48.89],[-1.83,48.89],[-1.83,48.89],[-1.84,48.89],[-1.84,48.89]]],[[[-1.84,48.88],[-1.84,48.88],[-1.84,48.88],[-1.84,48.88],[-1.84,48.88]]],[[[-1.85,48.89],[-1.85,48.89],[-1.85,48.88],[-1.85,48.89],[-1.85,48.88],[-1.85,48.89],[-1.85,48.89]]],[[[-1.87,48.89],[-1.86,48.89],[-1.86,48.88],[-1.86,48.88],[-1.85,48.88],[-1.85,48.88],[-1.86,48.88],[-1.86,48.88],[-1.86,48.88],[-1.87,48.88],[-1.87,48.88],[-1.87,48.89],[-1.87,48.89]]],[[[-1.87,48.89],[-1.87,48.89],[-1.87,48.89],[-1.87,48.89]]],[[[-1.87,48.88],[-1.87,48.87],[-1.87,48.88],[-1.87,48.88]]],[[[-2.06,48.97],[-2.06,48.97],[-2.06,48.97],[-2.06,48.97],[-2.06,48.97]]]]},"properties":{"id":6,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.41,48.38],[3.43,48.36],[3.43,48.36],[3.45,48.37],[3.47,48.37],[3.47,48.37],[3.5,48.37],[3.5,48.37],[3.53,48.34],[3.55,48.33],[3.54,48.32],[3.56,48.32],[3.56,48.31],[3.59,48.3],[3.58,48.29],[3.58,48.28],[3.62,48.27],[3.62,48.26],[3.6,48.24],[3.6,48.24],[3.6,48.23],[3.61,48.23],[3.62,48.23],[3.61,48.21],[3.58,48.19],[3.59,48.18],[3.62,48.19],[3.64,48.18],[3.65,48.17],[3.66,48.16],[3.67,48.14],[3.69,48.15],[3.69,48.16],[3.7,48.15],[3.71,48.15],[3.72,48.15],[3.72,48.16],[3.71,48.17],[3.72,48.17],[3.75,48.17],[3.75,48.15],[3.74,48.14],[3.74,48.13],[3.75,48.13],[3.77,48.13],[3.8,48.11],[3.81,48.1],[3.8,48.1],[3.8,48.09],[3.83,48.06],[3.83,48.05],[3.82,48.04],[3.83,48.04],[3.84,48.04],[3.85,48.03],[3.87,48.02],[3.87,48],[3.86,48.01],[3.84,48],[3.85,47.98],[3.86,47.98],[3.86,47.98],[3.88,47.98],[3.88,48],[3.89,48],[3.9,48],[3.9,47.99],[3.91,47.98],[3.91,47.96],[3.9,47.94],[3.89,47.93],[3.9,47.93],[3.91,47.93],[3.91,47.93],[3.92,47.93],[3.93,47.93],[3.95,47.93],[3.96,47.94],[3.98,47.93],[3.99,47.93],[4.01,47.94],[4.02,47.93],[4.03,47.93],[4.03,47.93],[4.05,47.93],[4.05,47.93],[4.06,47.95],[4.09,47.94],[4.09,47.94],[4.09,47.93],[4.11,47.93],[4.13,47.94],[4.14,47.94],[4.14,47.94],[4.17,47.96],[4.18,47.95],[4.19,47.94],[4.2,47.94],[4.21,47.95],[4.2,47.96],[4.2,47.96],[4.2,47.97],[4.2,47.97],[4.23,47.97],[4.22,47.95],[4.25,47.93],[4.27,47.92],[4.29,47.93],[4.3,47.94],[4.3,47.95],[4.31,47.96],[4.35,47.96],[4.42,47.97],[4.45,47.96],[4.5,47.97],[4.52,47.97],[4.53,47.97],[4.55,47.97],[4.56,47.97],[4.56,47.98],[4.54,47.99],[4.54,48.01],[4.55,48.01],[4.55,48.01],[4.58,48.03],[4.6,48.03],[4.61,48.03],[4.62,48.03],[4.62,48.02],[4.65,48.02],[4.67,48.02],[4.7,48.02],[4.7,48.02],[4.72,48.01],[4.75,48],[4.79,48.01],[4.79,48],[4.81,47.99],[4.8,47.98],[4.79,47.97],[4.79,47.97],[4.81,47.96],[4.82,47.96],[4.85,47.96],[4.86,47.95],[4.87,47.94],[4.85,47.92],[4.83,47.92],[4.83,47.91],[4.83,47.91],[4.86,47.9],[4.87,47.92],[4.89,47.92],[4.91,47.92],[4.92,47.89],[4.93,47.89],[4.93,47.87],[4.94,47.87],[4.95,47.87],[4.96,47.85],[4.96,47.84],[4.97,47.83],[4.98,47.83],[4.98,47.82],[4.99,47.82],[4.99,47.8],[4.96,47.79],[4.92,47.78],[4.92,47.77],[4.92,47.77],[4.93,47.76],[4.92,47.76],[4.94,47.76],[4.95,47.77],[4.96,47.76],[4.97,47.74],[4.96,47.73],[4.96,47.73],[4.97,47.73],[4.96,47.72],[4.96,47.71],[4.96,47.71],[4.95,47.7],[4.97,47.69],[4.97,47.69],[4.99,47.69],[5,47.69],[5,47.7],[5.03,47.71],[5.03,47.71],[5.03,47.69],[5.06,47.69],[5.05,47.68],[5.05,47.67],[5.08,47.66],[5.09,47.66],[5.1,47.66],[5.11,47.65],[5.12,47.65],[5.12,47.65],[5.13,47.65],[5.14,47.66],[5.16,47.67],[5.16,47.68],[5.18,47.68],[5.17,47.65],[5.21,47.64],[5.23,47.63],[5.24,47.62],[5.26,47.62],[5.24,47.6],[5.26,47.58],[5.27,47.58],[5.28,47.58],[5.28,47.59],[5.31,47.61],[5.32,47.61],[5.32,47.61],[5.34,47.61],[5.34,47.6],[5.34,47.6],[5.36,47.59],[5.37,47.6],[5.37,47.6],[5.39,47.6],[5.39,47.6],[5.4,47.6],[5.43,47.63],[5.44,47.63],[5.47,47.61],[5.48,47.61],[5.49,47.58],[5.48,47.57],[5.49,47.56],[5.5,47.55],[5.49,47.53],[5.47,47.53],[5.45,47.51],[5.45,47.5],[5.44,47.49],[5.43,47.5],[5.4,47.5],[5.39,47.48],[5.41,47.48],[5.38,47.47],[5.37,47.46],[5.38,47.46],[5.38,47.45],[5.4,47.46],[5.41,47.46],[5.42,47.45],[5.43,47.45],[5.44,47.45],[5.44,47.45],[5.43,47.44],[5.43,47.42],[5.44,47.41],[5.43,47.39],[5.45,47.38],[5.48,47.39],[5.5,47.39],[5.49,47.37],[5.49,47.36],[5.5,47.34],[5.49,47.33],[5.49,47.33],[5.48,47.33],[5.47,47.32],[5.47,47.32],[5.5,47.31],[5.52,47.3],[5.51,47.28],[5.49,47.29],[5.49,47.29],[5.49,47.27],[5.48,47.26],[5.48,47.24],[5.48,47.24],[5.48,47.23],[5.48,47.22],[5.47,47.21],[5.46,47.21],[5.45,47.2],[5.45,47.2],[5.45,47.19],[5.46,47.18],[5.45,47.17],[5.45,47.16],[5.44,47.15],[5.44,47.14],[5.43,47.14],[5.41,47.13],[5.41,47.13],[5.41,47.12],[5.41,47.11],[5.4,47.11],[5.4,47.09],[5.39,47.09],[5.39,47.08],[5.38,47.08],[5.36,47.08],[5.36,47.08],[5.35,47.08],[5.33,47.08],[5.32,47.07],[5.31,47.06],[5.3,47.06],[5.28,47.05],[5.28,47.03],[5.32,47.02],[5.32,47.01],[5.3,47.01],[5.3,47],[5.28,47],[5.27,46.99],[5.26,46.98],[5.26,46.95],[5.26,46.95],[5.25,46.95],[5.25,46.94],[5.26,46.94],[5.26,46.93],[5.27,46.93],[5.28,46.94],[5.29,46.94],[5.31,46.94],[5.31,46.91],[5.33,46.9],[5.33,46.89],[5.34,46.88],[5.34,46.89],[5.35,46.89],[5.36,46.88],[5.39,46.89],[5.4,46.89],[5.4,46.88],[5.4,46.87],[5.42,46.86],[5.43,46.86],[5.43,46.86],[5.44,46.85],[5.44,46.86],[5.45,46.86],[5.46,46.86],[5.46,46.85],[5.46,46.84],[5.46,46.83],[5.46,46.83],[5.42,46.83],[5.41,46.83],[5.38,46.83],[5.35,46.82],[5.34,46.82],[5.34,46.82],[5.33,46.81],[5.33,46.8],[5.34,46.79],[5.36,46.79],[5.37,46.78],[5.37,46.78],[5.38,46.78],[5.39,46.77],[5.38,46.76],[5.37,46.75],[5.37,46.75],[5.36,46.73],[5.39,46.73],[5.39,46.73],[5.4,46.72],[5.4,46.71],[5.41,46.7],[5.41,46.7],[5.4,46.69],[5.42,46.67],[5.42,46.66],[5.43,46.66],[5.42,46.65],[5.44,46.64],[5.43,46.63],[5.41,46.61],[5.4,46.61],[5.41,46.6],[5.41,46.58],[5.38,46.58],[5.36,46.58],[5.37,46.57],[5.36,46.56],[5.36,46.55],[5.36,46.52],[5.39,46.51],[5.39,46.51],[5.41,46.5],[5.42,46.5],[5.42,46.48],[5.41,46.47],[5.4,46.47],[5.39,46.47],[5.37,46.46],[5.32,46.46],[5.32,46.45],[5.31,46.45],[5.31,46.45],[5.27,46.45],[5.26,46.45],[5.25,46.46],[5.24,46.46],[5.22,46.47],[5.22,46.47],[5.21,46.48],[5.21,46.49],[5.21,46.49],[5.2,46.5],[5.2,46.5],[5.2,46.51],[5.18,46.51],[5.17,46.52],[5.16,46.5],[5.14,46.51],[5.14,46.51],[5.13,46.5],[5.11,46.49],[5.1,46.5],[5.07,46.49],[5.05,46.48],[5.01,46.5],[5.01,46.51],[5.01,46.51],[4.98,46.52],[4.97,46.51],[4.96,46.51],[4.95,46.5],[4.95,46.51],[4.95,46.51],[4.94,46.51],[4.93,46.5],[4.92,46.49],[4.91,46.46],[4.89,46.45],[4.89,46.44],[4.89,46.43],[4.89,46.42],[4.89,46.4],[4.86,46.37],[4.85,46.35],[4.85,46.34],[4.85,46.33],[4.83,46.3],[4.83,46.28],[4.82,46.27],[4.81,46.25],[4.81,46.24],[4.8,46.23],[4.8,46.22],[4.79,46.2],[4.78,46.19],[4.78,46.18],[4.75,46.17],[4.73,46.18],[4.72,46.18],[4.72,46.2],[4.73,46.21],[4.74,46.21],[4.72,46.22],[4.72,46.23],[4.73,46.23],[4.74,46.23],[4.72,46.24],[4.71,46.25],[4.69,46.25],[4.68,46.26],[4.68,46.27],[4.69,46.27],[4.69,46.27],[4.7,46.27],[4.71,46.27],[4.71,46.28],[4.7,46.28],[4.69,46.29],[4.69,46.3],[4.68,46.3],[4.66,46.3],[4.65,46.3],[4.64,46.3],[4.64,46.29],[4.62,46.28],[4.62,46.27],[4.62,46.26],[4.59,46.27],[4.57,46.28],[4.57,46.29],[4.57,46.29],[4.56,46.29],[4.55,46.28],[4.55,46.27],[4.54,46.27],[4.5,46.27],[4.49,46.29],[4.48,46.28],[4.46,46.3],[4.44,46.29],[4.44,46.3],[4.43,46.3],[4.42,46.3],[4.41,46.3],[4.41,46.29],[4.4,46.28],[4.4,46.27],[4.4,46.27],[4.39,46.25],[4.39,46.25],[4.39,46.24],[4.39,46.23],[4.39,46.21],[4.37,46.21],[4.36,46.2],[4.37,46.19],[4.37,46.18],[4.36,46.18],[4.35,46.19],[4.33,46.18],[4.33,46.18],[4.32,46.17],[4.31,46.17],[4.3,46.17],[4.29,46.17],[4.28,46.16],[4.25,46.16],[4.25,46.17],[4.25,46.17],[4.26,46.18],[4.26,46.18],[4.25,46.19],[4.22,46.18],[4.22,46.19],[4.21,46.19],[4.19,46.19],[4.18,46.19],[4.18,46.18],[4.19,46.18],[4.18,46.17],[4.13,46.18],[4.13,46.18],[4.1,46.2],[4.07,46.19],[4.06,46.19],[4.05,46.18],[4.03,46.17],[4.02,46.17],[3.99,46.17],[3.97,46.19],[3.97,46.2],[3.97,46.2],[3.94,46.21],[3.92,46.2],[3.89,46.21],[3.9,46.23],[3.9,46.24],[3.91,46.24],[3.91,46.26],[3.9,46.27],[3.9,46.28],[3.89,46.28],[3.9,46.29],[3.93,46.3],[3.95,46.3],[3.95,46.32],[3.97,46.32],[3.98,46.32],[4,46.33],[3.99,46.33],[3.99,46.35],[3.99,46.37],[3.98,46.39],[3.98,46.4],[3.99,46.41],[3.98,46.42],[4,46.43],[3.99,46.44],[4,46.44],[4,46.44],[4,46.45],[4,46.46],[4,46.46],[3.98,46.47],[3.97,46.48],[3.97,46.48],[3.95,46.48],[3.96,46.49],[3.93,46.49],[3.92,46.5],[3.9,46.49],[3.9,46.49],[3.89,46.48],[3.87,46.49],[3.86,46.5],[3.86,46.51],[3.86,46.52],[3.85,46.51],[3.84,46.52],[3.85,46.52],[3.84,46.53],[3.81,46.52],[3.8,46.52],[3.79,46.53],[3.78,46.53],[3.78,46.53],[3.77,46.54],[3.76,46.54],[3.74,46.54],[3.73,46.55],[3.73,46.55],[3.74,46.56],[3.74,46.58],[3.73,46.6],[3.72,46.61],[3.71,46.61],[3.72,46.62],[3.72,46.63],[3.71,46.64],[3.7,46.65],[3.7,46.66],[3.67,46.67],[3.67,46.68],[3.66,46.69],[3.65,46.7],[3.64,46.71],[3.64,46.72],[3.62,46.74],[3.63,46.75],[3.62,46.75],[3.6,46.75],[3.59,46.76],[3.58,46.75],[3.6,46.73],[3.58,46.72],[3.58,46.72],[3.57,46.72],[3.55,46.72],[3.55,46.71],[3.56,46.69],[3.55,46.68],[3.54,46.68],[3.53,46.69],[3.52,46.69],[3.49,46.66],[3.49,46.65],[3.48,46.65],[3.46,46.65],[3.45,46.66],[3.44,46.66],[3.45,46.66],[3.45,46.67],[3.45,46.67],[3.45,46.68],[3.45,46.69],[3.43,46.7],[3.43,46.7],[3.43,46.71],[3.41,46.71],[3.39,46.71],[3.38,46.71],[3.38,46.7],[3.37,46.69],[3.35,46.68],[3.32,46.69],[3.3,46.7],[3.3,46.72],[3.27,46.72],[3.26,46.71],[3.23,46.7],[3.23,46.69],[3.22,46.68],[3.2,46.68],[3.17,46.69],[3.13,46.73],[3.08,46.74],[3.05,46.76],[3.04,46.77],[3.03,46.79],[3.04,46.81],[3.06,46.83],[3.06,46.83],[3.05,46.84],[3.07,46.85],[3.06,46.89],[3.06,46.9],[3.05,46.91],[3.07,46.94],[3.08,46.95],[3.08,46.96],[3.07,46.96],[3.06,46.98],[3.07,47],[3.07,47.01],[3.07,47.03],[3.06,47.05],[3.05,47.05],[3.02,47.06],[3.02,47.07],[3.02,47.08],[3.03,47.09],[3.03,47.13],[3.02,47.14],[3.02,47.16],[3.02,47.16],[3,47.2],[2.98,47.23],[2.98,47.26],[2.97,47.27],[2.94,47.29],[2.91,47.31],[2.88,47.32],[2.87,47.33],[2.87,47.34],[2.89,47.37],[2.92,47.41],[2.92,47.42],[2.93,47.43],[2.93,47.44],[2.91,47.47],[2.9,47.49],[2.89,47.51],[2.87,47.52],[2.85,47.54],[2.85,47.54],[2.86,47.55],[2.87,47.55],[2.88,47.55],[2.9,47.55],[2.91,47.56],[2.91,47.57],[2.96,47.56],[2.96,47.56],[2.98,47.57],[2.97,47.57],[2.96,47.57],[2.96,47.59],[2.95,47.59],[2.94,47.6],[2.94,47.61],[2.93,47.63],[2.94,47.64],[2.95,47.65],[2.94,47.66],[2.93,47.66],[2.92,47.67],[2.92,47.68],[2.89,47.7],[2.88,47.7],[2.88,47.71],[2.88,47.72],[2.86,47.71],[2.85,47.72],[2.85,47.73],[2.85,47.73],[2.86,47.75],[2.85,47.76],[2.86,47.76],[2.9,47.76],[2.91,47.77],[2.94,47.76],[2.94,47.77],[2.95,47.77],[2.95,47.77],[2.99,47.79],[3.02,47.79],[3.03,47.8],[3.02,47.81],[3.02,47.81],[3.02,47.82],[3.01,47.83],[3.01,47.83],[3.03,47.84],[3.03,47.84],[3.02,47.86],[2.99,47.87],[3.01,47.88],[3.01,47.9],[3.02,47.9],[3.01,47.9],[3.05,47.91],[3.05,47.92],[3.07,47.93],[3.08,47.93],[3.08,47.94],[3.09,47.94],[3.1,47.95],[3.11,47.95],[3.11,47.96],[3.13,47.97],[3.13,47.98],[3.12,47.99],[3.13,47.99],[3.12,47.99],[3.12,48],[3.12,48.01],[3.11,48.01],[3.1,48.02],[3.1,48.02],[3.12,48.03],[3.1,48.04],[3.09,48.05],[3.1,48.05],[3.06,48.06],[3.05,48.07],[3.05,48.09],[3.05,48.09],[3.04,48.09],[3.04,48.12],[3.02,48.12],[3.03,48.13],[3.03,48.13],[3.02,48.14],[3.01,48.14],[3,48.14],[3,48.14],[2.99,48.15],[2.98,48.15],[2.96,48.15],[2.95,48.16],[2.94,48.16],[2.93,48.18],[2.96,48.19],[2.97,48.19],[2.97,48.2],[2.99,48.21],[3,48.21],[3.01,48.21],[3.01,48.22],[3.03,48.25],[3.05,48.25],[3.04,48.27],[3.02,48.28],[3.03,48.29],[3.02,48.3],[3.03,48.3],[3.02,48.31],[3.04,48.33],[3.04,48.34],[3.05,48.36],[3.07,48.36],[3.08,48.36],[3.09,48.36],[3.1,48.36],[3.1,48.35],[3.1,48.35],[3.11,48.36],[3.12,48.37],[3.14,48.37],[3.14,48.37],[3.17,48.37],[3.17,48.38],[3.18,48.37],[3.18,48.37],[3.19,48.37],[3.2,48.36],[3.23,48.37],[3.25,48.37],[3.27,48.38],[3.28,48.38],[3.28,48.38],[3.31,48.37],[3.31,48.38],[3.32,48.38],[3.33,48.37],[3.35,48.37],[3.35,48.38],[3.36,48.38],[3.36,48.37],[3.36,48.38],[3.37,48.39],[3.38,48.4],[3.39,48.4],[3.4,48.39],[3.41,48.39],[3.41,48.38]],[[5.44,46.85],[5.45,46.85],[5.45,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85]]]},"properties":{"id":7,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[2.56,51.07],[2.58,51.02],[2.57,51.01],[2.58,51],[2.61,50.99],[2.63,50.95],[2.63,50.95],[2.59,50.92],[2.59,50.92],[2.61,50.91],[2.6,50.91],[2.61,50.9],[2.61,50.87],[2.61,50.86],[2.6,50.85],[2.6,50.85],[2.61,50.85],[2.62,50.84],[2.62,50.84],[2.63,50.81],[2.65,50.81],[2.67,50.82],[2.68,50.81],[2.72,50.81],[2.72,50.81],[2.73,50.8],[2.74,50.78],[2.75,50.77],[2.76,50.77],[2.76,50.76],[2.78,50.75],[2.79,50.73],[2.81,50.72],[2.85,50.72],[2.87,50.7],[2.88,50.71],[2.9,50.69],[2.91,50.69],[2.91,50.7],[2.92,50.7],[2.93,50.71],[2.93,50.73],[2.94,50.73],[2.94,50.74],[2.94,50.75],[2.96,50.75],[2.97,50.75],[2.98,50.76],[3.01,50.77],[3.02,50.77],[3.04,50.77],[3.04,50.78],[3.06,50.78],[3.08,50.77],[3.09,50.77],[3.1,50.78],[3.11,50.79],[3.13,50.79],[3.15,50.79],[3.16,50.77],[3.18,50.75],[3.19,50.74],[3.2,50.74],[3.2,50.73],[3.19,50.72],[3.21,50.71],[3.25,50.71],[3.26,50.7],[3.26,50.69],[3.25,50.69],[3.26,50.68],[3.24,50.67],[3.24,50.67],[3.25,50.65],[3.25,50.65],[3.24,50.64],[3.26,50.63],[3.26,50.62],[3.27,50.61],[3.27,50.61],[3.28,50.59],[3.28,50.58],[3.28,50.58],[3.28,50.57],[3.28,50.56],[3.28,50.56],[3.28,50.55],[3.28,50.54],[3.29,50.53],[3.32,50.52],[3.33,50.51],[3.36,50.5],[3.38,50.49],[3.39,50.5],[3.41,50.5],[3.44,50.51],[3.44,50.51],[3.45,50.51],[3.46,50.52],[3.47,50.53],[3.47,50.53],[3.51,50.53],[3.52,50.52],[3.52,50.52],[3.52,50.52],[3.5,50.5],[3.5,50.5],[3.5,50.49],[3.5,50.49],[3.52,50.49],[3.57,50.5],[3.58,50.49],[3.61,50.5],[3.63,50.48],[3.64,50.46],[3.65,50.46],[3.66,50.46],[3.66,50.44],[3.67,50.44],[3.67,50.41],[3.67,50.39],[3.66,50.37],[3.67,50.36],[3.67,50.35],[3.68,50.34],[3.67,50.33],[3.68,50.33],[3.69,50.32],[3.71,50.3],[3.72,50.31],[3.71,50.32],[3.73,50.31],[3.73,50.31],[3.73,50.33],[3.73,50.33],[3.74,50.34],[3.74,50.35],[3.76,50.35],[3.77,50.35],[3.78,50.35],[3.8,50.35],[3.81,50.35],[3.81,50.35],[3.81,50.34],[3.82,50.35],[3.83,50.35],[3.84,50.35],[3.86,50.35],[3.87,50.34],[3.89,50.34],[3.89,50.33],[3.89,50.33],[3.9,50.33],[3.92,50.33],[3.96,50.35],[3.97,50.35],[3.97,50.34],[3.97,50.35],[3.99,50.34],[3.99,50.35],[4.01,50.35],[4.03,50.36],[4.04,50.34],[4.05,50.34],[4.08,50.32],[4.08,50.31],[4.1,50.31],[4.11,50.3],[4.12,50.3],[4.13,50.29],[4.12,50.27],[4.13,50.27],[4.14,50.26],[4.13,50.26],[4.16,50.26],[4.17,50.27],[4.15,50.28],[4.16,50.29],[4.17,50.29],[4.18,50.28],[4.18,50.28],[4.21,50.27],[4.22,50.25],[4.2,50.24],[4.2,50.24],[4.18,50.23],[4.17,50.22],[4.15,50.21],[4.16,50.2],[4.16,50.19],[4.16,50.19],[4.15,50.18],[4.16,50.17],[4.15,50.16],[4.14,50.15],[4.13,50.13],[4.15,50.13],[4.16,50.14],[4.2,50.13],[4.2,50.12],[4.2,50.11],[4.2,50.1],[4.21,50.1],[4.23,50.08],[4.23,50.07],[4.22,50.06],[4.2,50.06],[4.19,50.05],[4.17,50.05],[4.16,50.05],[4.14,50.02],[4.14,50.02],[4.15,50],[4.16,50],[4.16,50],[4.16,49.99],[4.14,49.98],[4.1,49.97],[4.08,49.97],[4.08,49.98],[4.06,49.99],[4.04,49.99],[4.03,49.98],[4.02,49.99],[4.01,49.99],[4.01,50],[3.98,49.99],[3.98,50],[4,50.03],[3.99,50.04],[3.98,50.04],[3.95,50.03],[3.95,50.03],[3.92,50.03],[3.89,50.01],[3.89,50.02],[3.88,50.03],[3.88,50.03],[3.88,50.03],[3.87,50.04],[3.85,50.04],[3.84,50.05],[3.82,50.04],[3.8,50.05],[3.78,50.05],[3.78,50.05],[3.75,50.05],[3.72,50.07],[3.71,50.07],[3.66,50.05],[3.65,50.04],[3.66,50.04],[3.66,50.03],[3.64,50.04],[3.63,50.03],[3.61,50.03],[3.59,50.04],[3.58,50.05],[3.57,50.05],[3.56,50.05],[3.54,50.05],[3.53,50.04],[3.51,50.04],[3.49,50.02],[3.43,50.02],[3.43,50.02],[3.42,50.03],[3.41,50.03],[3.4,50.03],[3.39,50.03],[3.37,50.04],[3.35,50.04],[3.35,50.03],[3.35,50.03],[3.34,50.03],[3.34,50.02],[3.33,50.02],[3.31,50.02],[3.28,50.02],[3.27,50.02],[3.28,50.02],[3.27,50.03],[3.26,50.03],[3.26,50.03],[3.24,50.03],[3.23,50.03],[3.23,50.03],[3.2,50.02],[3.17,50.01],[3.17,50.02],[3.15,50.02],[3.15,50.03],[3.12,50.02],[3.11,50.03],[3.11,50.04],[3.1,50.05],[3.09,50.05],[3.07,50.05],[3.03,50.06],[3.02,50.05],[3.01,50.06],[3.01,50.05],[2.97,50.04],[2.97,50.05],[2.95,50.05],[2.94,50.05],[2.93,50.05],[2.93,50.04],[2.92,50.05],[2.92,50.04],[2.9,50.04],[2.88,50.03],[2.88,50.02],[2.87,50.02],[2.86,50.02],[2.86,50.03],[2.85,50.03],[2.87,50.03],[2.88,50.04],[2.86,50.06],[2.86,50.06],[2.86,50.08],[2.84,50.07],[2.83,50.06],[2.82,50.07],[2.81,50.06],[2.81,50.06],[2.79,50.05],[2.78,50.05],[2.78,50.04],[2.76,50.04],[2.75,50.04],[2.74,50.05],[2.76,50.06],[2.76,50.07],[2.77,50.08],[2.78,50.09],[2.78,50.1],[2.78,50.11],[2.78,50.11],[2.76,50.11],[2.75,50.11],[2.73,50.13],[2.71,50.13],[2.71,50.13],[2.71,50.11],[2.7,50.11],[2.7,50.1],[2.72,50.09],[2.7,50.08],[2.69,50.09],[2.68,50.1],[2.67,50.09],[2.66,50.1],[2.65,50.09],[2.64,50.1],[2.63,50.11],[2.63,50.11],[2.62,50.11],[2.59,50.11],[2.59,50.11],[2.58,50.11],[2.57,50.12],[2.57,50.12],[2.59,50.14],[2.58,50.14],[2.57,50.14],[2.56,50.14],[2.55,50.14],[2.55,50.14],[2.54,50.13],[2.55,50.12],[2.53,50.12],[2.51,50.14],[2.48,50.14],[2.47,50.13],[2.46,50.13],[2.43,50.09],[2.42,50.09],[2.41,50.1],[2.4,50.11],[2.39,50.11],[2.38,50.11],[2.39,50.14],[2.39,50.15],[2.39,50.16],[2.4,50.16],[2.4,50.16],[2.41,50.16],[2.41,50.17],[2.44,50.18],[2.45,50.18],[2.47,50.19],[2.5,50.19],[2.5,50.2],[2.49,50.2],[2.49,50.21],[2.48,50.21],[2.46,50.22],[2.45,50.23],[2.44,50.23],[2.42,50.23],[2.41,50.23],[2.39,50.22],[2.38,50.23],[2.37,50.21],[2.36,50.21],[2.33,50.24],[2.31,50.23],[2.32,50.23],[2.32,50.23],[2.33,50.22],[2.33,50.21],[2.32,50.22],[2.32,50.22],[2.3,50.21],[2.27,50.23],[2.25,50.21],[2.22,50.21],[2.22,50.22],[2.2,50.22],[2.2,50.21],[2.19,50.21],[2.18,50.21],[2.18,50.21],[2.17,50.21],[2.15,50.19],[2.14,50.2],[2.14,50.21],[2.12,50.21],[2.11,50.2],[2.1,50.21],[2.09,50.2],[2.08,50.22],[2.07,50.23],[2.07,50.23],[2.06,50.23],[2.06,50.24],[2.08,50.25],[2.06,50.26],[2.05,50.26],[2.03,50.27],[2.01,50.27],[2,50.27],[1.99,50.28],[1.97,50.28],[1.96,50.29],[1.95,50.29],[1.95,50.29],[1.93,50.3],[1.96,50.31],[1.96,50.32],[1.96,50.33],[1.95,50.33],[1.94,50.33],[1.92,50.31],[1.9,50.31],[1.9,50.32],[1.88,50.32],[1.88,50.32],[1.87,50.33],[1.85,50.34],[1.85,50.34],[1.83,50.35],[1.8,50.36],[1.76,50.36],[1.76,50.36],[1.74,50.35],[1.73,50.35],[1.69,50.34],[1.69,50.34],[1.68,50.33],[1.66,50.33],[1.66,50.33],[1.65,50.34],[1.65,50.34],[1.64,50.35],[1.63,50.36],[1.63,50.36],[1.62,50.37],[1.62,50.37],[1.61,50.37],[1.59,50.37],[1.59,50.37],[1.59,50.38],[1.58,50.38],[1.58,50.38],[1.58,50.39],[1.57,50.39],[1.57,50.39],[1.56,50.39],[1.56,50.4],[1.56,50.4],[1.56,50.4],[1.56,50.41],[1.56,50.42],[1.56,50.42],[1.57,50.43],[1.57,50.43],[1.57,50.46],[1.57,50.47],[1.58,50.49],[1.58,50.51],[1.58,50.53],[1.58,50.54],[1.59,50.54],[1.59,50.54],[1.61,50.53],[1.62,50.52],[1.62,50.52],[1.6,50.54],[1.6,50.54],[1.61,50.54],[1.61,50.55],[1.6,50.55],[1.59,50.56],[1.58,50.56],[1.58,50.57],[1.58,50.58],[1.58,50.59],[1.58,50.64],[1.57,50.67],[1.57,50.67],[1.56,50.68],[1.56,50.68],[1.56,50.7],[1.56,50.7],[1.56,50.7],[1.57,50.71],[1.57,50.71],[1.57,50.71],[1.57,50.71],[1.57,50.72],[1.57,50.72],[1.56,50.73],[1.57,50.73],[1.57,50.73],[1.57,50.73],[1.57,50.72],[1.57,50.72],[1.57,50.73],[1.58,50.73],[1.57,50.72],[1.57,50.72],[1.58,50.72],[1.57,50.72],[1.57,50.72],[1.58,50.73],[1.58,50.73],[1.58,50.73],[1.59,50.73],[1.59,50.73],[1.59,50.73],[1.59,50.73],[1.6,50.75],[1.59,50.75],[1.6,50.75],[1.61,50.77],[1.61,50.78],[1.6,50.78],[1.6,50.78],[1.6,50.78],[1.61,50.79],[1.61,50.8],[1.6,50.8],[1.6,50.8],[1.59,50.82],[1.59,50.82],[1.59,50.83],[1.59,50.83],[1.59,50.84],[1.58,50.85],[1.58,50.85],[1.58,50.86],[1.58,50.86],[1.58,50.87],[1.58,50.87],[1.59,50.87],[1.59,50.87],[1.6,50.87],[1.61,50.87],[1.61,50.87],[1.61,50.87],[1.62,50.87],[1.64,50.88],[1.67,50.89],[1.68,50.9],[1.69,50.91],[1.7,50.92],[1.71,50.93],[1.71,50.93],[1.71,50.93],[1.73,50.94],[1.78,50.95],[1.82,50.96],[1.84,50.97],[1.84,50.97],[1.85,50.96],[1.85,50.96],[1.85,50.96],[1.85,50.96],[1.85,50.97],[1.86,50.97],[1.87,50.97],[1.87,50.97],[1.85,50.97],[1.85,50.97],[1.84,50.97],[1.86,50.97],[1.89,50.98],[1.92,50.99],[1.93,51],[1.94,51],[1.95,51],[1.96,51],[1.96,51],[1.98,51],[1.98,51],[1.99,51],[2.02,51],[2.02,51],[2.09,51.01],[2.09,51.01],[2.09,51.02],[2.09,51.02],[2.1,51.01],[2.12,51.01],[2.14,51.02],[2.14,51.03],[2.15,51.03],[2.15,51.03],[2.16,51.04],[2.16,51.04],[2.15,51.03],[2.15,51.03],[2.16,51.03],[2.15,51.03],[2.15,51.02],[2.15,51.02],[2.16,51.02],[2.16,51.02],[2.16,51.02],[2.17,51.02],[2.16,51.02],[2.17,51.02],[2.17,51.01],[2.18,51.01],[2.18,51.01],[2.18,51],[2.18,51],[2.18,51],[2.18,51],[2.18,51.01],[2.18,51.02],[2.19,51.02],[2.19,51.02],[2.18,51.02],[2.18,51.02],[2.17,51.02],[2.19,51.03],[2.19,51.04],[2.19,51.04],[2.18,51.04],[2.17,51.04],[2.16,51.04],[2.17,51.04],[2.18,51.04],[2.19,51.04],[2.2,51.04],[2.2,51.03],[2.21,51.03],[2.21,51.03],[2.26,51.04],[2.26,51.04],[2.26,51.03],[2.26,51.03],[2.26,51.04],[2.26,51.04],[2.26,51.03],[2.26,51.03],[2.26,51.04],[2.26,51.04],[2.27,51.03],[2.27,51.03],[2.27,51.04],[2.27,51.04],[2.27,51.04],[2.27,51.04],[2.28,51.04],[2.29,51.05],[2.33,51.05],[2.35,51.05],[2.34,51.04],[2.35,51.05],[2.36,51.05],[2.35,51.04],[2.36,51.04],[2.36,51.05],[2.36,51.04],[2.36,51.04],[2.36,51.04],[2.36,51.04],[2.37,51.04],[2.36,51.04],[2.37,51.04],[2.37,51.04],[2.37,51.04],[2.37,51.04],[2.37,51.04],[2.37,51.04],[2.37,51.04],[2.36,51.05],[2.35,51.05],[2.36,51.05],[2.37,51.05],[2.38,51.05],[2.42,51.05],[2.49,51.07],[2.55,51.09],[2.56,51.07]]],[[[2.34,51.06],[2.35,51.06],[2.34,51.05],[2.34,51.05],[2.34,51.06]]]]},"properties":{"id":8,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.43,49.59],[5.44,49.57],[5.45,49.57],[5.45,49.55],[5.44,49.55],[5.44,49.55],[5.47,49.54],[5.46,49.53],[5.45,49.52],[5.46,49.51],[5.47,49.5],[5.47,49.5],[5.48,49.51],[5.5,49.51],[5.53,49.51],[5.54,49.52],[5.55,49.53],[5.57,49.53],[5.59,49.52],[5.61,49.51],[5.61,49.51],[5.62,49.52],[5.62,49.53],[5.63,49.54],[5.63,49.54],[5.65,49.55],[5.66,49.55],[5.67,49.55],[5.69,49.55],[5.7,49.54],[5.72,49.54],[5.73,49.54],[5.74,49.54],[5.76,49.54],[5.76,49.56],[5.77,49.56],[5.79,49.55],[5.81,49.55],[5.82,49.54],[5.81,49.54],[5.82,49.54],[5.84,49.54],[5.84,49.53],[5.84,49.53],[5.84,49.52],[5.86,49.5],[5.89,49.5],[5.91,49.5],[5.93,49.5],[5.95,49.5],[5.96,49.49],[5.97,49.49],[5.97,49.47],[5.99,49.46],[5.98,49.45],[5.98,49.45],[6,49.46],[6.03,49.45],[6.03,49.45],[6.04,49.45],[6.06,49.47],[6.07,49.47],[6.09,49.46],[6.1,49.45],[6.1,49.47],[6.11,49.47],[6.12,49.47],[6.13,49.49],[6.14,49.49],[6.16,49.49],[6.16,49.5],[6.18,49.51],[6.18,49.51],[6.22,49.51],[6.22,49.51],[6.24,49.51],[6.24,49.51],[6.28,49.5],[6.28,49.49],[6.29,49.49],[6.3,49.49],[6.3,49.48],[6.32,49.48],[6.33,49.47],[6.34,49.47],[6.35,49.47],[6.35,49.47],[6.36,49.46],[6.37,49.46],[6.37,49.47],[6.4,49.47],[6.42,49.48],[6.43,49.47],[6.44,49.47],[6.45,49.46],[6.47,49.46],[6.48,49.45],[6.5,49.45],[6.52,49.44],[6.54,49.43],[6.55,49.42],[6.54,49.41],[6.54,49.4],[6.55,49.4],[6.55,49.39],[6.56,49.39],[6.58,49.39],[6.58,49.38],[6.59,49.37],[6.6,49.37],[6.59,49.35],[6.58,49.36],[6.57,49.36],[6.56,49.36],[6.57,49.35],[6.58,49.34],[6.59,49.33],[6.59,49.33],[6.59,49.32],[6.62,49.3],[6.63,49.3],[6.63,49.3],[6.65,49.29],[6.65,49.28],[6.67,49.28],[6.66,49.26],[6.68,49.25],[6.69,49.25],[6.69,49.24],[6.69,49.22],[6.7,49.22],[6.72,49.22],[6.73,49.21],[6.71,49.19],[6.72,49.18],[6.74,49.16],[6.75,49.17],[6.76,49.17],[6.77,49.17],[6.78,49.17],[6.83,49.15],[6.85,49.16],[6.85,49.16],[6.84,49.17],[6.86,49.18],[6.86,49.18],[6.85,49.19],[6.85,49.2],[6.84,49.21],[6.84,49.21],[6.86,49.22],[6.88,49.21],[6.89,49.21],[6.92,49.22],[6.93,49.22],[6.94,49.21],[6.96,49.2],[6.98,49.21],[7,49.19],[7.01,49.19],[7.01,49.19],[7.02,49.19],[7.02,49.19],[7.03,49.19],[7.03,49.17],[7.03,49.15],[7.05,49.14],[7.05,49.12],[7.06,49.11],[7.07,49.12],[7.07,49.13],[7.09,49.13],[7.08,49.14],[7.08,49.15],[7.1,49.15],[7.11,49.15],[7.11,49.15],[7.1,49.15],[7.1,49.14],[7.12,49.14],[7.13,49.13],[7.16,49.12],[7.16,49.13],[7.18,49.13],[7.2,49.12],[7.2,49.12],[7.21,49.12],[7.25,49.13],[7.25,49.13],[7.28,49.12],[7.28,49.12],[7.29,49.12],[7.3,49.12],[7.31,49.14],[7.33,49.14],[7.36,49.15],[7.37,49.17],[7.45,49.18],[7.44,49.16],[7.45,49.17],[7.46,49.16],[7.48,49.17],[7.49,49.17],[7.5,49.16],[7.5,49.15],[7.5,49.15],[7.49,49.14],[7.5,49.13],[7.5,49.12],[7.52,49.12],[7.52,49.11],[7.53,49.1],[7.56,49.08],[7.57,49.08],[7.6,49.08],[7.63,49.07],[7.64,49.05],[7.64,49.05],[7.63,49.03],[7.61,49.02],[7.61,49.01],[7.59,48.99],[7.59,48.98],[7.58,48.97],[7.58,48.97],[7.58,48.96],[7.55,48.94],[7.56,48.94],[7.54,48.93],[7.53,48.94],[7.51,48.94],[7.49,48.95],[7.48,48.96],[7.46,48.96],[7.45,48.97],[7.43,48.96],[7.4,48.96],[7.39,48.95],[7.38,48.95],[7.36,48.96],[7.34,48.95],[7.33,48.95],[7.33,48.94],[7.31,48.95],[7.31,48.96],[7.29,48.96],[7.29,48.96],[7.29,48.97],[7.29,48.97],[7.24,48.99],[7.21,48.98],[7.2,48.99],[7.19,48.99],[7.17,49.01],[7.16,49],[7.16,49.01],[7.13,49.01],[7.12,49.02],[7.12,49.03],[7.12,49.04],[7.11,49.05],[7.1,49.06],[7.1,49.06],[7.11,49.06],[7.12,49.07],[7.11,49.07],[7.1,49.08],[7.09,49.07],[7.07,49.07],[7.07,49.07],[7.07,49.06],[7.08,49.05],[7.05,49.03],[7.05,49.02],[7.05,49.01],[7.05,49],[7.04,49],[7.03,48.99],[7.04,48.98],[7.04,48.97],[7.03,48.97],[7.03,48.96],[6.99,48.96],[6.98,48.93],[6.97,48.93],[6.96,48.93],[6.95,48.93],[6.94,48.93],[6.94,48.92],[6.96,48.92],[6.96,48.91],[6.96,48.89],[6.97,48.89],[6.99,48.89],[7.04,48.87],[7.06,48.86],[7.05,48.86],[7.08,48.86],[7.09,48.86],[7.1,48.85],[7.09,48.85],[7.05,48.85],[7.05,48.84],[7.05,48.82],[7.05,48.81],[7.07,48.82],[7.09,48.81],[7.09,48.81],[7.07,48.8],[7.07,48.79],[7.08,48.79],[7.09,48.79],[7.13,48.8],[7.12,48.81],[7.13,48.82],[7.14,48.82],[7.15,48.82],[7.14,48.84],[7.15,48.84],[7.17,48.84],[7.18,48.85],[7.18,48.85],[7.19,48.84],[7.19,48.83],[7.2,48.83],[7.21,48.83],[7.22,48.82],[7.22,48.83],[7.23,48.83],[7.25,48.82],[7.26,48.82],[7.26,48.82],[7.25,48.81],[7.25,48.81],[7.26,48.8],[7.26,48.8],[7.27,48.8],[7.29,48.79],[7.29,48.79],[7.31,48.77],[7.31,48.77],[7.29,48.75],[7.29,48.73],[7.27,48.71],[7.26,48.7],[7.26,48.69],[7.25,48.7],[7.24,48.69],[7.26,48.67],[7.26,48.67],[7.27,48.66],[7.3,48.66],[7.28,48.64],[7.27,48.63],[7.28,48.62],[7.26,48.6],[7.27,48.59],[7.26,48.59],[7.22,48.55],[7.22,48.55],[7.2,48.55],[7.19,48.55],[7.19,48.54],[7.17,48.53],[7.15,48.53],[7.14,48.53],[7.12,48.54],[7.09,48.53],[7.08,48.54],[7.07,48.52],[7.08,48.51],[7.08,48.52],[7.1,48.52],[7.12,48.51],[7.13,48.5],[7.13,48.5],[7.11,48.5],[7.09,48.51],[7.09,48.5],[7.09,48.49],[7.12,48.48],[7.12,48.47],[7.1,48.45],[7.11,48.44],[7.11,48.44],[7.1,48.44],[7.1,48.43],[7.1,48.4],[7.08,48.4],[7.1,48.39],[7.11,48.38],[7.1,48.37],[7.08,48.35],[7.11,48.34],[7.12,48.33],[7.14,48.33],[7.16,48.34],[7.17,48.34],[7.18,48.34],[7.18,48.33],[7.19,48.32],[7.2,48.31],[7.19,48.3],[7.17,48.3],[7.17,48.29],[7.16,48.28],[7.16,48.27],[7.15,48.26],[7.13,48.24],[7.13,48.23],[7.12,48.21],[7.11,48.2],[7.11,48.19],[7.09,48.18],[7.08,48.17],[7.08,48.16],[7.06,48.14],[7.07,48.13],[7.08,48.13],[7.08,48.11],[7.07,48.11],[7.05,48.08],[7.03,48.08],[7.02,48.06],[7.02,48.06],[7.02,48.06],[7.01,48.04],[7.02,48.04],[7,48.02],[6.99,48.02],[6.98,48.01],[6.97,48.01],[6.96,48],[6.95,48],[6.94,48],[6.94,47.98],[6.93,47.97],[6.92,47.95],[6.92,47.93],[6.91,47.92],[6.92,47.92],[6.93,47.91],[6.92,47.91],[6.92,47.9],[6.92,47.9],[6.9,47.89],[6.91,47.88],[6.91,47.86],[6.92,47.86],[6.92,47.85],[6.91,47.85],[6.9,47.83],[6.87,47.83],[6.86,47.82],[6.85,47.82],[6.84,47.82],[6.82,47.81],[6.79,47.83],[6.79,47.83],[6.79,47.84],[6.78,47.85],[6.74,47.86],[6.74,47.87],[6.74,47.86],[6.71,47.88],[6.7,47.88],[6.65,47.9],[6.64,47.91],[6.64,47.92],[6.63,47.93],[6.61,47.94],[6.61,47.94],[6.6,47.94],[6.57,47.93],[6.54,47.9],[6.5,47.9],[6.48,47.89],[6.48,47.89],[6.46,47.91],[6.46,47.92],[6.45,47.92],[6.43,47.94],[6.41,47.94],[6.4,47.95],[6.39,47.96],[6.38,47.96],[6.36,47.96],[6.32,47.95],[6.31,47.95],[6.29,47.96],[6.28,47.95],[6.25,47.94],[6.24,47.94],[6.24,47.93],[6.22,47.94],[6.21,47.93],[6.21,47.93],[6.21,47.94],[6.21,47.95],[6.18,47.96],[6.17,47.95],[6.16,47.96],[6.16,47.96],[6.16,47.96],[6.15,47.97],[6.16,47.97],[6.16,47.99],[6.15,48],[6.16,48.01],[6.13,48.02],[6.11,48.02],[6.11,48.01],[6.07,48.02],[6.04,48],[6.02,47.99],[6.02,47.98],[6.01,47.97],[6.01,47.96],[6,47.96],[5.97,47.96],[5.97,47.95],[5.95,47.94],[5.93,47.94],[5.94,47.95],[5.96,47.97],[5.95,47.98],[5.93,47.97],[5.92,47.97],[5.92,47.95],[5.91,47.95],[5.89,47.94],[5.9,47.93],[5.88,47.93],[5.86,47.95],[5.86,47.95],[5.85,47.95],[5.85,47.96],[5.85,47.97],[5.85,47.97],[5.85,47.97],[5.85,47.98],[5.83,47.96],[5.82,47.96],[5.81,47.95],[5.79,47.95],[5.78,47.98],[5.79,47.99],[5.79,48],[5.79,48],[5.79,48.01],[5.78,48.02],[5.78,48.03],[5.77,48.03],[5.76,48.03],[5.74,48.05],[5.72,48.05],[5.72,48.05],[5.71,48.06],[5.7,48.07],[5.7,48.08],[5.69,48.08],[5.66,48.08],[5.66,48.08],[5.66,48.07],[5.65,48.07],[5.63,48.08],[5.64,48.1],[5.65,48.11],[5.67,48.11],[5.66,48.12],[5.66,48.13],[5.68,48.14],[5.68,48.14],[5.69,48.15],[5.68,48.16],[5.69,48.17],[5.68,48.18],[5.7,48.19],[5.73,48.19],[5.73,48.2],[5.71,48.22],[5.69,48.23],[5.68,48.23],[5.64,48.24],[5.65,48.25],[5.65,48.27],[5.61,48.29],[5.59,48.27],[5.59,48.28],[5.53,48.33],[5.52,48.34],[5.53,48.35],[5.51,48.35],[5.5,48.35],[5.47,48.35],[5.47,48.35],[5.46,48.35],[5.44,48.34],[5.43,48.33],[5.42,48.34],[5.42,48.35],[5.42,48.36],[5.44,48.38],[5.41,48.38],[5.39,48.39],[5.41,48.39],[5.45,48.41],[5.47,48.42],[5.46,48.43],[5.46,48.42],[5.45,48.42],[5.44,48.43],[5.43,48.43],[5.41,48.45],[5.4,48.46],[5.41,48.47],[5.4,48.47],[5.38,48.47],[5.37,48.48],[5.35,48.48],[5.33,48.51],[5.32,48.51],[5.31,48.52],[5.3,48.51],[5.29,48.51],[5.29,48.51],[5.27,48.51],[5.23,48.53],[5.22,48.53],[5.21,48.53],[5.21,48.54],[5.19,48.54],[5.2,48.55],[5.17,48.56],[5.17,48.57],[5.15,48.56],[5.14,48.56],[5.13,48.57],[5.13,48.58],[5.12,48.59],[5.12,48.6],[5.09,48.59],[5.07,48.6],[5.06,48.62],[5.06,48.63],[5.05,48.63],[5.03,48.61],[5.01,48.61],[5,48.62],[5,48.63],[4.99,48.65],[4.99,48.66],[5.01,48.67],[5.01,48.68],[4.99,48.68],[4.99,48.69],[5.01,48.7],[5,48.71],[5.01,48.71],[5.02,48.71],[5.01,48.72],[5.01,48.74],[4.99,48.74],[4.98,48.75],[4.98,48.75],[4.95,48.77],[4.94,48.78],[4.93,48.79],[4.89,48.8],[4.89,48.8],[4.9,48.81],[4.89,48.82],[4.91,48.83],[4.94,48.84],[4.94,48.85],[4.93,48.85],[4.92,48.86],[4.91,48.87],[4.92,48.89],[4.92,48.89],[4.91,48.9],[4.92,48.91],[4.93,48.91],[4.94,48.92],[4.95,48.93],[4.96,48.93],[4.97,48.93],[5,48.94],[5.01,48.94],[5.01,48.95],[5.03,48.95],[5.04,48.97],[5.03,48.98],[5,48.98],[5.01,48.99],[5.03,49],[5.03,49],[5.04,49.01],[5.04,49.02],[5.01,49.03],[4.97,49.02],[5,49.05],[5.01,49.06],[5,49.09],[5,49.11],[4.98,49.12],[4.97,49.13],[4.96,49.15],[4.94,49.19],[4.96,49.2],[4.98,49.2],[4.99,49.21],[4.98,49.22],[4.97,49.24],[4.95,49.24],[4.96,49.24],[4.97,49.25],[5,49.26],[5,49.26],[5.01,49.27],[5.03,49.27],[5.04,49.27],[5.05,49.27],[5.05,49.28],[5.06,49.29],[5.06,49.29],[5.04,49.3],[5.03,49.31],[5.03,49.31],[5.04,49.32],[5.03,49.33],[5.03,49.34],[5.06,49.36],[5.05,49.37],[5.06,49.37],[5.09,49.37],[5.1,49.38],[5.1,49.39],[5.09,49.4],[5.08,49.4],[5.1,49.41],[5.11,49.42],[5.12,49.42],[5.11,49.43],[5.1,49.44],[5.11,49.46],[5.1,49.46],[5.1,49.46],[5.08,49.47],[5.08,49.48],[5.08,49.49],[5.07,49.49],[5.06,49.5],[5.06,49.51],[5.08,49.51],[5.09,49.52],[5.09,49.52],[5.1,49.53],[5.09,49.54],[5.1,49.56],[5.11,49.56],[5.11,49.56],[5.11,49.58],[5.11,49.59],[5.12,49.59],[5.15,49.59],[5.16,49.57],[5.17,49.56],[5.19,49.57],[5.2,49.57],[5.21,49.57],[5.23,49.57],[5.23,49.56],[5.25,49.56],[5.26,49.54],[5.28,49.54],[5.28,49.55],[5.31,49.56],[5.31,49.56],[5.34,49.59],[5.35,49.59],[5.36,49.59],[5.38,49.59],[5.38,49.61],[5.39,49.62],[5.43,49.59],[5.43,49.59]]]},"properties":{"id":9,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.12,49.07],[7.11,49.06],[7.1,49.06],[7.1,49.06],[7.11,49.05],[7.12,49.04],[7.12,49.03],[7.12,49.02],[7.13,49.01],[7.16,49.01],[7.16,49],[7.17,49.01],[7.19,48.99],[7.2,48.99],[7.21,48.98],[7.24,48.99],[7.29,48.97],[7.29,48.97],[7.29,48.96],[7.29,48.96],[7.31,48.96],[7.31,48.95],[7.33,48.94],[7.33,48.95],[7.34,48.95],[7.36,48.96],[7.38,48.95],[7.39,48.95],[7.4,48.96],[7.43,48.96],[7.45,48.97],[7.46,48.96],[7.48,48.96],[7.49,48.95],[7.51,48.94],[7.53,48.94],[7.54,48.93],[7.56,48.94],[7.55,48.94],[7.58,48.96],[7.58,48.97],[7.58,48.97],[7.59,48.98],[7.59,48.99],[7.61,49.01],[7.61,49.02],[7.63,49.03],[7.64,49.05],[7.64,49.05],[7.67,49.05],[7.7,49.05],[7.7,49.06],[7.72,49.05],[7.73,49.05],[7.73,49.04],[7.74,49.05],[7.77,49.05],[7.78,49.06],[7.79,49.06],[7.79,49.06],[7.8,49.06],[7.83,49.05],[7.85,49.04],[7.86,49.04],[7.87,49.03],[7.88,49.05],[7.89,49.05],[7.92,49.04],[7.94,49.06],[7.97,49.04],[7.98,49.03],[8,49.03],[8.02,49.02],[8.05,49.01],[8.07,49],[8.09,48.99],[8.12,48.98],[8.13,48.98],[8.16,48.98],[8.19,48.98],[8.2,48.97],[8.2,48.97],[8.22,48.98],[8.23,48.97],[8.23,48.97],[8.23,48.96],[8.2,48.96],[8.14,48.9],[8.12,48.86],[8.1,48.82],[8.09,48.8],[8.06,48.79],[8.04,48.79],[8.03,48.79],[8.02,48.76],[8,48.76],[7.98,48.76],[7.97,48.76],[7.97,48.73],[7.96,48.72],[7.9,48.67],[7.88,48.66],[7.85,48.65],[7.84,48.63],[7.83,48.62],[7.81,48.59],[7.8,48.58],[7.81,48.56],[7.81,48.51],[7.79,48.5],[7.77,48.49],[7.77,48.49],[7.77,48.46],[7.75,48.43],[7.73,48.4],[7.73,48.38],[7.74,48.34],[7.75,48.33],[7.74,48.32],[7.73,48.32],[7.71,48.31],[7.69,48.3],[7.68,48.26],[7.67,48.22],[7.64,48.2],[7.63,48.18],[7.6,48.16],[7.6,48.14],[7.58,48.12],[7.58,48.11],[7.58,48.09],[7.57,48.08],[7.57,48.06],[7.57,48.04],[7.58,48.02],[7.61,48],[7.62,47.97],[7.6,47.95],[7.58,47.93],[7.58,47.92],[7.58,47.9],[7.58,47.89],[7.56,47.88],[7.56,47.87],[7.56,47.85],[7.56,47.84],[7.53,47.78],[7.53,47.77],[7.55,47.74],[7.54,47.72],[7.53,47.71],[7.51,47.7],[7.51,47.7],[7.52,47.68],[7.52,47.67],[7.52,47.66],[7.57,47.63],[7.57,47.62],[7.59,47.6],[7.58,47.58],[7.57,47.58],[7.56,47.57],[7.56,47.56],[7.52,47.55],[7.51,47.54],[7.5,47.54],[7.5,47.54],[7.5,47.53],[7.52,47.53],[7.53,47.53],[7.53,47.53],[7.52,47.52],[7.52,47.52],[7.5,47.52],[7.5,47.52],[7.51,47.51],[7.51,47.5],[7.49,47.48],[7.48,47.48],[7.43,47.5],[7.42,47.48],[7.43,47.48],[7.45,47.47],[7.44,47.46],[7.43,47.46],[7.42,47.45],[7.4,47.44],[7.39,47.43],[7.35,47.43],[7.34,47.44],[7.3,47.44],[7.25,47.42],[7.24,47.43],[7.24,47.44],[7.22,47.44],[7.21,47.43],[7.17,47.44],[7.17,47.45],[7.18,47.46],[7.18,47.47],[7.19,47.48],[7.19,47.49],[7.2,47.49],[7.2,47.49],[7.17,47.49],[7.16,47.49],[7.15,47.5],[7.13,47.5],[7.14,47.51],[7.14,47.53],[7.13,47.54],[7.12,47.55],[7.11,47.55],[7.11,47.56],[7.11,47.57],[7.09,47.57],[7.09,47.58],[7.09,47.59],[7.09,47.59],[7.07,47.6],[7.04,47.6],[7.03,47.59],[7.02,47.59],[7.02,47.59],[7.02,47.6],[7.01,47.6],[7.01,47.6],[7.01,47.62],[7.01,47.63],[7.01,47.63],[7.01,47.63],[7.02,47.65],[7.02,47.65],[7.04,47.65],[7.04,47.66],[7.05,47.67],[7.04,47.68],[7.05,47.68],[7.04,47.69],[7.04,47.69],[7.04,47.69],[7.03,47.71],[7.04,47.72],[7.02,47.73],[7.02,47.74],[7.01,47.74],[6.97,47.75],[6.94,47.77],[6.92,47.77],[6.92,47.77],[6.91,47.78],[6.9,47.78],[6.86,47.78],[6.85,47.8],[6.85,47.81],[6.84,47.81],[6.85,47.82],[6.86,47.82],[6.87,47.83],[6.9,47.83],[6.91,47.85],[6.92,47.85],[6.92,47.86],[6.91,47.86],[6.91,47.88],[6.9,47.89],[6.92,47.9],[6.92,47.9],[6.92,47.91],[6.93,47.91],[6.92,47.92],[6.91,47.92],[6.92,47.93],[6.92,47.95],[6.93,47.97],[6.94,47.98],[6.94,48],[6.95,48],[6.96,48],[6.97,48.01],[6.98,48.01],[6.99,48.02],[7,48.02],[7.02,48.04],[7.01,48.04],[7.02,48.06],[7.02,48.06],[7.02,48.06],[7.03,48.08],[7.05,48.08],[7.07,48.11],[7.08,48.11],[7.08,48.13],[7.07,48.13],[7.06,48.14],[7.08,48.16],[7.08,48.17],[7.09,48.18],[7.11,48.19],[7.11,48.2],[7.12,48.21],[7.13,48.23],[7.13,48.24],[7.15,48.26],[7.16,48.27],[7.16,48.28],[7.17,48.29],[7.17,48.3],[7.19,48.3],[7.2,48.31],[7.19,48.32],[7.18,48.33],[7.18,48.34],[7.17,48.34],[7.16,48.34],[7.14,48.33],[7.12,48.33],[7.11,48.34],[7.08,48.35],[7.1,48.37],[7.11,48.38],[7.1,48.39],[7.08,48.4],[7.1,48.4],[7.1,48.43],[7.1,48.44],[7.11,48.44],[7.11,48.44],[7.1,48.45],[7.12,48.47],[7.12,48.48],[7.09,48.49],[7.09,48.5],[7.09,48.51],[7.11,48.5],[7.13,48.5],[7.13,48.5],[7.12,48.51],[7.1,48.52],[7.08,48.52],[7.08,48.51],[7.07,48.52],[7.08,48.54],[7.09,48.53],[7.12,48.54],[7.14,48.53],[7.15,48.53],[7.17,48.53],[7.19,48.54],[7.19,48.55],[7.2,48.55],[7.22,48.55],[7.26,48.59],[7.27,48.59],[7.26,48.6],[7.28,48.62],[7.27,48.63],[7.28,48.64],[7.3,48.66],[7.27,48.66],[7.26,48.67],[7.26,48.67],[7.24,48.69],[7.25,48.7],[7.26,48.69],[7.26,48.7],[7.27,48.71],[7.29,48.73],[7.29,48.75],[7.31,48.77],[7.31,48.77],[7.29,48.79],[7.29,48.79],[7.27,48.8],[7.26,48.8],[7.26,48.8],[7.25,48.81],[7.25,48.81],[7.26,48.82],[7.26,48.82],[7.25,48.82],[7.23,48.83],[7.22,48.83],[7.22,48.82],[7.21,48.83],[7.2,48.83],[7.19,48.83],[7.19,48.84],[7.18,48.85],[7.18,48.85],[7.17,48.84],[7.15,48.84],[7.14,48.84],[7.15,48.82],[7.14,48.82],[7.13,48.82],[7.12,48.81],[7.13,48.8],[7.09,48.79],[7.08,48.79],[7.07,48.79],[7.07,48.8],[7.09,48.81],[7.09,48.81],[7.07,48.82],[7.05,48.81],[7.05,48.82],[7.05,48.84],[7.05,48.85],[7.09,48.85],[7.1,48.85],[7.09,48.86],[7.08,48.86],[7.05,48.86],[7.06,48.86],[7.04,48.87],[6.99,48.89],[6.97,48.89],[6.96,48.89],[6.96,48.91],[6.96,48.92],[6.94,48.92],[6.94,48.93],[6.95,48.93],[6.96,48.93],[6.97,48.93],[6.98,48.93],[6.99,48.96],[7.03,48.96],[7.03,48.97],[7.04,48.97],[7.04,48.98],[7.03,48.99],[7.04,49],[7.05,49],[7.05,49.01],[7.05,49.02],[7.05,49.03],[7.08,49.05],[7.07,49.06],[7.07,49.07],[7.07,49.07],[7.09,49.07],[7.1,49.08],[7.11,49.07],[7.12,49.07]]]},"properties":{"id":10,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.09,46.31],[-1.09,46.32],[-1.09,46.32],[-1.09,46.32],[-1.1,46.31],[-1.1,46.32],[-1.11,46.32],[-1.11,46.32],[-1.12,46.32],[-1.12,46.32],[-1.12,46.32],[-1.12,46.32],[-1.13,46.31],[-1.13,46.31],[-1.14,46.31],[-1.15,46.31],[-1.16,46.31],[-1.17,46.31],[-1.17,46.31],[-1.18,46.31],[-1.18,46.31],[-1.18,46.31],[-1.18,46.31],[-1.19,46.31],[-1.19,46.3],[-1.2,46.3],[-1.2,46.29],[-1.21,46.29],[-1.21,46.28],[-1.21,46.28],[-1.21,46.28],[-1.21,46.27],[-1.2,46.27],[-1.2,46.27],[-1.21,46.27],[-1.22,46.27],[-1.22,46.27],[-1.23,46.28],[-1.25,46.29],[-1.27,46.3],[-1.28,46.31],[-1.29,46.31],[-1.29,46.31],[-1.3,46.32],[-1.3,46.32],[-1.31,46.33],[-1.31,46.32],[-1.3,46.32],[-1.3,46.31],[-1.29,46.3],[-1.29,46.3],[-1.29,46.3],[-1.29,46.3],[-1.29,46.3],[-1.28,46.3],[-1.28,46.29],[-1.28,46.29],[-1.28,46.29],[-1.28,46.29],[-1.27,46.29],[-1.27,46.29],[-1.28,46.29],[-1.28,46.29],[-1.3,46.29],[-1.3,46.29],[-1.31,46.3],[-1.32,46.32],[-1.33,46.33],[-1.35,46.34],[-1.37,46.35],[-1.37,46.34],[-1.39,46.34],[-1.39,46.34],[-1.4,46.34],[-1.4,46.34],[-1.41,46.35],[-1.42,46.35],[-1.43,46.35],[-1.43,46.34],[-1.43,46.34],[-1.43,46.34],[-1.43,46.34],[-1.44,46.34],[-1.47,46.34],[-1.48,46.36],[-1.48,46.36],[-1.49,46.38],[-1.5,46.4],[-1.52,46.4],[-1.53,46.41],[-1.53,46.41],[-1.54,46.41],[-1.54,46.41],[-1.55,46.4],[-1.55,46.4],[-1.58,46.41],[-1.58,46.41],[-1.58,46.41],[-1.6,46.41],[-1.63,46.41],[-1.63,46.42],[-1.65,46.42],[-1.65,46.43],[-1.65,46.43],[-1.65,46.43],[-1.64,46.43],[-1.64,46.44],[-1.64,46.44],[-1.64,46.44],[-1.64,46.43],[-1.65,46.43],[-1.65,46.43],[-1.66,46.43],[-1.66,46.43],[-1.67,46.44],[-1.67,46.44],[-1.67,46.44],[-1.68,46.44],[-1.68,46.44],[-1.69,46.44],[-1.7,46.44],[-1.7,46.45],[-1.7,46.45],[-1.71,46.45],[-1.71,46.46],[-1.71,46.46],[-1.72,46.46],[-1.72,46.46],[-1.73,46.46],[-1.73,46.47],[-1.74,46.47],[-1.74,46.47],[-1.74,46.47],[-1.76,46.48],[-1.76,46.48],[-1.76,46.48],[-1.77,46.49],[-1.78,46.49],[-1.79,46.49],[-1.79,46.49],[-1.79,46.49],[-1.79,46.49],[-1.8,46.49],[-1.81,46.49],[-1.82,46.5],[-1.82,46.51],[-1.82,46.51],[-1.82,46.51],[-1.82,46.52],[-1.83,46.54],[-1.83,46.55],[-1.84,46.56],[-1.84,46.57],[-1.85,46.58],[-1.85,46.6],[-1.86,46.61],[-1.86,46.61],[-1.87,46.62],[-1.88,46.62],[-1.87,46.62],[-1.88,46.63],[-1.88,46.63],[-1.88,46.63],[-1.88,46.63],[-1.89,46.63],[-1.9,46.64],[-1.9,46.64],[-1.9,46.65],[-1.91,46.65],[-1.91,46.65],[-1.91,46.66],[-1.92,46.66],[-1.92,46.67],[-1.92,46.67],[-1.93,46.68],[-1.95,46.7],[-1.94,46.7],[-1.95,46.7],[-1.95,46.69],[-1.96,46.69],[-1.96,46.69],[-1.97,46.69],[-1.97,46.69],[-1.97,46.7],[-1.97,46.7],[-1.98,46.7],[-1.98,46.7],[-1.98,46.71],[-1.98,46.71],[-1.98,46.71],[-1.98,46.72],[-2,46.73],[-2.06,46.78],[-2.12,46.81],[-2.14,46.82],[-2.14,46.82],[-2.15,46.84],[-2.15,46.86],[-2.15,46.87],[-2.16,46.88],[-2.16,46.89],[-2.15,46.89],[-2.15,46.89],[-2.14,46.89],[-2.14,46.89],[-2.14,46.89],[-2.13,46.89],[-2.12,46.9],[-2.12,46.91],[-2.1,46.93],[-2.1,46.93],[-2.09,46.93],[-2.08,46.93],[-2.08,46.94],[-2.08,46.94],[-2.06,46.95],[-2.05,46.97],[-2.04,46.97],[-2.05,46.98],[-2.04,46.99],[-2.03,46.99],[-2.04,46.99],[-2.04,46.99],[-2.04,47],[-2.03,47],[-2.03,47],[-2.03,47.01],[-2.03,47.01],[-2.03,47.01],[-2.03,47.01],[-2.03,47.01],[-2.03,47.01],[-2.02,47.01],[-2.02,47.01],[-2.02,47.01],[-2.02,47.01],[-2.02,47.01],[-2.01,47.01],[-2.01,47.02],[-2.01,47.02],[-2,47.02],[-1.98,47.03],[-1.98,47.03],[-1.98,47.03],[-1.99,47.03],[-1.99,47.04],[-2,47.05],[-2.01,47.06],[-2.01,47.06],[-2.02,47.07],[-2.03,47.07],[-2.03,47.07],[-2.04,47.08],[-2.04,47.08],[-2.05,47.08],[-2.05,47.09],[-2.06,47.09],[-2.07,47.1],[-2.07,47.1],[-2.08,47.1],[-2.1,47.11],[-2.11,47.11],[-2.11,47.11],[-2.11,47.11],[-2.11,47.11],[-2.11,47.11],[-2.12,47.11],[-2.12,47.11],[-2.12,47.11],[-2.13,47.11],[-2.14,47.11],[-2.15,47.11],[-2.16,47.11],[-2.16,47.12],[-2.18,47.12],[-2.18,47.12],[-2.19,47.12],[-2.2,47.12],[-2.2,47.12],[-2.21,47.12],[-2.21,47.12],[-2.22,47.12],[-2.22,47.13],[-2.22,47.13],[-2.23,47.13],[-2.23,47.13],[-2.24,47.13],[-2.24,47.13],[-2.24,47.13],[-2.24,47.13],[-2.25,47.13],[-2.25,47.14],[-2.24,47.14],[-2.24,47.14],[-2.24,47.14],[-2.24,47.14],[-2.23,47.14],[-2.23,47.15],[-2.23,47.15],[-2.22,47.15],[-2.22,47.15],[-2.22,47.15],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.21,47.16],[-2.2,47.16],[-2.2,47.16],[-2.18,47.16],[-2.17,47.17],[-2.16,47.19],[-2.16,47.19],[-2.16,47.19],[-2.16,47.2],[-2.16,47.2],[-2.16,47.2],[-2.16,47.2],[-2.16,47.21],[-2.17,47.22],[-2.17,47.22],[-2.18,47.23],[-2.18,47.23],[-2.18,47.23],[-2.18,47.24],[-2.17,47.24],[-2.17,47.24],[-2.17,47.24],[-2.17,47.25],[-2.17,47.26],[-2.17,47.27],[-2.16,47.27],[-2.16,47.27],[-2.15,47.27],[-2.13,47.28],[-2.11,47.28],[-2.1,47.28],[-2.06,47.28],[-2.05,47.29],[-2.05,47.29],[-2.04,47.29],[-2.04,47.3],[-2.06,47.31],[-2.06,47.31],[-2.07,47.3],[-2.08,47.31],[-2.09,47.31],[-2.09,47.31],[-2.09,47.31],[-2.1,47.31],[-2.1,47.3],[-2.11,47.31],[-2.12,47.3],[-2.14,47.3],[-2.14,47.3],[-2.14,47.3],[-2.14,47.3],[-2.15,47.3],[-2.15,47.3],[-2.16,47.29],[-2.16,47.29],[-2.17,47.29],[-2.17,47.29],[-2.18,47.3],[-2.18,47.3],[-2.18,47.3],[-2.18,47.29],[-2.18,47.29],[-2.18,47.29],[-2.18,47.28],[-2.2,47.28],[-2.2,47.27],[-2.2,47.27],[-2.2,47.27],[-2.2,47.27],[-2.2,47.27],[-2.21,47.27],[-2.21,47.27],[-2.22,47.27],[-2.22,47.26],[-2.22,47.26],[-2.22,47.26],[-2.23,47.26],[-2.23,47.26],[-2.25,47.26],[-2.25,47.25],[-2.26,47.25],[-2.26,47.25],[-2.26,47.25],[-2.26,47.24],[-2.27,47.24],[-2.27,47.24],[-2.28,47.24],[-2.29,47.24],[-2.29,47.23],[-2.3,47.23],[-2.3,47.23],[-2.3,47.24],[-2.31,47.24],[-2.31,47.24],[-2.32,47.24],[-2.32,47.25],[-2.34,47.26],[-2.34,47.26],[-2.34,47.26],[-2.35,47.27],[-2.35,47.27],[-2.38,47.28],[-2.4,47.28],[-2.42,47.28],[-2.42,47.27],[-2.42,47.27],[-2.42,47.26],[-2.42,47.26],[-2.42,47.26],[-2.43,47.26],[-2.43,47.26],[-2.44,47.26],[-2.45,47.26],[-2.45,47.26],[-2.45,47.27],[-2.46,47.27],[-2.46,47.27],[-2.47,47.27],[-2.48,47.27],[-2.48,47.27],[-2.48,47.27],[-2.49,47.27],[-2.49,47.28],[-2.5,47.28],[-2.51,47.28],[-2.51,47.28],[-2.52,47.28],[-2.52,47.29],[-2.53,47.29],[-2.54,47.29],[-2.55,47.29],[-2.55,47.29],[-2.54,47.3],[-2.54,47.3],[-2.52,47.3],[-2.52,47.3],[-2.51,47.3],[-2.51,47.3],[-2.5,47.29],[-2.5,47.29],[-2.5,47.28],[-2.49,47.28],[-2.49,47.29],[-2.48,47.28],[-2.48,47.28],[-2.48,47.28],[-2.47,47.28],[-2.47,47.28],[-2.46,47.28],[-2.46,47.28],[-2.46,47.28],[-2.45,47.28],[-2.45,47.28],[-2.45,47.28],[-2.45,47.28],[-2.45,47.28],[-2.44,47.28],[-2.45,47.28],[-2.44,47.28],[-2.44,47.28],[-2.44,47.28],[-2.43,47.28],[-2.43,47.28],[-2.43,47.29],[-2.43,47.29],[-2.43,47.29],[-2.42,47.29],[-2.42,47.29],[-2.41,47.29],[-2.4,47.29],[-2.4,47.29],[-2.4,47.29],[-2.41,47.3],[-2.41,47.29],[-2.41,47.29],[-2.42,47.3],[-2.43,47.29],[-2.44,47.3],[-2.44,47.29],[-2.44,47.3],[-2.43,47.3],[-2.44,47.31],[-2.44,47.3],[-2.44,47.3],[-2.44,47.3],[-2.44,47.3],[-2.44,47.3],[-2.45,47.3],[-2.45,47.31],[-2.45,47.32],[-2.46,47.32],[-2.46,47.31],[-2.46,47.32],[-2.46,47.32],[-2.46,47.32],[-2.46,47.32],[-2.46,47.32],[-2.46,47.32],[-2.46,47.32],[-2.47,47.32],[-2.47,47.32],[-2.47,47.33],[-2.47,47.33],[-2.47,47.33],[-2.48,47.33],[-2.48,47.33],[-2.48,47.33],[-2.48,47.33],[-2.48,47.33],[-2.48,47.33],[-2.48,47.32],[-2.48,47.32],[-2.48,47.32],[-2.49,47.32],[-2.49,47.32],[-2.49,47.32],[-2.49,47.33],[-2.49,47.33],[-2.49,47.33],[-2.49,47.34],[-2.5,47.34],[-2.5,47.34],[-2.5,47.34],[-2.49,47.33],[-2.5,47.33],[-2.49,47.33],[-2.49,47.33],[-2.49,47.32],[-2.48,47.32],[-2.49,47.32],[-2.49,47.32],[-2.49,47.31],[-2.49,47.31],[-2.49,47.31],[-2.5,47.31],[-2.5,47.31],[-2.5,47.31],[-2.51,47.31],[-2.51,47.3],[-2.51,47.3],[-2.51,47.3],[-2.51,47.31],[-2.5,47.32],[-2.5,47.33],[-2.51,47.34],[-2.51,47.34],[-2.52,47.35],[-2.52,47.35],[-2.52,47.35],[-2.52,47.35],[-2.52,47.36],[-2.52,47.36],[-2.52,47.36],[-2.53,47.36],[-2.53,47.36],[-2.53,47.36],[-2.53,47.37],[-2.53,47.37],[-2.54,47.36],[-2.55,47.37],[-2.54,47.37],[-2.55,47.37],[-2.55,47.37],[-2.55,47.37],[-2.55,47.37],[-2.56,47.37],[-2.56,47.37],[-2.56,47.38],[-2.56,47.38],[-2.56,47.38],[-2.55,47.38],[-2.54,47.38],[-2.54,47.38],[-2.54,47.38],[-2.52,47.39],[-2.52,47.4],[-2.51,47.4],[-2.5,47.4],[-2.49,47.41],[-2.49,47.41],[-2.49,47.41],[-2.48,47.41],[-2.48,47.41],[-2.48,47.41],[-2.47,47.42],[-2.47,47.42],[-2.47,47.42],[-2.47,47.42],[-2.47,47.42],[-2.46,47.41],[-2.46,47.41],[-2.46,47.42],[-2.45,47.41],[-2.44,47.41],[-2.44,47.41],[-2.44,47.41],[-2.43,47.41],[-2.43,47.42],[-2.44,47.42],[-2.44,47.42],[-2.45,47.42],[-2.45,47.43],[-2.46,47.42],[-2.46,47.43],[-2.46,47.43],[-2.46,47.43],[-2.45,47.43],[-2.45,47.44],[-2.45,47.44],[-2.45,47.44],[-2.45,47.44],[-2.46,47.45],[-2.45,47.46],[-2.44,47.47],[-2.42,47.48],[-2.42,47.47],[-2.41,47.46],[-2.4,47.46],[-2.38,47.46],[-2.37,47.46],[-2.36,47.46],[-2.32,47.46],[-2.31,47.48],[-2.3,47.5],[-2.3,47.52],[-2.28,47.51],[-2.26,47.51],[-2.26,47.51],[-2.26,47.5],[-2.24,47.49],[-2.22,47.51],[-2.19,47.51],[-2.19,47.51],[-2.19,47.5],[-2.19,47.49],[-2.17,47.49],[-2.16,47.5],[-2.15,47.52],[-2.1,47.53],[-2.1,47.54],[-2.1,47.55],[-2.1,47.57],[-2.11,47.58],[-2.1,47.58],[-2.1,47.6],[-2.09,47.6],[-2.08,47.62],[-2.1,47.63],[-2.08,47.65],[-2.05,47.65],[-2.05,47.66],[-2.04,47.67],[-2.01,47.67],[-1.97,47.69],[-1.97,47.69],[-1.97,47.67],[-1.97,47.67],[-1.96,47.67],[-1.94,47.69],[-1.88,47.7],[-1.88,47.7],[-1.87,47.7],[-1.86,47.71],[-1.84,47.71],[-1.83,47.71],[-1.82,47.71],[-1.77,47.7],[-1.75,47.71],[-1.73,47.7],[-1.73,47.7],[-1.71,47.7],[-1.71,47.71],[-1.69,47.71],[-1.66,47.71],[-1.64,47.72],[-1.64,47.72],[-1.64,47.74],[-1.63,47.76],[-1.62,47.76],[-1.61,47.76],[-1.6,47.77],[-1.59,47.78],[-1.59,47.78],[-1.58,47.78],[-1.56,47.78],[-1.53,47.78],[-1.51,47.8],[-1.5,47.8],[-1.5,47.8],[-1.48,47.8],[-1.47,47.81],[-1.47,47.82],[-1.48,47.83],[-1.48,47.83],[-1.47,47.83],[-1.46,47.83],[-1.42,47.83],[-1.41,47.83],[-1.41,47.83],[-1.41,47.83],[-1.39,47.83],[-1.36,47.8],[-1.25,47.78],[-1.24,47.8],[-1.24,47.81],[-1.24,47.81],[-1.23,47.82],[-1.22,47.82],[-1.22,47.84],[-1.21,47.84],[-1.22,47.85],[-1.21,47.86],[-1.2,47.86],[-1.19,47.87],[-1.2,47.88],[-1.2,47.89],[-1.19,47.89],[-1.18,47.9],[-1.18,47.91],[-1.17,47.92],[-1.16,47.93],[-1.17,47.93],[-1.16,47.94],[-1.16,47.95],[-1.16,47.96],[-1.15,47.97],[-1.13,47.97],[-1.12,47.99],[-1.11,47.99],[-1.07,47.98],[-1.05,47.98],[-1.02,48],[-1.02,48],[-1.02,48.02],[-1.03,48.03],[-1.03,48.04],[-1.03,48.05],[-1.03,48.06],[-1.02,48.07],[-1.04,48.08],[-1.05,48.09],[-1.06,48.13],[-1.06,48.16],[-1.07,48.16],[-1.08,48.18],[-1.07,48.2],[-1.09,48.21],[-1.08,48.22],[-1.1,48.25],[-1.1,48.27],[-1.09,48.27],[-1.09,48.29],[-1.08,48.3],[-1.06,48.31],[-1.05,48.33],[-1.06,48.34],[-1.06,48.35],[-1.06,48.36],[-1.06,48.37],[-1.06,48.38],[-1.05,48.38],[-1.08,48.42],[-1.08,48.42],[-1.08,48.44],[-1.08,48.44],[-1.07,48.45],[-1.07,48.46],[-1.06,48.47],[-1.07,48.47],[-1.08,48.49],[-1.07,48.5],[-1.07,48.51],[-1.07,48.51],[-1.06,48.51],[-1.06,48.52],[-1,48.49],[-0.97,48.49],[-0.96,48.5],[-0.96,48.51],[-0.95,48.52],[-0.92,48.51],[-0.92,48.5],[-0.9,48.49],[-0.86,48.5],[-0.85,48.5],[-0.84,48.49],[-0.82,48.47],[-0.82,48.47],[-0.81,48.45],[-0.79,48.47],[-0.78,48.47],[-0.78,48.45],[-0.77,48.44],[-0.76,48.44],[-0.76,48.44],[-0.72,48.45],[-0.74,48.46],[-0.73,48.47],[-0.73,48.47],[-0.72,48.47],[-0.7,48.47],[-0.7,48.47],[-0.69,48.47],[-0.68,48.47],[-0.68,48.48],[-0.67,48.48],[-0.67,48.48],[-0.67,48.49],[-0.66,48.47],[-0.65,48.45],[-0.65,48.44],[-0.61,48.46],[-0.59,48.47],[-0.59,48.47],[-0.57,48.47],[-0.56,48.48],[-0.56,48.47],[-0.55,48.47],[-0.53,48.49],[-0.52,48.5],[-0.51,48.51],[-0.49,48.5],[-0.48,48.5],[-0.47,48.51],[-0.45,48.51],[-0.45,48.51],[-0.42,48.51],[-0.43,48.51],[-0.41,48.51],[-0.4,48.51],[-0.39,48.51],[-0.39,48.5],[-0.37,48.49],[-0.37,48.49],[-0.35,48.48],[-0.35,48.5],[-0.34,48.5],[-0.33,48.51],[-0.32,48.52],[-0.31,48.52],[-0.29,48.52],[-0.29,48.52],[-0.29,48.51],[-0.27,48.51],[-0.27,48.52],[-0.25,48.53],[-0.24,48.54],[-0.26,48.55],[-0.25,48.56],[-0.24,48.57],[-0.24,48.56],[-0.22,48.56],[-0.21,48.56],[-0.2,48.56],[-0.18,48.54],[-0.14,48.53],[-0.15,48.52],[-0.17,48.51],[-0.17,48.5],[-0.17,48.5],[-0.16,48.5],[-0.15,48.48],[-0.15,48.48],[-0.15,48.47],[-0.15,48.46],[-0.14,48.45],[-0.11,48.45],[-0.08,48.45],[-0.07,48.46],[-0.06,48.46],[-0.05,48.45],[-0.06,48.43],[-0.06,48.43],[-0.05,48.39],[-0.06,48.39],[-0.05,48.38],[-0.05,48.38],[-0.02,48.39],[-0.02,48.39],[0,48.4],[0.01,48.39],[0.02,48.38],[0.06,48.38],[0.06,48.38],[0.05,48.39],[0.07,48.41],[0.08,48.41],[0.1,48.41],[0.1,48.41],[0.11,48.43],[0.12,48.44],[0.13,48.43],[0.15,48.44],[0.16,48.44],[0.14,48.45],[0.15,48.46],[0.16,48.45],[0.17,48.45],[0.17,48.46],[0.17,48.46],[0.19,48.46],[0.22,48.47],[0.23,48.47],[0.25,48.47],[0.26,48.48],[0.26,48.48],[0.27,48.48],[0.27,48.48],[0.28,48.48],[0.3,48.48],[0.31,48.47],[0.32,48.47],[0.34,48.46],[0.35,48.46],[0.35,48.46],[0.36,48.45],[0.37,48.44],[0.38,48.42],[0.38,48.41],[0.37,48.41],[0.37,48.39],[0.38,48.38],[0.38,48.37],[0.39,48.35],[0.38,48.34],[0.38,48.33],[0.4,48.32],[0.41,48.32],[0.42,48.32],[0.43,48.31],[0.43,48.31],[0.44,48.3],[0.46,48.31],[0.48,48.3],[0.49,48.31],[0.51,48.29],[0.5,48.29],[0.49,48.28],[0.51,48.27],[0.53,48.27],[0.54,48.26],[0.54,48.25],[0.55,48.25],[0.58,48.24],[0.61,48.24],[0.62,48.24],[0.63,48.24],[0.63,48.23],[0.64,48.24],[0.63,48.25],[0.64,48.26],[0.65,48.26],[0.67,48.25],[0.68,48.25],[0.69,48.24],[0.7,48.23],[0.71,48.22],[0.72,48.21],[0.72,48.2],[0.73,48.2],[0.74,48.19],[0.76,48.18],[0.8,48.19],[0.8,48.19],[0.81,48.18],[0.84,48.17],[0.86,48.17],[0.88,48.16],[0.91,48.15],[0.91,48.14],[0.92,48.14],[0.91,48.14],[0.85,48.13],[0.86,48.12],[0.84,48.1],[0.83,48.1],[0.82,48.1],[0.82,48.09],[0.83,48.09],[0.85,48.09],[0.84,48.07],[0.83,48.07],[0.8,48.07],[0.79,48.07],[0.8,48.06],[0.79,48.05],[0.8,48.04],[0.81,48.04],[0.81,48.03],[0.84,48.03],[0.84,48.02],[0.83,48],[0.82,47.99],[0.85,47.95],[0.85,47.94],[0.85,47.94],[0.82,47.93],[0.81,47.93],[0.81,47.91],[0.82,47.89],[0.81,47.89],[0.8,47.9],[0.79,47.91],[0.79,47.91],[0.76,47.9],[0.76,47.88],[0.76,47.87],[0.76,47.86],[0.77,47.85],[0.77,47.84],[0.77,47.83],[0.76,47.83],[0.75,47.83],[0.74,47.81],[0.71,47.79],[0.71,47.79],[0.7,47.79],[0.7,47.79],[0.69,47.78],[0.69,47.78],[0.7,47.77],[0.7,47.76],[0.67,47.77],[0.65,47.76],[0.63,47.75],[0.62,47.75],[0.62,47.74],[0.61,47.73],[0.61,47.73],[0.61,47.73],[0.59,47.72],[0.58,47.71],[0.59,47.71],[0.59,47.69],[0.6,47.69],[0.6,47.69],[0.61,47.69],[0.62,47.69],[0.62,47.69],[0.59,47.67],[0.58,47.67],[0.56,47.67],[0.56,47.67],[0.55,47.66],[0.53,47.65],[0.52,47.66],[0.5,47.64],[0.48,47.64],[0.48,47.65],[0.46,47.64],[0.45,47.63],[0.45,47.62],[0.43,47.62],[0.42,47.62],[0.4,47.64],[0.38,47.64],[0.36,47.62],[0.37,47.61],[0.38,47.61],[0.4,47.59],[0.4,47.58],[0.39,47.58],[0.38,47.57],[0.34,47.58],[0.34,47.59],[0.32,47.6],[0.28,47.6],[0.26,47.61],[0.23,47.61],[0.23,47.61],[0.23,47.59],[0.23,47.59],[0.23,47.58],[0.22,47.57],[0.21,47.57],[0.2,47.54],[0.19,47.54],[0.21,47.53],[0.21,47.53],[0.22,47.53],[0.22,47.5],[0.2,47.48],[0.2,47.48],[0.19,47.47],[0.19,47.46],[0.18,47.45],[0.19,47.43],[0.18,47.42],[0.15,47.4],[0.17,47.4],[0.17,47.39],[0.18,47.38],[0.15,47.36],[0.14,47.36],[0.15,47.35],[0.14,47.34],[0.12,47.33],[0.11,47.32],[0.08,47.29],[0.09,47.28],[0.09,47.28],[0.08,47.27],[0.08,47.25],[0.07,47.24],[0.07,47.23],[0.07,47.22],[0.08,47.22],[0.07,47.21],[0.06,47.21],[0.05,47.2],[0.05,47.2],[0.07,47.19],[0.06,47.18],[0.05,47.16],[0.05,47.17],[0.04,47.16],[0.02,47.18],[-0.01,47.16],[-0.03,47.13],[-0.03,47.12],[-0.04,47.11],[-0.04,47.11],[-0.03,47.11],[-0.03,47.1],[-0.04,47.09],[-0.04,47.09],[-0.07,47.09],[-0.07,47.1],[-0.09,47.1],[-0.1,47.09],[-0.1,47.08],[-0.1,47.06],[-0.13,47.05],[-0.14,47.06],[-0.14,47.06],[-0.15,47.07],[-0.15,47.07],[-0.17,47.06],[-0.18,47.07],[-0.17,47.08],[-0.14,47.1],[-0.14,47.1],[-0.16,47.1],[-0.19,47.11],[-0.19,47.1],[-0.21,47.09],[-0.24,47.11],[-0.26,47.1],[-0.26,47.11],[-0.27,47.1],[-0.28,47.1],[-0.28,47.1],[-0.3,47.1],[-0.31,47.09],[-0.34,47.09],[-0.35,47.1],[-0.38,47.09],[-0.39,47.09],[-0.39,47.09],[-0.4,47.09],[-0.4,47.07],[-0.41,47.07],[-0.43,47.07],[-0.45,47.07],[-0.46,47.07],[-0.48,47.05],[-0.48,47.07],[-0.46,47.08],[-0.46,47.08],[-0.49,47.08],[-0.52,47.08],[-0.56,47.06],[-0.56,47.06],[-0.56,47.05],[-0.54,47.04],[-0.55,47.03],[-0.56,47.03],[-0.57,47.02],[-0.58,47.01],[-0.59,47.01],[-0.59,47],[-0.6,47],[-0.62,46.99],[-0.63,47],[-0.65,46.99],[-0.67,47],[-0.68,46.99],[-0.68,46.99],[-0.7,46.99],[-0.71,46.99],[-0.73,47],[-0.74,47],[-0.75,46.99],[-0.76,46.99],[-0.77,47],[-0.79,47.01],[-0.8,47],[-0.81,46.99],[-0.81,46.99],[-0.81,46.99],[-0.82,46.99],[-0.82,46.99],[-0.83,46.99],[-0.85,46.99],[-0.86,46.98],[-0.85,46.97],[-0.86,46.97],[-0.88,46.98],[-0.89,46.98],[-0.9,46.97],[-0.9,46.97],[-0.88,46.97],[-0.88,46.96],[-0.87,46.96],[-0.87,46.95],[-0.88,46.95],[-0.88,46.95],[-0.88,46.95],[-0.85,46.94],[-0.85,46.94],[-0.83,46.93],[-0.82,46.92],[-0.81,46.92],[-0.81,46.91],[-0.82,46.91],[-0.82,46.9],[-0.83,46.88],[-0.82,46.88],[-0.79,46.85],[-0.78,46.84],[-0.77,46.84],[-0.76,46.83],[-0.74,46.83],[-0.73,46.82],[-0.71,46.82],[-0.7,46.81],[-0.72,46.8],[-0.72,46.79],[-0.73,46.78],[-0.73,46.77],[-0.72,46.76],[-0.71,46.75],[-0.7,46.75],[-0.7,46.75],[-0.7,46.74],[-0.69,46.73],[-0.68,46.73],[-0.67,46.72],[-0.66,46.7],[-0.68,46.69],[-0.66,46.68],[-0.64,46.66],[-0.65,46.66],[-0.65,46.65],[-0.66,46.64],[-0.66,46.63],[-0.64,46.64],[-0.63,46.64],[-0.61,46.62],[-0.63,46.61],[-0.62,46.6],[-0.62,46.59],[-0.61,46.59],[-0.62,46.58],[-0.62,46.56],[-0.61,46.56],[-0.6,46.54],[-0.6,46.53],[-0.61,46.53],[-0.63,46.53],[-0.64,46.52],[-0.64,46.52],[-0.64,46.51],[-0.63,46.5],[-0.63,46.5],[-0.63,46.48],[-0.62,46.47],[-0.62,46.46],[-0.61,46.45],[-0.62,46.45],[-0.62,46.44],[-0.64,46.43],[-0.64,46.41],[-0.63,46.4],[-0.64,46.4],[-0.62,46.39],[-0.61,46.41],[-0.6,46.41],[-0.58,46.4],[-0.57,46.4],[-0.57,46.39],[-0.55,46.39],[-0.54,46.39],[-0.56,46.36],[-0.58,46.36],[-0.6,46.36],[-0.61,46.35],[-0.62,46.34],[-0.64,46.33],[-0.64,46.32],[-0.64,46.32],[-0.65,46.32],[-0.67,46.32],[-0.7,46.33],[-0.71,46.32],[-0.72,46.32],[-0.72,46.31],[-0.72,46.31],[-0.73,46.3],[-0.75,46.3],[-0.76,46.31],[-0.77,46.31],[-0.78,46.32],[-0.8,46.33],[-0.81,46.33],[-0.8,46.34],[-0.8,46.34],[-0.83,46.34],[-0.83,46.34],[-0.84,46.34],[-0.85,46.33],[-0.84,46.32],[-0.85,46.32],[-0.86,46.32],[-0.86,46.33],[-0.86,46.33],[-0.87,46.32],[-0.89,46.33],[-0.9,46.32],[-0.91,46.31],[-0.92,46.32],[-0.93,46.31],[-0.96,46.32],[-0.94,46.34],[-0.93,46.36],[-0.93,46.37],[-0.95,46.36],[-0.96,46.37],[-0.97,46.35],[-0.98,46.35],[-1.02,46.35],[-1.05,46.34],[-1.05,46.35],[-1.07,46.33],[-1.08,46.32],[-1.08,46.32],[-1.09,46.31]]],[[[-1.87,46.61],[-1.87,46.61],[-1.87,46.61],[-1.87,46.61]]],[[[-2.12,47.29],[-2.12,47.29],[-2.12,47.29],[-2.13,47.29],[-2.14,47.29],[-2.14,47.29],[-2.14,47.29],[-2.13,47.29],[-2.12,47.29]]],[[[-2.26,47.03],[-2.26,47.03],[-2.25,47.03],[-2.25,47.02],[-2.25,47.02],[-2.24,47.02],[-2.22,47.02],[-2.22,47.01],[-2.22,47.01],[-2.22,47.01],[-2.22,47],[-2.22,46.99],[-2.22,46.99],[-2.24,47],[-2.23,46.99],[-2.24,46.99],[-2.23,46.99],[-2.24,46.99],[-2.24,46.98],[-2.24,46.98],[-2.23,46.98],[-2.23,46.97],[-2.23,46.97],[-2.23,46.98],[-2.22,46.97],[-2.2,46.97],[-2.18,46.96],[-2.17,46.96],[-2.16,46.95],[-2.15,46.94],[-2.15,46.94],[-2.15,46.94],[-2.15,46.94],[-2.15,46.93],[-2.15,46.93],[-2.15,46.93],[-2.15,46.93],[-2.15,46.92],[-2.15,46.92],[-2.15,46.91],[-2.15,46.91],[-2.15,46.9],[-2.15,46.89],[-2.16,46.89],[-2.16,46.9],[-2.17,46.91],[-2.17,46.92],[-2.18,46.93],[-2.19,46.94],[-2.2,46.96],[-2.22,46.96],[-2.22,46.96],[-2.24,46.96],[-2.25,46.96],[-2.26,46.96],[-2.27,46.96],[-2.28,46.98],[-2.3,46.99],[-2.3,46.99],[-2.3,47],[-2.3,47],[-2.29,47.01],[-2.29,47.01],[-2.3,47.02],[-2.3,47.02],[-2.3,47.02],[-2.31,47.02],[-2.31,47.03],[-2.3,47.02],[-2.3,47.03],[-2.3,47.03],[-2.29,47.02],[-2.28,47.03],[-2.27,47.03],[-2.26,47.03]]],[[[-2.38,46.74],[-2.38,46.73],[-2.37,46.74],[-2.37,46.73],[-2.36,46.73],[-2.36,46.73],[-2.36,46.73],[-2.35,46.73],[-2.34,46.73],[-2.34,46.73],[-2.34,46.72],[-2.34,46.72],[-2.33,46.72],[-2.33,46.72],[-2.33,46.72],[-2.32,46.72],[-2.32,46.72],[-2.32,46.72],[-2.31,46.71],[-2.31,46.71],[-2.31,46.71],[-2.29,46.7],[-2.29,46.7],[-2.28,46.69],[-2.28,46.69],[-2.28,46.69],[-2.28,46.69],[-2.29,46.69],[-2.3,46.69],[-2.31,46.7],[-2.31,46.69],[-2.31,46.69],[-2.32,46.69],[-2.32,46.69],[-2.33,46.69],[-2.33,46.68],[-2.34,46.69],[-2.34,46.69],[-2.35,46.69],[-2.35,46.69],[-2.36,46.69],[-2.37,46.69],[-2.37,46.7],[-2.37,46.7],[-2.37,46.7],[-2.38,46.7],[-2.38,46.7],[-2.38,46.7],[-2.38,46.71],[-2.39,46.71],[-2.39,46.71],[-2.39,46.71],[-2.4,46.72],[-2.4,46.72],[-2.4,46.73],[-2.39,46.73],[-2.39,46.73],[-2.39,46.73],[-2.39,46.73],[-2.39,46.74],[-2.38,46.74],[-2.38,46.73],[-2.38,46.73],[-2.38,46.74]]],[[[-2.35,47.26],[-2.35,47.26],[-2.35,47.25],[-2.35,47.26],[-2.35,47.26],[-2.35,47.26],[-2.35,47.26],[-2.35,47.26]]],[[[-2.36,47.04],[-2.35,47.04],[-2.36,47.04],[-2.36,47.04],[-2.36,47.04]]],[[[-2.39,47.25],[-2.39,47.24],[-2.39,47.24],[-2.39,47.25],[-2.39,47.25]]],[[[-2.41,46.73],[-2.41,46.72],[-2.41,46.72],[-2.41,46.73],[-2.41,46.73],[-2.41,46.73],[-2.41,46.73]]],[[[-2.44,47.29],[-2.44,47.29],[-2.44,47.29],[-2.44,47.29],[-2.44,47.29],[-2.44,47.29]]],[[[-2.48,47.32],[-2.48,47.32],[-2.48,47.32],[-2.48,47.31],[-2.48,47.31],[-2.48,47.32]]],[[[-2.49,47.31],[-2.49,47.3],[-2.49,47.3],[-2.49,47.3],[-2.49,47.3],[-2.5,47.3],[-2.5,47.31],[-2.49,47.3],[-2.49,47.31]]],[[[-2.62,47.41],[-2.61,47.41],[-2.63,47.41],[-2.63,47.41],[-2.62,47.41],[-2.62,47.41],[-2.62,47.41]]]]},"properties":{"id":12,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.56,48.56],[-4.59,48.56],[-4.59,48.56],[-4.59,48.57],[-4.59,48.57],[-4.61,48.57],[-4.61,48.58],[-4.61,48.58],[-4.6,48.58],[-4.6,48.59],[-4.61,48.59],[-4.61,48.59],[-4.61,48.6],[-4.61,48.6],[-4.61,48.6],[-4.6,48.6],[-4.61,48.6],[-4.61,48.6],[-4.61,48.61],[-4.6,48.6],[-4.6,48.61],[-4.59,48.61],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.6],[-4.59,48.59],[-4.57,48.6],[-4.56,48.6],[-4.56,48.6],[-4.56,48.6],[-4.55,48.6],[-4.54,48.6],[-4.54,48.6],[-4.53,48.6],[-4.52,48.59],[-4.52,48.59],[-4.52,48.59],[-4.5,48.59],[-4.5,48.58],[-4.5,48.58],[-4.49,48.57],[-4.48,48.57],[-4.48,48.57],[-4.49,48.58],[-4.49,48.58],[-4.5,48.59],[-4.5,48.59],[-4.52,48.59],[-4.52,48.59],[-4.54,48.6],[-4.54,48.6],[-4.55,48.6],[-4.55,48.6],[-4.55,48.6],[-4.55,48.6],[-4.56,48.6],[-4.56,48.6],[-4.56,48.6],[-4.56,48.6],[-4.56,48.6],[-4.56,48.6],[-4.56,48.61],[-4.56,48.61],[-4.56,48.61],[-4.56,48.61],[-4.57,48.61],[-4.57,48.6],[-4.57,48.61],[-4.58,48.61],[-4.57,48.61],[-4.57,48.61],[-4.57,48.61],[-4.57,48.61],[-4.56,48.62],[-4.57,48.62],[-4.57,48.61],[-4.58,48.62],[-4.58,48.62],[-4.57,48.62],[-4.57,48.62],[-4.57,48.62],[-4.57,48.63],[-4.57,48.63],[-4.57,48.62],[-4.57,48.62],[-4.56,48.62],[-4.56,48.62],[-4.57,48.62],[-4.57,48.62],[-4.57,48.63],[-4.56,48.63],[-4.56,48.63],[-4.56,48.63],[-4.56,48.62],[-4.56,48.62],[-4.55,48.63],[-4.55,48.63],[-4.55,48.62],[-4.54,48.62],[-4.54,48.63],[-4.55,48.63],[-4.56,48.63],[-4.56,48.63],[-4.56,48.63],[-4.56,48.63],[-4.56,48.63],[-4.55,48.63],[-4.55,48.63],[-4.55,48.63],[-4.55,48.63],[-4.55,48.63],[-4.55,48.64],[-4.54,48.64],[-4.54,48.64],[-4.54,48.64],[-4.54,48.64],[-4.54,48.63],[-4.54,48.63],[-4.53,48.63],[-4.53,48.63],[-4.53,48.63],[-4.53,48.63],[-4.52,48.64],[-4.51,48.64],[-4.51,48.63],[-4.51,48.63],[-4.51,48.63],[-4.51,48.63],[-4.5,48.63],[-4.51,48.63],[-4.51,48.63],[-4.51,48.63],[-4.51,48.62],[-4.51,48.63],[-4.5,48.63],[-4.51,48.62],[-4.5,48.62],[-4.5,48.62],[-4.5,48.62],[-4.5,48.62],[-4.5,48.63],[-4.49,48.63],[-4.48,48.62],[-4.46,48.63],[-4.46,48.63],[-4.45,48.64],[-4.46,48.64],[-4.46,48.64],[-4.45,48.64],[-4.45,48.64],[-4.45,48.64],[-4.45,48.65],[-4.45,48.64],[-4.45,48.64],[-4.44,48.64],[-4.44,48.64],[-4.44,48.64],[-4.44,48.64],[-4.44,48.64],[-4.44,48.64],[-4.44,48.63],[-4.44,48.63],[-4.43,48.63],[-4.43,48.63],[-4.43,48.63],[-4.43,48.64],[-4.43,48.64],[-4.44,48.64],[-4.44,48.64],[-4.43,48.64],[-4.43,48.64],[-4.43,48.64],[-4.42,48.64],[-4.41,48.64],[-4.41,48.64],[-4.42,48.64],[-4.42,48.65],[-4.43,48.65],[-4.43,48.65],[-4.43,48.65],[-4.44,48.65],[-4.44,48.65],[-4.44,48.66],[-4.44,48.66],[-4.44,48.66],[-4.44,48.66],[-4.43,48.66],[-4.43,48.65],[-4.42,48.65],[-4.41,48.66],[-4.41,48.65],[-4.4,48.66],[-4.39,48.66],[-4.38,48.66],[-4.38,48.66],[-4.38,48.66],[-4.38,48.66],[-4.37,48.67],[-4.37,48.67],[-4.35,48.68],[-4.32,48.68],[-4.32,48.67],[-4.33,48.67],[-4.33,48.67],[-4.32,48.67],[-4.32,48.67],[-4.32,48.67],[-4.32,48.67],[-4.32,48.67],[-4.32,48.67],[-4.32,48.67],[-4.32,48.67],[-4.31,48.67],[-4.31,48.67],[-4.31,48.67],[-4.3,48.67],[-4.29,48.66],[-4.3,48.66],[-4.3,48.66],[-4.3,48.65],[-4.31,48.65],[-4.31,48.64],[-4.31,48.64],[-4.31,48.64],[-4.3,48.63],[-4.3,48.63],[-4.3,48.64],[-4.3,48.64],[-4.3,48.64],[-4.3,48.64],[-4.28,48.64],[-4.28,48.65],[-4.24,48.65],[-4.22,48.66],[-4.22,48.65],[-4.22,48.65],[-4.21,48.65],[-4.2,48.65],[-4.2,48.66],[-4.21,48.66],[-4.22,48.66],[-4.23,48.66],[-4.23,48.66],[-4.22,48.66],[-4.21,48.67],[-4.21,48.67],[-4.2,48.68],[-4.19,48.68],[-4.19,48.68],[-4.19,48.69],[-4.18,48.69],[-4.17,48.69],[-4.17,48.69],[-4.17,48.69],[-4.17,48.69],[-4.17,48.69],[-4.17,48.69],[-4.17,48.69],[-4.16,48.69],[-4.15,48.69],[-4.14,48.69],[-4.13,48.7],[-4.14,48.7],[-4.13,48.7],[-4.13,48.7],[-4.12,48.69],[-4.12,48.69],[-4.11,48.7],[-4.11,48.7],[-4.11,48.69],[-4.1,48.69],[-4.1,48.69],[-4.1,48.7],[-4.1,48.7],[-4.1,48.7],[-4.09,48.69],[-4.09,48.69],[-4.09,48.69],[-4.09,48.69],[-4.09,48.69],[-4.08,48.69],[-4.08,48.69],[-4.08,48.69],[-4.08,48.69],[-4.07,48.69],[-4.07,48.68],[-4.07,48.68],[-4.07,48.69],[-4.07,48.69],[-4.06,48.69],[-4.06,48.7],[-4.06,48.7],[-4.07,48.71],[-4.07,48.7],[-4.07,48.71],[-4.06,48.71],[-4.06,48.71],[-4.06,48.7],[-4.06,48.7],[-4.05,48.7],[-4.05,48.71],[-4.05,48.71],[-4.05,48.71],[-4.04,48.7],[-4.04,48.7],[-4.04,48.71],[-4.04,48.71],[-4.04,48.71],[-4.04,48.71],[-4.04,48.71],[-4.03,48.72],[-4.03,48.71],[-4.03,48.71],[-4.01,48.71],[-4.01,48.72],[-4.01,48.72],[-4.01,48.72],[-4.01,48.73],[-4.01,48.73],[-4,48.73],[-4,48.73],[-4.01,48.72],[-4,48.72],[-4,48.72],[-4,48.72],[-4,48.71],[-4,48.71],[-4,48.71],[-3.99,48.72],[-3.99,48.72],[-3.99,48.73],[-3.99,48.73],[-3.99,48.73],[-3.98,48.73],[-3.98,48.73],[-3.98,48.73],[-3.98,48.73],[-3.98,48.72],[-3.97,48.73],[-3.97,48.72],[-3.97,48.72],[-3.97,48.72],[-3.96,48.72],[-3.96,48.72],[-3.96,48.72],[-3.97,48.72],[-3.97,48.72],[-3.97,48.72],[-3.97,48.71],[-3.97,48.71],[-3.97,48.71],[-3.97,48.71],[-3.98,48.7],[-3.97,48.69],[-3.96,48.69],[-3.97,48.69],[-3.96,48.69],[-3.96,48.69],[-3.96,48.69],[-3.96,48.68],[-3.96,48.68],[-3.96,48.69],[-3.96,48.69],[-3.97,48.69],[-3.97,48.69],[-3.97,48.68],[-3.97,48.68],[-3.97,48.68],[-3.97,48.67],[-3.97,48.67],[-3.97,48.68],[-3.96,48.68],[-3.96,48.67],[-3.96,48.68],[-3.95,48.68],[-3.95,48.67],[-3.95,48.67],[-3.95,48.67],[-3.95,48.67],[-3.95,48.67],[-3.95,48.66],[-3.95,48.66],[-3.96,48.65],[-3.96,48.65],[-3.96,48.65],[-3.96,48.65],[-3.95,48.65],[-3.95,48.64],[-3.95,48.64],[-3.95,48.64],[-3.95,48.64],[-3.95,48.65],[-3.95,48.65],[-3.95,48.65],[-3.95,48.65],[-3.94,48.66],[-3.94,48.66],[-3.94,48.66],[-3.94,48.66],[-3.94,48.66],[-3.93,48.66],[-3.93,48.66],[-3.93,48.66],[-3.92,48.67],[-3.92,48.67],[-3.93,48.68],[-3.93,48.68],[-3.93,48.68],[-3.92,48.68],[-3.92,48.68],[-3.93,48.69],[-3.93,48.69],[-3.93,48.69],[-3.93,48.7],[-3.93,48.7],[-3.93,48.7],[-3.93,48.7],[-3.92,48.7],[-3.92,48.7],[-3.92,48.7],[-3.92,48.69],[-3.92,48.69],[-3.92,48.69],[-3.92,48.69],[-3.92,48.69],[-3.92,48.68],[-3.92,48.68],[-3.93,48.68],[-3.93,48.68],[-3.92,48.68],[-3.92,48.67],[-3.92,48.67],[-3.91,48.67],[-3.91,48.67],[-3.91,48.67],[-3.91,48.67],[-3.91,48.67],[-3.91,48.67],[-3.9,48.67],[-3.9,48.67],[-3.9,48.67],[-3.89,48.67],[-3.9,48.67],[-3.89,48.67],[-3.89,48.67],[-3.89,48.67],[-3.9,48.66],[-3.91,48.66],[-3.91,48.66],[-3.9,48.65],[-3.9,48.65],[-3.89,48.64],[-3.87,48.64],[-3.87,48.64],[-3.86,48.63],[-3.86,48.63],[-3.86,48.62],[-3.85,48.62],[-3.85,48.63],[-3.84,48.63],[-3.85,48.63],[-3.85,48.63],[-3.85,48.64],[-3.85,48.64],[-3.86,48.65],[-3.86,48.65],[-3.86,48.66],[-3.86,48.66],[-3.87,48.67],[-3.86,48.67],[-3.86,48.67],[-3.85,48.67],[-3.85,48.66],[-3.85,48.66],[-3.85,48.66],[-3.85,48.66],[-3.85,48.67],[-3.85,48.67],[-3.85,48.68],[-3.85,48.67],[-3.85,48.68],[-3.85,48.68],[-3.85,48.68],[-3.85,48.68],[-3.85,48.68],[-3.86,48.68],[-3.86,48.69],[-3.85,48.69],[-3.86,48.69],[-3.85,48.69],[-3.85,48.7],[-3.85,48.7],[-3.84,48.7],[-3.84,48.7],[-3.84,48.71],[-3.84,48.71],[-3.84,48.71],[-3.83,48.71],[-3.83,48.72],[-3.83,48.72],[-3.83,48.71],[-3.83,48.71],[-3.83,48.71],[-3.83,48.71],[-3.83,48.71],[-3.83,48.7],[-3.82,48.7],[-3.82,48.71],[-3.82,48.71],[-3.82,48.71],[-3.82,48.71],[-3.82,48.72],[-3.82,48.72],[-3.82,48.72],[-3.81,48.72],[-3.81,48.72],[-3.81,48.71],[-3.81,48.71],[-3.8,48.71],[-3.8,48.72],[-3.8,48.71],[-3.8,48.71],[-3.79,48.71],[-3.8,48.71],[-3.8,48.71],[-3.78,48.7],[-3.78,48.7],[-3.78,48.7],[-3.77,48.71],[-3.76,48.71],[-3.76,48.71],[-3.76,48.71],[-3.75,48.71],[-3.75,48.71],[-3.74,48.71],[-3.74,48.71],[-3.74,48.71],[-3.73,48.71],[-3.72,48.71],[-3.72,48.71],[-3.72,48.71],[-3.71,48.7],[-3.72,48.7],[-3.7,48.69],[-3.7,48.69],[-3.69,48.69],[-3.68,48.69],[-3.68,48.69],[-3.68,48.69],[-3.68,48.69],[-3.68,48.69],[-3.67,48.69],[-3.66,48.7],[-3.66,48.7],[-3.65,48.69],[-3.65,48.69],[-3.64,48.7],[-3.64,48.69],[-3.65,48.69],[-3.65,48.68],[-3.65,48.68],[-3.64,48.68],[-3.65,48.68],[-3.64,48.68],[-3.64,48.67],[-3.64,48.67],[-3.64,48.67],[-3.65,48.67],[-3.65,48.67],[-3.65,48.67],[-3.64,48.67],[-3.64,48.67],[-3.64,48.68],[-3.64,48.68],[-3.64,48.68],[-3.63,48.68],[-3.62,48.69],[-3.62,48.69],[-3.62,48.68],[-3.61,48.68],[-3.62,48.68],[-3.62,48.68],[-3.61,48.67],[-3.59,48.67],[-3.59,48.67],[-3.58,48.67],[-3.57,48.68],[-3.57,48.68],[-3.57,48.69],[-3.58,48.69],[-3.58,48.69],[-3.58,48.69],[-3.59,48.69],[-3.58,48.7],[-3.58,48.7],[-3.58,48.71],[-3.59,48.71],[-3.58,48.71],[-3.58,48.71],[-3.58,48.71],[-3.59,48.72],[-3.58,48.72],[-3.58,48.72],[-3.59,48.72],[-3.59,48.72],[-3.59,48.73],[-3.59,48.73],[-3.58,48.73],[-3.58,48.72],[-3.57,48.73],[-3.57,48.73],[-3.56,48.73],[-3.57,48.73],[-3.56,48.73],[-3.56,48.73],[-3.55,48.73],[-3.54,48.73],[-3.54,48.73],[-3.54,48.73],[-3.53,48.73],[-3.53,48.73],[-3.54,48.73],[-3.55,48.73],[-3.55,48.73],[-3.55,48.74],[-3.55,48.74],[-3.55,48.74],[-3.55,48.75],[-3.56,48.75],[-3.56,48.76],[-3.57,48.76],[-3.57,48.76],[-3.58,48.76],[-3.59,48.76],[-3.59,48.76],[-3.58,48.76],[-3.58,48.76],[-3.58,48.77],[-3.59,48.77],[-3.58,48.77],[-3.59,48.77],[-3.59,48.77],[-3.58,48.77],[-3.59,48.77],[-3.58,48.77],[-3.59,48.78],[-3.59,48.78],[-3.58,48.78],[-3.58,48.78],[-3.58,48.79],[-3.58,48.79],[-3.58,48.79],[-3.58,48.79],[-3.57,48.79],[-3.57,48.79],[-3.58,48.79],[-3.58,48.79],[-3.59,48.79],[-3.59,48.8],[-3.59,48.8],[-3.59,48.8],[-3.59,48.8],[-3.59,48.8],[-3.59,48.81],[-3.59,48.81],[-3.58,48.81],[-3.58,48.81],[-3.58,48.81],[-3.58,48.8],[-3.57,48.81],[-3.57,48.81],[-3.57,48.81],[-3.57,48.81],[-3.56,48.8],[-3.57,48.8],[-3.56,48.8],[-3.56,48.8],[-3.56,48.79],[-3.54,48.8],[-3.54,48.8],[-3.54,48.8],[-3.54,48.8],[-3.54,48.8],[-3.54,48.81],[-3.55,48.81],[-3.55,48.81],[-3.56,48.81],[-3.56,48.81],[-3.55,48.81],[-3.55,48.82],[-3.54,48.82],[-3.54,48.82],[-3.54,48.82],[-3.55,48.82],[-3.55,48.83],[-3.54,48.82],[-3.54,48.83],[-3.54,48.82],[-3.53,48.82],[-3.53,48.82],[-3.52,48.83],[-3.53,48.83],[-3.53,48.83],[-3.53,48.83],[-3.53,48.83],[-3.53,48.83],[-3.52,48.83],[-3.52,48.83],[-3.52,48.83],[-3.52,48.83],[-3.51,48.84],[-3.52,48.84],[-3.51,48.84],[-3.51,48.84],[-3.51,48.84],[-3.51,48.84],[-3.5,48.84],[-3.5,48.84],[-3.5,48.84],[-3.5,48.84],[-3.5,48.83],[-3.51,48.83],[-3.51,48.83],[-3.51,48.83],[-3.51,48.83],[-3.51,48.83],[-3.5,48.82],[-3.5,48.83],[-3.5,48.83],[-3.5,48.83],[-3.5,48.83],[-3.5,48.83],[-3.5,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.83],[-3.49,48.84],[-3.49,48.84],[-3.48,48.84],[-3.48,48.84],[-3.47,48.84],[-3.48,48.84],[-3.47,48.83],[-3.47,48.83],[-3.47,48.83],[-3.47,48.83],[-3.47,48.82],[-3.46,48.82],[-3.46,48.82],[-3.46,48.82],[-3.45,48.82],[-3.45,48.82],[-3.44,48.82],[-3.44,48.82],[-3.43,48.82],[-3.43,48.82],[-3.43,48.82],[-3.43,48.82],[-3.44,48.81],[-3.43,48.81],[-3.44,48.8],[-3.44,48.8],[-3.44,48.8],[-3.43,48.8],[-3.43,48.8],[-3.42,48.8],[-3.41,48.8],[-3.39,48.8],[-3.39,48.8],[-3.39,48.81],[-3.39,48.81],[-3.39,48.81],[-3.39,48.82],[-3.38,48.81],[-3.38,48.82],[-3.37,48.82],[-3.37,48.82],[-3.37,48.82],[-3.37,48.82],[-3.36,48.82],[-3.36,48.82],[-3.36,48.82],[-3.35,48.82],[-3.35,48.82],[-3.35,48.82],[-3.35,48.83],[-3.35,48.83],[-3.34,48.83],[-3.34,48.83],[-3.33,48.83],[-3.33,48.83],[-3.33,48.83],[-3.33,48.84],[-3.33,48.84],[-3.32,48.84],[-3.32,48.84],[-3.31,48.84],[-3.31,48.84],[-3.31,48.84],[-3.31,48.84],[-3.3,48.84],[-3.29,48.83],[-3.29,48.83],[-3.29,48.83],[-3.29,48.84],[-3.29,48.84],[-3.29,48.84],[-3.28,48.84],[-3.29,48.84],[-3.28,48.84],[-3.28,48.85],[-3.29,48.85],[-3.3,48.85],[-3.3,48.85],[-3.29,48.85],[-3.29,48.84],[-3.29,48.84],[-3.3,48.84],[-3.3,48.85],[-3.3,48.85],[-3.29,48.85],[-3.29,48.85],[-3.29,48.85],[-3.28,48.85],[-3.28,48.85],[-3.28,48.85],[-3.28,48.85],[-3.28,48.85],[-3.27,48.85],[-3.27,48.85],[-3.27,48.85],[-3.28,48.84],[-3.27,48.84],[-3.27,48.84],[-3.27,48.84],[-3.27,48.83],[-3.27,48.83],[-3.26,48.84],[-3.26,48.84],[-3.26,48.84],[-3.26,48.84],[-3.26,48.84],[-3.26,48.84],[-3.26,48.85],[-3.25,48.85],[-3.25,48.86],[-3.24,48.86],[-3.24,48.86],[-3.24,48.86],[-3.24,48.86],[-3.23,48.86],[-3.23,48.87],[-3.24,48.86],[-3.24,48.87],[-3.24,48.87],[-3.23,48.87],[-3.23,48.87],[-3.22,48.87],[-3.22,48.87],[-3.22,48.87],[-3.22,48.87],[-3.22,48.87],[-3.22,48.86],[-3.22,48.86],[-3.21,48.86],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.85],[-3.21,48.84],[-3.21,48.84],[-3.22,48.84],[-3.22,48.83],[-3.21,48.84],[-3.21,48.84],[-3.21,48.84],[-3.2,48.84],[-3.2,48.84],[-3.2,48.84],[-3.2,48.83],[-3.2,48.83],[-3.2,48.83],[-3.2,48.83],[-3.2,48.83],[-3.19,48.84],[-3.18,48.84],[-3.18,48.84],[-3.18,48.85],[-3.18,48.85],[-3.18,48.84],[-3.18,48.84],[-3.17,48.85],[-3.17,48.84],[-3.17,48.85],[-3.17,48.85],[-3.17,48.85],[-3.17,48.85],[-3.16,48.85],[-3.16,48.85],[-3.15,48.85],[-3.14,48.86],[-3.13,48.86],[-3.13,48.86],[-3.13,48.86],[-3.13,48.87],[-3.12,48.86],[-3.12,48.87],[-3.11,48.87],[-3.11,48.87],[-3.1,48.87],[-3.09,48.87],[-3.08,48.88],[-3.07,48.88],[-3.07,48.88],[-3.08,48.87],[-3.08,48.87],[-3.09,48.87],[-3.1,48.87],[-3.09,48.87],[-3.08,48.87],[-3.08,48.87],[-3.08,48.86],[-3.07,48.87],[-3.08,48.86],[-3.08,48.86],[-3.08,48.86],[-3.08,48.86],[-3.08,48.86],[-3.08,48.86],[-3.09,48.86],[-3.08,48.86],[-3.08,48.85],[-3.08,48.85],[-3.08,48.85],[-3.08,48.85],[-3.08,48.84],[-3.09,48.84],[-3.09,48.84],[-3.09,48.84],[-3.1,48.83],[-3.09,48.83],[-3.09,48.83],[-3.08,48.83],[-3.08,48.84],[-3.08,48.83],[-3.08,48.83],[-3.08,48.83],[-3.08,48.83],[-3.07,48.83],[-3.07,48.83],[-3.08,48.83],[-3.08,48.83],[-3.08,48.83],[-3.08,48.83],[-3.08,48.82],[-3.09,48.82],[-3.08,48.81],[-3.08,48.82],[-3.07,48.82],[-3.07,48.82],[-3.07,48.82],[-3.07,48.82],[-3.07,48.82],[-3.05,48.82],[-3.05,48.82],[-3.06,48.82],[-3.05,48.82],[-3.04,48.82],[-3.04,48.82],[-3.03,48.82],[-3.01,48.82],[-3.01,48.82],[-3.01,48.82],[-3.01,48.82],[-3.01,48.82],[-3.02,48.81],[-3.01,48.81],[-3,48.8],[-3,48.8],[-3,48.8],[-3,48.8],[-3.01,48.8],[-3.01,48.8],[-3.01,48.8],[-3.02,48.8],[-3.02,48.79],[-3.04,48.79],[-3.04,48.79],[-3.04,48.78],[-3.04,48.79],[-3.04,48.78],[-3.03,48.78],[-3.02,48.78],[-3.01,48.78],[-3.01,48.78],[-3.01,48.78],[-3.02,48.78],[-3.03,48.78],[-3.03,48.78],[-3.03,48.77],[-3.02,48.77],[-3.01,48.77],[-3.01,48.77],[-3,48.77],[-3,48.77],[-2.99,48.76],[-2.96,48.76],[-2.96,48.76],[-2.96,48.77],[-2.95,48.77],[-2.95,48.77],[-2.95,48.77],[-2.95,48.77],[-2.95,48.76],[-2.94,48.76],[-2.93,48.76],[-2.93,48.76],[-2.93,48.75],[-2.93,48.75],[-2.93,48.75],[-2.94,48.75],[-2.94,48.74],[-2.94,48.74],[-2.93,48.74],[-2.94,48.73],[-2.94,48.73],[-2.94,48.73],[-2.95,48.73],[-2.95,48.73],[-2.95,48.72],[-2.94,48.72],[-2.93,48.72],[-2.93,48.72],[-2.93,48.71],[-2.93,48.71],[-2.91,48.7],[-2.9,48.7],[-2.9,48.7],[-2.9,48.7],[-2.89,48.7],[-2.89,48.7],[-2.89,48.7],[-2.89,48.69],[-2.88,48.69],[-2.89,48.68],[-2.88,48.68],[-2.88,48.68],[-2.88,48.68],[-2.88,48.68],[-2.87,48.67],[-2.87,48.68],[-2.87,48.67],[-2.87,48.67],[-2.86,48.68],[-2.86,48.68],[-2.85,48.67],[-2.85,48.67],[-2.85,48.67],[-2.84,48.66],[-2.84,48.66],[-2.84,48.66],[-2.84,48.66],[-2.83,48.66],[-2.83,48.66],[-2.83,48.65],[-2.83,48.65],[-2.82,48.65],[-2.82,48.65],[-2.82,48.65],[-2.83,48.65],[-2.83,48.64],[-2.82,48.64],[-2.82,48.64],[-2.82,48.64],[-2.82,48.64],[-2.82,48.63],[-2.82,48.62],[-2.81,48.61],[-2.81,48.61],[-2.81,48.61],[-2.82,48.61],[-2.82,48.6],[-2.82,48.6],[-2.82,48.6],[-2.82,48.6],[-2.82,48.6],[-2.82,48.59],[-2.81,48.59],[-2.79,48.59],[-2.79,48.58],[-2.78,48.59],[-2.78,48.59],[-2.77,48.58],[-2.77,48.57],[-2.77,48.57],[-2.76,48.57],[-2.74,48.56],[-2.73,48.56],[-2.73,48.56],[-2.73,48.56],[-2.73,48.56],[-2.71,48.56],[-2.71,48.55],[-2.72,48.55],[-2.72,48.54],[-2.72,48.54],[-2.72,48.53],[-2.71,48.53],[-2.71,48.53],[-2.71,48.53],[-2.72,48.53],[-2.72,48.52],[-2.71,48.52],[-2.71,48.52],[-2.7,48.52],[-2.7,48.51],[-2.69,48.51],[-2.69,48.51],[-2.69,48.51],[-2.69,48.5],[-2.69,48.5],[-2.68,48.5],[-2.68,48.51],[-2.68,48.51],[-2.68,48.51],[-2.68,48.52],[-2.68,48.53],[-2.68,48.53],[-2.67,48.54],[-2.67,48.53],[-2.66,48.53],[-2.66,48.53],[-2.66,48.53],[-2.66,48.53],[-2.64,48.52],[-2.63,48.53],[-2.63,48.53],[-2.63,48.53],[-2.63,48.53],[-2.63,48.54],[-2.63,48.54],[-2.63,48.54],[-2.61,48.55],[-2.6,48.56],[-2.6,48.56],[-2.59,48.56],[-2.59,48.57],[-2.58,48.57],[-2.58,48.58],[-2.57,48.58],[-2.57,48.58],[-2.57,48.58],[-2.57,48.58],[-2.56,48.59],[-2.55,48.59],[-2.55,48.59],[-2.55,48.6],[-2.56,48.6],[-2.55,48.6],[-2.54,48.6],[-2.53,48.6],[-2.5,48.61],[-2.49,48.62],[-2.48,48.62],[-2.48,48.62],[-2.47,48.62],[-2.47,48.63],[-2.47,48.63],[-2.48,48.63],[-2.47,48.63],[-2.47,48.63],[-2.47,48.64],[-2.48,48.63],[-2.48,48.64],[-2.48,48.64],[-2.48,48.64],[-2.49,48.64],[-2.49,48.64],[-2.49,48.65],[-2.49,48.65],[-2.48,48.65],[-2.48,48.65],[-2.48,48.64],[-2.47,48.65],[-2.46,48.65],[-2.46,48.65],[-2.46,48.65],[-2.45,48.65],[-2.44,48.65],[-2.43,48.65],[-2.42,48.65],[-2.42,48.65],[-2.42,48.64],[-2.42,48.64],[-2.4,48.64],[-2.39,48.64],[-2.39,48.65],[-2.39,48.65],[-2.39,48.65],[-2.39,48.65],[-2.38,48.65],[-2.37,48.66],[-2.37,48.66],[-2.37,48.66],[-2.37,48.66],[-2.37,48.66],[-2.36,48.66],[-2.36,48.66],[-2.36,48.66],[-2.35,48.66],[-2.35,48.67],[-2.34,48.66],[-2.34,48.67],[-2.33,48.67],[-2.33,48.68],[-2.33,48.68],[-2.33,48.68],[-2.32,48.68],[-2.32,48.69],[-2.32,48.69],[-2.32,48.69],[-2.31,48.68],[-2.31,48.68],[-2.31,48.67],[-2.31,48.67],[-2.3,48.67],[-2.28,48.67],[-2.29,48.67],[-2.29,48.66],[-2.29,48.66],[-2.29,48.66],[-2.3,48.66],[-2.3,48.65],[-2.31,48.64],[-2.31,48.64],[-2.31,48.63],[-2.32,48.63],[-2.32,48.63],[-2.33,48.63],[-2.33,48.62],[-2.33,48.62],[-2.32,48.62],[-2.32,48.61],[-2.31,48.61],[-2.31,48.61],[-2.3,48.62],[-2.3,48.63],[-2.29,48.63],[-2.29,48.63],[-2.29,48.63],[-2.29,48.63],[-2.28,48.63],[-2.28,48.64],[-2.27,48.64],[-2.27,48.64],[-2.27,48.64],[-2.27,48.64],[-2.27,48.64],[-2.26,48.65],[-2.26,48.64],[-2.25,48.65],[-2.24,48.65],[-2.24,48.64],[-2.24,48.64],[-2.25,48.64],[-2.26,48.64],[-2.25,48.63],[-2.25,48.63],[-2.24,48.62],[-2.24,48.63],[-2.24,48.62],[-2.24,48.62],[-2.24,48.62],[-2.24,48.61],[-2.23,48.61],[-2.23,48.61],[-2.22,48.6],[-2.22,48.59],[-2.22,48.59],[-2.21,48.59],[-2.21,48.59],[-2.21,48.58],[-2.21,48.58],[-2.21,48.57],[-2.21,48.57],[-2.21,48.57],[-2.21,48.58],[-2.2,48.58],[-2.2,48.58],[-2.2,48.59],[-2.2,48.59],[-2.19,48.59],[-2.2,48.6],[-2.19,48.6],[-2.2,48.61],[-2.2,48.61],[-2.18,48.61],[-2.18,48.6],[-2.18,48.6],[-2.18,48.6],[-2.18,48.59],[-2.18,48.59],[-2.19,48.59],[-2.19,48.58],[-2.18,48.58],[-2.18,48.58],[-2.17,48.58],[-2.17,48.58],[-2.16,48.59],[-2.17,48.59],[-2.17,48.59],[-2.17,48.59],[-2.17,48.6],[-2.17,48.6],[-2.17,48.6],[-2.17,48.6],[-2.17,48.61],[-2.16,48.61],[-2.16,48.61],[-2.16,48.61],[-2.15,48.61],[-2.15,48.62],[-2.15,48.62],[-2.14,48.62],[-2.14,48.62],[-2.14,48.62],[-2.14,48.62],[-2.14,48.61],[-2.13,48.61],[-2.13,48.61],[-2.13,48.61],[-2.13,48.61],[-2.13,48.61],[-2.14,48.61],[-2.14,48.62],[-2.14,48.62],[-2.14,48.63],[-2.14,48.62],[-2.14,48.62],[-2.14,48.62],[-2.15,48.63],[-2.15,48.63],[-2.15,48.63],[-2.15,48.63],[-2.15,48.63],[-2.15,48.64],[-2.15,48.63],[-2.14,48.63],[-2.14,48.64],[-2.14,48.64],[-2.13,48.64],[-2.13,48.64],[-2.12,48.64],[-2.12,48.64],[-2.12,48.64],[-2.11,48.64],[-2.11,48.65],[-2.11,48.64],[-2.1,48.64],[-2.09,48.63],[-2.09,48.64],[-2.09,48.63],[-2.08,48.64],[-2.08,48.64],[-2.08,48.64],[-2.08,48.64],[-2.08,48.64],[-2.07,48.64],[-2.06,48.64],[-2.06,48.64],[-2.06,48.64],[-2.06,48.64],[-2.05,48.64],[-2.05,48.64],[-2.05,48.63],[-2.05,48.63],[-2.05,48.63],[-2.05,48.62],[-2.04,48.63],[-2.04,48.63],[-2.03,48.63],[-2.03,48.62],[-2.03,48.62],[-2.03,48.62],[-2.03,48.62],[-2.03,48.61],[-2.03,48.61],[-2.03,48.61],[-2.02,48.61],[-2.02,48.6],[-2.02,48.6],[-2.02,48.6],[-2.02,48.6],[-2.02,48.59],[-2.02,48.59],[-2.01,48.59],[-2.01,48.59],[-2,48.59],[-2,48.58],[-2,48.58],[-2,48.58],[-1.99,48.58],[-2,48.58],[-2,48.58],[-2.01,48.57],[-2.01,48.57],[-2.01,48.57],[-2,48.57],[-2,48.57],[-2,48.56],[-2,48.56],[-1.99,48.56],[-1.99,48.55],[-1.99,48.55],[-1.98,48.55],[-1.99,48.55],[-1.97,48.54],[-1.97,48.54],[-1.97,48.54],[-1.96,48.55],[-1.96,48.56],[-1.98,48.56],[-1.97,48.56],[-1.97,48.56],[-1.97,48.57],[-1.98,48.57],[-1.99,48.58],[-1.98,48.59],[-1.97,48.58],[-1.97,48.58],[-1.97,48.58],[-1.96,48.58],[-1.96,48.58],[-1.96,48.57],[-1.96,48.58],[-1.95,48.58],[-1.96,48.58],[-1.96,48.58],[-1.97,48.58],[-1.97,48.59],[-1.96,48.59],[-1.96,48.59],[-1.97,48.59],[-1.97,48.59],[-1.98,48.59],[-1.99,48.59],[-1.99,48.59],[-1.99,48.59],[-2,48.59],[-2,48.59],[-2,48.59],[-2,48.6],[-2,48.6],[-2,48.6],[-2,48.6],[-2,48.6],[-2,48.6],[-2.01,48.6],[-2.01,48.6],[-2.01,48.6],[-2.01,48.6],[-2.01,48.6],[-2.01,48.61],[-2.01,48.61],[-2.01,48.61],[-2,48.61],[-2.01,48.61],[-2.02,48.62],[-2.02,48.62],[-2.01,48.62],[-2.01,48.63],[-2.02,48.63],[-2.02,48.63],[-2.02,48.63],[-2.02,48.63],[-2.03,48.63],[-2.03,48.64],[-2.03,48.64],[-2.02,48.64],[-2.02,48.64],[-2.02,48.64],[-2.02,48.64],[-2.03,48.64],[-2.03,48.64],[-2.03,48.65],[-2.03,48.65],[-2.03,48.65],[-2.01,48.65],[-2,48.66],[-2,48.66],[-1.99,48.66],[-1.99,48.67],[-1.98,48.67],[-1.98,48.67],[-1.98,48.68],[-1.99,48.68],[-1.99,48.68],[-1.99,48.68],[-1.99,48.68],[-1.99,48.68],[-1.98,48.68],[-1.98,48.69],[-1.97,48.68],[-1.97,48.69],[-1.96,48.69],[-1.96,48.69],[-1.96,48.68],[-1.96,48.68],[-1.96,48.68],[-1.96,48.68],[-1.95,48.68],[-1.95,48.68],[-1.94,48.69],[-1.95,48.69],[-1.96,48.69],[-1.96,48.69],[-1.96,48.69],[-1.95,48.7],[-1.95,48.69],[-1.95,48.69],[-1.95,48.69],[-1.95,48.69],[-1.94,48.69],[-1.94,48.7],[-1.93,48.7],[-1.93,48.69],[-1.92,48.69],[-1.92,48.7],[-1.91,48.69],[-1.9,48.69],[-1.9,48.69],[-1.89,48.7],[-1.89,48.7],[-1.88,48.7],[-1.88,48.7],[-1.88,48.7],[-1.87,48.7],[-1.87,48.7],[-1.86,48.7],[-1.86,48.7],[-1.86,48.71],[-1.85,48.71],[-1.85,48.71],[-1.84,48.71],[-1.84,48.71],[-1.84,48.71],[-1.84,48.7],[-1.85,48.7],[-1.85,48.7],[-1.84,48.7],[-1.84,48.7],[-1.85,48.69],[-1.85,48.69],[-1.84,48.69],[-1.84,48.69],[-1.84,48.68],[-1.84,48.68],[-1.84,48.68],[-1.85,48.67],[-1.85,48.67],[-1.85,48.67],[-1.86,48.67],[-1.86,48.66],[-1.86,48.66],[-1.86,48.66],[-1.87,48.65],[-1.87,48.65],[-1.87,48.65],[-1.87,48.64],[-1.85,48.62],[-1.84,48.62],[-1.84,48.62],[-1.84,48.61],[-1.84,48.61],[-1.83,48.61],[-1.82,48.61],[-1.82,48.61],[-1.82,48.61],[-1.8,48.61],[-1.79,48.61],[-1.78,48.61],[-1.78,48.61],[-1.78,48.61],[-1.78,48.6],[-1.78,48.61],[-1.77,48.61],[-1.77,48.61],[-1.77,48.61],[-1.77,48.61],[-1.76,48.61],[-1.76,48.61],[-1.75,48.61],[-1.73,48.61],[-1.72,48.61],[-1.71,48.61],[-1.68,48.61],[-1.67,48.62],[-1.66,48.61],[-1.66,48.61],[-1.66,48.62],[-1.66,48.62],[-1.65,48.61],[-1.65,48.62],[-1.64,48.62],[-1.64,48.62],[-1.64,48.62],[-1.63,48.62],[-1.62,48.62],[-1.62,48.63],[-1.61,48.63],[-1.61,48.63],[-1.6,48.64],[-1.6,48.64],[-1.6,48.64],[-1.59,48.64],[-1.58,48.64],[-1.58,48.64],[-1.57,48.61],[-1.55,48.61],[-1.54,48.6],[-1.54,48.58],[-1.53,48.58],[-1.52,48.57],[-1.53,48.56],[-1.53,48.55],[-1.52,48.54],[-1.52,48.53],[-1.52,48.53],[-1.5,48.51],[-1.49,48.49],[-1.49,48.49],[-1.47,48.49],[-1.47,48.49],[-1.46,48.49],[-1.45,48.49],[-1.44,48.48],[-1.44,48.48],[-1.44,48.47],[-1.43,48.46],[-1.4,48.46],[-1.38,48.46],[-1.37,48.46],[-1.35,48.47],[-1.35,48.48],[-1.34,48.49],[-1.34,48.49],[-1.33,48.49],[-1.33,48.5],[-1.32,48.5],[-1.32,48.5],[-1.3,48.5],[-1.29,48.51],[-1.28,48.51],[-1.27,48.52],[-1.27,48.53],[-1.25,48.54],[-1.23,48.54],[-1.21,48.54],[-1.21,48.54],[-1.2,48.53],[-1.19,48.53],[-1.17,48.53],[-1.16,48.52],[-1.15,48.52],[-1.13,48.52],[-1.12,48.52],[-1.1,48.51],[-1.07,48.51],[-1.07,48.51],[-1.07,48.5],[-1.08,48.49],[-1.07,48.47],[-1.06,48.47],[-1.07,48.46],[-1.07,48.45],[-1.08,48.44],[-1.08,48.44],[-1.08,48.42],[-1.08,48.42],[-1.05,48.38],[-1.06,48.38],[-1.06,48.37],[-1.06,48.36],[-1.06,48.35],[-1.06,48.34],[-1.05,48.33],[-1.06,48.31],[-1.08,48.3],[-1.09,48.29],[-1.09,48.27],[-1.1,48.27],[-1.1,48.25],[-1.08,48.22],[-1.09,48.21],[-1.07,48.2],[-1.08,48.18],[-1.07,48.16],[-1.06,48.16],[-1.06,48.13],[-1.05,48.09],[-1.04,48.08],[-1.02,48.07],[-1.03,48.06],[-1.03,48.05],[-1.03,48.04],[-1.03,48.03],[-1.02,48.02],[-1.02,48],[-1.02,48],[-1.05,47.98],[-1.07,47.98],[-1.11,47.99],[-1.12,47.99],[-1.13,47.97],[-1.15,47.97],[-1.16,47.96],[-1.16,47.95],[-1.16,47.94],[-1.17,47.93],[-1.16,47.93],[-1.17,47.92],[-1.18,47.91],[-1.18,47.9],[-1.19,47.89],[-1.2,47.89],[-1.2,47.88],[-1.19,47.87],[-1.2,47.86],[-1.21,47.86],[-1.22,47.85],[-1.21,47.84],[-1.22,47.84],[-1.22,47.82],[-1.23,47.82],[-1.24,47.81],[-1.24,47.81],[-1.24,47.8],[-1.25,47.78],[-1.36,47.8],[-1.39,47.83],[-1.41,47.83],[-1.41,47.83],[-1.41,47.83],[-1.42,47.83],[-1.46,47.83],[-1.47,47.83],[-1.48,47.83],[-1.48,47.83],[-1.47,47.82],[-1.47,47.81],[-1.48,47.8],[-1.5,47.8],[-1.5,47.8],[-1.51,47.8],[-1.53,47.78],[-1.56,47.78],[-1.58,47.78],[-1.59,47.78],[-1.59,47.78],[-1.6,47.77],[-1.61,47.76],[-1.62,47.76],[-1.63,47.76],[-1.64,47.74],[-1.64,47.72],[-1.64,47.72],[-1.66,47.71],[-1.69,47.71],[-1.71,47.71],[-1.71,47.7],[-1.73,47.7],[-1.73,47.7],[-1.75,47.71],[-1.77,47.7],[-1.82,47.71],[-1.83,47.71],[-1.84,47.71],[-1.86,47.71],[-1.87,47.7],[-1.88,47.7],[-1.88,47.7],[-1.94,47.69],[-1.96,47.67],[-1.97,47.67],[-1.97,47.67],[-1.97,47.69],[-1.97,47.69],[-2.01,47.67],[-2.04,47.67],[-2.05,47.66],[-2.05,47.65],[-2.08,47.65],[-2.1,47.63],[-2.08,47.62],[-2.09,47.6],[-2.1,47.6],[-2.1,47.58],[-2.11,47.58],[-2.1,47.57],[-2.1,47.55],[-2.1,47.54],[-2.1,47.53],[-2.15,47.52],[-2.16,47.5],[-2.17,47.49],[-2.19,47.49],[-2.19,47.5],[-2.19,47.51],[-2.19,47.51],[-2.22,47.51],[-2.24,47.49],[-2.26,47.5],[-2.26,47.51],[-2.26,47.51],[-2.28,47.51],[-2.3,47.52],[-2.3,47.5],[-2.31,47.48],[-2.32,47.46],[-2.36,47.46],[-2.37,47.46],[-2.38,47.46],[-2.4,47.46],[-2.41,47.46],[-2.42,47.47],[-2.42,47.48],[-2.44,47.47],[-2.45,47.46],[-2.46,47.45],[-2.47,47.45],[-2.47,47.45],[-2.47,47.44],[-2.48,47.45],[-2.48,47.44],[-2.48,47.44],[-2.48,47.44],[-2.49,47.45],[-2.49,47.45],[-2.5,47.45],[-2.49,47.45],[-2.5,47.46],[-2.49,47.46],[-2.49,47.46],[-2.5,47.47],[-2.49,47.47],[-2.49,47.47],[-2.49,47.48],[-2.5,47.49],[-2.5,47.49],[-2.5,47.49],[-2.49,47.5],[-2.49,47.5],[-2.48,47.5],[-2.47,47.49],[-2.47,47.49],[-2.45,47.49],[-2.44,47.5],[-2.46,47.51],[-2.46,47.51],[-2.47,47.51],[-2.48,47.51],[-2.49,47.52],[-2.49,47.52],[-2.5,47.52],[-2.5,47.51],[-2.51,47.52],[-2.51,47.52],[-2.5,47.52],[-2.5,47.52],[-2.52,47.53],[-2.52,47.53],[-2.52,47.53],[-2.52,47.52],[-2.53,47.52],[-2.53,47.52],[-2.54,47.52],[-2.54,47.52],[-2.55,47.51],[-2.55,47.51],[-2.55,47.51],[-2.56,47.51],[-2.6,47.52],[-2.61,47.52],[-2.61,47.51],[-2.61,47.51],[-2.61,47.51],[-2.61,47.51],[-2.61,47.51],[-2.62,47.51],[-2.62,47.5],[-2.63,47.51],[-2.63,47.5],[-2.63,47.51],[-2.63,47.51],[-2.63,47.51],[-2.62,47.52],[-2.62,47.51],[-2.61,47.52],[-2.61,47.51],[-2.61,47.51],[-2.61,47.52],[-2.61,47.52],[-2.61,47.52],[-2.61,47.52],[-2.61,47.52],[-2.61,47.53],[-2.6,47.53],[-2.6,47.53],[-2.59,47.53],[-2.59,47.53],[-2.58,47.54],[-2.58,47.54],[-2.58,47.54],[-2.58,47.54],[-2.58,47.55],[-2.58,47.54],[-2.58,47.54],[-2.58,47.54],[-2.58,47.54],[-2.6,47.53],[-2.6,47.53],[-2.61,47.53],[-2.61,47.53],[-2.61,47.53],[-2.61,47.54],[-2.62,47.53],[-2.63,47.53],[-2.63,47.53],[-2.64,47.53],[-2.64,47.53],[-2.65,47.53],[-2.64,47.53],[-2.65,47.53],[-2.65,47.53],[-2.64,47.53],[-2.64,47.53],[-2.64,47.53],[-2.63,47.53],[-2.62,47.53],[-2.62,47.53],[-2.62,47.52],[-2.62,47.52],[-2.63,47.52],[-2.64,47.52],[-2.65,47.52],[-2.66,47.52],[-2.66,47.52],[-2.66,47.52],[-2.66,47.52],[-2.67,47.52],[-2.67,47.52],[-2.67,47.52],[-2.66,47.52],[-2.66,47.52],[-2.67,47.51],[-2.67,47.51],[-2.66,47.51],[-2.67,47.5],[-2.68,47.5],[-2.68,47.5],[-2.68,47.49],[-2.67,47.5],[-2.67,47.49],[-2.68,47.49],[-2.68,47.49],[-2.68,47.49],[-2.68,47.49],[-2.69,47.5],[-2.72,47.51],[-2.73,47.51],[-2.73,47.51],[-2.73,47.51],[-2.74,47.5],[-2.74,47.5],[-2.74,47.5],[-2.75,47.5],[-2.76,47.5],[-2.77,47.5],[-2.78,47.49],[-2.79,47.49],[-2.78,47.49],[-2.78,47.49],[-2.79,47.49],[-2.79,47.49],[-2.79,47.49],[-2.79,47.48],[-2.8,47.49],[-2.81,47.49],[-2.82,47.49],[-2.82,47.49],[-2.82,47.49],[-2.82,47.49],[-2.83,47.49],[-2.83,47.49],[-2.84,47.49],[-2.84,47.49],[-2.85,47.5],[-2.85,47.5],[-2.85,47.51],[-2.85,47.52],[-2.86,47.52],[-2.86,47.52],[-2.88,47.53],[-2.88,47.53],[-2.89,47.54],[-2.89,47.54],[-2.9,47.54],[-2.9,47.53],[-2.9,47.53],[-2.91,47.54],[-2.9,47.54],[-2.9,47.54],[-2.91,47.54],[-2.91,47.55],[-2.92,47.55],[-2.92,47.55],[-2.92,47.55],[-2.91,47.55],[-2.91,47.55],[-2.91,47.55],[-2.91,47.55],[-2.91,47.56],[-2.91,47.56],[-2.91,47.56],[-2.91,47.56],[-2.9,47.56],[-2.9,47.56],[-2.9,47.56],[-2.9,47.56],[-2.89,47.55],[-2.89,47.56],[-2.89,47.56],[-2.89,47.56],[-2.88,47.56],[-2.88,47.56],[-2.88,47.56],[-2.88,47.56],[-2.88,47.56],[-2.88,47.56],[-2.88,47.56],[-2.88,47.55],[-2.87,47.55],[-2.87,47.56],[-2.87,47.56],[-2.87,47.55],[-2.87,47.55],[-2.87,47.55],[-2.87,47.55],[-2.87,47.55],[-2.87,47.55],[-2.86,47.55],[-2.86,47.55],[-2.86,47.55],[-2.86,47.54],[-2.85,47.54],[-2.85,47.54],[-2.85,47.54],[-2.85,47.54],[-2.85,47.54],[-2.85,47.55],[-2.85,47.55],[-2.84,47.55],[-2.84,47.54],[-2.84,47.54],[-2.83,47.55],[-2.83,47.55],[-2.83,47.55],[-2.83,47.54],[-2.83,47.54],[-2.82,47.54],[-2.82,47.54],[-2.82,47.55],[-2.82,47.55],[-2.82,47.55],[-2.83,47.56],[-2.82,47.56],[-2.82,47.56],[-2.82,47.55],[-2.81,47.55],[-2.81,47.56],[-2.81,47.56],[-2.8,47.55],[-2.81,47.55],[-2.8,47.55],[-2.81,47.55],[-2.81,47.54],[-2.8,47.54],[-2.8,47.54],[-2.8,47.54],[-2.8,47.54],[-2.8,47.54],[-2.8,47.55],[-2.79,47.55],[-2.78,47.55],[-2.78,47.55],[-2.78,47.55],[-2.78,47.55],[-2.78,47.55],[-2.78,47.54],[-2.78,47.54],[-2.78,47.54],[-2.77,47.54],[-2.77,47.54],[-2.76,47.54],[-2.76,47.54],[-2.77,47.54],[-2.77,47.54],[-2.76,47.54],[-2.75,47.54],[-2.74,47.54],[-2.74,47.54],[-2.74,47.54],[-2.73,47.54],[-2.73,47.54],[-2.73,47.55],[-2.73,47.55],[-2.73,47.55],[-2.74,47.55],[-2.73,47.55],[-2.73,47.56],[-2.73,47.56],[-2.73,47.56],[-2.73,47.57],[-2.72,47.57],[-2.71,47.58],[-2.71,47.58],[-2.71,47.58],[-2.72,47.58],[-2.71,47.58],[-2.72,47.58],[-2.72,47.58],[-2.72,47.58],[-2.72,47.59],[-2.71,47.59],[-2.71,47.59],[-2.71,47.58],[-2.71,47.58],[-2.71,47.58],[-2.71,47.58],[-2.7,47.58],[-2.7,47.58],[-2.7,47.58],[-2.71,47.58],[-2.71,47.59],[-2.71,47.59],[-2.71,47.59],[-2.71,47.59],[-2.7,47.59],[-2.7,47.59],[-2.7,47.59],[-2.69,47.59],[-2.69,47.59],[-2.69,47.59],[-2.69,47.6],[-2.69,47.6],[-2.69,47.6],[-2.69,47.61],[-2.69,47.61],[-2.69,47.61],[-2.69,47.61],[-2.69,47.61],[-2.69,47.61],[-2.69,47.61],[-2.69,47.62],[-2.7,47.62],[-2.69,47.63],[-2.7,47.63],[-2.7,47.63],[-2.7,47.63],[-2.7,47.62],[-2.69,47.62],[-2.7,47.61],[-2.7,47.61],[-2.7,47.61],[-2.7,47.6],[-2.7,47.6],[-2.71,47.6],[-2.71,47.59],[-2.71,47.59],[-2.71,47.59],[-2.72,47.59],[-2.72,47.59],[-2.72,47.59],[-2.73,47.59],[-2.73,47.59],[-2.73,47.6],[-2.73,47.6],[-2.72,47.59],[-2.72,47.59],[-2.72,47.6],[-2.72,47.6],[-2.72,47.6],[-2.72,47.6],[-2.73,47.6],[-2.72,47.6],[-2.73,47.6],[-2.73,47.6],[-2.74,47.61],[-2.74,47.61],[-2.75,47.61],[-2.75,47.61],[-2.76,47.61],[-2.76,47.61],[-2.76,47.61],[-2.76,47.61],[-2.78,47.62],[-2.78,47.62],[-2.78,47.63],[-2.77,47.62],[-2.76,47.62],[-2.76,47.62],[-2.76,47.62],[-2.75,47.62],[-2.74,47.61],[-2.74,47.61],[-2.74,47.62],[-2.74,47.63],[-2.74,47.63],[-2.75,47.62],[-2.75,47.62],[-2.75,47.62],[-2.75,47.63],[-2.76,47.63],[-2.76,47.63],[-2.76,47.64],[-2.76,47.64],[-2.76,47.64],[-2.76,47.63],[-2.77,47.63],[-2.79,47.63],[-2.79,47.64],[-2.78,47.64],[-2.79,47.64],[-2.79,47.64],[-2.79,47.63],[-2.78,47.63],[-2.78,47.63],[-2.78,47.62],[-2.79,47.62],[-2.79,47.62],[-2.8,47.62],[-2.8,47.62],[-2.8,47.62],[-2.81,47.62],[-2.81,47.62],[-2.82,47.62],[-2.83,47.62],[-2.83,47.62],[-2.83,47.61],[-2.84,47.61],[-2.83,47.62],[-2.83,47.62],[-2.84,47.62],[-2.84,47.62],[-2.85,47.62],[-2.86,47.62],[-2.86,47.62],[-2.87,47.62],[-2.86,47.62],[-2.86,47.61],[-2.87,47.61],[-2.87,47.6],[-2.86,47.6],[-2.86,47.6],[-2.86,47.6],[-2.86,47.6],[-2.87,47.6],[-2.88,47.6],[-2.89,47.6],[-2.89,47.6],[-2.89,47.59],[-2.89,47.58],[-2.9,47.58],[-2.9,47.59],[-2.9,47.58],[-2.91,47.58],[-2.91,47.58],[-2.91,47.59],[-2.9,47.59],[-2.91,47.59],[-2.91,47.59],[-2.91,47.59],[-2.91,47.59],[-2.92,47.59],[-2.92,47.58],[-2.92,47.58],[-2.93,47.59],[-2.93,47.59],[-2.93,47.6],[-2.93,47.6],[-2.93,47.6],[-2.93,47.6],[-2.94,47.6],[-2.94,47.59],[-2.94,47.59],[-2.93,47.59],[-2.93,47.59],[-2.94,47.59],[-2.94,47.59],[-2.94,47.59],[-2.94,47.6],[-2.94,47.6],[-2.95,47.6],[-2.95,47.61],[-2.95,47.61],[-2.95,47.61],[-2.95,47.61],[-2.95,47.61],[-2.95,47.62],[-2.95,47.63],[-2.94,47.63],[-2.94,47.63],[-2.95,47.63],[-2.95,47.63],[-2.96,47.63],[-2.96,47.63],[-2.96,47.63],[-2.96,47.63],[-2.96,47.63],[-2.96,47.63],[-2.96,47.64],[-2.95,47.64],[-2.95,47.64],[-2.95,47.65],[-2.95,47.65],[-2.95,47.65],[-2.95,47.64],[-2.95,47.64],[-2.96,47.64],[-2.97,47.64],[-2.97,47.64],[-2.97,47.64],[-2.97,47.65],[-2.97,47.65],[-2.98,47.66],[-2.98,47.66],[-2.98,47.66],[-2.97,47.65],[-2.97,47.64],[-2.97,47.64],[-2.97,47.63],[-2.96,47.63],[-2.96,47.62],[-2.96,47.62],[-2.96,47.62],[-2.95,47.62],[-2.95,47.61],[-2.96,47.61],[-2.96,47.61],[-2.96,47.61],[-2.96,47.61],[-2.96,47.61],[-2.97,47.61],[-2.97,47.61],[-2.96,47.6],[-2.96,47.6],[-2.96,47.6],[-2.95,47.6],[-2.95,47.6],[-2.96,47.59],[-2.96,47.59],[-2.97,47.59],[-2.97,47.59],[-2.96,47.59],[-2.96,47.58],[-2.96,47.58],[-2.95,47.58],[-2.94,47.57],[-2.95,47.57],[-2.94,47.57],[-2.94,47.57],[-2.94,47.57],[-2.94,47.57],[-2.94,47.56],[-2.93,47.56],[-2.93,47.56],[-2.93,47.55],[-2.93,47.55],[-2.93,47.56],[-2.94,47.55],[-2.94,47.56],[-2.95,47.56],[-2.95,47.56],[-2.95,47.56],[-2.95,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.56],[-2.96,47.55],[-2.97,47.56],[-2.97,47.56],[-2.97,47.56],[-2.97,47.56],[-2.98,47.57],[-2.98,47.57],[-2.97,47.57],[-2.97,47.57],[-2.98,47.57],[-2.98,47.57],[-2.98,47.57],[-2.98,47.58],[-2.98,47.58],[-2.98,47.58],[-2.99,47.58],[-2.99,47.58],[-2.99,47.58],[-2.99,47.58],[-2.99,47.59],[-2.99,47.59],[-2.99,47.59],[-3,47.59],[-3,47.59],[-3,47.58],[-3,47.58],[-3,47.58],[-2.99,47.58],[-2.99,47.57],[-2.99,47.57],[-2.99,47.57],[-2.99,47.57],[-3,47.57],[-2.99,47.56],[-3,47.57],[-3.01,47.57],[-3.01,47.57],[-3.01,47.58],[-3.02,47.58],[-3.02,47.59],[-3.02,47.59],[-3.02,47.59],[-3.02,47.6],[-3.02,47.6],[-3.02,47.6],[-3.03,47.6],[-3.02,47.59],[-3.03,47.59],[-3.02,47.58],[-3.02,47.58],[-3.03,47.58],[-3.02,47.58],[-3.02,47.57],[-3.02,47.57],[-3.02,47.57],[-3.02,47.57],[-3.02,47.57],[-3.03,47.57],[-3.03,47.57],[-3.03,47.57],[-3.03,47.58],[-3.03,47.57],[-3.04,47.57],[-3.04,47.57],[-3.04,47.58],[-3.04,47.58],[-3.04,47.58],[-3.04,47.58],[-3.04,47.58],[-3.04,47.58],[-3.05,47.58],[-3.05,47.57],[-3.05,47.57],[-3.05,47.57],[-3.05,47.57],[-3.06,47.57],[-3.06,47.57],[-3.06,47.57],[-3.06,47.57],[-3.07,47.57],[-3.08,47.57],[-3.08,47.57],[-3.09,47.56],[-3.09,47.57],[-3.1,47.56],[-3.1,47.57],[-3.1,47.57],[-3.1,47.57],[-3.11,47.57],[-3.11,47.58],[-3.1,47.58],[-3.09,47.58],[-3.09,47.58],[-3.1,47.58],[-3.11,47.58],[-3.1,47.58],[-3.11,47.58],[-3.11,47.59],[-3.11,47.59],[-3.12,47.59],[-3.12,47.59],[-3.12,47.59],[-3.13,47.6],[-3.13,47.6],[-3.13,47.6],[-3.13,47.59],[-3.13,47.59],[-3.13,47.59],[-3.13,47.58],[-3.13,47.58],[-3.13,47.57],[-3.13,47.57],[-3.12,47.58],[-3.11,47.58],[-3.12,47.57],[-3.13,47.56],[-3.13,47.55],[-3.13,47.55],[-3.13,47.54],[-3.13,47.54],[-3.13,47.53],[-3.13,47.53],[-3.13,47.53],[-3.13,47.52],[-3.13,47.52],[-3.13,47.51],[-3.12,47.51],[-3.12,47.5],[-3.12,47.5],[-3.12,47.5],[-3.12,47.5],[-3.11,47.49],[-3.11,47.49],[-3.1,47.49],[-3.1,47.49],[-3.1,47.49],[-3.1,47.49],[-3.1,47.49],[-3.1,47.48],[-3.09,47.48],[-3.09,47.48],[-3.09,47.48],[-3.09,47.48],[-3.09,47.48],[-3.09,47.47],[-3.09,47.47],[-3.09,47.47],[-3.08,47.47],[-3.08,47.47],[-3.09,47.47],[-3.09,47.47],[-3.09,47.47],[-3.1,47.47],[-3.1,47.47],[-3.11,47.47],[-3.11,47.47],[-3.11,47.47],[-3.11,47.48],[-3.12,47.48],[-3.12,47.48],[-3.12,47.48],[-3.13,47.48],[-3.13,47.47],[-3.13,47.47],[-3.14,47.47],[-3.13,47.48],[-3.14,47.48],[-3.15,47.48],[-3.14,47.49],[-3.15,47.49],[-3.14,47.49],[-3.15,47.49],[-3.15,47.5],[-3.15,47.5],[-3.15,47.5],[-3.15,47.5],[-3.15,47.5],[-3.15,47.51],[-3.15,47.51],[-3.15,47.51],[-3.15,47.52],[-3.15,47.52],[-3.16,47.52],[-3.16,47.53],[-3.16,47.53],[-3.16,47.53],[-3.16,47.53],[-3.15,47.53],[-3.15,47.53],[-3.15,47.53],[-3.15,47.53],[-3.14,47.53],[-3.14,47.54],[-3.14,47.54],[-3.14,47.54],[-3.14,47.55],[-3.14,47.56],[-3.14,47.58],[-3.15,47.59],[-3.16,47.61],[-3.17,47.61],[-3.18,47.61],[-3.19,47.62],[-3.19,47.62],[-3.19,47.62],[-3.19,47.62],[-3.2,47.62],[-3.2,47.62],[-3.2,47.62],[-3.2,47.62],[-3.2,47.63],[-3.2,47.64],[-3.21,47.64],[-3.21,47.65],[-3.2,47.65],[-3.21,47.65],[-3.2,47.65],[-3.2,47.66],[-3.21,47.65],[-3.21,47.66],[-3.21,47.66],[-3.21,47.66],[-3.2,47.67],[-3.21,47.67],[-3.21,47.67],[-3.2,47.67],[-3.2,47.67],[-3.2,47.67],[-3.2,47.68],[-3.2,47.68],[-3.2,47.68],[-3.19,47.68],[-3.19,47.68],[-3.19,47.68],[-3.19,47.68],[-3.19,47.69],[-3.18,47.68],[-3.18,47.68],[-3.18,47.68],[-3.17,47.68],[-3.17,47.68],[-3.16,47.68],[-3.16,47.68],[-3.16,47.68],[-3.16,47.69],[-3.16,47.69],[-3.16,47.69],[-3.15,47.69],[-3.15,47.69],[-3.15,47.7],[-3.14,47.7],[-3.14,47.7],[-3.14,47.7],[-3.13,47.7],[-3.13,47.7],[-3.12,47.7],[-3.12,47.7],[-3.12,47.7],[-3.13,47.7],[-3.14,47.7],[-3.14,47.7],[-3.14,47.7],[-3.15,47.7],[-3.15,47.7],[-3.15,47.7],[-3.14,47.7],[-3.15,47.7],[-3.15,47.7],[-3.15,47.7],[-3.16,47.7],[-3.15,47.7],[-3.15,47.69],[-3.16,47.69],[-3.16,47.69],[-3.16,47.69],[-3.17,47.7],[-3.17,47.7],[-3.16,47.7],[-3.15,47.7],[-3.15,47.7],[-3.15,47.71],[-3.15,47.7],[-3.15,47.71],[-3.15,47.71],[-3.15,47.71],[-3.15,47.71],[-3.15,47.71],[-3.15,47.71],[-3.15,47.72],[-3.15,47.72],[-3.14,47.72],[-3.14,47.71],[-3.14,47.71],[-3.14,47.71],[-3.14,47.71],[-3.13,47.7],[-3.13,47.71],[-3.13,47.71],[-3.13,47.71],[-3.13,47.71],[-3.13,47.71],[-3.14,47.71],[-3.12,47.72],[-3.12,47.72],[-3.13,47.72],[-3.13,47.73],[-3.11,47.73],[-3.11,47.72],[-3.11,47.72],[-3.11,47.73],[-3.11,47.73],[-3.12,47.73],[-3.13,47.73],[-3.13,47.72],[-3.14,47.72],[-3.14,47.72],[-3.15,47.72],[-3.15,47.72],[-3.15,47.72],[-3.16,47.72],[-3.16,47.72],[-3.16,47.71],[-3.16,47.71],[-3.16,47.71],[-3.16,47.71],[-3.16,47.71],[-3.16,47.72],[-3.16,47.72],[-3.16,47.72],[-3.16,47.72],[-3.16,47.72],[-3.15,47.72],[-3.15,47.72],[-3.15,47.73],[-3.14,47.73],[-3.15,47.73],[-3.15,47.73],[-3.15,47.74],[-3.15,47.74],[-3.15,47.74],[-3.15,47.74],[-3.14,47.75],[-3.14,47.74],[-3.15,47.74],[-3.15,47.75],[-3.15,47.75],[-3.15,47.75],[-3.15,47.74],[-3.15,47.74],[-3.16,47.74],[-3.16,47.73],[-3.15,47.73],[-3.16,47.73],[-3.16,47.73],[-3.17,47.73],[-3.17,47.74],[-3.19,47.74],[-3.19,47.74],[-3.19,47.75],[-3.19,47.75],[-3.19,47.74],[-3.19,47.74],[-3.18,47.73],[-3.18,47.74],[-3.17,47.73],[-3.17,47.73],[-3.17,47.73],[-3.17,47.72],[-3.17,47.72],[-3.18,47.72],[-3.17,47.71],[-3.17,47.71],[-3.17,47.71],[-3.17,47.71],[-3.17,47.71],[-3.17,47.7],[-3.17,47.7],[-3.17,47.7],[-3.18,47.7],[-3.18,47.7],[-3.17,47.71],[-3.18,47.71],[-3.18,47.7],[-3.18,47.71],[-3.18,47.7],[-3.18,47.7],[-3.19,47.7],[-3.19,47.7],[-3.2,47.7],[-3.19,47.7],[-3.2,47.7],[-3.2,47.69],[-3.19,47.7],[-3.19,47.69],[-3.19,47.69],[-3.19,47.69],[-3.2,47.69],[-3.2,47.69],[-3.2,47.69],[-3.2,47.69],[-3.2,47.69],[-3.21,47.69],[-3.21,47.7],[-3.21,47.7],[-3.21,47.69],[-3.21,47.69],[-3.21,47.69],[-3.21,47.69],[-3.21,47.69],[-3.21,47.69],[-3.21,47.69],[-3.21,47.69],[-3.21,47.68],[-3.2,47.68],[-3.2,47.68],[-3.2,47.68],[-3.21,47.68],[-3.21,47.67],[-3.22,47.67],[-3.21,47.67],[-3.22,47.67],[-3.22,47.67],[-3.21,47.66],[-3.22,47.66],[-3.21,47.66],[-3.21,47.66],[-3.21,47.66],[-3.21,47.66],[-3.21,47.65],[-3.21,47.64],[-3.21,47.64],[-3.24,47.66],[-3.25,47.67],[-3.25,47.67],[-3.26,47.67],[-3.27,47.68],[-3.29,47.69],[-3.29,47.69],[-3.3,47.69],[-3.3,47.69],[-3.32,47.69],[-3.32,47.7],[-3.32,47.7],[-3.32,47.7],[-3.32,47.69],[-3.33,47.7],[-3.35,47.7],[-3.35,47.69],[-3.35,47.69],[-3.36,47.68],[-3.36,47.69],[-3.36,47.69],[-3.36,47.69],[-3.36,47.69],[-3.35,47.69],[-3.36,47.7],[-3.35,47.7],[-3.35,47.7],[-3.34,47.7],[-3.33,47.7],[-3.33,47.7],[-3.33,47.7],[-3.32,47.7],[-3.32,47.7],[-3.32,47.69],[-3.31,47.7],[-3.31,47.69],[-3.3,47.69],[-3.3,47.69],[-3.28,47.69],[-3.28,47.69],[-3.28,47.69],[-3.29,47.7],[-3.29,47.7],[-3.3,47.7],[-3.3,47.7],[-3.3,47.7],[-3.3,47.7],[-3.31,47.7],[-3.31,47.7],[-3.32,47.7],[-3.32,47.71],[-3.31,47.71],[-3.31,47.7],[-3.31,47.71],[-3.31,47.71],[-3.32,47.71],[-3.32,47.7],[-3.32,47.7],[-3.33,47.71],[-3.33,47.71],[-3.34,47.71],[-3.35,47.7],[-3.35,47.7],[-3.36,47.7],[-3.36,47.71],[-3.36,47.71],[-3.36,47.71],[-3.36,47.71],[-3.37,47.71],[-3.36,47.71],[-3.36,47.71],[-3.36,47.71],[-3.35,47.71],[-3.35,47.71],[-3.35,47.71],[-3.35,47.72],[-3.35,47.71],[-3.34,47.72],[-3.34,47.72],[-3.35,47.72],[-3.35,47.73],[-3.35,47.73],[-3.34,47.73],[-3.35,47.73],[-3.35,47.73],[-3.35,47.74],[-3.34,47.74],[-3.34,47.73],[-3.34,47.73],[-3.34,47.74],[-3.33,47.74],[-3.32,47.74],[-3.32,47.74],[-3.32,47.75],[-3.31,47.75],[-3.31,47.75],[-3.3,47.75],[-3.3,47.76],[-3.3,47.76],[-3.31,47.76],[-3.31,47.76],[-3.32,47.76],[-3.32,47.76],[-3.32,47.76],[-3.32,47.75],[-3.32,47.75],[-3.33,47.75],[-3.33,47.74],[-3.34,47.74],[-3.35,47.74],[-3.36,47.73],[-3.37,47.73],[-3.37,47.73],[-3.38,47.73],[-3.39,47.73],[-3.4,47.73],[-3.4,47.73],[-3.39,47.73],[-3.38,47.73],[-3.38,47.73],[-3.38,47.72],[-3.37,47.72],[-3.37,47.72],[-3.37,47.72],[-3.37,47.72],[-3.37,47.72],[-3.37,47.72],[-3.37,47.71],[-3.37,47.71],[-3.38,47.71],[-3.38,47.71],[-3.38,47.7],[-3.38,47.7],[-3.38,47.7],[-3.39,47.7],[-3.39,47.7],[-3.4,47.7],[-3.41,47.7],[-3.41,47.7],[-3.41,47.7],[-3.42,47.7],[-3.42,47.7],[-3.42,47.7],[-3.42,47.7],[-3.43,47.7],[-3.43,47.7],[-3.43,47.7],[-3.43,47.7],[-3.44,47.7],[-3.44,47.7],[-3.44,47.7],[-3.45,47.7],[-3.45,47.7],[-3.46,47.7],[-3.46,47.7],[-3.46,47.7],[-3.46,47.7],[-3.46,47.71],[-3.47,47.71],[-3.47,47.71],[-3.47,47.71],[-3.48,47.71],[-3.48,47.71],[-3.48,47.71],[-3.49,47.72],[-3.49,47.72],[-3.49,47.72],[-3.49,47.72],[-3.49,47.72],[-3.5,47.73],[-3.5,47.73],[-3.5,47.73],[-3.5,47.73],[-3.5,47.74],[-3.5,47.74],[-3.5,47.74],[-3.5,47.75],[-3.51,47.75],[-3.51,47.75],[-3.52,47.76],[-3.52,47.76],[-3.52,47.76],[-3.53,47.77],[-3.53,47.77],[-3.53,47.77],[-3.53,47.77],[-3.53,47.77],[-3.53,47.78],[-3.53,47.78],[-3.53,47.79],[-3.53,47.79],[-3.53,47.79],[-3.53,47.79],[-3.53,47.79],[-3.53,47.8],[-3.52,47.8],[-3.52,47.8],[-3.52,47.8],[-3.52,47.8],[-3.52,47.8],[-3.52,47.8],[-3.52,47.8],[-3.53,47.8],[-3.53,47.79],[-3.53,47.79],[-3.53,47.79],[-3.53,47.78],[-3.53,47.78],[-3.53,47.78],[-3.53,47.77],[-3.53,47.77],[-3.54,47.77],[-3.54,47.76],[-3.54,47.76],[-3.55,47.77],[-3.55,47.76],[-3.56,47.76],[-3.56,47.77],[-3.56,47.77],[-3.56,47.77],[-3.56,47.77],[-3.57,47.77],[-3.58,47.77],[-3.58,47.77],[-3.6,47.77],[-3.6,47.77],[-3.6,47.77],[-3.61,47.77],[-3.61,47.77],[-3.61,47.77],[-3.62,47.77],[-3.63,47.77],[-3.64,47.77],[-3.64,47.77],[-3.64,47.77],[-3.65,47.77],[-3.65,47.78],[-3.65,47.78],[-3.65,47.78],[-3.65,47.78],[-3.65,47.78],[-3.65,47.78],[-3.66,47.78],[-3.66,47.78],[-3.67,47.78],[-3.67,47.78],[-3.67,47.78],[-3.68,47.78],[-3.69,47.78],[-3.69,47.78],[-3.69,47.78],[-3.7,47.79],[-3.71,47.79],[-3.71,47.79],[-3.72,47.8],[-3.72,47.8],[-3.72,47.8],[-3.72,47.81],[-3.71,47.81],[-3.71,47.81],[-3.7,47.81],[-3.7,47.82],[-3.7,47.82],[-3.68,47.82],[-3.68,47.82],[-3.69,47.82],[-3.7,47.82],[-3.7,47.82],[-3.69,47.83],[-3.7,47.83],[-3.7,47.83],[-3.7,47.82],[-3.7,47.82],[-3.7,47.82],[-3.7,47.81],[-3.71,47.81],[-3.71,47.81],[-3.72,47.81],[-3.72,47.8],[-3.73,47.8],[-3.73,47.8],[-3.74,47.81],[-3.74,47.82],[-3.74,47.83],[-3.75,47.83],[-3.75,47.84],[-3.75,47.84],[-3.75,47.84],[-3.75,47.84],[-3.75,47.84],[-3.76,47.84],[-3.75,47.83],[-3.75,47.83],[-3.75,47.82],[-3.75,47.82],[-3.75,47.82],[-3.75,47.81],[-3.75,47.82],[-3.74,47.81],[-3.74,47.8],[-3.74,47.8],[-3.74,47.8],[-3.76,47.79],[-3.77,47.79],[-3.77,47.79],[-3.79,47.79],[-3.8,47.79],[-3.81,47.79],[-3.81,47.79],[-3.81,47.79],[-3.81,47.79],[-3.82,47.79],[-3.82,47.8],[-3.82,47.8],[-3.83,47.8],[-3.83,47.79],[-3.83,47.79],[-3.83,47.8],[-3.84,47.8],[-3.84,47.8],[-3.84,47.79],[-3.84,47.79],[-3.86,47.79],[-3.86,47.79],[-3.85,47.79],[-3.85,47.8],[-3.85,47.8],[-3.86,47.81],[-3.86,47.81],[-3.87,47.81],[-3.88,47.82],[-3.88,47.82],[-3.88,47.83],[-3.89,47.83],[-3.9,47.83],[-3.9,47.83],[-3.9,47.84],[-3.9,47.84],[-3.9,47.84],[-3.9,47.85],[-3.89,47.85],[-3.89,47.85],[-3.89,47.85],[-3.9,47.85],[-3.9,47.85],[-3.91,47.85],[-3.91,47.85],[-3.91,47.85],[-3.92,47.85],[-3.92,47.86],[-3.91,47.86],[-3.91,47.86],[-3.9,47.86],[-3.91,47.86],[-3.91,47.86],[-3.91,47.87],[-3.91,47.87],[-3.92,47.87],[-3.93,47.87],[-3.93,47.87],[-3.93,47.87],[-3.93,47.88],[-3.93,47.88],[-3.93,47.88],[-3.93,47.88],[-3.95,47.88],[-3.95,47.89],[-3.95,47.89],[-3.95,47.89],[-3.95,47.89],[-3.95,47.9],[-3.95,47.9],[-3.95,47.89],[-3.96,47.89],[-3.96,47.9],[-3.97,47.9],[-3.98,47.9],[-3.98,47.9],[-3.98,47.91],[-3.98,47.9],[-3.98,47.9],[-3.98,47.89],[-3.99,47.9],[-3.99,47.9],[-3.99,47.89],[-3.98,47.89],[-3.97,47.89],[-3.97,47.89],[-3.98,47.89],[-3.99,47.88],[-3.98,47.88],[-3.98,47.87],[-3.99,47.87],[-3.98,47.86],[-3.98,47.86],[-3.97,47.86],[-3.98,47.85],[-3.98,47.85],[-3.98,47.85],[-3.99,47.85],[-4,47.85],[-4.03,47.85],[-4.03,47.85],[-4.04,47.85],[-4.04,47.84],[-4.04,47.84],[-4.04,47.85],[-4.06,47.86],[-4.07,47.86],[-4.08,47.86],[-4.07,47.86],[-4.06,47.86],[-4.07,47.86],[-4.08,47.86],[-4.07,47.87],[-4.08,47.86],[-4.09,47.86],[-4.09,47.86],[-4.1,47.86],[-4.1,47.86],[-4.1,47.86],[-4.1,47.87],[-4.1,47.87],[-4.11,47.87],[-4.11,47.87],[-4.11,47.87],[-4.11,47.86],[-4.12,47.86],[-4.13,47.86],[-4.14,47.86],[-4.16,47.85],[-4.17,47.85],[-4.17,47.84],[-4.17,47.84],[-4.17,47.85],[-4.16,47.85],[-4.16,47.86],[-4.16,47.86],[-4.17,47.85],[-4.17,47.86],[-4.17,47.86],[-4.17,47.86],[-4.17,47.87],[-4.18,47.87],[-4.17,47.87],[-4.17,47.87],[-4.18,47.88],[-4.18,47.88],[-4.18,47.88],[-4.18,47.88],[-4.18,47.87],[-4.19,47.87],[-4.18,47.87],[-4.18,47.86],[-4.18,47.86],[-4.18,47.85],[-4.18,47.85],[-4.18,47.85],[-4.19,47.86],[-4.19,47.86],[-4.19,47.86],[-4.19,47.85],[-4.18,47.85],[-4.18,47.85],[-4.19,47.85],[-4.19,47.85],[-4.19,47.85],[-4.18,47.84],[-4.18,47.84],[-4.18,47.84],[-4.18,47.84],[-4.18,47.84],[-4.17,47.83],[-4.17,47.84],[-4.16,47.84],[-4.16,47.83],[-4.16,47.83],[-4.16,47.83],[-4.16,47.82],[-4.17,47.82],[-4.16,47.81],[-4.17,47.81],[-4.17,47.81],[-4.17,47.81],[-4.17,47.8],[-4.18,47.8],[-4.18,47.8],[-4.18,47.8],[-4.18,47.8],[-4.18,47.8],[-4.18,47.8],[-4.18,47.8],[-4.19,47.8],[-4.2,47.8],[-4.2,47.8],[-4.21,47.8],[-4.21,47.8],[-4.21,47.8],[-4.21,47.8],[-4.21,47.8],[-4.22,47.79],[-4.22,47.79],[-4.22,47.79],[-4.23,47.79],[-4.24,47.79],[-4.24,47.79],[-4.25,47.79],[-4.26,47.79],[-4.27,47.79],[-4.27,47.79],[-4.29,47.79],[-4.29,47.79],[-4.3,47.79],[-4.29,47.8],[-4.3,47.8],[-4.3,47.8],[-4.31,47.8],[-4.32,47.8],[-4.32,47.8],[-4.33,47.8],[-4.34,47.8],[-4.34,47.8],[-4.35,47.8],[-4.35,47.8],[-4.35,47.8],[-4.36,47.8],[-4.36,47.79],[-4.35,47.8],[-4.36,47.79],[-4.36,47.79],[-4.37,47.79],[-4.37,47.79],[-4.37,47.79],[-4.37,47.8],[-4.38,47.79],[-4.38,47.79],[-4.38,47.8],[-4.38,47.8],[-4.38,47.8],[-4.38,47.8],[-4.38,47.81],[-4.38,47.81],[-4.37,47.81],[-4.38,47.81],[-4.38,47.81],[-4.39,47.81],[-4.39,47.81],[-4.39,47.81],[-4.38,47.82],[-4.37,47.83],[-4.37,47.83],[-4.37,47.83],[-4.36,47.83],[-4.36,47.83],[-4.36,47.83],[-4.35,47.83],[-4.35,47.84],[-4.36,47.84],[-4.35,47.84],[-4.35,47.84],[-4.35,47.85],[-4.35,47.86],[-4.36,47.89],[-4.36,47.89],[-4.39,47.93],[-4.4,47.94],[-4.41,47.94],[-4.41,47.95],[-4.41,47.95],[-4.42,47.95],[-4.42,47.96],[-4.43,47.96],[-4.44,47.97],[-4.45,47.98],[-4.46,47.98],[-4.46,47.98],[-4.47,47.99],[-4.48,47.99],[-4.48,47.99],[-4.48,47.99],[-4.5,48],[-4.51,48],[-4.52,48.01],[-4.52,48],[-4.52,48.01],[-4.54,48.01],[-4.53,48.02],[-4.54,48.02],[-4.53,48.03],[-4.53,48.03],[-4.53,48.04],[-4.51,48.04],[-4.5,48.04],[-4.49,48.04],[-4.5,48.04],[-4.5,48.04],[-4.51,48.04],[-4.53,48.04],[-4.54,48.03],[-4.53,48.03],[-4.54,48.03],[-4.53,48.02],[-4.54,48.02],[-4.54,48.02],[-4.53,48.02],[-4.53,48.02],[-4.54,48.02],[-4.54,48.01],[-4.54,48.01],[-4.54,48.01],[-4.55,48.01],[-4.56,48.01],[-4.56,48.01],[-4.56,48.01],[-4.56,48],[-4.56,48],[-4.56,48],[-4.56,48],[-4.56,48],[-4.56,48],[-4.57,48],[-4.57,48],[-4.58,48],[-4.59,48.01],[-4.59,48.01],[-4.59,48.01],[-4.6,48.01],[-4.61,48.02],[-4.61,48.02],[-4.61,48.02],[-4.62,48.02],[-4.62,48.02],[-4.63,48.02],[-4.63,48.03],[-4.63,48.03],[-4.64,48.02],[-4.65,48.02],[-4.65,48.02],[-4.66,48.02],[-4.66,48.02],[-4.66,48.02],[-4.66,48.03],[-4.69,48.03],[-4.69,48.03],[-4.7,48.03],[-4.7,48.03],[-4.7,48.03],[-4.71,48.03],[-4.73,48.03],[-4.73,48.04],[-4.74,48.04],[-4.73,48.04],[-4.71,48.04],[-4.71,48.05],[-4.71,48.05],[-4.71,48.05],[-4.71,48.05],[-4.71,48.06],[-4.72,48.06],[-4.72,48.07],[-4.69,48.06],[-4.69,48.06],[-4.69,48.07],[-4.69,48.07],[-4.69,48.06],[-4.67,48.06],[-4.67,48.07],[-4.67,48.07],[-4.67,48.07],[-4.67,48.07],[-4.66,48.07],[-4.66,48.07],[-4.66,48.07],[-4.65,48.07],[-4.64,48.07],[-4.64,48.07],[-4.63,48.07],[-4.63,48.07],[-4.63,48.07],[-4.62,48.07],[-4.62,48.07],[-4.61,48.07],[-4.6,48.08],[-4.6,48.08],[-4.59,48.07],[-4.59,48.08],[-4.59,48.08],[-4.59,48.08],[-4.58,48.08],[-4.58,48.08],[-4.57,48.08],[-4.56,48.08],[-4.55,48.08],[-4.55,48.08],[-4.54,48.08],[-4.54,48.09],[-4.54,48.09],[-4.52,48.09],[-4.52,48.09],[-4.52,48.09],[-4.51,48.09],[-4.51,48.09],[-4.5,48.09],[-4.5,48.09],[-4.5,48.09],[-4.49,48.09],[-4.49,48.09],[-4.49,48.09],[-4.48,48.09],[-4.48,48.1],[-4.47,48.1],[-4.47,48.1],[-4.46,48.1],[-4.46,48.1],[-4.46,48.1],[-4.45,48.1],[-4.45,48.1],[-4.43,48.1],[-4.43,48.1],[-4.42,48.1],[-4.42,48.1],[-4.42,48.11],[-4.41,48.11],[-4.4,48.1],[-4.4,48.11],[-4.39,48.1],[-4.38,48.11],[-4.38,48.11],[-4.37,48.11],[-4.37,48.11],[-4.36,48.11],[-4.35,48.1],[-4.35,48.1],[-4.35,48.1],[-4.34,48.1],[-4.34,48.1],[-4.34,48.1],[-4.33,48.1],[-4.33,48.1],[-4.32,48.1],[-4.32,48.09],[-4.32,48.09],[-4.32,48.09],[-4.31,48.09],[-4.31,48.09],[-4.3,48.09],[-4.3,48.09],[-4.3,48.09],[-4.29,48.1],[-4.29,48.1],[-4.29,48.1],[-4.28,48.12],[-4.28,48.12],[-4.28,48.12],[-4.29,48.13],[-4.28,48.13],[-4.28,48.13],[-4.27,48.13],[-4.27,48.14],[-4.28,48.15],[-4.27,48.15],[-4.28,48.15],[-4.27,48.15],[-4.27,48.15],[-4.27,48.16],[-4.29,48.15],[-4.29,48.16],[-4.29,48.16],[-4.29,48.16],[-4.3,48.16],[-4.3,48.16],[-4.3,48.17],[-4.3,48.17],[-4.29,48.17],[-4.29,48.17],[-4.29,48.17],[-4.29,48.18],[-4.3,48.18],[-4.3,48.19],[-4.3,48.2],[-4.31,48.2],[-4.32,48.2],[-4.33,48.2],[-4.33,48.2],[-4.33,48.2],[-4.33,48.21],[-4.33,48.21],[-4.37,48.2],[-4.37,48.21],[-4.37,48.21],[-4.37,48.21],[-4.37,48.21],[-4.38,48.22],[-4.39,48.22],[-4.39,48.22],[-4.39,48.22],[-4.4,48.22],[-4.41,48.22],[-4.41,48.22],[-4.41,48.23],[-4.42,48.23],[-4.42,48.23],[-4.43,48.23],[-4.43,48.23],[-4.44,48.22],[-4.44,48.22],[-4.44,48.23],[-4.43,48.23],[-4.43,48.24],[-4.43,48.24],[-4.43,48.24],[-4.43,48.24],[-4.43,48.23],[-4.43,48.23],[-4.45,48.24],[-4.46,48.24],[-4.46,48.24],[-4.46,48.24],[-4.46,48.24],[-4.48,48.24],[-4.48,48.24],[-4.49,48.23],[-4.49,48.24],[-4.5,48.23],[-4.5,48.23],[-4.5,48.23],[-4.5,48.22],[-4.49,48.23],[-4.49,48.22],[-4.5,48.22],[-4.49,48.22],[-4.5,48.22],[-4.5,48.21],[-4.51,48.21],[-4.51,48.2],[-4.51,48.2],[-4.51,48.2],[-4.51,48.2],[-4.52,48.2],[-4.52,48.2],[-4.52,48.19],[-4.53,48.19],[-4.53,48.19],[-4.54,48.18],[-4.54,48.18],[-4.54,48.17],[-4.54,48.17],[-4.54,48.17],[-4.54,48.17],[-4.56,48.17],[-4.56,48.17],[-4.56,48.17],[-4.56,48.17],[-4.56,48.17],[-4.56,48.18],[-4.56,48.18],[-4.55,48.18],[-4.56,48.18],[-4.55,48.19],[-4.55,48.19],[-4.55,48.19],[-4.55,48.2],[-4.55,48.21],[-4.55,48.21],[-4.56,48.21],[-4.56,48.22],[-4.56,48.22],[-4.56,48.22],[-4.56,48.23],[-4.56,48.23],[-4.56,48.23],[-4.57,48.23],[-4.57,48.23],[-4.57,48.23],[-4.57,48.24],[-4.57,48.24],[-4.57,48.24],[-4.56,48.24],[-4.55,48.24],[-4.54,48.24],[-4.55,48.25],[-4.55,48.26],[-4.55,48.26],[-4.56,48.26],[-4.57,48.25],[-4.58,48.25],[-4.58,48.25],[-4.59,48.25],[-4.6,48.25],[-4.6,48.26],[-4.6,48.26],[-4.6,48.26],[-4.61,48.26],[-4.62,48.26],[-4.62,48.25],[-4.62,48.25],[-4.62,48.25],[-4.62,48.26],[-4.63,48.26],[-4.62,48.26],[-4.63,48.26],[-4.62,48.26],[-4.62,48.27],[-4.62,48.28],[-4.62,48.28],[-4.63,48.28],[-4.63,48.28],[-4.62,48.28],[-4.62,48.28],[-4.61,48.28],[-4.61,48.28],[-4.61,48.28],[-4.61,48.29],[-4.6,48.29],[-4.6,48.29],[-4.6,48.28],[-4.59,48.28],[-4.59,48.28],[-4.6,48.28],[-4.59,48.28],[-4.58,48.28],[-4.58,48.28],[-4.57,48.28],[-4.57,48.28],[-4.57,48.28],[-4.57,48.28],[-4.57,48.29],[-4.57,48.29],[-4.57,48.3],[-4.57,48.3],[-4.57,48.31],[-4.57,48.31],[-4.57,48.31],[-4.58,48.31],[-4.57,48.31],[-4.58,48.31],[-4.58,48.32],[-4.58,48.32],[-4.58,48.32],[-4.58,48.32],[-4.58,48.32],[-4.58,48.33],[-4.57,48.33],[-4.57,48.33],[-4.56,48.33],[-4.56,48.34],[-4.56,48.34],[-4.56,48.34],[-4.54,48.34],[-4.53,48.34],[-4.53,48.34],[-4.55,48.33],[-4.54,48.32],[-4.55,48.32],[-4.54,48.31],[-4.55,48.31],[-4.55,48.31],[-4.55,48.31],[-4.55,48.31],[-4.56,48.3],[-4.55,48.3],[-4.55,48.29],[-4.54,48.29],[-4.54,48.29],[-4.54,48.29],[-4.54,48.29],[-4.54,48.28],[-4.52,48.29],[-4.52,48.29],[-4.53,48.29],[-4.53,48.3],[-4.52,48.3],[-4.51,48.31],[-4.5,48.31],[-4.5,48.31],[-4.5,48.31],[-4.5,48.31],[-4.5,48.31],[-4.5,48.3],[-4.5,48.3],[-4.51,48.3],[-4.51,48.3],[-4.52,48.29],[-4.51,48.29],[-4.51,48.29],[-4.51,48.29],[-4.5,48.29],[-4.51,48.29],[-4.51,48.28],[-4.51,48.28],[-4.5,48.28],[-4.47,48.29],[-4.46,48.29],[-4.46,48.29],[-4.46,48.29],[-4.46,48.29],[-4.45,48.29],[-4.45,48.3],[-4.45,48.3],[-4.45,48.29],[-4.45,48.29],[-4.45,48.29],[-4.44,48.29],[-4.43,48.29],[-4.42,48.29],[-4.42,48.29],[-4.42,48.29],[-4.42,48.29],[-4.42,48.28],[-4.42,48.29],[-4.42,48.29],[-4.41,48.29],[-4.42,48.28],[-4.41,48.28],[-4.41,48.28],[-4.38,48.28],[-4.36,48.28],[-4.35,48.29],[-4.34,48.29],[-4.33,48.29],[-4.32,48.29],[-4.31,48.3],[-4.29,48.3],[-4.29,48.3],[-4.29,48.3],[-4.27,48.3],[-4.26,48.29],[-4.26,48.29],[-4.27,48.29],[-4.26,48.29],[-4.27,48.28],[-4.27,48.28],[-4.27,48.29],[-4.27,48.29],[-4.28,48.29],[-4.28,48.29],[-4.29,48.28],[-4.28,48.28],[-4.28,48.28],[-4.29,48.27],[-4.28,48.28],[-4.28,48.27],[-4.27,48.27],[-4.27,48.27],[-4.26,48.27],[-4.25,48.26],[-4.26,48.26],[-4.25,48.26],[-4.25,48.26],[-4.25,48.25],[-4.24,48.25],[-4.23,48.25],[-4.22,48.26],[-4.22,48.26],[-4.21,48.24],[-4.21,48.25],[-4.2,48.25],[-4.18,48.25],[-4.15,48.25],[-4.14,48.24],[-4.15,48.25],[-4.15,48.25],[-4.16,48.25],[-4.19,48.25],[-4.2,48.25],[-4.2,48.25],[-4.2,48.25],[-4.2,48.25],[-4.21,48.25],[-4.21,48.26],[-4.21,48.26],[-4.22,48.26],[-4.22,48.26],[-4.23,48.26],[-4.23,48.26],[-4.24,48.25],[-4.24,48.25],[-4.25,48.27],[-4.26,48.27],[-4.28,48.28],[-4.28,48.28],[-4.28,48.28],[-4.28,48.28],[-4.28,48.29],[-4.28,48.29],[-4.28,48.28],[-4.27,48.28],[-4.26,48.28],[-4.24,48.29],[-4.24,48.29],[-4.24,48.29],[-4.24,48.29],[-4.23,48.29],[-4.23,48.29],[-4.22,48.29],[-4.22,48.29],[-4.19,48.3],[-4.21,48.3],[-4.22,48.3],[-4.24,48.3],[-4.24,48.3],[-4.24,48.3],[-4.24,48.31],[-4.24,48.31],[-4.24,48.31],[-4.24,48.31],[-4.24,48.3],[-4.25,48.3],[-4.24,48.3],[-4.25,48.3],[-4.25,48.3],[-4.25,48.3],[-4.25,48.3],[-4.25,48.31],[-4.26,48.31],[-4.26,48.31],[-4.27,48.31],[-4.28,48.31],[-4.28,48.31],[-4.28,48.32],[-4.27,48.32],[-4.27,48.32],[-4.26,48.32],[-4.26,48.32],[-4.25,48.33],[-4.26,48.32],[-4.27,48.32],[-4.27,48.32],[-4.27,48.32],[-4.28,48.32],[-4.28,48.32],[-4.28,48.32],[-4.29,48.31],[-4.31,48.32],[-4.31,48.32],[-4.31,48.31],[-4.31,48.32],[-4.32,48.31],[-4.33,48.32],[-4.34,48.31],[-4.34,48.31],[-4.34,48.31],[-4.33,48.31],[-4.34,48.31],[-4.34,48.32],[-4.33,48.32],[-4.33,48.32],[-4.33,48.32],[-4.33,48.32],[-4.32,48.32],[-4.32,48.33],[-4.32,48.33],[-4.32,48.33],[-4.32,48.33],[-4.31,48.33],[-4.3,48.33],[-4.31,48.33],[-4.32,48.33],[-4.32,48.33],[-4.32,48.33],[-4.32,48.33],[-4.32,48.33],[-4.31,48.34],[-4.31,48.34],[-4.3,48.34],[-4.29,48.34],[-4.28,48.34],[-4.28,48.35],[-4.29,48.35],[-4.29,48.35],[-4.29,48.35],[-4.29,48.35],[-4.28,48.35],[-4.27,48.35],[-4.26,48.36],[-4.27,48.36],[-4.27,48.35],[-4.28,48.35],[-4.29,48.35],[-4.29,48.35],[-4.3,48.35],[-4.3,48.36],[-4.3,48.35],[-4.3,48.35],[-4.3,48.35],[-4.3,48.34],[-4.31,48.34],[-4.32,48.34],[-4.32,48.34],[-4.33,48.34],[-4.33,48.34],[-4.33,48.34],[-4.33,48.34],[-4.33,48.34],[-4.33,48.35],[-4.33,48.35],[-4.32,48.36],[-4.33,48.35],[-4.33,48.35],[-4.33,48.35],[-4.34,48.35],[-4.34,48.35],[-4.34,48.34],[-4.35,48.34],[-4.35,48.34],[-4.35,48.34],[-4.35,48.34],[-4.36,48.34],[-4.36,48.35],[-4.35,48.35],[-4.35,48.35],[-4.36,48.35],[-4.36,48.34],[-4.37,48.34],[-4.37,48.34],[-4.37,48.34],[-4.37,48.34],[-4.37,48.33],[-4.37,48.33],[-4.37,48.33],[-4.38,48.33],[-4.4,48.32],[-4.42,48.32],[-4.41,48.33],[-4.4,48.34],[-4.41,48.34],[-4.41,48.34],[-4.42,48.33],[-4.43,48.33],[-4.43,48.33],[-4.44,48.33],[-4.45,48.32],[-4.46,48.33],[-4.46,48.33],[-4.45,48.33],[-4.45,48.33],[-4.45,48.34],[-4.44,48.34],[-4.44,48.34],[-4.44,48.35],[-4.45,48.35],[-4.44,48.35],[-4.44,48.35],[-4.44,48.36],[-4.44,48.36],[-4.43,48.37],[-4.42,48.37],[-4.42,48.37],[-4.41,48.37],[-4.41,48.38],[-4.41,48.38],[-4.41,48.38],[-4.4,48.38],[-4.4,48.39],[-4.38,48.39],[-4.37,48.4],[-4.37,48.4],[-4.36,48.4],[-4.35,48.4],[-4.34,48.4],[-4.32,48.41],[-4.31,48.42],[-4.31,48.42],[-4.3,48.42],[-4.29,48.43],[-4.3,48.43],[-4.3,48.43],[-4.31,48.42],[-4.31,48.42],[-4.31,48.42],[-4.32,48.42],[-4.32,48.42],[-4.33,48.42],[-4.33,48.42],[-4.34,48.41],[-4.34,48.41],[-4.35,48.41],[-4.35,48.41],[-4.35,48.41],[-4.35,48.41],[-4.36,48.41],[-4.36,48.41],[-4.36,48.41],[-4.37,48.41],[-4.37,48.4],[-4.38,48.4],[-4.38,48.4],[-4.39,48.4],[-4.4,48.39],[-4.41,48.39],[-4.42,48.4],[-4.43,48.4],[-4.43,48.4],[-4.43,48.39],[-4.43,48.39],[-4.43,48.39],[-4.44,48.38],[-4.44,48.38],[-4.45,48.38],[-4.45,48.38],[-4.45,48.38],[-4.46,48.38],[-4.45,48.39],[-4.46,48.39],[-4.46,48.38],[-4.46,48.39],[-4.47,48.38],[-4.47,48.38],[-4.47,48.38],[-4.47,48.38],[-4.47,48.38],[-4.48,48.38],[-4.48,48.38],[-4.48,48.38],[-4.49,48.38],[-4.48,48.38],[-4.49,48.38],[-4.49,48.38],[-4.49,48.38],[-4.5,48.38],[-4.49,48.38],[-4.5,48.38],[-4.5,48.38],[-4.5,48.37],[-4.51,48.37],[-4.51,48.37],[-4.52,48.37],[-4.53,48.36],[-4.53,48.36],[-4.53,48.36],[-4.54,48.36],[-4.55,48.36],[-4.55,48.36],[-4.55,48.36],[-4.55,48.36],[-4.56,48.36],[-4.56,48.35],[-4.56,48.36],[-4.57,48.35],[-4.57,48.35],[-4.57,48.35],[-4.57,48.35],[-4.59,48.35],[-4.59,48.34],[-4.6,48.34],[-4.6,48.34],[-4.61,48.34],[-4.61,48.34],[-4.61,48.34],[-4.62,48.34],[-4.62,48.34],[-4.63,48.34],[-4.63,48.34],[-4.64,48.34],[-4.65,48.34],[-4.66,48.35],[-4.68,48.36],[-4.68,48.35],[-4.69,48.35],[-4.7,48.35],[-4.7,48.35],[-4.7,48.35],[-4.7,48.34],[-4.7,48.34],[-4.7,48.34],[-4.71,48.34],[-4.71,48.33],[-4.73,48.33],[-4.74,48.33],[-4.75,48.33],[-4.76,48.33],[-4.77,48.33],[-4.77,48.33],[-4.77,48.33],[-4.77,48.33],[-4.78,48.34],[-4.78,48.34],[-4.77,48.34],[-4.77,48.35],[-4.78,48.35],[-4.78,48.36],[-4.78,48.36],[-4.77,48.36],[-4.76,48.36],[-4.76,48.36],[-4.77,48.36],[-4.79,48.36],[-4.79,48.37],[-4.79,48.37],[-4.79,48.37],[-4.79,48.37],[-4.79,48.37],[-4.78,48.37],[-4.78,48.37],[-4.78,48.36],[-4.77,48.37],[-4.76,48.37],[-4.76,48.38],[-4.77,48.38],[-4.76,48.38],[-4.77,48.38],[-4.77,48.39],[-4.78,48.39],[-4.77,48.4],[-4.77,48.41],[-4.79,48.4],[-4.78,48.41],[-4.79,48.41],[-4.79,48.41],[-4.79,48.41],[-4.8,48.41],[-4.8,48.42],[-4.79,48.42],[-4.79,48.42],[-4.79,48.42],[-4.78,48.43],[-4.79,48.43],[-4.79,48.44],[-4.79,48.44],[-4.79,48.44],[-4.78,48.44],[-4.78,48.44],[-4.78,48.44],[-4.78,48.44],[-4.78,48.45],[-4.78,48.44],[-4.78,48.45],[-4.78,48.45],[-4.78,48.45],[-4.77,48.46],[-4.77,48.46],[-4.77,48.46],[-4.77,48.46],[-4.77,48.47],[-4.76,48.47],[-4.76,48.47],[-4.75,48.47],[-4.75,48.47],[-4.75,48.47],[-4.75,48.47],[-4.76,48.47],[-4.76,48.47],[-4.77,48.48],[-4.77,48.48],[-4.77,48.48],[-4.77,48.48],[-4.77,48.48],[-4.77,48.48],[-4.77,48.48],[-4.78,48.48],[-4.77,48.48],[-4.77,48.49],[-4.78,48.49],[-4.78,48.49],[-4.78,48.49],[-4.78,48.5],[-4.78,48.5],[-4.78,48.5],[-4.78,48.51],[-4.77,48.51],[-4.77,48.51],[-4.77,48.51],[-4.77,48.51],[-4.77,48.51],[-4.77,48.52],[-4.77,48.51],[-4.78,48.52],[-4.78,48.51],[-4.78,48.51],[-4.78,48.52],[-4.78,48.52],[-4.78,48.52],[-4.78,48.52],[-4.78,48.52],[-4.77,48.52],[-4.77,48.52],[-4.77,48.52],[-4.77,48.52],[-4.77,48.52],[-4.76,48.52],[-4.76,48.52],[-4.77,48.52],[-4.77,48.52],[-4.76,48.52],[-4.76,48.52],[-4.76,48.52],[-4.76,48.52],[-4.76,48.53],[-4.77,48.53],[-4.77,48.53],[-4.76,48.53],[-4.77,48.53],[-4.76,48.53],[-4.76,48.53],[-4.76,48.53],[-4.76,48.53],[-4.76,48.53],[-4.76,48.53],[-4.75,48.53],[-4.75,48.54],[-4.75,48.54],[-4.75,48.54],[-4.74,48.55],[-4.73,48.56],[-4.72,48.56],[-4.72,48.56],[-4.72,48.56],[-4.71,48.56],[-4.72,48.56],[-4.71,48.55],[-4.71,48.56],[-4.71,48.55],[-4.7,48.55],[-4.7,48.55],[-4.7,48.56],[-4.71,48.56],[-4.71,48.56],[-4.7,48.56],[-4.7,48.56],[-4.71,48.56],[-4.7,48.57],[-4.7,48.57],[-4.71,48.57],[-4.71,48.57],[-4.7,48.57],[-4.7,48.57],[-4.69,48.57],[-4.69,48.57],[-4.69,48.57],[-4.69,48.57],[-4.69,48.58],[-4.69,48.58],[-4.69,48.58],[-4.69,48.57],[-4.68,48.57],[-4.68,48.57],[-4.68,48.57],[-4.68,48.57],[-4.67,48.57],[-4.67,48.58],[-4.66,48.57],[-4.66,48.57],[-4.64,48.57],[-4.64,48.57],[-4.63,48.58],[-4.63,48.58],[-4.62,48.58],[-4.62,48.58],[-4.61,48.58],[-4.61,48.57],[-4.6,48.57],[-4.6,48.57],[-4.59,48.56],[-4.59,48.56],[-4.59,48.56],[-4.59,48.55],[-4.59,48.56],[-4.58,48.56],[-4.59,48.56],[-4.58,48.56],[-4.56,48.56]],[[-4.56,48.56],[-4.55,48.56],[-4.55,48.56],[-4.55,48.56],[-4.54,48.56],[-4.54,48.55],[-4.53,48.55],[-4.53,48.56],[-4.52,48.55],[-4.53,48.56],[-4.53,48.55],[-4.54,48.56],[-4.54,48.56],[-4.55,48.56],[-4.55,48.56],[-4.56,48.56]],[[-2.95,47.65],[-2.93,47.65],[-2.93,47.65],[-2.93,47.65],[-2.93,47.65],[-2.93,47.66],[-2.92,47.66],[-2.92,47.66],[-2.93,47.67],[-2.93,47.67],[-2.93,47.67],[-2.93,47.66],[-2.92,47.66],[-2.93,47.66],[-2.93,47.65],[-2.94,47.65],[-2.94,47.65],[-2.95,47.65]]],[[[-1.83,48.68],[-1.83,48.68],[-1.83,48.68],[-1.83,48.68]]],[[[-1.83,48.68],[-1.83,48.68],[-1.83,48.68],[-1.83,48.68]]],[[[-1.83,48.72],[-1.84,48.71],[-1.84,48.71],[-1.84,48.72],[-1.83,48.72]]],[[[-1.9,48.7],[-1.89,48.7],[-1.9,48.7],[-1.9,48.7],[-1.9,48.7],[-1.9,48.7]]],[[[-1.95,48.7],[-1.95,48.7],[-1.95,48.7],[-1.96,48.7],[-1.95,48.7]]],[[[-1.97,48.69],[-1.97,48.69],[-1.97,48.69],[-1.97,48.69],[-1.97,48.69]]],[[[-2.02,48.66],[-2.02,48.65],[-2.02,48.65],[-2.02,48.66]]],[[[-2.03,48.65],[-2.03,48.65],[-2.03,48.65],[-2.04,48.65],[-2.03,48.65]]],[[[-2.07,48.68],[-2.07,48.68],[-2.07,48.68],[-2.07,48.67],[-2.08,48.68],[-2.07,48.68],[-2.07,48.68]]],[[[-2.07,48.66],[-2.07,48.65],[-2.07,48.65],[-2.07,48.66]]],[[[-2.15,48.63],[-2.15,48.63],[-2.16,48.63],[-2.15,48.63]]],[[[-2.16,48.64],[-2.16,48.64],[-2.16,48.64],[-2.16,48.64],[-2.16,48.64]]],[[[-2.19,48.63],[-2.18,48.63],[-2.19,48.63],[-2.19,48.62],[-2.19,48.62],[-2.19,48.62],[-2.19,48.63],[-2.19,48.63],[-2.19,48.63],[-2.19,48.63],[-2.19,48.63],[-2.19,48.63],[-2.19,48.63]]],[[[-2.19,48.62],[-2.19,48.62],[-2.2,48.62],[-2.2,48.62],[-2.19,48.62]]],[[[-2.2,48.63],[-2.2,48.63],[-2.2,48.62],[-2.2,48.63],[-2.2,48.63]]],[[[-2.21,48.62],[-2.21,48.61],[-2.21,48.61],[-2.21,48.62]]],[[[-2.56,48.61],[-2.56,48.6],[-2.56,48.6],[-2.56,48.61]]],[[[-2.64,47.5],[-2.63,47.5],[-2.63,47.5],[-2.64,47.5],[-2.64,47.5]]],[[[-2.74,47.58],[-2.73,47.58],[-2.72,47.58],[-2.73,47.57],[-2.73,47.58],[-2.74,47.58],[-2.74,47.58],[-2.74,47.58]]],[[[-2.75,47.58],[-2.75,47.58],[-2.75,47.58],[-2.75,47.58]]],[[[-2.77,47.61],[-2.76,47.61],[-2.76,47.61],[-2.75,47.61],[-2.75,47.6],[-2.75,47.6],[-2.76,47.61],[-2.77,47.61],[-2.77,47.61],[-2.77,47.61],[-2.77,47.61]]],[[[-2.76,47.59],[-2.76,47.59],[-2.76,47.59],[-2.76,47.59],[-2.76,47.59]]],[[[-2.77,47.54],[-2.76,47.54],[-2.77,47.54],[-2.77,47.54]]],[[[-2.78,47.62],[-2.78,47.62],[-2.78,47.61],[-2.78,47.62],[-2.77,47.61],[-2.77,47.61],[-2.79,47.62],[-2.78,47.62],[-2.78,47.62],[-2.78,47.62],[-2.78,47.62]]],[[[-2.81,47.6],[-2.81,47.6],[-2.81,47.59],[-2.81,47.59],[-2.8,47.6],[-2.8,47.6],[-2.79,47.6],[-2.8,47.6],[-2.79,47.61],[-2.79,47.6],[-2.79,47.6],[-2.79,47.6],[-2.79,47.59],[-2.78,47.59],[-2.78,47.6],[-2.77,47.59],[-2.78,47.59],[-2.78,47.59],[-2.78,47.59],[-2.78,47.59],[-2.79,47.59],[-2.79,47.59],[-2.79,47.59],[-2.79,47.59],[-2.8,47.59],[-2.8,47.58],[-2.81,47.58],[-2.81,47.58],[-2.81,47.58],[-2.81,47.58],[-2.81,47.58],[-2.81,47.58],[-2.81,47.59],[-2.81,47.59],[-2.81,47.59],[-2.81,47.6]]],[[[-2.81,47.6],[-2.81,47.6],[-2.81,47.6],[-2.81,47.6]]],[[[-2.79,47.58],[-2.79,47.58],[-2.79,47.57],[-2.79,47.57],[-2.79,47.57],[-2.79,47.57],[-2.79,47.57],[-2.79,47.57],[-2.79,47.58],[-2.79,47.58]]],[[[-2.79,47.57],[-2.79,47.56],[-2.79,47.56],[-2.79,47.56],[-2.79,47.56],[-2.79,47.57],[-2.79,47.57]]],[[[-2.79,47.58],[-2.79,47.58],[-2.79,47.58],[-2.79,47.58]]],[[[-2.8,47.61],[-2.8,47.61],[-2.81,47.61],[-2.81,47.61],[-2.8,47.61]]],[[[-2.8,47.57],[-2.8,47.56],[-2.81,47.56],[-2.81,47.56],[-2.8,47.57]]],[[[-2.81,49.11],[-2.81,49.1],[-2.82,49.1],[-2.81,49.11]]],[[[-2.82,47.6],[-2.82,47.6],[-2.82,47.6],[-2.82,47.6]]],[[[-2.84,47.61],[-2.84,47.6],[-2.84,47.6],[-2.84,47.59],[-2.84,47.59],[-2.83,47.59],[-2.82,47.59],[-2.82,47.59],[-2.83,47.59],[-2.83,47.59],[-2.84,47.59],[-2.84,47.59],[-2.85,47.59],[-2.85,47.59],[-2.85,47.58],[-2.85,47.58],[-2.86,47.57],[-2.85,47.57],[-2.85,47.57],[-2.85,47.57],[-2.85,47.57],[-2.86,47.57],[-2.86,47.56],[-2.86,47.56],[-2.86,47.57],[-2.86,47.57],[-2.86,47.58],[-2.86,47.59],[-2.85,47.6],[-2.85,47.6],[-2.86,47.6],[-2.85,47.6],[-2.85,47.6],[-2.85,47.6],[-2.84,47.61],[-2.84,47.61],[-2.84,47.61]]],[[[-2.83,47.56],[-2.83,47.56],[-2.83,47.56],[-2.83,47.56],[-2.83,47.56]]],[[[-2.84,47.33],[-2.83,47.32],[-2.84,47.33],[-2.84,47.33]]],[[[-2.84,47.56],[-2.84,47.56],[-2.85,47.55],[-2.85,47.56],[-2.84,47.56],[-2.85,47.56],[-2.84,47.56]]],[[[-2.85,47.61],[-2.85,47.61],[-2.85,47.61],[-2.85,47.61],[-2.85,47.61],[-2.85,47.61]]],[[[-2.85,47.56],[-2.85,47.56],[-2.85,47.56],[-2.85,47.56],[-2.85,47.56]]],[[[-2.86,47.35],[-2.86,47.35],[-2.86,47.35],[-2.86,47.34],[-2.86,47.34],[-2.86,47.34],[-2.87,47.34],[-2.87,47.33],[-2.87,47.34],[-2.88,47.33],[-2.88,47.33],[-2.88,47.33],[-2.88,47.33],[-2.88,47.33],[-2.89,47.33],[-2.89,47.34],[-2.89,47.34],[-2.89,47.34],[-2.89,47.34],[-2.89,47.35],[-2.89,47.35],[-2.88,47.34],[-2.88,47.34],[-2.87,47.34],[-2.87,47.34],[-2.87,47.34],[-2.87,47.35],[-2.86,47.35]]],[[[-2.87,47.58],[-2.87,47.58],[-2.87,47.58],[-2.87,47.58]]],[[[-2.88,47.57],[-2.88,47.56],[-2.89,47.56],[-2.89,47.57],[-2.88,47.57]]],[[[-2.89,47.58],[-2.89,47.58],[-2.88,47.58],[-2.88,47.58],[-2.89,47.57],[-2.89,47.58],[-2.89,47.58]]],[[[-2.89,47.57],[-2.89,47.57],[-2.89,47.57],[-2.89,47.57],[-2.89,47.57]]],[[[-2.9,47.58],[-2.9,47.57],[-2.9,47.57],[-2.9,47.57],[-2.9,47.58]]],[[[-2.91,47.58],[-2.91,47.57],[-2.91,47.57],[-2.91,47.57],[-2.91,47.57],[-2.91,47.57],[-2.91,47.58],[-2.91,47.58]]],[[[-2.91,47.58],[-2.91,47.58],[-2.91,47.58],[-2.92,47.58],[-2.91,47.58]]],[[[-2.92,47.58],[-2.92,47.57],[-2.92,47.57],[-2.92,47.58]]],[[[-2.93,47.58],[-2.93,47.58],[-2.93,47.58],[-2.93,47.58],[-2.93,47.58],[-2.93,47.58]]],[[[-2.93,47.59],[-2.93,47.58],[-2.93,47.58],[-2.93,47.59],[-2.93,47.59],[-2.93,47.59]]],[[[-2.99,47.4],[-2.99,47.4],[-2.98,47.4],[-2.98,47.4],[-2.98,47.4],[-2.97,47.39],[-2.96,47.39],[-2.96,47.39],[-2.96,47.39],[-2.96,47.39],[-2.95,47.39],[-2.94,47.39],[-2.94,47.39],[-2.94,47.39],[-2.95,47.39],[-2.95,47.38],[-2.95,47.38],[-2.95,47.38],[-2.95,47.38],[-2.95,47.37],[-2.95,47.37],[-2.95,47.37],[-2.95,47.37],[-2.95,47.38],[-2.96,47.38],[-2.96,47.38],[-2.96,47.38],[-2.96,47.38],[-2.96,47.38],[-2.98,47.39],[-2.98,47.39],[-2.98,47.39],[-2.98,47.39],[-2.98,47.39],[-2.99,47.39],[-3,47.39],[-3,47.39],[-2.99,47.4],[-2.99,47.4],[-2.99,47.4],[-2.99,47.4],[-3,47.4],[-2.99,47.4]]],[[[-2.95,47.53],[-2.95,47.53],[-2.94,47.53],[-2.95,47.53]]],[[[-2.94,47.37],[-2.95,47.37],[-2.95,47.37],[-2.94,47.37]]],[[[-2.95,48.78],[-2.95,48.78],[-2.95,48.78],[-2.95,48.78],[-2.95,48.78]]],[[[-2.95,48.78],[-2.95,48.77],[-2.95,48.77],[-2.95,48.78]]],[[[-2.97,47.36],[-2.97,47.35],[-2.97,47.35],[-2.97,47.36]]],[[[-2.97,47.36],[-2.97,47.36],[-2.97,47.36],[-2.97,47.36],[-2.97,47.36]]],[[[-2.98,47.56],[-2.97,47.56],[-2.97,47.56],[-2.98,47.56],[-2.98,47.56],[-2.98,47.56],[-2.98,47.56]]],[[[-2.98,48.8],[-2.98,48.8],[-2.97,48.8],[-2.97,48.8],[-2.98,48.8],[-2.99,48.8],[-2.98,48.8],[-2.98,48.8],[-2.98,48.8]]],[[[-2.98,48.85],[-2.98,48.85],[-2.98,48.85],[-2.98,48.85],[-2.98,48.84],[-2.99,48.85],[-2.99,48.85],[-2.99,48.85],[-2.99,48.85],[-2.99,48.85],[-2.98,48.85]]],[[[-2.98,48.86],[-2.98,48.86],[-2.98,48.86],[-2.98,48.86],[-2.98,48.86],[-2.98,48.86]]],[[[-3.01,48.85],[-3.01,48.85],[-3.01,48.85],[-3.01,48.85],[-3.01,48.85],[-3,48.85],[-3,48.85],[-3,48.85],[-3,48.85],[-3,48.85],[-3,48.85],[-3.01,48.85],[-3.01,48.86],[-3.01,48.86],[-3.01,48.86],[-3.01,48.86],[-3,48.86],[-3,48.86],[-3,48.86],[-3,48.86],[-3,48.87],[-2.99,48.87],[-2.98,48.86],[-2.98,48.86],[-2.99,48.86],[-2.99,48.86],[-2.99,48.86],[-2.99,48.86],[-2.99,48.85],[-2.99,48.85],[-2.99,48.85],[-2.99,48.85],[-2.99,48.85],[-3,48.85],[-3,48.84],[-3,48.84],[-3,48.83],[-3,48.84],[-3,48.84],[-3,48.84],[-3.01,48.84],[-3,48.84],[-3.01,48.84],[-3.01,48.84],[-3.01,48.84],[-3.01,48.84],[-3.01,48.85],[-3.01,48.85],[-3.01,48.85],[-3.01,48.85],[-3.01,48.85]]],[[[-2.98,48.84],[-2.98,48.84],[-2.99,48.84],[-2.99,48.84],[-2.98,48.84]]],[[[-2.99,48.84],[-2.99,48.84],[-2.99,48.84],[-2.99,48.84]]],[[[-3,47.4],[-3,47.4],[-3,47.4],[-3,47.4]]],[[[-3,47.56],[-3,47.56],[-3,47.56],[-3,47.56]]],[[[-3.01,48.8],[-3.01,48.79],[-3.02,48.79],[-3.01,48.8]]],[[[-3.02,47.41],[-3.01,47.41],[-3.02,47.41],[-3.02,47.41],[-3.02,47.41],[-3.02,47.41]]],[[[-3.02,48.84],[-3.01,48.84],[-3.01,48.83],[-3.02,48.84],[-3.02,48.84],[-3.02,48.84],[-3.02,48.84]]],[[[-3.02,48.85],[-3.01,48.84],[-3.02,48.84],[-3.02,48.84],[-3.02,48.84],[-3.02,48.84],[-3.02,48.84],[-3.02,48.85],[-3.02,48.85],[-3.02,48.85]]],[[[-3.02,48.79],[-3.02,48.79],[-3.02,48.79],[-3.02,48.79],[-3.02,48.79]]],[[[-3.02,47.6],[-3.02,47.6],[-3.02,47.59],[-3.02,47.6],[-3.02,47.6]]],[[[-3.02,48.85],[-3.03,48.85],[-3.02,48.85],[-3.02,48.85],[-3.02,48.85]]],[[[-3.03,47.42],[-3.02,47.42],[-3.03,47.42],[-3.03,47.42]]],[[[-3.03,48.84],[-3.03,48.83],[-3.03,48.84],[-3.03,48.84],[-3.03,48.84]]],[[[-3.04,48.86],[-3.03,48.86],[-3.03,48.86],[-3.04,48.86],[-3.04,48.86],[-3.04,48.86],[-3.05,48.85],[-3.05,48.86],[-3.05,48.86],[-3.05,48.86],[-3.05,48.86],[-3.05,48.86],[-3.04,48.86]]],[[[-3.04,48.84],[-3.04,48.84],[-3.04,48.84],[-3.04,48.84],[-3.04,48.84]]],[[[-3.04,48.84],[-3.04,48.84],[-3.04,48.84],[-3.04,48.84]]],[[[-3.04,48.84],[-3.04,48.84],[-3.04,48.84],[-3.04,48.84],[-3.05,48.84],[-3.05,48.84],[-3.04,48.84]]],[[[-3.04,47.58],[-3.04,47.57],[-3.04,47.57],[-3.05,47.57],[-3.04,47.58]]],[[[-3.05,48.89],[-3.04,48.89],[-3.04,48.89],[-3.05,48.89],[-3.05,48.89]]],[[[-3.25,47.39],[-3.25,47.39],[-3.25,47.39],[-3.24,47.39],[-3.24,47.38],[-3.24,47.38],[-3.24,47.38],[-3.23,47.38],[-3.22,47.38],[-3.22,47.38],[-3.22,47.38],[-3.22,47.38],[-3.22,47.37],[-3.21,47.37],[-3.21,47.37],[-3.2,47.37],[-3.19,47.37],[-3.18,47.36],[-3.17,47.36],[-3.16,47.36],[-3.16,47.36],[-3.16,47.36],[-3.16,47.36],[-3.16,47.36],[-3.15,47.35],[-3.15,47.35],[-3.15,47.35],[-3.15,47.35],[-3.15,47.34],[-3.14,47.34],[-3.15,47.33],[-3.14,47.33],[-3.14,47.33],[-3.12,47.33],[-3.13,47.33],[-3.12,47.33],[-3.12,47.32],[-3.11,47.32],[-3.11,47.32],[-3.11,47.32],[-3.1,47.32],[-3.09,47.32],[-3.08,47.32],[-3.07,47.32],[-3.06,47.31],[-3.06,47.31],[-3.06,47.31],[-3.06,47.31],[-3.07,47.3],[-3.06,47.3],[-3.07,47.3],[-3.07,47.3],[-3.08,47.29],[-3.08,47.29],[-3.07,47.29],[-3.09,47.28],[-3.09,47.28],[-3.1,47.28],[-3.1,47.28],[-3.11,47.28],[-3.11,47.29],[-3.12,47.29],[-3.12,47.29],[-3.13,47.29],[-3.14,47.29],[-3.14,47.29],[-3.14,47.29],[-3.14,47.29],[-3.14,47.29],[-3.15,47.29],[-3.16,47.29],[-3.16,47.3],[-3.17,47.3],[-3.17,47.3],[-3.18,47.3],[-3.18,47.3],[-3.18,47.29],[-3.19,47.29],[-3.19,47.29],[-3.2,47.29],[-3.2,47.29],[-3.2,47.3],[-3.2,47.3],[-3.21,47.3],[-3.21,47.29],[-3.22,47.29],[-3.23,47.3],[-3.23,47.3],[-3.23,47.3],[-3.23,47.3],[-3.23,47.3],[-3.24,47.3],[-3.24,47.31],[-3.24,47.31],[-3.25,47.31],[-3.25,47.32],[-3.25,47.32],[-3.24,47.33],[-3.25,47.33],[-3.25,47.33],[-3.25,47.33],[-3.25,47.33],[-3.26,47.34],[-3.26,47.34],[-3.26,47.35],[-3.26,47.35],[-3.26,47.35],[-3.26,47.35],[-3.26,47.35],[-3.26,47.35],[-3.26,47.36],[-3.26,47.36],[-3.26,47.36],[-3.26,47.36],[-3.26,47.36],[-3.26,47.37],[-3.26,47.37],[-3.26,47.37],[-3.26,47.37],[-3.25,47.37],[-3.25,47.38],[-3.25,47.38],[-3.25,47.38],[-3.25,47.39],[-3.25,47.39],[-3.25,47.39]]],[[[-3.06,48.9],[-3.06,48.89],[-3.06,48.89],[-3.06,48.89],[-3.07,48.89],[-3.07,48.89],[-3.07,48.89],[-3.07,48.89],[-3.07,48.89],[-3.06,48.89],[-3.07,48.89],[-3.06,48.89],[-3.06,48.89],[-3.06,48.9]]],[[[-3.06,48.86],[-3.06,48.86],[-3.07,48.86],[-3.06,48.86]]],[[[-3.07,47.47],[-3.06,47.47],[-3.07,47.46],[-3.07,47.46],[-3.07,47.47],[-3.07,47.47]]],[[[-3.07,48.85],[-3.07,48.85],[-3.07,48.85],[-3.07,48.85],[-3.08,48.85],[-3.07,48.85]]],[[[-3.08,47.47],[-3.08,47.46],[-3.08,47.47],[-3.08,47.47]]],[[[-3.08,48.85],[-3.08,48.84],[-3.08,48.84],[-3.08,48.85],[-3.08,48.85]]],[[[-3.08,48.85],[-3.08,48.85],[-3.08,48.85],[-3.08,48.85],[-3.08,48.85]]],[[[-3.09,48.91],[-3.09,48.91],[-3.09,48.91],[-3.09,48.91],[-3.09,48.91]]],[[[-3.14,48.87],[-3.14,48.86],[-3.14,48.86],[-3.15,48.86],[-3.15,48.86],[-3.14,48.86],[-3.14,48.87]]],[[[-3.17,47.56],[-3.16,47.55],[-3.16,47.55],[-3.16,47.55],[-3.16,47.55],[-3.17,47.56],[-3.17,47.56],[-3.17,47.56]]],[[[-3.17,47.69],[-3.17,47.69],[-3.17,47.69],[-3.17,47.69],[-3.17,47.69]]],[[[-3.17,47.69],[-3.17,47.69],[-3.18,47.68],[-3.18,47.69],[-3.17,47.69]]],[[[-3.18,47.55],[-3.18,47.55],[-3.18,47.55],[-3.18,47.55]]],[[[-3.18,47.69],[-3.18,47.69],[-3.18,47.69],[-3.18,47.69],[-3.18,47.69]]],[[[-3.18,48.88],[-3.18,48.88],[-3.18,48.88],[-3.18,48.87],[-3.18,48.87],[-3.18,48.87],[-3.18,48.87],[-3.18,48.86],[-3.19,48.86],[-3.19,48.87],[-3.18,48.86],[-3.18,48.87],[-3.19,48.87],[-3.2,48.87],[-3.2,48.88],[-3.19,48.88],[-3.19,48.87],[-3.19,48.88],[-3.19,48.88],[-3.18,48.88]]],[[[-3.19,47.7],[-3.18,47.69],[-3.18,47.69],[-3.19,47.7]]],[[[-3.18,47.69],[-3.18,47.69],[-3.19,47.69],[-3.19,47.69],[-3.18,47.69]]],[[[-3.19,48.87],[-3.19,48.87],[-3.19,48.87],[-3.19,48.87],[-3.19,48.87],[-3.19,48.86],[-3.2,48.86],[-3.2,48.87],[-3.2,48.87],[-3.19,48.87]]],[[[-3.2,47.61],[-3.2,47.61],[-3.2,47.61],[-3.2,47.61],[-3.2,47.61]]],[[[-3.2,48.86],[-3.2,48.85],[-3.2,48.85],[-3.2,48.85],[-3.2,48.85],[-3.2,48.85],[-3.21,48.85],[-3.2,48.86]]],[[[-3.2,48.89],[-3.2,48.88],[-3.2,48.88],[-3.2,48.89],[-3.2,48.89]]],[[[-3.21,48.87],[-3.21,48.87],[-3.21,48.87],[-3.21,48.87]]],[[[-3.22,48.87],[-3.22,48.87],[-3.22,48.87],[-3.22,48.87]]],[[[-3.25,48.87],[-3.25,48.86],[-3.24,48.86],[-3.24,48.86],[-3.25,48.86],[-3.25,48.86],[-3.25,48.87],[-3.25,48.87],[-3.25,48.87]]],[[[-3.25,47.31],[-3.25,47.31],[-3.25,47.31],[-3.25,47.31],[-3.25,47.31]]],[[[-3.26,48.86],[-3.25,48.86],[-3.25,48.86],[-3.25,48.86],[-3.25,48.85],[-3.26,48.86],[-3.26,48.86]]],[[[-3.26,48.86],[-3.26,48.85],[-3.26,48.86],[-3.26,48.85],[-3.26,48.85],[-3.26,48.85],[-3.26,48.85],[-3.27,48.85],[-3.26,48.86]]],[[[-3.27,48.85],[-3.26,48.85],[-3.26,48.85],[-3.27,48.85]]],[[[-3.28,48.86],[-3.28,48.86],[-3.28,48.86],[-3.29,48.86],[-3.28,48.86]]],[[[-3.29,48.86],[-3.29,48.86],[-3.29,48.86],[-3.29,48.86],[-3.29,48.86]]],[[[-3.29,48.84],[-3.29,48.84],[-3.3,48.84],[-3.3,48.84],[-3.3,48.84],[-3.29,48.84]]],[[[-3.3,48.85],[-3.3,48.85],[-3.3,48.85],[-3.3,48.84],[-3.3,48.84],[-3.31,48.84],[-3.31,48.85],[-3.31,48.85],[-3.31,48.85],[-3.31,48.85],[-3.31,48.85],[-3.3,48.85],[-3.3,48.85]]],[[[-3.32,48.85],[-3.32,48.85],[-3.32,48.85],[-3.32,48.84],[-3.32,48.85],[-3.32,48.85],[-3.32,48.85]]],[[[-3.33,48.85],[-3.32,48.84],[-3.32,48.84],[-3.32,48.84],[-3.33,48.84],[-3.33,48.85]]],[[[-3.33,48.84],[-3.33,48.83],[-3.34,48.83],[-3.34,48.84],[-3.33,48.84]]],[[[-3.36,47.73],[-3.36,47.72],[-3.36,47.72],[-3.36,47.73]]],[[[-3.38,48.83],[-3.37,48.83],[-3.37,48.83],[-3.37,48.82],[-3.38,48.83],[-3.38,48.83],[-3.38,48.83]]],[[[-3.39,48.82],[-3.38,48.82],[-3.39,48.82],[-3.39,48.82]]],[[[-3.41,48.85],[-3.41,48.84],[-3.4,48.84],[-3.41,48.84],[-3.4,48.84],[-3.41,48.83],[-3.41,48.83],[-3.41,48.84],[-3.41,48.84],[-3.41,48.84],[-3.41,48.84],[-3.41,48.85]]],[[[-3.5,47.65],[-3.47,47.65],[-3.47,47.65],[-3.46,47.65],[-3.45,47.64],[-3.44,47.65],[-3.43,47.64],[-3.43,47.64],[-3.43,47.64],[-3.42,47.63],[-3.42,47.63],[-3.42,47.63],[-3.42,47.62],[-3.42,47.62],[-3.42,47.62],[-3.42,47.62],[-3.42,47.62],[-3.43,47.62],[-3.43,47.62],[-3.43,47.63],[-3.44,47.63],[-3.44,47.63],[-3.44,47.63],[-3.44,47.63],[-3.44,47.62],[-3.44,47.62],[-3.45,47.62],[-3.46,47.62],[-3.46,47.62],[-3.46,47.62],[-3.47,47.62],[-3.47,47.63],[-3.49,47.63],[-3.49,47.63],[-3.48,47.63],[-3.48,47.63],[-3.49,47.63],[-3.5,47.64],[-3.51,47.64],[-3.52,47.65],[-3.51,47.65],[-3.5,47.65],[-3.5,47.65]]],[[[-3.44,48.9],[-3.43,48.9],[-3.44,48.9],[-3.44,48.9],[-3.44,48.9],[-3.44,48.9]]],[[[-3.46,48.89],[-3.46,48.89],[-3.47,48.89],[-3.46,48.89]]],[[[-3.48,48.89],[-3.48,48.89],[-3.47,48.88],[-3.48,48.88],[-3.48,48.88],[-3.49,48.88],[-3.49,48.88],[-3.5,48.88],[-3.49,48.88],[-3.49,48.88],[-3.48,48.88],[-3.48,48.89]]],[[[-3.49,48.84],[-3.49,48.84],[-3.49,48.83],[-3.49,48.84],[-3.49,48.84]]],[[[-3.5,48.89],[-3.49,48.88],[-3.5,48.88],[-3.5,48.88],[-3.51,48.88],[-3.5,48.89]]],[[[-3.5,48.88],[-3.5,48.88],[-3.51,48.87],[-3.51,48.88],[-3.5,48.88]]],[[[-3.51,48.84],[-3.51,48.84],[-3.51,48.84],[-3.51,48.84],[-3.51,48.84]]],[[[-3.53,48.83],[-3.53,48.83],[-3.53,48.83],[-3.54,48.83],[-3.54,48.83],[-3.53,48.83]]],[[[-3.53,48.83],[-3.53,48.82],[-3.53,48.83],[-3.53,48.83]]],[[[-3.55,48.81],[-3.55,48.81],[-3.55,48.8],[-3.55,48.8],[-3.55,48.81],[-3.55,48.81]]],[[[-3.55,48.82],[-3.55,48.82],[-3.56,48.82],[-3.55,48.82]]],[[[-3.56,48.81],[-3.55,48.8],[-3.55,48.8],[-3.56,48.8],[-3.56,48.8],[-3.56,48.81]]],[[[-3.57,48.82],[-3.56,48.82],[-3.56,48.81],[-3.56,48.81],[-3.56,48.81],[-3.57,48.82],[-3.57,48.82]]],[[[-3.56,48.83],[-3.56,48.83],[-3.56,48.83],[-3.56,48.83],[-3.56,48.83]]],[[[-3.58,48.82],[-3.57,48.81],[-3.58,48.81],[-3.58,48.81],[-3.58,48.82]]],[[[-3.58,48.73],[-3.58,48.73],[-3.58,48.73],[-3.58,48.73],[-3.58,48.73]]],[[[-3.59,48.78],[-3.59,48.78],[-3.59,48.78],[-3.59,48.78],[-3.59,48.78]]],[[[-3.6,48.81],[-3.6,48.8],[-3.59,48.8],[-3.59,48.8],[-3.59,48.8],[-3.59,48.8],[-3.59,48.8],[-3.6,48.8],[-3.6,48.8],[-3.61,48.8],[-3.6,48.8],[-3.61,48.8],[-3.6,48.8],[-3.6,48.8],[-3.6,48.8],[-3.6,48.81]]],[[[-3.6,48.77],[-3.59,48.77],[-3.59,48.77],[-3.59,48.77],[-3.6,48.77],[-3.6,48.77]]],[[[-3.59,48.78],[-3.59,48.78],[-3.6,48.78],[-3.6,48.78],[-3.59,48.78]]],[[[-3.6,48.79],[-3.59,48.79],[-3.59,48.79],[-3.6,48.79],[-3.6,48.79]]],[[[-3.6,48.79],[-3.6,48.79],[-3.6,48.79],[-3.59,48.79],[-3.6,48.79],[-3.6,48.79],[-3.6,48.79]]],[[[-3.61,48.8],[-3.61,48.8],[-3.6,48.79],[-3.61,48.79],[-3.61,48.8],[-3.61,48.8]]],[[[-3.61,48.79],[-3.61,48.79],[-3.61,48.79],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.62,48.79],[-3.62,48.79],[-3.61,48.79]]],[[[-3.61,48.8],[-3.61,48.8],[-3.61,48.8],[-3.61,48.8]]],[[[-3.61,48.81],[-3.61,48.8],[-3.61,48.8],[-3.61,48.8],[-3.61,48.81]]],[[[-3.61,48.79],[-3.61,48.79],[-3.61,48.79],[-3.61,48.79],[-3.61,48.79],[-3.61,48.79]]],[[[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78],[-3.61,48.78]]],[[[-3.64,48.7],[-3.64,48.7],[-3.64,48.7],[-3.64,48.7],[-3.64,48.7]]],[[[-3.8,47.77],[-3.8,47.77],[-3.8,47.77],[-3.8,47.77],[-3.8,47.77]]],[[[-3.8,47.79],[-3.8,47.78],[-3.8,47.78],[-3.8,47.78],[-3.8,47.79]]],[[[-3.84,48.71],[-3.84,48.71],[-3.84,48.71],[-3.84,48.71]]],[[[-3.86,48.68],[-3.86,48.68],[-3.87,48.68],[-3.87,48.68],[-3.86,48.68]]],[[[-3.91,48.7],[-3.91,48.7],[-3.91,48.7],[-3.91,48.7],[-3.91,48.7]]],[[[-3.93,48.72],[-3.93,48.71],[-3.93,48.71],[-3.93,48.72],[-3.93,48.72]]],[[[-3.94,48.67],[-3.94,48.67],[-3.94,48.67],[-3.94,48.67],[-3.94,48.67]]],[[[-3.96,47.73],[-3.95,47.72],[-3.95,47.72],[-3.95,47.72],[-3.95,47.71],[-3.96,47.71],[-3.96,47.72],[-3.96,47.72],[-3.96,47.72],[-3.96,47.72],[-3.96,47.72],[-3.96,47.73]]],[[[-3.97,47.71],[-3.96,47.71],[-3.97,47.71],[-3.97,47.71],[-3.97,47.71]]],[[[-3.97,48.74],[-3.97,48.73],[-3.97,48.74],[-3.97,48.74]]],[[[-3.99,48.73],[-3.98,48.73],[-3.98,48.73],[-3.99,48.73],[-3.99,48.73]]],[[[-4,48.75],[-4,48.75],[-4.01,48.75],[-4.01,48.75],[-4,48.75],[-4,48.75],[-4,48.75],[-4,48.75],[-3.99,48.75],[-3.99,48.74],[-3.99,48.74],[-3.99,48.74],[-3.99,48.74],[-3.99,48.74],[-4,48.74],[-3.99,48.74],[-3.99,48.74],[-4,48.74],[-4,48.74],[-4.01,48.74],[-4.01,48.74],[-4.01,48.74],[-4.01,48.74],[-4.01,48.74],[-4.02,48.74],[-4.02,48.74],[-4.02,48.74],[-4.02,48.74],[-4.03,48.74],[-4.03,48.74],[-4.03,48.74],[-4.03,48.74],[-4.04,48.74],[-4.04,48.74],[-4.04,48.74],[-4.04,48.75],[-4.04,48.75],[-4.03,48.75],[-4.03,48.75],[-4.03,48.75],[-4.03,48.75],[-4.02,48.75],[-4.02,48.75],[-4.02,48.75],[-4,48.75]]],[[[-3.99,47.73],[-3.99,47.72],[-4,47.72],[-4,47.72],[-3.99,47.72],[-3.99,47.73],[-3.99,47.73]]],[[[-4,47.71],[-4,47.71],[-3.99,47.71],[-3.99,47.71],[-3.99,47.7],[-3.99,47.7],[-4,47.7],[-4,47.71],[-4,47.71],[-4,47.71]]],[[[-4,47.73],[-3.99,47.72],[-4,47.72],[-4,47.72],[-4.01,47.72],[-4.01,47.72],[-4.01,47.72],[-4.01,47.72],[-4,47.72],[-4,47.73]]],[[[-4,48.75],[-4,48.75],[-4,48.75],[-4,48.75]]],[[[-4.01,47.72],[-4,47.72],[-4,47.71],[-4.01,47.72],[-4.01,47.72],[-4.01,47.72],[-4.01,47.72]]],[[[-4.01,47.73],[-4.01,47.73],[-4.01,47.73],[-4.02,47.73],[-4.01,47.73]]],[[[-4.01,47.71],[-4.01,47.71],[-4.02,47.71],[-4.02,47.71],[-4.02,47.71],[-4.02,47.71],[-4.01,47.71]]],[[[-4.02,47.73],[-4.02,47.73],[-4.02,47.73],[-4.02,47.73],[-4.02,47.73]]],[[[-4.03,47.78],[-4.03,47.78],[-4.03,47.78],[-4.03,47.78],[-4.02,47.78],[-4.02,47.78],[-4.02,47.77],[-4.03,47.78],[-4.03,47.77],[-4.03,47.77],[-4.03,47.78],[-4.03,47.78]]],[[[-4.03,48.72],[-4.02,48.71],[-4.03,48.71],[-4.03,48.71],[-4.03,48.72]]],[[[-4.03,48.75],[-4.03,48.75],[-4.03,48.75],[-4.03,48.75],[-4.03,48.75]]],[[[-4.03,47.73],[-4.03,47.72],[-4.04,47.72],[-4.04,47.73],[-4.03,47.73]]],[[[-4.04,48.72],[-4.04,48.72],[-4.04,48.72],[-4.04,48.72]]],[[[-4.04,48.71],[-4.04,48.71],[-4.04,48.71],[-4.04,48.71]]],[[[-4.05,48.71],[-4.05,48.71],[-4.05,48.71],[-4.05,48.71]]],[[[-4.05,48.72],[-4.05,48.72],[-4.05,48.72],[-4.05,48.72]]],[[[-4.08,48.71],[-4.08,48.71],[-4.08,48.71],[-4.08,48.71],[-4.08,48.71]]],[[[-4.15,48.7],[-4.15,48.69],[-4.15,48.7],[-4.15,48.7]]],[[[-4.18,47.85],[-4.18,47.84],[-4.18,47.84],[-4.18,47.84],[-4.18,47.84],[-4.18,47.84],[-4.19,47.84],[-4.18,47.85],[-4.18,47.85]]],[[[-4.2,47.79],[-4.2,47.79],[-4.2,47.79],[-4.2,47.79],[-4.2,47.79],[-4.2,47.79]]],[[[-4.28,48.66],[-4.28,48.66],[-4.28,48.66],[-4.28,48.66],[-4.28,48.66],[-4.28,48.66]]],[[[-4.33,47.8],[-4.33,47.79],[-4.33,47.79],[-4.33,47.79],[-4.33,47.8]]],[[[-4.34,47.78],[-4.34,47.78],[-4.33,47.77],[-4.34,47.77],[-4.34,47.78]]],[[[-4.34,48.1],[-4.33,48.1],[-4.34,48.1],[-4.34,48.1],[-4.34,48.1],[-4.34,48.1]]],[[[-4.35,47.78],[-4.34,47.77],[-4.34,47.77],[-4.34,47.77],[-4.35,47.77],[-4.35,47.78]]],[[[-4.35,47.79],[-4.35,47.79],[-4.36,47.79],[-4.36,47.79],[-4.35,47.79]]],[[[-4.36,48.68],[-4.36,48.68],[-4.36,48.68],[-4.36,48.68],[-4.36,48.68]]],[[[-4.38,47.8],[-4.39,47.79],[-4.39,47.79],[-4.39,47.79],[-4.39,47.79],[-4.38,47.8]]],[[[-4.39,48.67],[-4.38,48.67],[-4.39,48.66],[-4.39,48.67],[-4.39,48.67],[-4.39,48.67]]],[[[-4.46,48.32],[-4.46,48.32],[-4.46,48.32],[-4.46,48.32],[-4.46,48.32]]],[[[-4.46,48.64],[-4.46,48.64],[-4.47,48.64],[-4.46,48.64]]],[[[-4.5,48.63],[-4.5,48.63],[-4.5,48.63],[-4.5,48.63]]],[[[-4.53,48.31],[-4.53,48.3],[-4.53,48.3],[-4.53,48.31],[-4.53,48.31]]],[[[-4.54,48.3],[-4.54,48.3],[-4.54,48.3],[-4.54,48.3],[-4.54,48.3]]],[[[-4.57,48.64],[-4.57,48.64],[-4.57,48.64],[-4.57,48.64],[-4.57,48.64],[-4.57,48.64],[-4.57,48.64],[-4.57,48.64]]],[[[-4.57,48.64],[-4.57,48.63],[-4.57,48.63],[-4.57,48.63],[-4.57,48.64]]],[[[-4.58,48.61],[-4.58,48.61],[-4.58,48.61],[-4.58,48.61]]],[[[-4.58,48.63],[-4.58,48.63],[-4.58,48.63],[-4.58,48.63]]],[[[-4.58,48.6],[-4.58,48.6],[-4.58,48.6],[-4.58,48.6]]],[[[-4.59,48.61],[-4.58,48.61],[-4.58,48.61],[-4.59,48.61],[-4.59,48.61],[-4.59,48.61]]],[[[-4.59,48.63],[-4.59,48.63],[-4.59,48.62],[-4.59,48.62],[-4.6,48.62],[-4.6,48.63],[-4.59,48.63]]],[[[-4.6,48.62],[-4.6,48.61],[-4.6,48.61],[-4.61,48.61],[-4.61,48.62],[-4.6,48.62]]],[[[-4.61,48.61],[-4.61,48.61],[-4.61,48.61],[-4.61,48.61]]],[[[-4.61,48.6],[-4.61,48.6],[-4.61,48.6],[-4.61,48.6]]],[[[-4.61,48.59],[-4.62,48.59],[-4.61,48.59],[-4.61,48.59]]],[[[-4.61,48.6],[-4.61,48.6],[-4.62,48.6],[-4.61,48.6]]],[[[-4.61,48.6],[-4.61,48.6],[-4.62,48.6],[-4.62,48.6],[-4.62,48.6],[-4.61,48.6]]],[[[-4.62,48.59],[-4.61,48.58],[-4.62,48.58],[-4.62,48.59],[-4.62,48.59]]],[[[-4.62,48.6],[-4.62,48.6],[-4.62,48.6],[-4.62,48.6],[-4.62,48.6],[-4.62,48.6],[-4.62,48.6]]],[[[-4.62,48.61],[-4.62,48.61],[-4.62,48.61],[-4.62,48.61],[-4.62,48.61]]],[[[-4.64,48.6],[-4.63,48.6],[-4.63,48.6],[-4.64,48.6],[-4.64,48.6],[-4.64,48.6]]],[[[-4.64,48.59],[-4.64,48.59],[-4.64,48.59],[-4.64,48.58],[-4.64,48.59],[-4.64,48.59],[-4.64,48.59]]],[[[-4.66,48.58],[-4.66,48.58],[-4.66,48.58],[-4.67,48.58],[-4.66,48.58]]],[[[-4.67,48.58],[-4.67,48.58],[-4.67,48.58],[-4.67,48.58],[-4.67,48.58],[-4.67,48.58],[-4.67,48.58]]],[[[-4.68,48.58],[-4.67,48.58],[-4.68,48.58],[-4.68,48.58],[-4.68,48.58]]],[[[-4.68,48.58],[-4.68,48.58],[-4.68,48.58],[-4.68,48.58],[-4.68,48.58]]],[[[-4.7,48.58],[-4.7,48.57],[-4.7,48.57],[-4.7,48.58]]],[[[-4.71,48.56],[-4.71,48.56],[-4.71,48.56],[-4.71,48.56]]],[[[-4.72,48.57],[-4.72,48.56],[-4.72,48.57],[-4.72,48.56],[-4.73,48.56],[-4.72,48.57]]],[[[-4.77,48.53],[-4.77,48.53],[-4.78,48.53],[-4.78,48.53],[-4.77,48.53]]],[[[-4.78,48.49],[-4.78,48.49],[-4.78,48.48],[-4.78,48.49],[-4.78,48.49],[-4.78,48.49]]],[[[-4.8,48.43],[-4.8,48.43],[-4.8,48.43],[-4.8,48.43]]],[[[-4.8,48.44],[-4.8,48.44],[-4.8,48.44],[-4.8,48.44]]],[[[-4.86,48.05],[-4.86,48.05],[-4.86,48.04],[-4.85,48.04],[-4.85,48.04],[-4.85,48.04],[-4.85,48.03],[-4.85,48.03],[-4.85,48.03],[-4.84,48.03],[-4.84,48.03],[-4.84,48.03],[-4.84,48.03],[-4.84,48.03],[-4.84,48.03],[-4.84,48.03],[-4.84,48.03],[-4.85,48.03],[-4.85,48.03],[-4.86,48.03],[-4.86,48.03],[-4.85,48.04],[-4.85,48.04],[-4.86,48.04],[-4.87,48.04],[-4.87,48.04],[-4.87,48.04],[-4.88,48.04],[-4.88,48.05],[-4.87,48.05],[-4.87,48.04],[-4.87,48.04],[-4.87,48.04],[-4.87,48.04],[-4.86,48.05]]],[[[-4.85,48.36],[-4.84,48.36],[-4.84,48.35],[-4.85,48.35],[-4.85,48.34],[-4.86,48.34],[-4.86,48.34],[-4.86,48.34],[-4.87,48.34],[-4.87,48.34],[-4.86,48.35],[-4.86,48.35],[-4.86,48.35],[-4.85,48.35],[-4.85,48.35],[-4.85,48.36]]],[[[-4.85,48.04],[-4.84,48.04],[-4.84,48.04],[-4.85,48.04],[-4.85,48.04]]],[[[-4.88,48.37],[-4.88,48.37],[-4.88,48.37],[-4.88,48.37],[-4.88,48.37]]],[[[-4.89,48.38],[-4.89,48.38],[-4.89,48.38],[-4.88,48.38],[-4.88,48.37],[-4.89,48.37],[-4.89,48.38],[-4.89,48.38],[-4.89,48.38],[-4.89,48.38]]],[[[-4.9,48.38],[-4.89,48.37],[-4.89,48.37],[-4.9,48.37],[-4.9,48.37],[-4.9,48.37],[-4.9,48.37],[-4.91,48.37],[-4.91,48.37],[-4.91,48.38],[-4.9,48.37],[-4.9,48.38]]],[[[-4.9,48.39],[-4.9,48.39],[-4.9,48.38],[-4.9,48.38],[-4.9,48.38],[-4.9,48.39],[-4.9,48.39]]],[[[-4.93,48.38],[-4.93,48.37],[-4.93,48.37],[-4.94,48.37],[-4.95,48.37],[-4.94,48.37],[-4.94,48.37],[-4.94,48.37],[-4.93,48.38]]],[[[-4.94,48.38],[-4.94,48.38],[-4.94,48.38],[-4.94,48.38],[-4.94,48.38]]],[[[-4.94,48.41],[-4.95,48.4],[-4.94,48.4],[-4.94,48.4],[-4.95,48.4],[-4.95,48.4],[-4.95,48.4],[-4.95,48.4],[-4.95,48.4],[-4.95,48.4],[-4.95,48.41],[-4.95,48.4],[-4.95,48.41],[-4.94,48.41]]],[[[-4.96,48.4],[-4.96,48.4],[-4.96,48.4],[-4.95,48.39],[-4.96,48.39],[-4.96,48.39],[-4.97,48.4],[-4.97,48.4],[-4.97,48.4],[-4.96,48.4],[-4.96,48.4]]],[[[-4.97,48.42],[-4.97,48.42],[-4.98,48.42],[-4.98,48.42],[-4.98,48.42],[-4.99,48.41],[-4.99,48.41],[-4.98,48.42],[-4.98,48.42],[-4.97,48.42]]],[[[-5.01,48.43],[-5.01,48.43],[-5.01,48.43],[-5.01,48.43],[-5.01,48.43],[-5.01,48.42],[-5.01,48.42],[-5.02,48.42],[-5.02,48.42],[-5.02,48.42],[-5.02,48.43],[-5.01,48.43],[-5.01,48.43],[-5.01,48.43],[-5.01,48.43]]],[[[-5.07,48.49],[-5.07,48.48],[-5.06,48.48],[-5.06,48.48],[-5.06,48.48],[-5.05,48.48],[-5.05,48.48],[-5.06,48.47],[-5.05,48.47],[-5.05,48.47],[-5.06,48.47],[-5.05,48.47],[-5.05,48.47],[-5.05,48.47],[-5.05,48.46],[-5.04,48.47],[-5.03,48.47],[-5.03,48.46],[-5.03,48.46],[-5.04,48.46],[-5.04,48.46],[-5.04,48.46],[-5.04,48.46],[-5.05,48.46],[-5.05,48.45],[-5.05,48.46],[-5.05,48.45],[-5.06,48.45],[-5.06,48.45],[-5.06,48.45],[-5.06,48.45],[-5.07,48.45],[-5.07,48.45],[-5.07,48.45],[-5.08,48.45],[-5.08,48.45],[-5.08,48.45],[-5.09,48.44],[-5.09,48.44],[-5.09,48.44],[-5.09,48.44],[-5.09,48.44],[-5.09,48.44],[-5.09,48.44],[-5.1,48.44],[-5.1,48.44],[-5.11,48.44],[-5.12,48.43],[-5.12,48.43],[-5.12,48.44],[-5.12,48.44],[-5.12,48.44],[-5.12,48.44],[-5.12,48.44],[-5.12,48.44],[-5.11,48.44],[-5.11,48.44],[-5.11,48.44],[-5.11,48.44],[-5.11,48.44],[-5.11,48.44],[-5.11,48.45],[-5.1,48.44],[-5.1,48.45],[-5.1,48.45],[-5.1,48.45],[-5.09,48.45],[-5.09,48.45],[-5.1,48.45],[-5.1,48.46],[-5.11,48.45],[-5.12,48.45],[-5.12,48.45],[-5.13,48.45],[-5.13,48.45],[-5.13,48.45],[-5.13,48.45],[-5.14,48.45],[-5.14,48.45],[-5.14,48.45],[-5.14,48.45],[-5.14,48.45],[-5.14,48.45],[-5.14,48.45],[-5.14,48.46],[-5.14,48.45],[-5.13,48.46],[-5.12,48.46],[-5.12,48.46],[-5.11,48.47],[-5.11,48.47],[-5.11,48.47],[-5.11,48.47],[-5.11,48.47],[-5.11,48.47],[-5.11,48.47],[-5.1,48.47],[-5.1,48.48],[-5.1,48.47],[-5.1,48.48],[-5.1,48.48],[-5.09,48.48],[-5.09,48.48],[-5.09,48.47],[-5.08,48.47],[-5.07,48.48],[-5.08,48.48],[-5.08,48.48],[-5.07,48.49]]],[[[-5.03,48.46],[-5.03,48.46],[-5.04,48.46],[-5.04,48.46],[-5.03,48.46]]],[[[-5.1,48.48],[-5.1,48.48],[-5.09,48.48],[-5.09,48.48],[-5.09,48.48],[-5.1,48.48],[-5.11,48.48],[-5.11,48.48],[-5.1,48.48],[-5.1,48.48],[-5.1,48.48]]],[[[-5.12,48.45],[-5.11,48.44],[-5.12,48.44],[-5.12,48.45],[-5.12,48.45]]]]},"properties":{"id":13,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.02,47.18],[0.04,47.16],[0.05,47.17],[0.05,47.16],[0.06,47.15],[0.07,47.14],[0.08,47.15],[0.08,47.13],[0.08,47.12],[0.08,47.12],[0.09,47.12],[0.1,47.12],[0.11,47.13],[0.12,47.13],[0.13,47.12],[0.14,47.12],[0.13,47.12],[0.13,47.11],[0.16,47.1],[0.17,47.11],[0.18,47.12],[0.19,47.1],[0.2,47.09],[0.18,47.07],[0.18,47.06],[0.18,47.06],[0.19,47.06],[0.21,47.05],[0.23,47.06],[0.24,47.07],[0.24,47.07],[0.26,47.07],[0.26,47.05],[0.27,47.04],[0.28,47.05],[0.3,47.05],[0.31,47.05],[0.31,47.04],[0.31,47.03],[0.3,47.02],[0.31,47],[0.31,47],[0.3,46.99],[0.29,46.99],[0.31,46.98],[0.3,46.97],[0.31,46.96],[0.3,46.96],[0.31,46.94],[0.33,46.93],[0.34,46.94],[0.35,46.94],[0.36,46.95],[0.39,46.94],[0.41,46.94],[0.42,46.94],[0.44,46.93],[0.44,46.94],[0.51,46.96],[0.51,46.96],[0.54,46.96],[0.57,46.96],[0.6,46.96],[0.6,46.96],[0.6,46.97],[0.57,46.98],[0.57,46.99],[0.57,47],[0.57,47.01],[0.58,47],[0.59,47.01],[0.62,47.01],[0.62,47],[0.62,47],[0.62,46.99],[0.64,46.99],[0.65,46.99],[0.66,46.99],[0.66,46.98],[0.69,46.97],[0.7,46.97],[0.7,46.96],[0.71,46.94],[0.7,46.93],[0.71,46.92],[0.7,46.91],[0.7,46.9],[0.73,46.88],[0.74,46.87],[0.74,46.87],[0.75,46.86],[0.77,46.86],[0.77,46.86],[0.77,46.86],[0.77,46.85],[0.79,46.85],[0.8,46.85],[0.79,46.84],[0.79,46.84],[0.79,46.83],[0.81,46.83],[0.81,46.81],[0.82,46.81],[0.81,46.79],[0.83,46.79],[0.83,46.78],[0.84,46.76],[0.86,46.76],[0.86,46.76],[0.87,46.75],[0.88,46.74],[0.9,46.74],[0.9,46.73],[0.91,46.73],[0.91,46.72],[0.92,46.7],[0.93,46.69],[0.92,46.69],[0.9,46.68],[0.91,46.68],[0.91,46.67],[0.92,46.65],[0.91,46.65],[0.89,46.63],[0.9,46.62],[0.92,46.6],[0.94,46.59],[0.94,46.59],[0.94,46.58],[0.96,46.58],[0.96,46.57],[0.98,46.57],[0.99,46.57],[1.01,46.57],[1.02,46.55],[1.02,46.54],[1.07,46.54],[1.08,46.54],[1.09,46.54],[1.1,46.53],[1.12,46.52],[1.15,46.5],[1.14,46.5],[1.14,46.49],[1.15,46.47],[1.15,46.47],[1.14,46.47],[1.15,46.45],[1.17,46.45],[1.19,46.44],[1.19,46.43],[1.2,46.43],[1.2,46.43],[1.21,46.43],[1.19,46.41],[1.2,46.4],[1.18,46.38],[1.16,46.39],[1.15,46.38],[1.15,46.37],[1.13,46.36],[1.13,46.36],[1.13,46.35],[1.11,46.35],[1.1,46.36],[1.08,46.36],[1.05,46.36],[1.05,46.36],[1.03,46.34],[1.03,46.32],[1.02,46.31],[1.01,46.31],[1.01,46.3],[1,46.29],[1.01,46.28],[1,46.28],[1,46.28],[0.99,46.28],[0.97,46.29],[0.95,46.29],[0.94,46.29],[0.93,46.28],[0.9,46.29],[0.89,46.27],[0.86,46.26],[0.86,46.26],[0.86,46.25],[0.85,46.25],[0.84,46.24],[0.85,46.24],[0.85,46.23],[0.81,46.23],[0.8,46.22],[0.79,46.21],[0.8,46.21],[0.8,46.2],[0.81,46.2],[0.82,46.19],[0.83,46.18],[0.83,46.17],[0.83,46.17],[0.84,46.17],[0.83,46.16],[0.84,46.15],[0.85,46.14],[0.83,46.13],[0.82,46.13],[0.81,46.12],[0.81,46.12],[0.82,46.11],[0.83,46.1],[0.83,46.09],[0.82,46.08],[0.83,46.07],[0.82,46.06],[0.82,46.05],[0.85,46.04],[0.86,46.03],[0.86,46.02],[0.87,46.02],[0.89,46.03],[0.89,46.03],[0.89,46.02],[0.91,46.02],[0.92,46.01],[0.92,46],[0.93,45.99],[0.93,45.98],[0.94,45.97],[0.94,45.96],[0.92,45.95],[0.93,45.95],[0.92,45.95],[0.92,45.94],[0.91,45.94],[0.88,45.92],[0.86,45.92],[0.85,45.92],[0.84,45.92],[0.82,45.93],[0.81,45.93],[0.81,45.92],[0.82,45.92],[0.81,45.9],[0.83,45.88],[0.81,45.87],[0.82,45.87],[0.8,45.83],[0.78,45.82],[0.78,45.81],[0.78,45.8],[0.78,45.79],[0.78,45.79],[0.77,45.79],[0.76,45.8],[0.75,45.8],[0.74,45.8],[0.72,45.81],[0.71,45.8],[0.71,45.78],[0.71,45.77],[0.71,45.76],[0.7,45.76],[0.67,45.75],[0.67,45.74],[0.65,45.74],[0.65,45.73],[0.65,45.73],[0.65,45.72],[0.64,45.72],[0.63,45.72],[0.62,45.7],[0.61,45.69],[0.61,45.69],[0.6,45.68],[0.6,45.68],[0.6,45.67],[0.59,45.67],[0.59,45.66],[0.57,45.65],[0.58,45.64],[0.56,45.63],[0.55,45.63],[0.54,45.63],[0.54,45.64],[0.53,45.64],[0.51,45.63],[0.51,45.62],[0.51,45.62],[0.5,45.62],[0.5,45.62],[0.51,45.61],[0.52,45.6],[0.51,45.59],[0.52,45.59],[0.5,45.56],[0.51,45.56],[0.51,45.55],[0.5,45.55],[0.48,45.54],[0.47,45.54],[0.46,45.53],[0.45,45.52],[0.45,45.52],[0.43,45.5],[0.43,45.49],[0.42,45.48],[0.41,45.49],[0.38,45.48],[0.38,45.48],[0.36,45.48],[0.36,45.47],[0.33,45.46],[0.33,45.44],[0.31,45.46],[0.3,45.46],[0.3,45.45],[0.32,45.44],[0.3,45.43],[0.29,45.43],[0.28,45.43],[0.27,45.42],[0.26,45.4],[0.25,45.38],[0.25,45.36],[0.26,45.35],[0.26,45.33],[0.27,45.31],[0.27,45.3],[0.25,45.29],[0.23,45.29],[0.22,45.29],[0.2,45.26],[0.18,45.26],[0.17,45.26],[0.18,45.26],[0.17,45.25],[0.17,45.24],[0.17,45.24],[0.16,45.23],[0.15,45.22],[0.15,45.21],[0.14,45.21],[0.13,45.21],[0.12,45.21],[0.1,45.23],[0.09,45.23],[0.08,45.22],[0.07,45.22],[0.06,45.23],[0.04,45.21],[0.03,45.21],[0.01,45.2],[0,45.18],[-0.02,45.17],[-0.01,45.16],[0,45.16],[0,45.15],[-0.04,45.14],[-0.03,45.13],[-0.04,45.11],[-0.04,45.1],[-0.05,45.1],[-0.05,45.1],[-0.06,45.1],[-0.07,45.1],[-0.09,45.12],[-0.1,45.12],[-0.11,45.12],[-0.14,45.09],[-0.15,45.09],[-0.16,45.09],[-0.19,45.09],[-0.21,45.1],[-0.22,45.11],[-0.25,45.11],[-0.26,45.11],[-0.27,45.13],[-0.27,45.13],[-0.28,45.14],[-0.31,45.15],[-0.31,45.14],[-0.32,45.16],[-0.34,45.17],[-0.36,45.17],[-0.38,45.16],[-0.38,45.14],[-0.4,45.18],[-0.4,45.19],[-0.42,45.2],[-0.42,45.21],[-0.41,45.24],[-0.41,45.25],[-0.42,45.25],[-0.42,45.27],[-0.42,45.27],[-0.43,45.28],[-0.47,45.29],[-0.49,45.29],[-0.51,45.29],[-0.53,45.29],[-0.55,45.29],[-0.56,45.3],[-0.57,45.3],[-0.57,45.31],[-0.57,45.33],[-0.59,45.34],[-0.59,45.33],[-0.59,45.32],[-0.61,45.32],[-0.63,45.32],[-0.64,45.32],[-0.65,45.32],[-0.72,45.33],[-0.73,45.36],[-0.75,45.4],[-0.76,45.41],[-0.76,45.42],[-0.77,45.42],[-0.78,45.44],[-0.8,45.46],[-0.82,45.47],[-0.83,45.49],[-0.85,45.51],[-0.86,45.51],[-0.88,45.52],[-0.88,45.52],[-0.88,45.52],[-0.88,45.53],[-0.89,45.53],[-0.9,45.53],[-0.9,45.53],[-0.9,45.53],[-0.9,45.53],[-0.91,45.53],[-0.91,45.53],[-0.91,45.54],[-0.91,45.54],[-0.91,45.54],[-0.92,45.55],[-0.92,45.55],[-0.93,45.55],[-0.93,45.56],[-0.94,45.56],[-0.94,45.55],[-0.96,45.55],[-0.96,45.56],[-0.97,45.56],[-0.97,45.56],[-0.97,45.56],[-0.97,45.57],[-0.97,45.57],[-0.98,45.57],[-0.98,45.57],[-0.98,45.57],[-0.98,45.58],[-0.99,45.58],[-0.99,45.58],[-0.99,45.58],[-0.99,45.58],[-0.99,45.59],[-0.99,45.6],[-1,45.6],[-1,45.6],[-1,45.6],[-1.01,45.6],[-1.01,45.6],[-1.01,45.6],[-1.02,45.6],[-1.01,45.61],[-1.01,45.61],[-1.01,45.61],[-1.02,45.62],[-1.03,45.62],[-1.02,45.62],[-1.03,45.62],[-1.03,45.62],[-1.03,45.62],[-1.04,45.62],[-1.04,45.62],[-1.04,45.62],[-1.05,45.62],[-1.05,45.62],[-1.05,45.63],[-1.05,45.63],[-1.05,45.63],[-1.06,45.62],[-1.06,45.63],[-1.06,45.63],[-1.07,45.63],[-1.07,45.63],[-1.08,45.63],[-1.08,45.64],[-1.08,45.64],[-1.09,45.64],[-1.09,45.64],[-1.09,45.64],[-1.1,45.64],[-1.1,45.64],[-1.1,45.64],[-1.12,45.65],[-1.12,45.65],[-1.12,45.65],[-1.12,45.65],[-1.13,45.66],[-1.14,45.66],[-1.16,45.68],[-1.16,45.68],[-1.17,45.67],[-1.18,45.68],[-1.19,45.69],[-1.2,45.69],[-1.2,45.69],[-1.2,45.69],[-1.21,45.69],[-1.21,45.69],[-1.21,45.7],[-1.21,45.7],[-1.23,45.69],[-1.23,45.69],[-1.22,45.69],[-1.22,45.68],[-1.21,45.68],[-1.21,45.67],[-1.2,45.68],[-1.19,45.68],[-1.18,45.68],[-1.18,45.68],[-1.19,45.68],[-1.2,45.67],[-1.21,45.67],[-1.23,45.67],[-1.23,45.69],[-1.24,45.7],[-1.24,45.72],[-1.24,45.76],[-1.24,45.78],[-1.24,45.79],[-1.21,45.79],[-1.2,45.79],[-1.19,45.79],[-1.19,45.79],[-1.17,45.79],[-1.17,45.8],[-1.16,45.8],[-1.16,45.8],[-1.15,45.8],[-1.15,45.8],[-1.14,45.8],[-1.14,45.79],[-1.13,45.8],[-1.14,45.81],[-1.14,45.81],[-1.14,45.82],[-1.14,45.83],[-1.15,45.83],[-1.15,45.83],[-1.15,45.83],[-1.15,45.83],[-1.16,45.84],[-1.16,45.84],[-1.17,45.84],[-1.17,45.85],[-1.16,45.85],[-1.17,45.86],[-1.17,45.86],[-1.15,45.85],[-1.15,45.85],[-1.15,45.86],[-1.16,45.86],[-1.15,45.86],[-1.15,45.86],[-1.14,45.86],[-1.14,45.86],[-1.12,45.86],[-1.12,45.86],[-1.12,45.86],[-1.12,45.87],[-1.11,45.87],[-1.11,45.87],[-1.11,45.87],[-1.1,45.87],[-1.1,45.89],[-1.1,45.89],[-1.09,45.89],[-1.08,45.9],[-1.07,45.92],[-1.08,45.92],[-1.07,45.92],[-1.08,45.92],[-1.07,45.93],[-1.08,45.93],[-1.08,45.94],[-1.1,45.94],[-1.1,45.95],[-1.1,45.95],[-1.1,45.95],[-1.1,45.95],[-1.1,45.95],[-1.09,45.95],[-1.07,45.95],[-1.07,45.95],[-1.07,45.96],[-1.08,45.96],[-1.08,45.96],[-1.08,45.97],[-1.08,45.98],[-1.09,45.98],[-1.09,45.98],[-1.1,45.98],[-1.1,45.99],[-1.1,45.99],[-1.1,45.99],[-1.11,45.99],[-1.11,46],[-1.11,46],[-1.11,46],[-1.12,46],[-1.12,46],[-1.12,46],[-1.12,46],[-1.13,46],[-1.12,46.01],[-1.12,46],[-1.11,46],[-1.1,46],[-1.1,46],[-1.1,45.99],[-1.09,45.99],[-1.09,45.99],[-1.08,46],[-1.07,46],[-1.06,45.99],[-1.06,46],[-1.05,46],[-1.05,46.01],[-1.06,46.02],[-1.06,46.03],[-1.06,46.03],[-1.06,46.03],[-1.06,46.03],[-1.06,46.05],[-1.07,46.05],[-1.08,46.05],[-1.09,46.05],[-1.09,46.06],[-1.09,46.06],[-1.1,46.06],[-1.09,46.06],[-1.09,46.07],[-1.1,46.09],[-1.12,46.1],[-1.13,46.1],[-1.14,46.11],[-1.14,46.1],[-1.14,46.11],[-1.14,46.11],[-1.14,46.11],[-1.13,46.11],[-1.12,46.11],[-1.12,46.12],[-1.13,46.13],[-1.15,46.13],[-1.15,46.13],[-1.15,46.13],[-1.16,46.14],[-1.18,46.14],[-1.17,46.14],[-1.17,46.14],[-1.17,46.15],[-1.16,46.15],[-1.16,46.15],[-1.15,46.16],[-1.17,46.15],[-1.17,46.15],[-1.18,46.15],[-1.21,46.15],[-1.21,46.15],[-1.22,46.15],[-1.23,46.15],[-1.23,46.15],[-1.23,46.15],[-1.22,46.16],[-1.23,46.16],[-1.22,46.16],[-1.22,46.16],[-1.23,46.16],[-1.23,46.16],[-1.23,46.17],[-1.24,46.17],[-1.24,46.16],[-1.24,46.16],[-1.24,46.16],[-1.24,46.17],[-1.22,46.17],[-1.22,46.17],[-1.22,46.17],[-1.22,46.18],[-1.22,46.18],[-1.22,46.18],[-1.21,46.18],[-1.2,46.19],[-1.2,46.19],[-1.2,46.2],[-1.21,46.2],[-1.21,46.2],[-1.2,46.21],[-1.19,46.22],[-1.18,46.22],[-1.17,46.22],[-1.17,46.23],[-1.16,46.23],[-1.16,46.24],[-1.15,46.24],[-1.14,46.24],[-1.14,46.25],[-1.13,46.26],[-1.12,46.26],[-1.12,46.28],[-1.13,46.3],[-1.13,46.3],[-1.13,46.31],[-1.12,46.32],[-1.12,46.32],[-1.12,46.32],[-1.12,46.32],[-1.12,46.32],[-1.11,46.32],[-1.11,46.31],[-1.1,46.31],[-1.1,46.31],[-1.09,46.31],[-1.09,46.31],[-1.08,46.32],[-1.08,46.32],[-1.07,46.33],[-1.05,46.35],[-1.05,46.34],[-1.02,46.35],[-0.98,46.35],[-0.97,46.35],[-0.96,46.37],[-0.95,46.36],[-0.93,46.37],[-0.93,46.36],[-0.94,46.34],[-0.96,46.32],[-0.93,46.31],[-0.92,46.32],[-0.91,46.31],[-0.9,46.32],[-0.89,46.33],[-0.87,46.32],[-0.86,46.33],[-0.86,46.33],[-0.86,46.32],[-0.85,46.32],[-0.84,46.32],[-0.85,46.33],[-0.84,46.34],[-0.83,46.34],[-0.83,46.34],[-0.8,46.34],[-0.8,46.34],[-0.81,46.33],[-0.8,46.33],[-0.78,46.32],[-0.77,46.31],[-0.76,46.31],[-0.75,46.3],[-0.73,46.3],[-0.72,46.31],[-0.72,46.31],[-0.72,46.32],[-0.71,46.32],[-0.7,46.33],[-0.67,46.32],[-0.65,46.32],[-0.64,46.32],[-0.64,46.32],[-0.64,46.33],[-0.62,46.34],[-0.61,46.35],[-0.6,46.36],[-0.58,46.36],[-0.56,46.36],[-0.54,46.39],[-0.55,46.39],[-0.57,46.39],[-0.57,46.4],[-0.58,46.4],[-0.6,46.41],[-0.61,46.41],[-0.62,46.39],[-0.64,46.4],[-0.63,46.4],[-0.64,46.41],[-0.64,46.43],[-0.62,46.44],[-0.62,46.45],[-0.61,46.45],[-0.62,46.46],[-0.62,46.47],[-0.63,46.48],[-0.63,46.5],[-0.63,46.5],[-0.64,46.51],[-0.64,46.52],[-0.64,46.52],[-0.63,46.53],[-0.61,46.53],[-0.6,46.53],[-0.6,46.54],[-0.61,46.56],[-0.62,46.56],[-0.62,46.58],[-0.61,46.59],[-0.62,46.59],[-0.62,46.6],[-0.63,46.61],[-0.61,46.62],[-0.63,46.64],[-0.64,46.64],[-0.66,46.63],[-0.66,46.64],[-0.65,46.65],[-0.65,46.66],[-0.64,46.66],[-0.66,46.68],[-0.68,46.69],[-0.66,46.7],[-0.67,46.72],[-0.68,46.73],[-0.69,46.73],[-0.7,46.74],[-0.7,46.75],[-0.7,46.75],[-0.71,46.75],[-0.72,46.76],[-0.73,46.77],[-0.73,46.78],[-0.72,46.79],[-0.72,46.8],[-0.7,46.81],[-0.71,46.82],[-0.73,46.82],[-0.74,46.83],[-0.76,46.83],[-0.77,46.84],[-0.78,46.84],[-0.79,46.85],[-0.82,46.88],[-0.83,46.88],[-0.82,46.9],[-0.82,46.91],[-0.81,46.91],[-0.81,46.92],[-0.82,46.92],[-0.83,46.93],[-0.85,46.94],[-0.85,46.94],[-0.88,46.95],[-0.88,46.95],[-0.88,46.95],[-0.87,46.95],[-0.87,46.96],[-0.88,46.96],[-0.88,46.97],[-0.9,46.97],[-0.9,46.97],[-0.89,46.98],[-0.88,46.98],[-0.86,46.97],[-0.85,46.97],[-0.86,46.98],[-0.85,46.99],[-0.83,46.99],[-0.82,46.99],[-0.82,46.99],[-0.81,46.99],[-0.81,46.99],[-0.81,46.99],[-0.8,47],[-0.79,47.01],[-0.77,47],[-0.76,46.99],[-0.75,46.99],[-0.74,47],[-0.73,47],[-0.71,46.99],[-0.7,46.99],[-0.68,46.99],[-0.68,46.99],[-0.67,47],[-0.65,46.99],[-0.63,47],[-0.62,46.99],[-0.6,47],[-0.59,47],[-0.59,47.01],[-0.58,47.01],[-0.57,47.02],[-0.56,47.03],[-0.55,47.03],[-0.54,47.04],[-0.56,47.05],[-0.56,47.06],[-0.56,47.06],[-0.52,47.08],[-0.49,47.08],[-0.46,47.08],[-0.46,47.08],[-0.48,47.07],[-0.48,47.05],[-0.46,47.07],[-0.45,47.07],[-0.43,47.07],[-0.41,47.07],[-0.4,47.07],[-0.4,47.09],[-0.39,47.09],[-0.39,47.09],[-0.38,47.09],[-0.35,47.1],[-0.34,47.09],[-0.31,47.09],[-0.3,47.1],[-0.28,47.1],[-0.28,47.1],[-0.27,47.1],[-0.26,47.11],[-0.26,47.1],[-0.24,47.11],[-0.21,47.09],[-0.19,47.1],[-0.19,47.11],[-0.16,47.1],[-0.14,47.1],[-0.14,47.1],[-0.17,47.08],[-0.18,47.07],[-0.17,47.06],[-0.15,47.07],[-0.15,47.07],[-0.14,47.06],[-0.14,47.06],[-0.13,47.05],[-0.1,47.06],[-0.1,47.08],[-0.1,47.09],[-0.09,47.1],[-0.07,47.1],[-0.07,47.09],[-0.04,47.09],[-0.04,47.09],[-0.03,47.1],[-0.03,47.11],[-0.04,47.11],[-0.04,47.11],[-0.03,47.12],[-0.03,47.13],[-0.01,47.16],[0.02,47.18]]],[[[-1.1,46.31],[-1.09,46.31],[-1.1,46.31],[-1.1,46.31]]],[[[-1.11,45.96],[-1.11,45.96],[-1.1,45.95],[-1.1,45.95],[-1.11,45.95],[-1.11,45.95],[-1.12,45.95],[-1.12,45.95],[-1.12,45.96],[-1.12,45.96],[-1.11,45.96]]],[[[-1.14,45.97],[-1.12,45.96],[-1.13,45.96],[-1.13,45.96],[-1.14,45.97],[-1.13,45.97],[-1.14,45.97],[-1.14,45.97]]],[[[-1.17,46.03],[-1.16,46.02],[-1.15,46.02],[-1.16,46.02],[-1.17,46.02],[-1.17,46.02],[-1.17,46.02],[-1.17,46.01],[-1.17,46.01],[-1.17,46.01],[-1.18,46.01],[-1.18,46.01],[-1.18,46.01],[-1.18,46.01],[-1.18,46.01],[-1.18,46.02],[-1.18,46.02],[-1.18,46.02],[-1.18,46.02],[-1.18,46.02],[-1.17,46.02],[-1.17,46.03]]],[[[-1.17,45.84],[-1.16,45.84],[-1.17,45.84],[-1.17,45.84],[-1.17,45.84]]],[[[-1.41,46.05],[-1.4,46.05],[-1.4,46.05],[-1.4,46.05],[-1.39,46.04],[-1.39,46.04],[-1.37,46.04],[-1.37,46.03],[-1.37,46.03],[-1.37,46.03],[-1.37,46.03],[-1.36,46.03],[-1.36,46.03],[-1.35,46.02],[-1.34,46.02],[-1.33,46.01],[-1.33,46.01],[-1.33,46.01],[-1.33,46],[-1.32,46],[-1.32,46],[-1.32,46],[-1.32,45.99],[-1.31,45.99],[-1.29,45.99],[-1.29,45.99],[-1.25,45.99],[-1.24,45.98],[-1.23,45.98],[-1.24,45.97],[-1.24,45.97],[-1.23,45.96],[-1.23,45.96],[-1.24,45.96],[-1.24,45.96],[-1.24,45.96],[-1.24,45.96],[-1.24,45.95],[-1.23,45.94],[-1.23,45.94],[-1.23,45.94],[-1.23,45.93],[-1.23,45.93],[-1.23,45.93],[-1.23,45.93],[-1.23,45.92],[-1.23,45.92],[-1.23,45.92],[-1.23,45.92],[-1.22,45.91],[-1.22,45.91],[-1.22,45.91],[-1.21,45.91],[-1.21,45.9],[-1.2,45.9],[-1.2,45.91],[-1.19,45.91],[-1.19,45.9],[-1.2,45.9],[-1.2,45.9],[-1.2,45.9],[-1.19,45.89],[-1.19,45.88],[-1.19,45.88],[-1.19,45.88],[-1.19,45.87],[-1.2,45.87],[-1.2,45.87],[-1.2,45.87],[-1.19,45.86],[-1.2,45.86],[-1.2,45.86],[-1.2,45.86],[-1.2,45.86],[-1.2,45.86],[-1.2,45.86],[-1.2,45.86],[-1.21,45.85],[-1.2,45.85],[-1.2,45.84],[-1.2,45.83],[-1.2,45.83],[-1.2,45.83],[-1.22,45.81],[-1.22,45.81],[-1.22,45.81],[-1.23,45.81],[-1.23,45.8],[-1.23,45.8],[-1.23,45.8],[-1.24,45.8],[-1.24,45.81],[-1.25,45.83],[-1.25,45.83],[-1.25,45.83],[-1.26,45.86],[-1.26,45.87],[-1.26,45.87],[-1.27,45.88],[-1.27,45.88],[-1.27,45.88],[-1.28,45.88],[-1.28,45.88],[-1.28,45.89],[-1.29,45.9],[-1.3,45.9],[-1.3,45.9],[-1.3,45.9],[-1.31,45.9],[-1.32,45.91],[-1.32,45.91],[-1.32,45.91],[-1.34,45.92],[-1.35,45.92],[-1.35,45.92],[-1.36,45.93],[-1.36,45.93],[-1.36,45.93],[-1.37,45.94],[-1.37,45.94],[-1.38,45.94],[-1.38,45.95],[-1.38,45.95],[-1.38,45.95],[-1.39,45.95],[-1.38,45.95],[-1.39,45.95],[-1.39,45.96],[-1.39,45.97],[-1.39,45.97],[-1.39,45.97],[-1.39,45.97],[-1.39,45.97],[-1.39,45.97],[-1.4,45.98],[-1.39,45.98],[-1.4,45.98],[-1.39,45.98],[-1.39,45.99],[-1.39,45.99],[-1.39,46],[-1.39,46],[-1.39,46],[-1.4,46.01],[-1.4,46.01],[-1.4,46.02],[-1.41,46.03],[-1.41,46.03],[-1.41,46.03],[-1.41,46.04],[-1.41,46.04],[-1.41,46.04],[-1.41,46.05],[-1.41,46.05],[-1.41,46.05]]],[[[-1.51,46.26],[-1.51,46.26],[-1.5,46.26],[-1.49,46.25],[-1.49,46.25],[-1.48,46.25],[-1.48,46.24],[-1.47,46.24],[-1.47,46.23],[-1.48,46.23],[-1.49,46.23],[-1.5,46.23],[-1.5,46.23],[-1.49,46.23],[-1.49,46.22],[-1.5,46.23],[-1.51,46.22],[-1.51,46.23],[-1.51,46.23],[-1.51,46.22],[-1.51,46.22],[-1.51,46.22],[-1.51,46.21],[-1.5,46.21],[-1.5,46.22],[-1.5,46.22],[-1.49,46.21],[-1.49,46.21],[-1.5,46.21],[-1.5,46.21],[-1.49,46.21],[-1.49,46.21],[-1.49,46.21],[-1.49,46.2],[-1.49,46.21],[-1.48,46.21],[-1.48,46.21],[-1.48,46.22],[-1.47,46.21],[-1.47,46.22],[-1.47,46.22],[-1.47,46.22],[-1.46,46.22],[-1.46,46.23],[-1.46,46.23],[-1.47,46.23],[-1.47,46.22],[-1.47,46.22],[-1.47,46.23],[-1.47,46.23],[-1.47,46.23],[-1.47,46.23],[-1.45,46.23],[-1.41,46.23],[-1.41,46.23],[-1.41,46.23],[-1.41,46.23],[-1.41,46.23],[-1.42,46.22],[-1.42,46.22],[-1.42,46.22],[-1.44,46.22],[-1.44,46.22],[-1.44,46.21],[-1.44,46.21],[-1.44,46.21],[-1.44,46.21],[-1.43,46.21],[-1.43,46.21],[-1.43,46.21],[-1.4,46.2],[-1.37,46.21],[-1.36,46.21],[-1.36,46.21],[-1.35,46.21],[-1.35,46.2],[-1.34,46.2],[-1.34,46.2],[-1.33,46.19],[-1.32,46.19],[-1.32,46.19],[-1.31,46.19],[-1.31,46.19],[-1.29,46.19],[-1.29,46.19],[-1.29,46.18],[-1.29,46.18],[-1.29,46.18],[-1.29,46.18],[-1.28,46.17],[-1.28,46.17],[-1.28,46.17],[-1.27,46.16],[-1.27,46.16],[-1.26,46.17],[-1.25,46.17],[-1.26,46.16],[-1.27,46.15],[-1.28,46.14],[-1.29,46.15],[-1.29,46.14],[-1.3,46.14],[-1.31,46.14],[-1.32,46.15],[-1.32,46.14],[-1.32,46.15],[-1.33,46.15],[-1.34,46.15],[-1.35,46.15],[-1.35,46.15],[-1.37,46.17],[-1.39,46.17],[-1.46,46.2],[-1.47,46.2],[-1.48,46.2],[-1.5,46.19],[-1.51,46.19],[-1.51,46.2],[-1.52,46.2],[-1.53,46.2],[-1.53,46.2],[-1.53,46.2],[-1.54,46.2],[-1.54,46.21],[-1.54,46.21],[-1.54,46.22],[-1.55,46.23],[-1.56,46.23],[-1.56,46.23],[-1.56,46.24],[-1.56,46.25],[-1.56,46.25],[-1.55,46.25],[-1.55,46.24],[-1.54,46.24],[-1.52,46.25],[-1.52,46.25],[-1.52,46.26],[-1.52,46.26],[-1.51,46.26]]]]},"properties":{"id":14,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.24,44.64],[-1.25,44.63],[-1.25,44.63],[-1.24,44.63],[-1.24,44.62],[-1.25,44.62],[-1.25,44.62],[-1.26,44.63],[-1.26,44.63],[-1.26,44.66],[-1.25,44.7],[-1.22,44.86],[-1.21,44.95],[-1.19,45.13],[-1.16,45.3],[-1.16,45.35],[-1.16,45.41],[-1.15,45.44],[-1.15,45.46],[-1.16,45.47],[-1.16,45.47],[-1.15,45.49],[-1.15,45.49],[-1.14,45.5],[-1.13,45.51],[-1.12,45.53],[-1.11,45.54],[-1.11,45.54],[-1.1,45.54],[-1.1,45.55],[-1.1,45.55],[-1.09,45.57],[-1.08,45.57],[-1.08,45.57],[-1.07,45.57],[-1.06,45.57],[-1.06,45.57],[-1.06,45.57],[-1.06,45.56],[-1.06,45.56],[-1.06,45.56],[-1.06,45.56],[-1.06,45.55],[-1.05,45.55],[-1.05,45.55],[-1.04,45.54],[-1.04,45.55],[-1.04,45.55],[-1.04,45.54],[-1.04,45.54],[-1.04,45.53],[-1.04,45.53],[-1.05,45.53],[-1.05,45.53],[-1.05,45.54],[-1.05,45.53],[-1.05,45.53],[-1.05,45.53],[-1.05,45.52],[-1.06,45.52],[-1.06,45.52],[-1.07,45.52],[-1.07,45.52],[-1.06,45.51],[-1.05,45.5],[-1.03,45.49],[-1.02,45.49],[-1.03,45.49],[-1.01,45.48],[-1.01,45.48],[-1,45.47],[-1,45.47],[-1,45.46],[-1,45.46],[-1,45.46],[-1,45.47],[-0.99,45.47],[-0.99,45.47],[-0.98,45.46],[-0.98,45.46],[-0.98,45.46],[-0.97,45.45],[-0.96,45.45],[-0.93,45.44],[-0.93,45.44],[-0.93,45.44],[-0.92,45.43],[-0.91,45.42],[-0.91,45.42],[-0.9,45.41],[-0.9,45.41],[-0.88,45.4],[-0.87,45.39],[-0.86,45.39],[-0.85,45.38],[-0.8,45.35],[-0.8,45.34],[-0.79,45.32],[-0.77,45.29],[-0.76,45.28],[-0.75,45.24],[-0.75,45.23],[-0.75,45.21],[-0.74,45.2],[-0.73,45.17],[-0.72,45.15],[-0.72,45.14],[-0.71,45.13],[-0.7,45.11],[-0.69,45.08],[-0.68,45.08],[-0.67,45.07],[-0.66,45.06],[-0.66,45.06],[-0.65,45.05],[-0.64,45.04],[-0.63,45.03],[-0.61,45.01],[-0.59,45.01],[-0.59,45.02],[-0.59,45.02],[-0.6,45.03],[-0.61,45.04],[-0.6,45.05],[-0.62,45.06],[-0.64,45.07],[-0.65,45.1],[-0.66,45.12],[-0.67,45.12],[-0.66,45.12],[-0.67,45.13],[-0.67,45.13],[-0.67,45.15],[-0.67,45.17],[-0.69,45.22],[-0.69,45.23],[-0.69,45.24],[-0.69,45.24],[-0.7,45.26],[-0.7,45.27],[-0.7,45.28],[-0.72,45.33],[-0.65,45.32],[-0.64,45.32],[-0.63,45.32],[-0.61,45.32],[-0.59,45.32],[-0.59,45.33],[-0.59,45.34],[-0.57,45.33],[-0.57,45.31],[-0.57,45.3],[-0.56,45.3],[-0.55,45.29],[-0.53,45.29],[-0.51,45.29],[-0.49,45.29],[-0.47,45.29],[-0.43,45.28],[-0.42,45.27],[-0.42,45.27],[-0.42,45.25],[-0.41,45.25],[-0.41,45.24],[-0.42,45.21],[-0.42,45.2],[-0.4,45.19],[-0.4,45.18],[-0.38,45.14],[-0.38,45.16],[-0.36,45.17],[-0.34,45.17],[-0.32,45.16],[-0.31,45.14],[-0.31,45.15],[-0.28,45.14],[-0.27,45.13],[-0.27,45.13],[-0.26,45.11],[-0.25,45.11],[-0.22,45.11],[-0.21,45.1],[-0.19,45.09],[-0.16,45.09],[-0.15,45.09],[-0.14,45.09],[-0.11,45.12],[-0.1,45.12],[-0.09,45.12],[-0.07,45.1],[-0.06,45.1],[-0.05,45.1],[-0.05,45.1],[-0.04,45.1],[-0.04,45.11],[-0.03,45.13],[-0.04,45.14],[0,45.15],[0,45.16],[-0.01,45.16],[-0.02,45.17],[0,45.18],[0.01,45.2],[0.03,45.21],[0.04,45.21],[0.06,45.23],[0.07,45.22],[0.08,45.22],[0.09,45.23],[0.1,45.23],[0.12,45.21],[0.13,45.21],[0.14,45.21],[0.15,45.21],[0.15,45.22],[0.16,45.23],[0.17,45.24],[0.17,45.24],[0.17,45.25],[0.18,45.26],[0.17,45.26],[0.18,45.26],[0.2,45.26],[0.22,45.29],[0.23,45.29],[0.25,45.29],[0.27,45.3],[0.27,45.31],[0.26,45.33],[0.26,45.35],[0.25,45.36],[0.25,45.38],[0.26,45.4],[0.27,45.42],[0.28,45.43],[0.29,45.43],[0.3,45.43],[0.32,45.44],[0.3,45.45],[0.3,45.46],[0.31,45.46],[0.33,45.44],[0.33,45.46],[0.36,45.47],[0.36,45.48],[0.38,45.48],[0.38,45.48],[0.41,45.49],[0.42,45.48],[0.43,45.49],[0.43,45.5],[0.45,45.52],[0.45,45.52],[0.46,45.53],[0.47,45.54],[0.48,45.54],[0.5,45.55],[0.51,45.55],[0.51,45.56],[0.5,45.56],[0.52,45.59],[0.51,45.59],[0.52,45.6],[0.51,45.61],[0.5,45.62],[0.5,45.62],[0.51,45.62],[0.51,45.62],[0.51,45.63],[0.53,45.64],[0.54,45.64],[0.54,45.63],[0.55,45.63],[0.56,45.63],[0.58,45.64],[0.57,45.65],[0.59,45.66],[0.59,45.67],[0.6,45.67],[0.6,45.68],[0.6,45.68],[0.61,45.69],[0.61,45.69],[0.62,45.7],[0.63,45.71],[0.64,45.7],[0.65,45.7],[0.65,45.69],[0.66,45.69],[0.68,45.69],[0.69,45.69],[0.7,45.69],[0.71,45.69],[0.72,45.69],[0.74,45.69],[0.76,45.67],[0.78,45.67],[0.76,45.63],[0.75,45.62],[0.77,45.6],[0.78,45.59],[0.8,45.6],[0.81,45.59],[0.81,45.58],[0.84,45.58],[0.85,45.59],[0.86,45.61],[0.87,45.62],[0.88,45.62],[0.88,45.61],[0.89,45.6],[0.9,45.6],[0.9,45.61],[0.92,45.61],[0.95,45.61],[0.96,45.61],[0.97,45.61],[0.98,45.6],[0.98,45.6],[1,45.61],[1.02,45.61],[1.04,45.59],[1.03,45.58],[1.04,45.57],[1.05,45.56],[1.06,45.55],[1.07,45.55],[1.08,45.53],[1.09,45.53],[1.1,45.54],[1.11,45.54],[1.12,45.55],[1.17,45.53],[1.16,45.52],[1.15,45.52],[1.13,45.5],[1.13,45.5],[1.12,45.49],[1.12,45.48],[1.14,45.47],[1.16,45.48],[1.18,45.47],[1.18,45.46],[1.19,45.46],[1.21,45.46],[1.23,45.46],[1.23,45.44],[1.24,45.44],[1.24,45.44],[1.25,45.44],[1.26,45.44],[1.27,45.44],[1.29,45.43],[1.29,45.42],[1.28,45.42],[1.27,45.42],[1.26,45.41],[1.26,45.4],[1.26,45.4],[1.28,45.4],[1.27,45.39],[1.28,45.39],[1.3,45.39],[1.32,45.38],[1.32,45.37],[1.32,45.36],[1.31,45.36],[1.3,45.36],[1.29,45.35],[1.28,45.34],[1.27,45.33],[1.26,45.32],[1.24,45.32],[1.24,45.31],[1.24,45.3],[1.24,45.3],[1.24,45.29],[1.23,45.29],[1.23,45.27],[1.24,45.27],[1.24,45.26],[1.26,45.25],[1.28,45.26],[1.28,45.24],[1.26,45.23],[1.23,45.22],[1.23,45.2],[1.23,45.2],[1.27,45.2],[1.29,45.19],[1.29,45.19],[1.28,45.17],[1.27,45.17],[1.26,45.16],[1.25,45.16],[1.28,45.15],[1.29,45.14],[1.31,45.14],[1.32,45.14],[1.33,45.14],[1.35,45.14],[1.35,45.13],[1.37,45.13],[1.38,45.14],[1.41,45.12],[1.41,45.12],[1.41,45.11],[1.39,45.11],[1.38,45.11],[1.38,45.1],[1.38,45.1],[1.39,45.1],[1.39,45.09],[1.41,45.07],[1.4,45.06],[1.41,45.06],[1.41,45.05],[1.43,45.03],[1.45,45.02],[1.43,45.01],[1.41,45.01],[1.41,44.99],[1.41,44.97],[1.42,44.97],[1.42,44.96],[1.43,44.95],[1.43,44.95],[1.44,44.94],[1.43,44.94],[1.44,44.92],[1.42,44.92],[1.41,44.91],[1.42,44.91],[1.42,44.9],[1.44,44.89],[1.44,44.88],[1.44,44.87],[1.42,44.87],[1.41,44.87],[1.41,44.86],[1.41,44.86],[1.4,44.85],[1.39,44.85],[1.38,44.84],[1.37,44.84],[1.36,44.84],[1.36,44.81],[1.34,44.81],[1.33,44.81],[1.3,44.8],[1.29,44.79],[1.3,44.79],[1.3,44.79],[1.3,44.78],[1.32,44.76],[1.32,44.74],[1.3,44.74],[1.3,44.73],[1.29,44.71],[1.27,44.72],[1.26,44.71],[1.24,44.7],[1.24,44.69],[1.23,44.69],[1.22,44.68],[1.18,44.68],[1.17,44.68],[1.16,44.67],[1.15,44.67],[1.15,44.66],[1.15,44.65],[1.15,44.64],[1.15,44.63],[1.11,44.6],[1.1,44.59],[1.1,44.58],[1.1,44.58],[1.1,44.57],[1.09,44.57],[1.08,44.57],[1.08,44.58],[1.07,44.57],[1.04,44.56],[1.04,44.56],[1.03,44.55],[1.01,44.54],[1.01,44.55],[0.99,44.55],[0.98,44.54],[1.02,44.5],[1.01,44.49],[1.01,44.48],[1.02,44.48],[1.03,44.47],[1.02,44.46],[1.02,44.45],[1.03,44.44],[1.03,44.43],[1.05,44.43],[1.05,44.43],[1.06,44.43],[1.06,44.4],[1.05,44.39],[1.06,44.39],[1.06,44.38],[1.06,44.38],[1.06,44.37],[1.05,44.36],[1.03,44.36],[1.02,44.36],[1,44.37],[0.98,44.36],[0.95,44.36],[0.94,44.35],[0.94,44.34],[0.94,44.34],[0.94,44.37],[0.92,44.38],[0.92,44.38],[0.9,44.38],[0.89,44.36],[0.89,44.36],[0.89,44.35],[0.9,44.35],[0.88,44.33],[0.87,44.32],[0.87,44.32],[0.87,44.31],[0.88,44.31],[0.9,44.3],[0.92,44.3],[0.92,44.29],[0.95,44.28],[0.94,44.26],[0.93,44.27],[0.93,44.25],[0.92,44.24],[0.93,44.23],[0.9,44.19],[0.86,44.19],[0.85,44.18],[0.85,44.17],[0.86,44.17],[0.87,44.17],[0.88,44.17],[0.89,44.17],[0.89,44.17],[0.89,44.16],[0.89,44.15],[0.89,44.14],[0.89,44.14],[0.88,44.14],[0.88,44.14],[0.88,44.13],[0.87,44.13],[0.86,44.13],[0.86,44.13],[0.82,44.14],[0.8,44.15],[0.79,44.14],[0.8,44.13],[0.79,44.12],[0.8,44.11],[0.78,44.11],[0.78,44.12],[0.75,44.1],[0.75,44.09],[0.75,44.09],[0.74,44.07],[0.74,44.07],[0.72,44.06],[0.71,44.06],[0.69,44.05],[0.68,44.04],[0.68,44.03],[0.66,44.02],[0.65,44.03],[0.65,44.04],[0.63,44.05],[0.63,44.06],[0.6,44.07],[0.6,44.08],[0.59,44.08],[0.58,44.07],[0.57,44.06],[0.54,44.05],[0.51,44.06],[0.5,44.05],[0.5,44.06],[0.49,44.06],[0.48,44.05],[0.46,44.06],[0.45,44.05],[0.44,44.03],[0.42,44.03],[0.41,44.02],[0.4,44.02],[0.39,44.02],[0.38,44.01],[0.37,44.01],[0.36,44.02],[0.32,44.01],[0.32,44.01],[0.32,44],[0.31,43.99],[0.3,43.99],[0.28,44],[0.27,44],[0.27,44],[0.25,44],[0.23,44.01],[0.23,44.02],[0.23,44.02],[0.21,44.02],[0.2,44.01],[0.19,44.01],[0.19,44.02],[0.18,44],[0.17,43.99],[0.17,43.98],[0.16,43.97],[0.15,43.97],[0.14,43.98],[0.14,43.99],[0.13,44],[0.13,44],[0.11,43.99],[0.08,43.98],[0.07,43.97],[0.07,43.97],[0.06,43.96],[0.07,43.94],[0.08,43.91],[0.07,43.91],[0.06,43.9],[0.04,43.9],[0.03,43.9],[0.02,43.91],[-0.02,43.93],[0.01,43.95],[0.01,43.96],[-0.04,43.98],[-0.04,43.96],[-0.06,43.96],[-0.08,43.94],[-0.08,43.94],[-0.09,43.95],[-0.1,43.94],[-0.1,43.93],[-0.1,43.93],[-0.13,43.94],[-0.14,43.94],[-0.15,43.94],[-0.16,43.93],[-0.17,43.93],[-0.18,43.94],[-0.2,43.91],[-0.22,43.91],[-0.22,43.91],[-0.23,43.91],[-0.23,43.9],[-0.24,43.9],[-0.23,43.89],[-0.22,43.89],[-0.21,43.89],[-0.2,43.89],[-0.19,43.88],[-0.19,43.87],[-0.19,43.87],[-0.2,43.87],[-0.21,43.86],[-0.19,43.84],[-0.19,43.83],[-0.2,43.83],[-0.19,43.81],[-0.21,43.81],[-0.22,43.81],[-0.23,43.81],[-0.22,43.8],[-0.22,43.79],[-0.21,43.78],[-0.22,43.77],[-0.21,43.76],[-0.21,43.76],[-0.21,43.76],[-0.22,43.75],[-0.2,43.75],[-0.19,43.74],[-0.22,43.72],[-0.25,43.71],[-0.24,43.69],[-0.25,43.68],[-0.26,43.68],[-0.25,43.67],[-0.24,43.67],[-0.25,43.65],[-0.26,43.65],[-0.26,43.65],[-0.26,43.64],[-0.27,43.64],[-0.28,43.64],[-0.28,43.62],[-0.27,43.62],[-0.25,43.62],[-0.25,43.6],[-0.25,43.6],[-0.24,43.58],[-0.24,43.58],[-0.23,43.59],[-0.21,43.59],[-0.21,43.58],[-0.18,43.6],[-0.16,43.58],[-0.16,43.58],[-0.15,43.59],[-0.14,43.58],[-0.13,43.58],[-0.12,43.59],[-0.1,43.58],[-0.09,43.57],[-0.09,43.56],[-0.09,43.56],[-0.09,43.55],[-0.09,43.54],[-0.09,43.54],[-0.07,43.55],[-0.06,43.53],[-0.05,43.53],[-0.04,43.52],[-0.04,43.52],[-0.04,43.51],[-0.04,43.51],[-0.05,43.49],[-0.04,43.49],[-0.03,43.48],[-0.03,43.47],[-0.02,43.47],[-0.02,43.47],[-0.07,43.46],[-0.06,43.45],[-0.07,43.43],[-0.05,43.42],[-0.07,43.41],[-0.04,43.41],[-0.03,43.43],[-0.02,43.43],[-0.02,43.44],[0,43.45],[0,43.43],[0.01,43.42],[0,43.4],[0,43.4],[0,43.39],[0,43.39],[0,43.39],[0,43.38],[0,43.38],[0,43.37],[0,43.37],[0.01,43.36],[0.03,43.35],[0.02,43.34],[0.01,43.33],[0.01,43.33],[0,43.33],[-0.03,43.33],[-0.03,43.31],[-0.04,43.3],[-0.04,43.29],[-0.04,43.28],[-0.02,43.28],[-0.03,43.28],[-0.02,43.27],[-0.02,43.27],[-0.03,43.25],[-0.04,43.23],[-0.05,43.22],[-0.07,43.22],[-0.07,43.22],[-0.07,43.18],[-0.09,43.18],[-0.1,43.17],[-0.11,43.18],[-0.12,43.18],[-0.13,43.17],[-0.13,43.16],[-0.14,43.15],[-0.15,43.13],[-0.17,43.12],[-0.18,43.11],[-0.19,43.12],[-0.19,43.1],[-0.2,43.1],[-0.19,43.09],[-0.19,43.09],[-0.2,43.07],[-0.2,43.06],[-0.18,43.05],[-0.19,43.05],[-0.2,43.04],[-0.22,43.03],[-0.24,43.04],[-0.26,43.04],[-0.26,43.02],[-0.26,43.01],[-0.29,43.01],[-0.29,42.99],[-0.29,42.96],[-0.28,42.96],[-0.28,42.94],[-0.28,42.93],[-0.3,42.93],[-0.31,42.92],[-0.33,42.92],[-0.32,42.9],[-0.32,42.9],[-0.32,42.88],[-0.31,42.87],[-0.31,42.85],[-0.31,42.84],[-0.29,42.84],[-0.3,42.84],[-0.31,42.84],[-0.31,42.85],[-0.32,42.84],[-0.32,42.84],[-0.32,42.84],[-0.32,42.83],[-0.33,42.83],[-0.34,42.84],[-0.34,42.84],[-0.35,42.84],[-0.35,42.83],[-0.36,42.82],[-0.38,42.8],[-0.38,42.8],[-0.39,42.8],[-0.39,42.8],[-0.41,42.81],[-0.41,42.81],[-0.43,42.8],[-0.44,42.8],[-0.44,42.8],[-0.44,42.8],[-0.45,42.8],[-0.48,42.81],[-0.48,42.81],[-0.49,42.82],[-0.5,42.82],[-0.5,42.83],[-0.51,42.82],[-0.51,42.82],[-0.52,42.81],[-0.53,42.8],[-0.52,42.8],[-0.53,42.79],[-0.54,42.79],[-0.54,42.79],[-0.55,42.78],[-0.55,42.78],[-0.55,42.78],[-0.55,42.78],[-0.57,42.78],[-0.57,42.78],[-0.57,42.79],[-0.57,42.8],[-0.57,42.8],[-0.57,42.81],[-0.59,42.8],[-0.6,42.8],[-0.6,42.83],[-0.6,42.83],[-0.6,42.83],[-0.62,42.84],[-0.64,42.85],[-0.65,42.86],[-0.66,42.86],[-0.66,42.86],[-0.66,42.87],[-0.68,42.88],[-0.7,42.88],[-0.71,42.89],[-0.72,42.89],[-0.72,42.89],[-0.73,42.89],[-0.73,42.89],[-0.73,42.89],[-0.73,42.9],[-0.73,42.9],[-0.73,42.91],[-0.73,42.92],[-0.73,42.93],[-0.73,42.93],[-0.73,42.93],[-0.73,42.94],[-0.73,42.94],[-0.73,42.94],[-0.73,42.95],[-0.74,42.95],[-0.74,42.95],[-0.75,42.97],[-0.77,42.97],[-0.77,42.97],[-0.78,42.96],[-0.81,42.95],[-0.82,42.95],[-0.84,42.95],[-0.86,42.95],[-0.89,42.96],[-0.9,42.96],[-0.9,42.96],[-0.91,42.96],[-0.92,42.95],[-0.93,42.95],[-0.95,42.95],[-0.97,42.96],[-0.98,42.96],[-1,42.97],[-1,42.98],[-1.01,42.99],[-1.01,42.99],[-1.01,42.99],[-1.03,42.99],[-1.04,43],[-1.07,43],[-1.08,43],[-1.09,43],[-1.08,43.01],[-1.11,43.01],[-1.11,43.02],[-1.13,43.01],[-1.14,43.01],[-1.14,43.01],[-1.14,43.01],[-1.15,43.02],[-1.17,43.04],[-1.17,43.04],[-1.18,43.03],[-1.18,43.03],[-1.21,43.05],[-1.21,43.05],[-1.21,43.05],[-1.23,43.05],[-1.25,43.04],[-1.26,43.04],[-1.26,43.04],[-1.27,43.06],[-1.31,43.07],[-1.31,43.08],[-1.3,43.09],[-1.29,43.1],[-1.27,43.12],[-1.32,43.11],[-1.33,43.11],[-1.33,43.1],[-1.35,43.09],[-1.34,43.08],[-1.34,43.08],[-1.34,43.08],[-1.34,43.06],[-1.34,43.05],[-1.35,43.05],[-1.35,43.03],[-1.44,43.05],[-1.47,43.08],[-1.47,43.09],[-1.47,43.09],[-1.46,43.1],[-1.44,43.11],[-1.44,43.11],[-1.43,43.12],[-1.42,43.13],[-1.42,43.13],[-1.42,43.14],[-1.41,43.14],[-1.41,43.15],[-1.41,43.15],[-1.41,43.15],[-1.4,43.16],[-1.4,43.16],[-1.4,43.17],[-1.4,43.18],[-1.39,43.19],[-1.38,43.19],[-1.38,43.22],[-1.38,43.23],[-1.38,43.23],[-1.38,43.23],[-1.38,43.25],[-1.4,43.27],[-1.4,43.27],[-1.41,43.27],[-1.41,43.27],[-1.43,43.27],[-1.44,43.27],[-1.47,43.27],[-1.48,43.28],[-1.49,43.28],[-1.5,43.29],[-1.51,43.29],[-1.52,43.29],[-1.56,43.29],[-1.56,43.28],[-1.56,43.28],[-1.56,43.27],[-1.57,43.26],[-1.57,43.25],[-1.58,43.25],[-1.61,43.25],[-1.62,43.26],[-1.62,43.26],[-1.63,43.28],[-1.63,43.29],[-1.62,43.3],[-1.63,43.31],[-1.64,43.31],[-1.66,43.31],[-1.67,43.31],[-1.69,43.31],[-1.69,43.31],[-1.71,43.31],[-1.71,43.3],[-1.72,43.3],[-1.73,43.3],[-1.74,43.31],[-1.74,43.32],[-1.74,43.33],[-1.75,43.33],[-1.75,43.33],[-1.75,43.34],[-1.76,43.34],[-1.77,43.34],[-1.78,43.34],[-1.78,43.35],[-1.79,43.35],[-1.79,43.35],[-1.78,43.36],[-1.77,43.36],[-1.77,43.37],[-1.77,43.37],[-1.78,43.37],[-1.78,43.37],[-1.79,43.37],[-1.79,43.37],[-1.79,43.37],[-1.79,43.37],[-1.79,43.37],[-1.78,43.37],[-1.76,43.38],[-1.76,43.38],[-1.76,43.38],[-1.75,43.38],[-1.75,43.38],[-1.75,43.38],[-1.75,43.38],[-1.75,43.38],[-1.74,43.38],[-1.73,43.38],[-1.73,43.38],[-1.73,43.39],[-1.69,43.4],[-1.68,43.4],[-1.68,43.39],[-1.68,43.39],[-1.67,43.39],[-1.66,43.39],[-1.66,43.4],[-1.67,43.4],[-1.66,43.4],[-1.66,43.4],[-1.66,43.4],[-1.65,43.41],[-1.65,43.41],[-1.64,43.41],[-1.64,43.41],[-1.64,43.41],[-1.63,43.41],[-1.63,43.42],[-1.62,43.42],[-1.62,43.42],[-1.62,43.42],[-1.62,43.42],[-1.61,43.43],[-1.6,43.43],[-1.6,43.43],[-1.6,43.44],[-1.59,43.44],[-1.58,43.45],[-1.57,43.47],[-1.57,43.48],[-1.57,43.48],[-1.57,43.48],[-1.56,43.48],[-1.55,43.49],[-1.56,43.49],[-1.55,43.49],[-1.55,43.49],[-1.54,43.5],[-1.53,43.52],[-1.53,43.53],[-1.53,43.52],[-1.52,43.53],[-1.52,43.53],[-1.53,43.53],[-1.53,43.53],[-1.53,43.53],[-1.52,43.53],[-1.52,43.53],[-1.48,43.6],[-1.45,43.64],[-1.44,43.68],[-1.44,43.69],[-1.44,43.7],[-1.42,43.76],[-1.4,43.84],[-1.39,43.86],[-1.39,43.86],[-1.37,43.93],[-1.37,43.94],[-1.36,43.96],[-1.35,44],[-1.32,44.1],[-1.31,44.15],[-1.27,44.36],[-1.25,44.49],[-1.25,44.51],[-1.25,44.52],[-1.26,44.51],[-1.25,44.52],[-1.26,44.52],[-1.26,44.54],[-1.25,44.55],[-1.24,44.56],[-1.22,44.58],[-1.21,44.6],[-1.21,44.61],[-1.2,44.62],[-1.2,44.64],[-1.2,44.65],[-1.19,44.66],[-1.19,44.66],[-1.18,44.66],[-1.15,44.66],[-1.14,44.66],[-1.14,44.66],[-1.14,44.65],[-1.14,44.65],[-1.15,44.65],[-1.15,44.65],[-1.15,44.65],[-1.14,44.64],[-1.14,44.65],[-1.14,44.65],[-1.12,44.65],[-1.12,44.64],[-1.11,44.65],[-1.1,44.65],[-1.09,44.65],[-1.09,44.64],[-1.08,44.64],[-1.07,44.64],[-1.07,44.64],[-1.07,44.65],[-1.07,44.64],[-1.06,44.65],[-1.04,44.65],[-1.04,44.65],[-1.04,44.65],[-1.03,44.65],[-1.03,44.65],[-1.03,44.64],[-1.03,44.65],[-1.03,44.65],[-1.03,44.65],[-1.03,44.65],[-1.03,44.66],[-1.02,44.66],[-1.02,44.67],[-1.02,44.67],[-1.03,44.68],[-1.04,44.68],[-1.05,44.68],[-1.04,44.68],[-1.04,44.69],[-1.04,44.68],[-1.05,44.68],[-1.05,44.68],[-1.07,44.69],[-1.07,44.7],[-1.07,44.7],[-1.06,44.7],[-1.06,44.7],[-1.06,44.7],[-1.05,44.69],[-1.04,44.7],[-1.05,44.7],[-1.06,44.7],[-1.05,44.71],[-1.06,44.71],[-1.07,44.71],[-1.08,44.72],[-1.09,44.73],[-1.1,44.74],[-1.11,44.74],[-1.12,44.74],[-1.12,44.75],[-1.12,44.75],[-1.13,44.75],[-1.13,44.75],[-1.14,44.76],[-1.15,44.76],[-1.15,44.77],[-1.16,44.76],[-1.16,44.76],[-1.16,44.76],[-1.16,44.77],[-1.17,44.77],[-1.17,44.77],[-1.17,44.76],[-1.17,44.76],[-1.17,44.76],[-1.18,44.76],[-1.18,44.76],[-1.18,44.76],[-1.17,44.76],[-1.17,44.75],[-1.17,44.75],[-1.17,44.75],[-1.18,44.74],[-1.19,44.74],[-1.19,44.74],[-1.19,44.73],[-1.19,44.73],[-1.2,44.72],[-1.2,44.72],[-1.21,44.72],[-1.21,44.71],[-1.22,44.71],[-1.22,44.71],[-1.23,44.7],[-1.23,44.7],[-1.23,44.69],[-1.23,44.69],[-1.24,44.68],[-1.24,44.67],[-1.24,44.66],[-1.24,44.65],[-1.25,44.64],[-1.24,44.64]],[[-0.09,43.37],[-0.11,43.37],[-0.1,43.36],[-0.09,43.36],[-0.09,43.33],[-0.11,43.34],[-0.11,43.33],[-0.11,43.32],[-0.11,43.31],[-0.1,43.31],[-0.08,43.31],[-0.07,43.31],[-0.07,43.33],[-0.06,43.35],[-0.06,43.35],[-0.08,43.37],[-0.08,43.37],[-0.09,43.37]],[[-0.09,43.3],[-0.11,43.31],[-0.12,43.31],[-0.13,43.29],[-0.14,43.29],[-0.14,43.28],[-0.14,43.27],[-0.12,43.25],[-0.12,43.24],[-0.1,43.24],[-0.1,43.25],[-0.09,43.26],[-0.09,43.25],[-0.08,43.26],[-0.08,43.27],[-0.08,43.28],[-0.09,43.28],[-0.09,43.3]]],[[[-1.24,44.64],[-1.24,44.64],[-1.24,44.65],[-1.24,44.65],[-1.24,44.64],[-1.24,44.64],[-1.24,44.64]]],[[[-0.68,45.1],[-0.67,45.09],[-0.66,45.08],[-0.66,45.08],[-0.66,45.08],[-0.63,45.05],[-0.61,45.03],[-0.6,45.02],[-0.59,45.01],[-0.59,45.01],[-0.61,45.02],[-0.63,45.04],[-0.64,45.04],[-0.64,45.05],[-0.65,45.06],[-0.67,45.08],[-0.68,45.09],[-0.68,45.1],[-0.68,45.1]]],[[[-0.65,45.05],[-0.65,45.05],[-0.64,45.05],[-0.65,45.05],[-0.65,45.05],[-0.65,45.05]]],[[[-0.68,45.12],[-0.67,45.11],[-0.68,45.11],[-0.68,45.12],[-0.68,45.12],[-0.68,45.12]]],[[[-0.69,45.18],[-0.68,45.15],[-0.68,45.14],[-0.68,45.13],[-0.68,45.13],[-0.68,45.13],[-0.69,45.14],[-0.69,45.16],[-0.7,45.17],[-0.69,45.18],[-0.69,45.18]]],[[[-0.71,45.22],[-0.7,45.21],[-0.7,45.2],[-0.7,45.18],[-0.7,45.17],[-0.71,45.18],[-0.71,45.19],[-0.72,45.2],[-0.72,45.2],[-0.71,45.21],[-0.71,45.22]]],[[[-0.71,45.18],[-0.71,45.17],[-0.7,45.15],[-0.71,45.17],[-0.71,45.18],[-0.71,45.18]]],[[[-0.73,45.23],[-0.73,45.22],[-0.73,45.22],[-0.73,45.22],[-0.73,45.23]]],[[[-1.18,44.7],[-1.17,44.7],[-1.17,44.7],[-1.17,44.69],[-1.18,44.69],[-1.17,44.69],[-1.18,44.69],[-1.19,44.7],[-1.18,44.7],[-1.18,44.7]]]]},"properties":{"id":15,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.82,46.43],[1.84,46.43],[1.85,46.43],[1.88,46.43],[1.89,46.44],[1.9,46.44],[1.91,46.44],[1.92,46.44],[1.93,46.43],[1.98,46.44],[1.99,46.44],[1.99,46.43],[2.02,46.43],[2.03,46.42],[2.05,46.42],[2.07,46.42],[2.08,46.41],[2.09,46.41],[2.1,46.41],[2.12,46.42],[2.14,46.42],[2.15,46.42],[2.18,46.42],[2.2,46.43],[2.22,46.42],[2.25,46.43],[2.26,46.42],[2.28,46.42],[2.28,46.42],[2.28,46.41],[2.28,46.41],[2.28,46.39],[2.29,46.38],[2.3,46.38],[2.31,46.38],[2.33,46.38],[2.34,46.37],[2.34,46.37],[2.32,46.37],[2.31,46.36],[2.31,46.35],[2.3,46.34],[2.31,46.34],[2.31,46.33],[2.33,46.33],[2.36,46.32],[2.37,46.31],[2.37,46.31],[2.39,46.33],[2.39,46.33],[2.42,46.31],[2.42,46.3],[2.42,46.29],[2.43,46.28],[2.43,46.29],[2.44,46.29],[2.47,46.29],[2.48,46.28],[2.48,46.27],[2.49,46.25],[2.52,46.24],[2.52,46.24],[2.52,46.2],[2.53,46.19],[2.53,46.18],[2.54,46.18],[2.56,46.17],[2.57,46.14],[2.56,46.14],[2.56,46.14],[2.56,46.12],[2.55,46.12],[2.55,46.1],[2.55,46.09],[2.55,46.09],[2.55,46.08],[2.57,46.05],[2.6,46.03],[2.59,46],[2.6,45.99],[2.61,45.98],[2.61,45.97],[2.57,45.96],[2.57,45.96],[2.57,45.95],[2.55,45.94],[2.55,45.93],[2.54,45.93],[2.54,45.92],[2.54,45.92],[2.56,45.91],[2.51,45.89],[2.5,45.89],[2.5,45.88],[2.49,45.86],[2.48,45.86],[2.47,45.87],[2.47,45.87],[2.46,45.87],[2.44,45.87],[2.44,45.86],[2.45,45.85],[2.45,45.85],[2.43,45.85],[2.43,45.84],[2.43,45.83],[2.4,45.84],[2.39,45.83],[2.43,45.79],[2.43,45.77],[2.45,45.76],[2.45,45.76],[2.47,45.76],[2.47,45.75],[2.49,45.75],[2.49,45.74],[2.52,45.71],[2.52,45.7],[2.53,45.69],[2.52,45.69],[2.53,45.68],[2.52,45.68],[2.51,45.67],[2.51,45.67],[2.53,45.66],[2.52,45.65],[2.52,45.64],[2.51,45.64],[2.49,45.64],[2.48,45.64],[2.48,45.61],[2.47,45.6],[2.46,45.59],[2.47,45.58],[2.49,45.57],[2.5,45.56],[2.52,45.55],[2.52,45.54],[2.51,45.54],[2.52,45.53],[2.51,45.52],[2.52,45.52],[2.51,45.51],[2.51,45.5],[2.51,45.49],[2.51,45.48],[2.51,45.47],[2.5,45.46],[2.5,45.46],[2.5,45.45],[2.5,45.45],[2.49,45.42],[2.49,45.42],[2.52,45.4],[2.52,45.4],[2.53,45.39],[2.52,45.38],[2.52,45.38],[2.51,45.38],[2.49,45.38],[2.48,45.38],[2.48,45.37],[2.47,45.38],[2.44,45.38],[2.42,45.4],[2.4,45.4],[2.4,45.4],[2.39,45.41],[2.38,45.41],[2.36,45.42],[2.35,45.41],[2.37,45.39],[2.36,45.38],[2.36,45.36],[2.35,45.35],[2.36,45.34],[2.35,45.33],[2.34,45.33],[2.32,45.32],[2.29,45.29],[2.28,45.29],[2.27,45.29],[2.26,45.28],[2.26,45.27],[2.24,45.27],[2.24,45.26],[2.24,45.26],[2.24,45.25],[2.23,45.24],[2.22,45.24],[2.2,45.23],[2.2,45.22],[2.19,45.22],[2.19,45.22],[2.2,45.22],[2.19,45.2],[2.2,45.2],[2.2,45.18],[2.22,45.17],[2.23,45.17],[2.23,45.17],[2.23,45.16],[2.21,45.16],[2.21,45.15],[2.2,45.14],[2.18,45.14],[2.19,45.12],[2.18,45.1],[2.18,45.09],[2.17,45.08],[2.16,45.09],[2.14,45.09],[2.14,45.08],[2.13,45.08],[2.1,45.06],[2.1,45.06],[2.1,45.06],[2.11,45.04],[2.12,45.02],[2.14,45.01],[2.13,44.99],[2.11,44.98],[2.09,44.99],[2.06,44.98],[2.05,44.98],[2.05,44.98],[2.01,44.98],[1.98,44.97],[1.96,44.96],[1.95,44.95],[1.94,44.95],[1.94,44.97],[1.93,44.98],[1.92,44.98],[1.91,44.98],[1.89,44.96],[1.89,44.96],[1.85,44.95],[1.84,44.94],[1.84,44.94],[1.84,44.94],[1.83,44.94],[1.83,44.93],[1.82,44.93],[1.81,44.93],[1.8,44.92],[1.8,44.93],[1.79,44.94],[1.78,44.93],[1.77,44.92],[1.77,44.93],[1.75,44.94],[1.75,44.94],[1.75,44.96],[1.72,44.97],[1.71,44.97],[1.71,44.97],[1.7,44.99],[1.69,44.99],[1.68,45],[1.67,45],[1.65,45.02],[1.65,45.03],[1.63,45.03],[1.61,45.03],[1.61,45.03],[1.61,45.03],[1.61,45.03],[1.58,45.04],[1.55,45.03],[1.54,45.03],[1.54,45.04],[1.53,45.04],[1.52,45.04],[1.51,45.04],[1.48,45.03],[1.48,45.03],[1.48,45.02],[1.46,45.01],[1.45,45.02],[1.43,45.03],[1.41,45.05],[1.41,45.06],[1.4,45.06],[1.41,45.07],[1.39,45.09],[1.39,45.1],[1.38,45.1],[1.38,45.1],[1.38,45.11],[1.39,45.11],[1.41,45.11],[1.41,45.12],[1.41,45.12],[1.38,45.14],[1.37,45.13],[1.35,45.13],[1.35,45.14],[1.33,45.14],[1.32,45.14],[1.31,45.14],[1.29,45.14],[1.28,45.15],[1.25,45.16],[1.26,45.16],[1.27,45.17],[1.28,45.17],[1.29,45.19],[1.29,45.19],[1.27,45.2],[1.23,45.2],[1.23,45.2],[1.23,45.22],[1.26,45.23],[1.28,45.24],[1.28,45.26],[1.26,45.25],[1.24,45.26],[1.24,45.27],[1.23,45.27],[1.23,45.29],[1.24,45.29],[1.24,45.3],[1.24,45.3],[1.24,45.31],[1.24,45.32],[1.26,45.32],[1.27,45.33],[1.28,45.34],[1.29,45.35],[1.3,45.36],[1.31,45.36],[1.32,45.36],[1.32,45.37],[1.32,45.38],[1.3,45.39],[1.28,45.39],[1.27,45.39],[1.28,45.4],[1.26,45.4],[1.26,45.4],[1.26,45.41],[1.27,45.42],[1.28,45.42],[1.29,45.42],[1.29,45.43],[1.27,45.44],[1.26,45.44],[1.25,45.44],[1.24,45.44],[1.24,45.44],[1.23,45.44],[1.23,45.46],[1.21,45.46],[1.19,45.46],[1.18,45.46],[1.18,45.47],[1.16,45.48],[1.14,45.47],[1.12,45.48],[1.12,45.49],[1.13,45.5],[1.13,45.5],[1.15,45.52],[1.16,45.52],[1.17,45.53],[1.12,45.55],[1.11,45.54],[1.1,45.54],[1.09,45.53],[1.08,45.53],[1.07,45.55],[1.06,45.55],[1.05,45.56],[1.04,45.57],[1.03,45.58],[1.04,45.59],[1.02,45.61],[1,45.61],[0.98,45.6],[0.98,45.6],[0.97,45.61],[0.96,45.61],[0.95,45.61],[0.92,45.61],[0.9,45.61],[0.9,45.6],[0.89,45.6],[0.88,45.61],[0.88,45.62],[0.87,45.62],[0.86,45.61],[0.85,45.59],[0.84,45.58],[0.81,45.58],[0.81,45.59],[0.8,45.6],[0.78,45.59],[0.77,45.6],[0.75,45.62],[0.76,45.63],[0.78,45.67],[0.76,45.67],[0.74,45.69],[0.72,45.69],[0.71,45.69],[0.7,45.69],[0.69,45.69],[0.68,45.69],[0.66,45.69],[0.65,45.69],[0.65,45.7],[0.64,45.7],[0.63,45.71],[0.63,45.72],[0.64,45.72],[0.65,45.72],[0.65,45.73],[0.65,45.73],[0.65,45.74],[0.67,45.74],[0.67,45.75],[0.7,45.76],[0.71,45.76],[0.71,45.77],[0.71,45.78],[0.71,45.8],[0.72,45.81],[0.74,45.8],[0.75,45.8],[0.76,45.8],[0.77,45.79],[0.78,45.79],[0.78,45.79],[0.78,45.8],[0.78,45.81],[0.78,45.82],[0.8,45.83],[0.82,45.87],[0.81,45.87],[0.83,45.88],[0.81,45.9],[0.82,45.92],[0.81,45.92],[0.81,45.93],[0.82,45.93],[0.84,45.92],[0.85,45.92],[0.86,45.92],[0.88,45.92],[0.91,45.94],[0.92,45.94],[0.92,45.95],[0.93,45.95],[0.92,45.95],[0.94,45.96],[0.94,45.97],[0.93,45.98],[0.93,45.99],[0.92,46],[0.92,46.01],[0.91,46.02],[0.89,46.02],[0.89,46.03],[0.89,46.03],[0.87,46.02],[0.86,46.02],[0.86,46.03],[0.85,46.04],[0.82,46.05],[0.82,46.06],[0.83,46.07],[0.82,46.08],[0.83,46.09],[0.83,46.1],[0.82,46.11],[0.81,46.12],[0.81,46.12],[0.82,46.13],[0.83,46.13],[0.85,46.14],[0.84,46.15],[0.83,46.16],[0.84,46.17],[0.83,46.17],[0.83,46.17],[0.83,46.18],[0.82,46.19],[0.81,46.2],[0.8,46.2],[0.8,46.21],[0.79,46.21],[0.8,46.22],[0.81,46.23],[0.85,46.23],[0.85,46.24],[0.84,46.24],[0.85,46.25],[0.86,46.25],[0.86,46.26],[0.86,46.26],[0.89,46.27],[0.9,46.29],[0.93,46.28],[0.94,46.29],[0.95,46.29],[0.97,46.29],[0.99,46.28],[1,46.28],[1,46.28],[1.01,46.28],[1,46.29],[1.01,46.3],[1.01,46.31],[1.02,46.31],[1.03,46.32],[1.03,46.34],[1.05,46.36],[1.05,46.36],[1.08,46.36],[1.1,46.36],[1.11,46.35],[1.13,46.35],[1.13,46.36],[1.13,46.36],[1.15,46.37],[1.15,46.38],[1.16,46.39],[1.18,46.38],[1.18,46.38],[1.19,46.38],[1.2,46.39],[1.21,46.39],[1.21,46.37],[1.22,46.37],[1.24,46.37],[1.25,46.38],[1.26,46.38],[1.28,46.38],[1.28,46.37],[1.31,46.37],[1.31,46.38],[1.32,46.39],[1.31,46.39],[1.34,46.4],[1.36,46.4],[1.38,46.38],[1.38,46.37],[1.39,46.37],[1.4,46.37],[1.4,46.37],[1.41,46.36],[1.42,46.35],[1.44,46.36],[1.44,46.36],[1.45,46.37],[1.46,46.38],[1.48,46.39],[1.49,46.4],[1.5,46.39],[1.5,46.41],[1.51,46.41],[1.51,46.42],[1.53,46.43],[1.53,46.42],[1.54,46.42],[1.55,46.4],[1.56,46.4],[1.58,46.41],[1.59,46.41],[1.6,46.42],[1.61,46.42],[1.62,46.42],[1.61,46.4],[1.63,46.39],[1.64,46.39],[1.66,46.4],[1.66,46.4],[1.68,46.42],[1.71,46.39],[1.73,46.39],[1.73,46.4],[1.75,46.41],[1.75,46.41],[1.76,46.43],[1.76,46.44],[1.76,46.44],[1.75,46.45],[1.8,46.45],[1.8,46.45],[1.82,46.44],[1.82,46.43]]]},"properties":{"id":17,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.2,46.5],[5.2,46.5],[5.21,46.49],[5.21,46.49],[5.21,46.48],[5.22,46.47],[5.22,46.47],[5.24,46.46],[5.25,46.46],[5.26,46.45],[5.27,46.45],[5.31,46.45],[5.32,46.43],[5.31,46.42],[5.31,46.42],[5.31,46.42],[5.3,46.42],[5.3,46.41],[5.31,46.41],[5.33,46.4],[5.35,46.4],[5.38,46.38],[5.37,46.37],[5.36,46.37],[5.38,46.36],[5.38,46.36],[5.37,46.35],[5.38,46.34],[5.4,46.34],[5.4,46.31],[5.41,46.31],[5.42,46.34],[5.42,46.35],[5.44,46.32],[5.45,46.32],[5.47,46.32],[5.48,46.32],[5.47,46.29],[5.46,46.29],[5.46,46.28],[5.48,46.27],[5.5,46.27],[5.5,46.27],[5.51,46.26],[5.54,46.27],[5.56,46.29],[5.56,46.29],[5.59,46.29],[5.6,46.3],[5.61,46.33],[5.63,46.33],[5.65,46.34],[5.65,46.33],[5.65,46.32],[5.67,46.32],[5.68,46.32],[5.68,46.31],[5.71,46.31],[5.72,46.29],[5.72,46.28],[5.73,46.26],[5.73,46.26],[5.77,46.27],[5.83,46.26],[5.85,46.26],[5.86,46.27],[5.87,46.26],[5.88,46.27],[5.89,46.29],[5.91,46.28],[5.92,46.29],[5.92,46.31],[5.93,46.31],[5.94,46.31],[5.98,46.36],[6.01,46.38],[6.03,46.39],[6.05,46.41],[6.06,46.42],[6.1,46.41],[6.11,46.4],[6.12,46.4],[6.15,46.38],[6.16,46.38],[6.17,46.37],[6.17,46.36],[6.15,46.34],[6.14,46.34],[6.14,46.33],[6.12,46.32],[6.12,46.31],[6.12,46.3],[6.1,46.28],[6.12,46.27],[6.12,46.26],[6.12,46.25],[6.12,46.24],[6.1,46.24],[6.09,46.25],[6.07,46.24],[6.06,46.24],[6.05,46.23],[6.03,46.24],[6.02,46.23],[6,46.22],[5.99,46.22],[5.99,46.22],[5.97,46.21],[5.97,46.2],[5.96,46.2],[5.99,46.18],[5.99,46.17],[5.98,46.17],[5.97,46.16],[5.96,46.14],[5.97,46.14],[5.96,46.13],[5.96,46.13],[5.98,46.14],[5.98,46.14],[5.99,46.14],[6.02,46.14],[6.04,46.14],[6.05,46.14],[6.05,46.15],[6.06,46.15],[6.09,46.15],[6.1,46.15],[6.13,46.14],[6.14,46.14],[6.15,46.15],[6.15,46.15],[6.18,46.16],[6.19,46.17],[6.19,46.18],[6.23,46.21],[6.25,46.21],[6.28,46.22],[6.29,46.22],[6.31,46.24],[6.31,46.26],[6.29,46.26],[6.29,46.26],[6.28,46.25],[6.27,46.25],[6.26,46.25],[6.24,46.28],[6.24,46.28],[6.25,46.29],[6.25,46.29],[6.25,46.3],[6.24,46.3],[6.24,46.31],[6.22,46.31],[6.25,46.36],[6.34,46.41],[6.43,46.42],[6.52,46.46],[6.52,46.46],[6.69,46.46],[6.79,46.44],[6.82,46.43],[6.83,46.43],[6.82,46.42],[6.81,46.4],[6.81,46.39],[6.8,46.39],[6.81,46.38],[6.79,46.37],[6.78,46.37],[6.77,46.36],[6.77,46.35],[6.79,46.33],[6.8,46.33],[6.8,46.32],[6.82,46.31],[6.83,46.3],[6.85,46.29],[6.86,46.29],[6.87,46.28],[6.87,46.28],[6.86,46.28],[6.87,46.27],[6.86,46.26],[6.86,46.26],[6.84,46.25],[6.84,46.24],[6.84,46.24],[6.83,46.23],[6.83,46.23],[6.82,46.22],[6.81,46.21],[6.82,46.19],[6.82,46.18],[6.81,46.18],[6.8,46.17],[6.8,46.16],[6.8,46.15],[6.8,46.14],[6.81,46.14],[6.81,46.14],[6.82,46.13],[6.84,46.14],[6.85,46.13],[6.85,46.13],[6.86,46.13],[6.88,46.13],[6.89,46.13],[6.9,46.13],[6.91,46.13],[6.9,46.12],[6.9,46.11],[6.89,46.1],[6.89,46.09],[6.9,46.09],[6.9,46.08],[6.9,46.08],[6.89,46.07],[6.88,46.06],[6.88,46.05],[6.89,46.05],[6.89,46.05],[6.9,46.05],[6.91,46.05],[6.92,46.06],[6.93,46.06],[6.93,46.07],[6.94,46.07],[6.94,46.06],[6.94,46.06],[6.95,46.05],[6.95,46.05],[6.97,46.03],[6.98,46.02],[6.99,46.01],[7,46],[7.01,46],[7.01,46],[7.01,45.99],[7.02,45.98],[7.01,45.97],[7.01,45.97],[7.02,45.96],[7.03,45.96],[7.04,45.96],[7.05,45.96],[7.04,45.93],[7.04,45.93],[7.04,45.92],[7.03,45.92],[7.01,45.91],[7.01,45.88],[7,45.88],[7.01,45.88],[6.95,45.86],[6.94,45.85],[6.91,45.84],[6.89,45.84],[6.88,45.82],[6.85,45.83],[6.82,45.83],[6.81,45.76],[6.82,45.72],[6.87,45.68],[6.88,45.68],[6.91,45.68],[6.93,45.65],[6.97,45.65],[6.99,45.65],[7.01,45.65],[7.01,45.64],[7,45.63],[7,45.63],[6.99,45.62],[6.99,45.59],[7,45.57],[6.99,45.56],[7,45.54],[7.01,45.53],[7,45.52],[7,45.52],[7.01,45.51],[7.02,45.5],[7.05,45.5],[7.06,45.48],[7.09,45.47],[7.1,45.47],[7.1,45.47],[7.1,45.47],[7.12,45.44],[7.18,45.41],[7.19,45.4],[7.18,45.39],[7.17,45.38],[7.16,45.37],[7.16,45.36],[7.14,45.35],[7.13,45.33],[7.11,45.33],[7.11,45.32],[7.13,45.29],[7.14,45.28],[7.13,45.27],[7.14,45.25],[7.13,45.25],[7.11,45.24],[7.08,45.22],[7.08,45.21],[7.07,45.21],[7.05,45.23],[7.05,45.22],[7.03,45.22],[7.01,45.22],[6.99,45.21],[6.98,45.21],[6.95,45.18],[6.94,45.17],[6.94,45.17],[6.92,45.17],[6.9,45.16],[6.9,45.15],[6.9,45.14],[6.9,45.14],[6.85,45.13],[6.85,45.13],[6.84,45.13],[6.8,45.15],[6.77,45.15],[6.75,45.14],[6.74,45.14],[6.71,45.14],[6.69,45.14],[6.67,45.12],[6.66,45.12],[6.65,45.12],[6.64,45.12],[6.63,45.11],[6.61,45.12],[6.59,45.12],[6.58,45.12],[6.56,45.11],[6.56,45.1],[6.54,45.1],[6.53,45.1],[6.51,45.11],[6.48,45.09],[6.49,45.07],[6.49,45.06],[6.45,45.05],[6.43,45.06],[6.42,45.06],[6.41,45.06],[6.4,45.06],[6.36,45.07],[6.37,45.08],[6.37,45.1],[6.33,45.12],[6.33,45.12],[6.32,45.11],[6.29,45.11],[6.28,45.11],[6.26,45.13],[6.23,45.11],[6.24,45.07],[6.22,45.07],[6.21,45.04],[6.21,45.03],[6.2,45.02],[6.2,45.01],[6.21,45.01],[6.26,45],[6.3,45],[6.32,45],[6.32,45],[6.32,44.99],[6.32,44.98],[6.33,44.97],[6.32,44.95],[6.33,44.95],[6.36,44.94],[6.35,44.92],[6.36,44.91],[6.35,44.9],[6.36,44.89],[6.35,44.88],[6.35,44.88],[6.36,44.85],[6.34,44.85],[6.32,44.86],[6.3,44.87],[6.29,44.87],[6.27,44.87],[6.25,44.85],[6.23,44.85],[6.2,44.86],[6.19,44.85],[6.17,44.85],[6.16,44.86],[6.13,44.86],[6.11,44.85],[6.06,44.82],[6.03,44.84],[6.02,44.84],[6,44.82],[5.98,44.82],[5.95,44.8],[5.96,44.8],[5.98,44.79],[5.98,44.78],[5.95,44.77],[5.95,44.76],[5.94,44.76],[5.92,44.75],[5.9,44.76],[5.89,44.76],[5.89,44.75],[5.85,44.75],[5.84,44.76],[5.83,44.76],[5.83,44.74],[5.82,44.73],[5.81,44.71],[5.8,44.71],[5.83,44.7],[5.83,44.69],[5.81,44.68],[5.8,44.67],[5.79,44.65],[5.77,44.65],[5.75,44.66],[5.75,44.65],[5.73,44.64],[5.68,44.65],[5.66,44.65],[5.65,44.66],[5.64,44.65],[5.64,44.63],[5.64,44.62],[5.65,44.62],[5.65,44.61],[5.64,44.61],[5.63,44.59],[5.63,44.59],[5.62,44.58],[5.61,44.57],[5.61,44.57],[5.6,44.54],[5.61,44.53],[5.63,44.53],[5.65,44.52],[5.66,44.5],[5.65,44.5],[5.63,44.5],[5.63,44.5],[5.62,44.47],[5.6,44.47],[5.57,44.48],[5.56,44.47],[5.55,44.48],[5.51,44.49],[5.48,44.49],[5.47,44.49],[5.47,44.5],[5.46,44.5],[5.46,44.49],[5.47,44.47],[5.46,44.47],[5.46,44.45],[5.47,44.45],[5.5,44.44],[5.5,44.44],[5.49,44.43],[5.49,44.43],[5.48,44.42],[5.47,44.42],[5.44,44.43],[5.42,44.42],[5.43,44.41],[5.44,44.39],[5.44,44.38],[5.43,44.38],[5.43,44.37],[5.46,44.37],[5.47,44.35],[5.48,44.35],[5.49,44.34],[5.5,44.34],[5.52,44.35],[5.54,44.34],[5.54,44.33],[5.55,44.33],[5.56,44.33],[5.59,44.33],[5.62,44.33],[5.62,44.34],[5.63,44.33],[5.63,44.33],[5.61,44.32],[5.61,44.31],[5.62,44.31],[5.63,44.3],[5.63,44.3],[5.64,44.29],[5.63,44.29],[5.63,44.28],[5.65,44.27],[5.65,44.27],[5.68,44.28],[5.69,44.27],[5.67,44.26],[5.67,44.25],[5.68,44.23],[5.68,44.21],[5.69,44.2],[5.69,44.19],[5.68,44.19],[5.67,44.19],[5.65,44.19],[5.64,44.17],[5.65,44.17],[5.68,44.16],[5.68,44.15],[5.63,44.15],[5.64,44.17],[5.63,44.17],[5.62,44.18],[5.61,44.19],[5.6,44.19],[5.59,44.19],[5.58,44.19],[5.58,44.19],[5.56,44.17],[5.58,44.16],[5.58,44.16],[5.57,44.15],[5.55,44.15],[5.54,44.13],[5.51,44.12],[5.51,44.12],[5.5,44.12],[5.45,44.12],[5.45,44.12],[5.45,44.14],[5.44,44.14],[5.44,44.15],[5.43,44.15],[5.42,44.15],[5.4,44.15],[5.38,44.16],[5.39,44.18],[5.38,44.19],[5.38,44.2],[5.36,44.21],[5.34,44.2],[5.32,44.21],[5.3,44.21],[5.3,44.21],[5.28,44.22],[5.26,44.23],[5.25,44.23],[5.24,44.23],[5.24,44.21],[5.21,44.21],[5.18,44.22],[5.15,44.24],[5.15,44.24],[5.16,44.25],[5.16,44.27],[5.15,44.27],[5.15,44.28],[5.17,44.29],[5.17,44.3],[5.17,44.31],[5.17,44.31],[5.17,44.31],[5.15,44.31],[5.15,44.3],[5.11,44.28],[5.08,44.28],[5.06,44.31],[5.03,44.3],[5,44.29],[4.99,44.29],[4.94,44.27],[4.93,44.26],[4.9,44.26],[4.9,44.26],[4.88,44.26],[4.86,44.25],[4.83,44.23],[4.81,44.23],[4.81,44.26],[4.8,44.27],[4.8,44.3],[4.8,44.31],[4.78,44.32],[4.77,44.32],[4.76,44.33],[4.72,44.33],[4.71,44.32],[4.71,44.32],[4.68,44.32],[4.65,44.33],[4.65,44.29],[4.65,44.27],[4.63,44.28],[4.62,44.28],[4.61,44.29],[4.6,44.29],[4.57,44.3],[4.57,44.3],[4.56,44.3],[4.55,44.32],[4.55,44.32],[4.53,44.32],[4.52,44.33],[4.51,44.33],[4.51,44.34],[4.51,44.34],[4.48,44.34],[4.46,44.34],[4.46,44.34],[4.45,44.33],[4.45,44.3],[4.45,44.3],[4.44,44.28],[4.44,44.28],[4.43,44.29],[4.4,44.29],[4.39,44.29],[4.39,44.3],[4.4,44.33],[4.4,44.34],[4.4,44.34],[4.39,44.35],[4.37,44.34],[4.33,44.34],[4.33,44.33],[4.32,44.32],[4.3,44.31],[4.29,44.32],[4.29,44.29],[4.27,44.27],[4.26,44.26],[4.25,44.27],[4.22,44.29],[4.19,44.3],[4.18,44.32],[4.16,44.31],[4.14,44.31],[4.14,44.32],[4.13,44.34],[4.12,44.33],[4.11,44.33],[4.1,44.33],[4.07,44.33],[4.06,44.32],[4.05,44.32],[4.05,44.32],[4.04,44.33],[4.05,44.34],[4.05,44.36],[4.06,44.36],[4.05,44.37],[4.05,44.38],[4.04,44.38],[4.04,44.39],[4.05,44.4],[4.06,44.39],[4.07,44.41],[4.05,44.41],[4.04,44.42],[4.05,44.43],[4.04,44.45],[4.02,44.45],[4.02,44.45],[4,44.46],[3.99,44.47],[3.99,44.5],[3.98,44.52],[3.98,44.52],[3.98,44.52],[3.97,44.54],[3.96,44.55],[3.95,44.57],[3.92,44.57],[3.92,44.58],[3.92,44.59],[3.91,44.59],[3.91,44.61],[3.91,44.61],[3.89,44.62],[3.9,44.64],[3.89,44.65],[3.89,44.66],[3.87,44.68],[3.88,44.69],[3.88,44.7],[3.87,44.7],[3.87,44.71],[3.86,44.71],[3.86,44.72],[3.88,44.74],[3.88,44.74],[3.86,44.74],[3.87,44.76],[3.88,44.76],[3.89,44.75],[3.9,44.75],[3.9,44.76],[3.92,44.77],[3.92,44.78],[3.92,44.78],[3.94,44.8],[3.95,44.82],[3.96,44.83],[3.97,44.82],[3.98,44.81],[3.99,44.82],[3.98,44.83],[3.98,44.83],[3.99,44.83],[4,44.82],[4.01,44.83],[4.02,44.83],[4.03,44.83],[4.02,44.85],[4.03,44.85],[4.03,44.87],[4.04,44.87],[4.06,44.87],[4.07,44.87],[4.09,44.87],[4.11,44.88],[4.12,44.88],[4.14,44.87],[4.16,44.87],[4.17,44.88],[4.18,44.89],[4.18,44.91],[4.19,44.91],[4.19,44.91],[4.2,44.93],[4.22,44.93],[4.22,44.96],[4.24,44.97],[4.26,44.96],[4.28,44.97],[4.29,44.97],[4.3,44.97],[4.31,44.97],[4.31,44.98],[4.31,44.99],[4.3,44.99],[4.29,45],[4.3,45.02],[4.32,45.03],[4.35,45.03],[4.36,45.03],[4.38,45.04],[4.38,45.04],[4.38,45.05],[4.37,45.06],[4.36,45.06],[4.35,45.07],[4.35,45.08],[4.35,45.08],[4.36,45.09],[4.36,45.09],[4.36,45.1],[4.37,45.1],[4.38,45.1],[4.4,45.11],[4.4,45.11],[4.37,45.13],[4.38,45.14],[4.4,45.14],[4.41,45.14],[4.43,45.13],[4.43,45.12],[4.44,45.11],[4.44,45.11],[4.44,45.12],[4.44,45.12],[4.46,45.12],[4.46,45.13],[4.45,45.13],[4.44,45.14],[4.45,45.16],[4.46,45.17],[4.46,45.18],[4.47,45.18],[4.48,45.2],[4.48,45.21],[4.48,45.22],[4.49,45.22],[4.49,45.22],[4.48,45.24],[4.45,45.26],[4.43,45.27],[4.42,45.28],[4.39,45.26],[4.39,45.26],[4.37,45.26],[4.37,45.26],[4.35,45.28],[4.36,45.29],[4.36,45.29],[4.37,45.3],[4.37,45.3],[4.35,45.3],[4.33,45.32],[4.36,45.34],[4.37,45.34],[4.35,45.36],[4.34,45.37],[4.31,45.37],[4.31,45.36],[4.3,45.36],[4.3,45.36],[4.29,45.36],[4.27,45.36],[4.27,45.37],[4.26,45.37],[4.24,45.39],[4.24,45.38],[4.23,45.39],[4.2,45.38],[4.18,45.39],[4.16,45.39],[4.14,45.38],[4.16,45.37],[4.15,45.37],[4.12,45.37],[4.11,45.36],[4.11,45.35],[4.1,45.36],[4.08,45.36],[4.08,45.34],[4.07,45.34],[4.06,45.34],[4.05,45.35],[4.05,45.36],[4.04,45.35],[4.03,45.35],[4.02,45.34],[4.02,45.33],[4.02,45.33],[4,45.36],[3.99,45.36],[3.99,45.37],[3.98,45.38],[3.96,45.37],[3.95,45.37],[3.94,45.37],[3.93,45.36],[3.92,45.35],[3.92,45.34],[3.91,45.33],[3.9,45.34],[3.89,45.37],[3.89,45.38],[3.89,45.39],[3.9,45.41],[3.91,45.41],[3.91,45.42],[3.92,45.42],[3.94,45.43],[3.96,45.44],[3.96,45.44],[3.98,45.45],[3.97,45.45],[3.97,45.46],[3.97,45.47],[3.99,45.49],[3.98,45.5],[3.97,45.5],[3.97,45.5],[3.96,45.51],[3.95,45.54],[3.95,45.56],[3.94,45.56],[3.94,45.57],[3.93,45.58],[3.91,45.6],[3.88,45.6],[3.87,45.61],[3.86,45.62],[3.86,45.62],[3.84,45.63],[3.82,45.63],[3.82,45.65],[3.81,45.66],[3.79,45.67],[3.78,45.69],[3.78,45.7],[3.78,45.71],[3.78,45.72],[3.78,45.72],[3.77,45.73],[3.76,45.75],[3.75,45.75],[3.75,45.74],[3.73,45.76],[3.74,45.77],[3.73,45.78],[3.7,45.78],[3.69,45.79],[3.7,45.79],[3.71,45.8],[3.73,45.83],[3.72,45.85],[3.73,45.86],[3.73,45.86],[3.72,45.86],[3.72,45.87],[3.73,45.87],[3.74,45.88],[3.75,45.88],[3.75,45.89],[3.74,45.91],[3.73,45.91],[3.72,45.92],[3.69,45.93],[3.69,45.95],[3.7,45.96],[3.7,45.97],[3.71,45.97],[3.74,45.97],[3.75,45.97],[3.76,45.98],[3.76,45.98],[3.78,45.97],[3.79,45.98],[3.8,45.98],[3.82,45.99],[3.82,45.99],[3.83,46],[3.83,46],[3.82,46.01],[3.82,46.02],[3.81,46.04],[3.81,46.05],[3.82,46.09],[3.8,46.11],[3.79,46.11],[3.8,46.13],[3.79,46.14],[3.79,46.16],[3.81,46.16],[3.79,46.19],[3.79,46.2],[3.79,46.21],[3.78,46.22],[3.77,46.23],[3.77,46.24],[3.78,46.24],[3.8,46.24],[3.81,46.26],[3.87,46.26],[3.88,46.28],[3.89,46.27],[3.9,46.28],[3.9,46.27],[3.91,46.26],[3.91,46.24],[3.9,46.24],[3.9,46.23],[3.89,46.21],[3.92,46.2],[3.94,46.21],[3.97,46.2],[3.97,46.2],[3.97,46.19],[3.99,46.17],[4.02,46.17],[4.03,46.17],[4.05,46.18],[4.06,46.19],[4.07,46.19],[4.1,46.2],[4.13,46.18],[4.13,46.18],[4.18,46.17],[4.19,46.18],[4.18,46.18],[4.18,46.19],[4.19,46.19],[4.21,46.19],[4.22,46.19],[4.22,46.18],[4.25,46.19],[4.26,46.18],[4.26,46.18],[4.25,46.17],[4.25,46.17],[4.25,46.16],[4.28,46.16],[4.29,46.17],[4.3,46.17],[4.31,46.17],[4.32,46.17],[4.33,46.18],[4.33,46.18],[4.35,46.19],[4.36,46.18],[4.37,46.18],[4.37,46.19],[4.36,46.2],[4.37,46.21],[4.39,46.21],[4.39,46.23],[4.39,46.24],[4.39,46.25],[4.39,46.25],[4.4,46.27],[4.4,46.27],[4.4,46.28],[4.41,46.29],[4.41,46.3],[4.42,46.3],[4.43,46.3],[4.44,46.3],[4.44,46.29],[4.46,46.3],[4.48,46.28],[4.49,46.29],[4.5,46.27],[4.54,46.27],[4.55,46.27],[4.55,46.28],[4.56,46.29],[4.57,46.29],[4.57,46.29],[4.57,46.28],[4.59,46.27],[4.62,46.26],[4.62,46.27],[4.62,46.28],[4.64,46.29],[4.64,46.3],[4.65,46.3],[4.66,46.3],[4.68,46.3],[4.69,46.3],[4.69,46.29],[4.7,46.28],[4.71,46.28],[4.71,46.27],[4.7,46.27],[4.69,46.27],[4.69,46.27],[4.68,46.27],[4.68,46.26],[4.69,46.25],[4.71,46.25],[4.72,46.24],[4.74,46.23],[4.73,46.23],[4.72,46.23],[4.72,46.22],[4.74,46.21],[4.73,46.21],[4.72,46.2],[4.72,46.18],[4.73,46.18],[4.75,46.17],[4.78,46.18],[4.78,46.19],[4.79,46.2],[4.8,46.22],[4.8,46.23],[4.81,46.24],[4.81,46.25],[4.82,46.27],[4.83,46.28],[4.83,46.3],[4.85,46.33],[4.85,46.34],[4.85,46.35],[4.86,46.37],[4.89,46.4],[4.89,46.42],[4.89,46.43],[4.89,46.44],[4.89,46.45],[4.91,46.46],[4.92,46.49],[4.93,46.5],[4.94,46.51],[4.95,46.51],[4.95,46.51],[4.95,46.5],[4.96,46.51],[4.97,46.51],[4.98,46.52],[5.01,46.51],[5.01,46.51],[5.01,46.5],[5.05,46.48],[5.07,46.49],[5.1,46.5],[5.11,46.49],[5.13,46.5],[5.14,46.51],[5.14,46.51],[5.16,46.5],[5.17,46.52],[5.18,46.51],[5.2,46.51],[5.2,46.5]],[[4.97,44.43],[4.96,44.42],[4.95,44.42],[4.95,44.41],[4.92,44.41],[4.91,44.4],[4.91,44.39],[4.91,44.37],[4.89,44.37],[4.89,44.36],[4.87,44.35],[4.88,44.35],[4.9,44.34],[4.88,44.33],[4.89,44.31],[4.89,44.3],[4.92,44.31],[4.98,44.3],[4.99,44.29],[4.99,44.31],[5,44.32],[5.01,44.33],[5.01,44.33],[5.02,44.34],[5.03,44.36],[5.05,44.36],[5.07,44.38],[5.07,44.38],[5.05,44.38],[5.03,44.39],[5.02,44.39],[5.01,44.41],[5.02,44.41],[5.02,44.42],[5.01,44.41],[4.99,44.42],[4.98,44.42],[4.98,44.43],[4.97,44.43]]]},"properties":{"id":18,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.98,46.8],[3,46.8],[3.02,46.8],[3.03,46.79],[3.03,46.79],[3.04,46.77],[3.05,46.76],[3.08,46.74],[3.13,46.73],[3.17,46.69],[3.2,46.68],[3.22,46.68],[3.23,46.69],[3.23,46.7],[3.26,46.71],[3.27,46.72],[3.3,46.72],[3.3,46.7],[3.32,46.69],[3.35,46.68],[3.37,46.69],[3.38,46.7],[3.38,46.71],[3.39,46.71],[3.41,46.71],[3.43,46.71],[3.43,46.7],[3.43,46.7],[3.45,46.69],[3.45,46.68],[3.45,46.67],[3.45,46.67],[3.45,46.66],[3.44,46.66],[3.45,46.66],[3.46,46.65],[3.48,46.65],[3.49,46.65],[3.49,46.66],[3.52,46.69],[3.53,46.69],[3.54,46.68],[3.55,46.68],[3.56,46.69],[3.55,46.71],[3.55,46.72],[3.57,46.72],[3.58,46.72],[3.58,46.72],[3.6,46.73],[3.58,46.75],[3.59,46.76],[3.6,46.75],[3.62,46.75],[3.63,46.75],[3.62,46.74],[3.64,46.72],[3.64,46.71],[3.65,46.7],[3.66,46.69],[3.67,46.68],[3.67,46.67],[3.7,46.66],[3.7,46.65],[3.71,46.64],[3.72,46.63],[3.72,46.62],[3.71,46.61],[3.72,46.61],[3.73,46.6],[3.74,46.58],[3.74,46.56],[3.73,46.55],[3.73,46.55],[3.74,46.54],[3.76,46.54],[3.77,46.54],[3.78,46.53],[3.78,46.53],[3.79,46.53],[3.8,46.52],[3.81,46.52],[3.84,46.53],[3.85,46.52],[3.84,46.52],[3.85,46.51],[3.86,46.52],[3.86,46.51],[3.86,46.5],[3.87,46.49],[3.89,46.48],[3.9,46.49],[3.9,46.49],[3.92,46.5],[3.93,46.49],[3.96,46.49],[3.95,46.48],[3.97,46.48],[3.97,46.48],[3.98,46.47],[4,46.46],[4,46.46],[4,46.45],[4,46.44],[4,46.44],[3.99,46.44],[4,46.43],[3.98,46.42],[3.99,46.41],[3.98,46.4],[3.98,46.39],[3.99,46.37],[3.99,46.35],[3.99,46.33],[4,46.33],[3.98,46.32],[3.97,46.32],[3.95,46.32],[3.95,46.3],[3.93,46.3],[3.9,46.29],[3.89,46.28],[3.9,46.28],[3.89,46.27],[3.88,46.28],[3.87,46.26],[3.81,46.26],[3.8,46.24],[3.78,46.24],[3.77,46.24],[3.77,46.23],[3.78,46.22],[3.79,46.21],[3.79,46.2],[3.79,46.19],[3.81,46.16],[3.79,46.16],[3.79,46.14],[3.8,46.13],[3.79,46.11],[3.8,46.11],[3.82,46.09],[3.81,46.05],[3.81,46.04],[3.82,46.02],[3.82,46.01],[3.83,46],[3.83,46],[3.82,45.99],[3.82,45.99],[3.8,45.98],[3.79,45.98],[3.78,45.97],[3.76,45.98],[3.76,45.98],[3.75,45.97],[3.74,45.97],[3.71,45.97],[3.7,45.97],[3.7,45.96],[3.69,45.95],[3.69,45.93],[3.72,45.92],[3.73,45.91],[3.74,45.91],[3.75,45.89],[3.75,45.88],[3.74,45.88],[3.73,45.87],[3.72,45.87],[3.72,45.86],[3.73,45.86],[3.73,45.86],[3.72,45.85],[3.73,45.83],[3.71,45.8],[3.7,45.79],[3.69,45.79],[3.7,45.78],[3.73,45.78],[3.74,45.77],[3.73,45.76],[3.75,45.74],[3.75,45.75],[3.76,45.75],[3.77,45.73],[3.78,45.72],[3.78,45.72],[3.78,45.71],[3.78,45.7],[3.78,45.69],[3.79,45.67],[3.81,45.66],[3.82,45.65],[3.82,45.63],[3.84,45.63],[3.86,45.62],[3.86,45.62],[3.87,45.61],[3.88,45.6],[3.91,45.6],[3.93,45.58],[3.94,45.57],[3.94,45.56],[3.95,45.56],[3.95,45.54],[3.96,45.51],[3.97,45.5],[3.97,45.5],[3.98,45.5],[3.99,45.49],[3.97,45.47],[3.97,45.46],[3.97,45.45],[3.98,45.45],[3.96,45.44],[3.96,45.44],[3.94,45.43],[3.92,45.42],[3.91,45.42],[3.91,45.41],[3.9,45.41],[3.89,45.39],[3.89,45.38],[3.89,45.37],[3.9,45.34],[3.91,45.33],[3.92,45.34],[3.92,45.35],[3.93,45.36],[3.94,45.37],[3.95,45.37],[3.96,45.37],[3.98,45.38],[3.99,45.37],[3.99,45.36],[4,45.36],[4.02,45.33],[4.02,45.33],[4.02,45.34],[4.03,45.35],[4.04,45.35],[4.05,45.36],[4.05,45.35],[4.06,45.34],[4.07,45.34],[4.08,45.34],[4.08,45.36],[4.1,45.36],[4.11,45.35],[4.11,45.36],[4.12,45.37],[4.15,45.37],[4.16,45.37],[4.14,45.38],[4.16,45.39],[4.18,45.39],[4.2,45.38],[4.23,45.39],[4.24,45.38],[4.24,45.39],[4.26,45.37],[4.27,45.37],[4.27,45.36],[4.29,45.36],[4.3,45.36],[4.3,45.36],[4.31,45.36],[4.31,45.37],[4.34,45.37],[4.35,45.36],[4.37,45.34],[4.36,45.34],[4.33,45.32],[4.35,45.3],[4.37,45.3],[4.37,45.3],[4.36,45.29],[4.36,45.29],[4.35,45.28],[4.37,45.26],[4.37,45.26],[4.39,45.26],[4.39,45.26],[4.42,45.28],[4.43,45.27],[4.45,45.26],[4.48,45.24],[4.49,45.22],[4.49,45.22],[4.48,45.22],[4.48,45.21],[4.48,45.2],[4.47,45.18],[4.46,45.18],[4.46,45.17],[4.45,45.16],[4.44,45.14],[4.45,45.13],[4.46,45.13],[4.46,45.12],[4.44,45.12],[4.44,45.12],[4.44,45.11],[4.44,45.11],[4.43,45.12],[4.43,45.13],[4.41,45.14],[4.4,45.14],[4.38,45.14],[4.37,45.13],[4.4,45.11],[4.4,45.11],[4.38,45.1],[4.37,45.1],[4.36,45.1],[4.36,45.09],[4.36,45.09],[4.35,45.08],[4.35,45.08],[4.35,45.07],[4.36,45.06],[4.37,45.06],[4.38,45.05],[4.38,45.04],[4.38,45.04],[4.36,45.03],[4.35,45.03],[4.32,45.03],[4.3,45.02],[4.29,45],[4.3,44.99],[4.31,44.99],[4.31,44.98],[4.31,44.97],[4.3,44.97],[4.29,44.97],[4.28,44.97],[4.26,44.96],[4.24,44.97],[4.22,44.96],[4.22,44.93],[4.2,44.93],[4.19,44.91],[4.19,44.91],[4.18,44.91],[4.18,44.89],[4.17,44.88],[4.16,44.87],[4.14,44.87],[4.12,44.88],[4.11,44.88],[4.09,44.87],[4.07,44.87],[4.06,44.87],[4.04,44.87],[4.03,44.87],[4.03,44.85],[4.02,44.85],[4.03,44.83],[4.02,44.83],[4.01,44.83],[4,44.82],[3.99,44.83],[3.98,44.83],[3.98,44.83],[3.99,44.82],[3.98,44.81],[3.97,44.82],[3.96,44.83],[3.95,44.82],[3.94,44.8],[3.92,44.78],[3.92,44.78],[3.92,44.77],[3.9,44.76],[3.9,44.75],[3.89,44.75],[3.88,44.76],[3.87,44.76],[3.86,44.74],[3.84,44.75],[3.83,44.75],[3.84,44.77],[3.84,44.77],[3.83,44.78],[3.82,44.77],[3.81,44.77],[3.81,44.77],[3.8,44.79],[3.77,44.8],[3.77,44.8],[3.76,44.8],[3.76,44.82],[3.75,44.82],[3.74,44.84],[3.74,44.84],[3.73,44.83],[3.72,44.83],[3.7,44.84],[3.69,44.83],[3.67,44.83],[3.66,44.84],[3.67,44.84],[3.67,44.85],[3.67,44.86],[3.66,44.87],[3.64,44.88],[3.63,44.88],[3.63,44.88],[3.61,44.87],[3.61,44.88],[3.6,44.88],[3.6,44.86],[3.59,44.84],[3.59,44.83],[3.58,44.83],[3.57,44.83],[3.56,44.83],[3.54,44.83],[3.51,44.82],[3.49,44.81],[3.49,44.81],[3.49,44.81],[3.48,44.81],[3.47,44.82],[3.46,44.83],[3.46,44.84],[3.44,44.85],[3.44,44.88],[3.42,44.9],[3.42,44.91],[3.41,44.92],[3.42,44.93],[3.41,44.94],[3.4,44.96],[3.39,44.95],[3.37,44.96],[3.37,44.98],[3.36,44.97],[3.35,44.95],[3.34,44.96],[3.32,44.95],[3.31,44.94],[3.3,44.94],[3.29,44.93],[3.27,44.93],[3.26,44.94],[3.27,44.94],[3.26,44.94],[3.25,44.94],[3.25,44.94],[3.24,44.93],[3.25,44.92],[3.23,44.91],[3.23,44.9],[3.23,44.89],[3.21,44.87],[3.2,44.87],[3.19,44.86],[3.18,44.86],[3.17,44.87],[3.16,44.88],[3.16,44.88],[3.14,44.9],[3.13,44.9],[3.12,44.89],[3.1,44.88],[3.1,44.87],[3.09,44.86],[3.1,44.84],[3.1,44.83],[3.07,44.84],[3.08,44.82],[3.06,44.82],[3.05,44.8],[3.05,44.8],[3.05,44.78],[3.04,44.77],[3.05,44.76],[3.03,44.75],[3.03,44.73],[3.03,44.73],[3.04,44.72],[3.03,44.72],[3.02,44.71],[3,44.68],[2.98,44.65],[2.98,44.65],[2.98,44.64],[2.97,44.65],[2.96,44.65],[2.96,44.66],[2.96,44.66],[2.95,44.67],[2.94,44.68],[2.94,44.69],[2.93,44.7],[2.93,44.71],[2.92,44.73],[2.93,44.74],[2.93,44.75],[2.93,44.75],[2.92,44.76],[2.91,44.76],[2.92,44.76],[2.93,44.76],[2.93,44.77],[2.93,44.78],[2.92,44.79],[2.91,44.79],[2.9,44.79],[2.89,44.79],[2.88,44.8],[2.87,44.83],[2.86,44.84],[2.86,44.85],[2.86,44.85],[2.86,44.87],[2.85,44.87],[2.85,44.87],[2.81,44.87],[2.8,44.87],[2.79,44.87],[2.78,44.86],[2.77,44.86],[2.77,44.86],[2.77,44.88],[2.78,44.89],[2.77,44.9],[2.78,44.91],[2.76,44.93],[2.74,44.93],[2.74,44.94],[2.73,44.93],[2.72,44.93],[2.72,44.93],[2.71,44.91],[2.69,44.9],[2.68,44.91],[2.66,44.89],[2.66,44.87],[2.65,44.87],[2.63,44.87],[2.62,44.85],[2.6,44.84],[2.61,44.83],[2.6,44.82],[2.6,44.79],[2.59,44.78],[2.57,44.79],[2.56,44.78],[2.56,44.76],[2.55,44.76],[2.55,44.74],[2.55,44.73],[2.55,44.73],[2.56,44.73],[2.56,44.72],[2.52,44.7],[2.52,44.7],[2.5,44.69],[2.49,44.67],[2.49,44.66],[2.48,44.65],[2.47,44.65],[2.47,44.64],[2.45,44.65],[2.44,44.64],[2.4,44.65],[2.39,44.64],[2.38,44.65],[2.37,44.64],[2.35,44.64],[2.34,44.65],[2.34,44.66],[2.33,44.66],[2.32,44.67],[2.31,44.66],[2.29,44.67],[2.27,44.66],[2.27,44.66],[2.25,44.65],[2.23,44.65],[2.21,44.64],[2.21,44.63],[2.22,44.62],[2.21,44.62],[2.19,44.63],[2.17,44.64],[2.17,44.65],[2.17,44.65],[2.17,44.66],[2.18,44.67],[2.15,44.7],[2.14,44.69],[2.13,44.7],[2.13,44.71],[2.15,44.72],[2.15,44.75],[2.15,44.77],[2.16,44.77],[2.17,44.79],[2.17,44.8],[2.17,44.81],[2.14,44.82],[2.12,44.85],[2.12,44.85],[2.09,44.87],[2.09,44.88],[2.09,44.9],[2.09,44.9],[2.11,44.91],[2.1,44.92],[2.08,44.93],[2.08,44.95],[2.06,44.98],[2.09,44.99],[2.11,44.98],[2.13,44.99],[2.14,45.01],[2.12,45.02],[2.11,45.04],[2.1,45.06],[2.1,45.06],[2.1,45.06],[2.13,45.08],[2.14,45.08],[2.14,45.09],[2.16,45.09],[2.17,45.08],[2.18,45.09],[2.18,45.1],[2.19,45.12],[2.18,45.14],[2.2,45.14],[2.21,45.15],[2.21,45.16],[2.23,45.16],[2.23,45.17],[2.23,45.17],[2.22,45.17],[2.2,45.18],[2.2,45.2],[2.19,45.2],[2.2,45.22],[2.19,45.22],[2.19,45.22],[2.2,45.22],[2.2,45.23],[2.22,45.24],[2.23,45.24],[2.24,45.25],[2.24,45.26],[2.24,45.26],[2.24,45.27],[2.26,45.27],[2.26,45.28],[2.27,45.29],[2.28,45.29],[2.29,45.29],[2.32,45.32],[2.34,45.33],[2.35,45.33],[2.36,45.34],[2.35,45.35],[2.36,45.36],[2.36,45.38],[2.37,45.39],[2.35,45.41],[2.36,45.42],[2.38,45.41],[2.39,45.41],[2.4,45.4],[2.4,45.4],[2.42,45.4],[2.44,45.38],[2.47,45.38],[2.48,45.37],[2.48,45.38],[2.49,45.38],[2.51,45.38],[2.52,45.38],[2.52,45.38],[2.53,45.39],[2.52,45.4],[2.52,45.4],[2.49,45.42],[2.49,45.42],[2.5,45.45],[2.5,45.45],[2.5,45.46],[2.5,45.46],[2.51,45.47],[2.51,45.48],[2.51,45.49],[2.51,45.5],[2.51,45.51],[2.52,45.52],[2.51,45.52],[2.52,45.53],[2.51,45.54],[2.52,45.54],[2.52,45.55],[2.5,45.56],[2.49,45.57],[2.47,45.58],[2.46,45.59],[2.47,45.6],[2.48,45.61],[2.48,45.64],[2.49,45.64],[2.51,45.64],[2.52,45.64],[2.52,45.65],[2.53,45.66],[2.51,45.67],[2.51,45.67],[2.52,45.68],[2.53,45.68],[2.52,45.69],[2.53,45.69],[2.52,45.7],[2.52,45.71],[2.49,45.74],[2.49,45.75],[2.47,45.75],[2.47,45.76],[2.45,45.76],[2.45,45.76],[2.43,45.77],[2.43,45.79],[2.39,45.83],[2.4,45.84],[2.43,45.83],[2.43,45.84],[2.43,45.85],[2.45,45.85],[2.45,45.85],[2.44,45.86],[2.44,45.87],[2.46,45.87],[2.47,45.87],[2.47,45.87],[2.48,45.86],[2.49,45.86],[2.5,45.88],[2.5,45.89],[2.51,45.89],[2.56,45.91],[2.54,45.92],[2.54,45.92],[2.54,45.93],[2.55,45.93],[2.55,45.94],[2.57,45.95],[2.57,45.96],[2.57,45.96],[2.61,45.97],[2.61,45.98],[2.6,45.99],[2.59,46],[2.6,46.03],[2.57,46.05],[2.55,46.08],[2.55,46.09],[2.55,46.09],[2.55,46.1],[2.55,46.12],[2.56,46.12],[2.56,46.14],[2.56,46.14],[2.57,46.14],[2.56,46.17],[2.54,46.18],[2.53,46.18],[2.53,46.19],[2.52,46.2],[2.52,46.24],[2.52,46.24],[2.49,46.25],[2.48,46.27],[2.48,46.28],[2.47,46.29],[2.44,46.29],[2.43,46.29],[2.43,46.28],[2.42,46.29],[2.42,46.3],[2.42,46.31],[2.39,46.33],[2.39,46.33],[2.37,46.31],[2.37,46.31],[2.36,46.32],[2.33,46.33],[2.31,46.33],[2.31,46.34],[2.3,46.34],[2.31,46.35],[2.31,46.36],[2.32,46.37],[2.34,46.37],[2.33,46.38],[2.31,46.38],[2.3,46.38],[2.29,46.38],[2.28,46.39],[2.28,46.41],[2.28,46.41],[2.28,46.42],[2.28,46.42],[2.28,46.43],[2.28,46.45],[2.31,46.48],[2.32,46.47],[2.33,46.47],[2.33,46.48],[2.32,46.49],[2.33,46.5],[2.35,46.51],[2.37,46.52],[2.41,46.52],[2.43,46.53],[2.44,46.53],[2.45,46.52],[2.47,46.53],[2.48,46.53],[2.5,46.53],[2.5,46.52],[2.5,46.52],[2.51,46.52],[2.52,46.53],[2.53,46.53],[2.54,46.52],[2.58,46.54],[2.61,46.55],[2.61,46.55],[2.61,46.56],[2.61,46.57],[2.6,46.6],[2.58,46.59],[2.58,46.61],[2.57,46.61],[2.59,46.62],[2.58,46.63],[2.6,46.64],[2.59,46.65],[2.57,46.65],[2.57,46.66],[2.61,46.67],[2.61,46.66],[2.62,46.66],[2.63,46.67],[2.63,46.67],[2.62,46.68],[2.62,46.69],[2.63,46.69],[2.65,46.69],[2.66,46.7],[2.68,46.7],[2.68,46.71],[2.69,46.72],[2.7,46.72],[2.7,46.74],[2.73,46.75],[2.73,46.75],[2.74,46.73],[2.76,46.72],[2.76,46.72],[2.77,46.72],[2.77,46.72],[2.78,46.72],[2.79,46.73],[2.83,46.74],[2.84,46.73],[2.85,46.73],[2.84,46.74],[2.88,46.76],[2.88,46.77],[2.9,46.78],[2.91,46.78],[2.91,46.79],[2.92,46.79],[2.93,46.8],[2.95,46.79],[2.96,46.8],[2.98,46.8]]]},"properties":{"id":19,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[3.37,44.96],[3.39,44.95],[3.4,44.96],[3.41,44.94],[3.42,44.93],[3.41,44.92],[3.42,44.91],[3.42,44.9],[3.44,44.88],[3.44,44.85],[3.46,44.84],[3.46,44.83],[3.47,44.82],[3.48,44.81],[3.49,44.81],[3.49,44.81],[3.49,44.81],[3.51,44.82],[3.54,44.83],[3.56,44.83],[3.57,44.83],[3.58,44.83],[3.59,44.83],[3.59,44.84],[3.6,44.86],[3.6,44.88],[3.61,44.88],[3.61,44.87],[3.63,44.88],[3.63,44.88],[3.64,44.88],[3.66,44.87],[3.67,44.86],[3.67,44.85],[3.67,44.84],[3.66,44.84],[3.67,44.83],[3.69,44.83],[3.7,44.84],[3.72,44.83],[3.73,44.83],[3.74,44.84],[3.74,44.84],[3.75,44.82],[3.76,44.82],[3.76,44.8],[3.77,44.8],[3.77,44.8],[3.8,44.79],[3.81,44.77],[3.81,44.77],[3.82,44.77],[3.83,44.78],[3.84,44.77],[3.84,44.77],[3.83,44.75],[3.84,44.75],[3.86,44.74],[3.88,44.74],[3.88,44.74],[3.86,44.72],[3.86,44.71],[3.87,44.71],[3.87,44.7],[3.88,44.7],[3.88,44.69],[3.87,44.68],[3.89,44.66],[3.89,44.65],[3.9,44.64],[3.89,44.62],[3.91,44.61],[3.91,44.61],[3.91,44.59],[3.92,44.59],[3.92,44.58],[3.92,44.57],[3.95,44.57],[3.96,44.55],[3.97,44.54],[3.98,44.52],[3.98,44.52],[3.98,44.52],[3.99,44.5],[3.99,44.47],[4,44.46],[4.02,44.45],[4.02,44.45],[4.04,44.45],[4.05,44.43],[4.04,44.42],[4.05,44.41],[4.07,44.41],[4.06,44.39],[4.05,44.4],[4.04,44.39],[4.04,44.38],[4.05,44.38],[4.05,44.37],[4.06,44.36],[4.05,44.36],[4.05,44.34],[4.04,44.33],[4.05,44.32],[4.05,44.32],[4.06,44.32],[4.07,44.33],[4.1,44.33],[4.11,44.33],[4.12,44.33],[4.13,44.34],[4.14,44.32],[4.14,44.31],[4.16,44.31],[4.18,44.32],[4.19,44.3],[4.22,44.29],[4.25,44.27],[4.26,44.26],[4.27,44.27],[4.29,44.29],[4.29,44.32],[4.3,44.31],[4.32,44.32],[4.33,44.33],[4.33,44.34],[4.37,44.34],[4.39,44.35],[4.4,44.34],[4.4,44.34],[4.4,44.33],[4.39,44.3],[4.39,44.29],[4.4,44.29],[4.43,44.29],[4.44,44.28],[4.44,44.28],[4.45,44.3],[4.45,44.3],[4.45,44.33],[4.46,44.34],[4.46,44.34],[4.48,44.34],[4.51,44.34],[4.51,44.34],[4.51,44.33],[4.52,44.33],[4.53,44.32],[4.55,44.32],[4.55,44.32],[4.56,44.3],[4.57,44.3],[4.57,44.3],[4.6,44.29],[4.61,44.29],[4.62,44.28],[4.63,44.28],[4.65,44.27],[4.65,44.26],[4.68,44.23],[4.67,44.22],[4.67,44.21],[4.68,44.21],[4.7,44.22],[4.71,44.21],[4.71,44.21],[4.7,44.2],[4.71,44.19],[4.72,44.19],[4.72,44.18],[4.72,44.18],[4.72,44.15],[4.72,44.14],[4.71,44.11],[4.72,44.09],[4.72,44.08],[4.73,44.08],[4.75,44.09],[4.76,44.09],[4.76,44.08],[4.76,44.07],[4.79,44.06],[4.79,44.05],[4.81,44.03],[4.82,44.02],[4.83,44.02],[4.84,44.01],[4.84,44],[4.85,44],[4.84,43.99],[4.81,43.99],[4.81,43.98],[4.81,43.96],[4.79,43.95],[4.78,43.94],[4.75,43.93],[4.74,43.92],[4.74,43.92],[4.72,43.91],[4.71,43.9],[4.7,43.9],[4.71,43.9],[4.69,43.89],[4.67,43.88],[4.66,43.87],[4.66,43.87],[4.66,43.87],[4.64,43.87],[4.65,43.86],[4.64,43.85],[4.66,43.85],[4.67,43.85],[4.64,43.83],[4.65,43.81],[4.65,43.78],[4.63,43.76],[4.61,43.72],[4.61,43.71],[4.63,43.69],[4.63,43.69],[4.6,43.69],[4.58,43.7],[4.56,43.7],[4.54,43.71],[4.52,43.7],[4.5,43.7],[4.49,43.7],[4.48,43.69],[4.48,43.67],[4.45,43.66],[4.43,43.63],[4.43,43.62],[4.44,43.61],[4.45,43.61],[4.47,43.62],[4.47,43.61],[4.47,43.6],[4.46,43.59],[4.45,43.58],[4.43,43.58],[4.41,43.57],[4.41,43.57],[4.41,43.56],[4.39,43.56],[4.37,43.55],[4.35,43.55],[4.35,43.54],[4.33,43.54],[4.32,43.54],[4.32,43.55],[4.32,43.55],[4.32,43.56],[4.31,43.55],[4.32,43.53],[4.29,43.51],[4.24,43.5],[4.24,43.5],[4.24,43.49],[4.23,43.48],[4.23,43.46],[4.2,43.46],[4.17,43.47],[4.14,43.48],[4.13,43.49],[4.12,43.5],[4.11,43.51],[4.12,43.51],[4.12,43.52],[4.12,43.52],[4.12,43.52],[4.13,43.52],[4.13,43.52],[4.14,43.52],[4.14,43.53],[4.14,43.53],[4.13,43.54],[4.13,43.54],[4.12,43.55],[4.1,43.56],[4.09,43.56],[4.08,43.55],[4.08,43.55],[4.08,43.56],[4.06,43.56],[4.03,43.56],[4.01,43.55],[3.97,43.54],[3.98,43.54],[3.97,43.54],[3.97,43.54],[3.95,43.53],[3.93,43.53],[3.93,43.53],[3.94,43.53],[3.94,43.52],[3.93,43.52],[3.93,43.53],[3.91,43.52],[3.92,43.52],[3.91,43.52],[3.9,43.52],[3.87,43.5],[3.83,43.47],[3.82,43.46],[3.8,43.44],[3.78,43.43],[3.75,43.43],[3.75,43.42],[3.75,43.42],[3.75,43.42],[3.75,43.42],[3.75,43.42],[3.74,43.42],[3.74,43.42],[3.75,43.42],[3.75,43.42],[3.74,43.42],[3.73,43.42],[3.73,43.41],[3.72,43.41],[3.72,43.41],[3.72,43.41],[3.71,43.4],[3.72,43.4],[3.71,43.4],[3.71,43.4],[3.71,43.4],[3.71,43.4],[3.71,43.4],[3.7,43.4],[3.7,43.4],[3.7,43.4],[3.7,43.4],[3.7,43.4],[3.7,43.39],[3.69,43.39],[3.68,43.39],[3.67,43.39],[3.67,43.39],[3.67,43.39],[3.67,43.39],[3.67,43.39],[3.66,43.39],[3.66,43.39],[3.64,43.38],[3.61,43.36],[3.61,43.36],[3.58,43.34],[3.58,43.33],[3.57,43.33],[3.56,43.32],[3.56,43.32],[3.55,43.32],[3.54,43.3],[3.54,43.3],[3.53,43.29],[3.52,43.28],[3.52,43.28],[3.52,43.28],[3.52,43.28],[3.52,43.27],[3.51,43.27],[3.51,43.27],[3.51,43.27],[3.51,43.27],[3.51,43.27],[3.51,43.28],[3.51,43.28],[3.51,43.28],[3.51,43.28],[3.51,43.27],[3.5,43.28],[3.49,43.28],[3.48,43.27],[3.48,43.28],[3.47,43.28],[3.45,43.28],[3.45,43.28],[3.44,43.28],[3.44,43.28],[3.44,43.28],[3.44,43.29],[3.43,43.29],[3.43,43.29],[3.42,43.29],[3.4,43.29],[3.37,43.28],[3.37,43.28],[3.37,43.28],[3.37,43.28],[3.37,43.28],[3.35,43.27],[3.34,43.28],[3.34,43.28],[3.34,43.27],[3.34,43.27],[3.31,43.25],[3.26,43.23],[3.24,43.22],[3.24,43.21],[3.24,43.21],[3.24,43.21],[3.24,43.21],[3.24,43.21],[3.24,43.21],[3.21,43.19],[3.21,43.19],[3.21,43.2],[3.2,43.2],[3.2,43.21],[3.19,43.21],[3.19,43.2],[3.2,43.2],[3.2,43.2],[3.2,43.2],[3.2,43.2],[3.2,43.19],[3.2,43.19],[3.2,43.19],[3.2,43.19],[3.2,43.19],[3.2,43.18],[3.19,43.18],[3.19,43.18],[3.19,43.18],[3.18,43.17],[3.18,43.17],[3.18,43.17],[3.18,43.17],[3.16,43.15],[3.16,43.15],[3.16,43.15],[3.15,43.14],[3.15,43.14],[3.15,43.14],[3.14,43.13],[3.14,43.13],[3.14,43.13],[3.13,43.12],[3.13,43.11],[3.13,43.11],[3.13,43.11],[3.13,43.11],[3.13,43.11],[3.12,43.11],[3.12,43.11],[3.11,43.1],[3.11,43.09],[3.11,43.09],[3.11,43.09],[3.11,43.09],[3.1,43.08],[3.09,43.06],[3.08,43.06],[3.08,43.06],[3.09,43.06],[3.1,43.08],[3.1,43.09],[3.1,43.08],[3.09,43.08],[3.1,43.08],[3.09,43.07],[3.08,43.06],[3.08,43.07],[3.09,43.07],[3.08,43.07],[3.08,43.07],[3.08,43.08],[3.07,43.08],[3.06,43.08],[3.05,43.08],[3.05,43.09],[3.05,43.09],[3.04,43.09],[3.04,43.09],[3.04,43.09],[3.04,43.09],[3.03,43.1],[3.03,43.1],[3.03,43.09],[3.02,43.08],[3.02,43.07],[3.02,43.07],[3.02,43.07],[3.02,43.07],[3.02,43.07],[3.02,43.07],[3.03,43.08],[3.03,43.09],[3.02,43.09],[3.02,43.08],[3.02,43.07],[3.01,43.07],[3.03,43.09],[3.03,43.11],[3.02,43.11],[3.01,43.11],[3.01,43.12],[3.01,43.12],[3,43.12],[3.01,43.12],[3.01,43.13],[3.02,43.13],[3.01,43.14],[3.01,43.14],[3.01,43.14],[3,43.14],[3,43.14],[3,43.14],[3,43.15],[3,43.15],[3,43.15],[2.99,43.15],[2.99,43.15],[2.99,43.14],[2.98,43.14],[2.99,43.13],[2.99,43.13],[2.99,43.13],[2.99,43.13],[2.99,43.12],[3,43.13],[3,43.12],[2.99,43.12],[2.99,43.11],[2.98,43.11],[2.98,43.11],[2.98,43.11],[2.97,43.11],[2.97,43.11],[2.96,43.11],[2.96,43.11],[2.97,43.11],[2.97,43.1],[2.96,43.1],[2.96,43.1],[2.97,43.1],[2.98,43.1],[2.99,43.1],[2.99,43.1],[2.99,43.09],[2.98,43.09],[2.97,43.08],[2.97,43.08],[2.97,43.09],[2.97,43.09],[2.97,43.09],[2.98,43.09],[2.98,43.09],[2.98,43.09],[2.97,43.09],[2.97,43.09],[2.96,43.09],[2.96,43.09],[2.97,43.08],[2.96,43.08],[2.95,43.08],[2.95,43.07],[2.97,43.07],[2.97,43.07],[2.98,43.07],[2.98,43.07],[2.98,43.07],[2.98,43.07],[2.98,43.06],[2.98,43.06],[2.99,43.06],[2.98,43.06],[2.99,43.05],[3,43.05],[3,43.05],[3,43.06],[3,43.06],[3,43.06],[3.01,43.06],[3.01,43.05],[3.02,43.04],[3.02,43.04],[3.02,43.04],[3.02,43.04],[3.02,43.04],[3.02,43.04],[3.01,43.04],[3.01,43.04],[3.01,43.03],[3.01,43.03],[3.01,43.03],[3.02,43.03],[3.03,43.03],[3.04,43.03],[3.04,43.03],[3.04,43.03],[3.04,43.03],[3.04,43.03],[3.05,43.04],[3.04,43.04],[3.05,43.04],[3.04,43.05],[3.03,43.05],[3.03,43.06],[3.02,43.06],[3.03,43.06],[3.03,43.07],[3.03,43.06],[3.04,43.06],[3.05,43.06],[3.05,43.05],[3.06,43.05],[3.06,43.05],[3.07,43.05],[3.07,43.06],[3.08,43.06],[3.08,43.06],[3.08,43.05],[3.07,43.05],[3.07,43.05],[3.07,43.04],[3.07,43.04],[3.07,43.04],[3.06,43.03],[3.07,43.03],[3.06,43.03],[3.06,43.03],[3.06,43.03],[3.06,43.03],[3.06,43.02],[3.07,43.02],[3.07,43.02],[3.06,43.02],[3.06,43.02],[3.06,43.02],[3.07,43.01],[3.07,43.02],[3.07,43.01],[3.06,43.01],[3.06,43.01],[3.06,43.01],[3.05,43.01],[3.05,42.99],[3.04,42.98],[3.03,42.96],[3.04,42.96],[3.04,42.96],[3.04,42.97],[3.04,42.97],[3.04,42.96],[3.03,42.95],[3.04,42.95],[3.03,42.95],[3.04,42.95],[3.04,42.94],[3.03,42.94],[3.03,42.94],[3.03,42.94],[3.03,42.93],[3.04,42.93],[3.05,42.93],[3.06,42.92],[3.06,42.92],[3.06,42.92],[3.05,42.89],[3.05,42.88],[3.05,42.88],[3.05,42.88],[3.05,42.88],[3.05,42.87],[3.05,42.87],[3.05,42.87],[3.04,42.87],[3.04,42.87],[3.03,42.86],[3.03,42.86],[3.03,42.85],[3.03,42.87],[3.05,42.89],[3.05,42.9],[3.04,42.91],[3.04,42.9],[3.04,42.9],[3.04,42.9],[3.02,42.89],[3.01,42.9],[3.02,42.9],[3.02,42.9],[3.02,42.9],[3.02,42.91],[3.02,42.91],[3.02,42.92],[3.01,42.92],[3.01,42.93],[3.01,42.93],[3.01,42.93],[3.01,42.92],[3,42.92],[3.01,42.91],[3,42.9],[3.01,42.9],[3,42.9],[3.01,42.9],[3.01,42.9],[3,42.89],[3,42.88],[3,42.88],[3,42.88],[3,42.87],[3,42.87],[2.99,42.86],[2.98,42.86],[2.98,42.86],[2.98,42.86],[2.97,42.85],[2.96,42.86],[2.97,42.85],[2.96,42.85],[2.95,42.84],[2.95,42.84],[2.95,42.83],[2.95,42.83],[2.96,42.84],[2.96,42.84],[2.96,42.83],[2.96,42.83],[2.97,42.83],[2.96,42.83],[2.97,42.82],[2.97,42.81],[2.98,42.8],[3,42.8],[3.01,42.81],[3.02,42.8],[3.02,42.81],[3.03,42.81],[3.02,42.81],[3.02,42.82],[3.02,42.82],[3.02,42.83],[3.01,42.83],[3.02,42.83],[3.02,42.84],[3.02,42.84],[3.02,42.84],[3.03,42.85],[3.03,42.85],[3.03,42.84],[3.03,42.84],[3.03,42.85],[3.04,42.85],[3.03,42.85],[3.04,42.85],[3.03,42.85],[3.03,42.85],[3.04,42.87],[3.04,42.87],[3.04,42.87],[3.05,42.87],[3.05,42.87],[3.05,42.87],[3.05,42.87],[3.04,42.82],[3.04,42.76],[3.04,42.75],[3.04,42.74],[3.04,42.72],[3.03,42.67],[3.03,42.66],[3.04,42.66],[3.03,42.66],[3.03,42.65],[3.03,42.64],[3.04,42.62],[3.04,42.62],[3.04,42.62],[3.04,42.62],[3.04,42.61],[3.03,42.61],[3.04,42.61],[3.04,42.6],[3.04,42.6],[3.04,42.61],[3.04,42.61],[3.04,42.59],[3.05,42.59],[3.05,42.55],[3.05,42.54],[3.05,42.54],[3.06,42.54],[3.05,42.54],[3.06,42.54],[3.07,42.54],[3.08,42.53],[3.09,42.53],[3.09,42.52],[3.09,42.53],[3.1,42.52],[3.1,42.53],[3.1,42.52],[3.1,42.53],[3.11,42.53],[3.11,42.53],[3.11,42.52],[3.11,42.52],[3.11,42.52],[3.11,42.52],[3.11,42.52],[3.11,42.52],[3.12,42.52],[3.12,42.52],[3.13,42.52],[3.14,42.52],[3.13,42.51],[3.13,42.51],[3.12,42.5],[3.13,42.5],[3.12,42.5],[3.13,42.5],[3.13,42.5],[3.14,42.5],[3.14,42.5],[3.13,42.5],[3.13,42.49],[3.13,42.49],[3.13,42.49],[3.13,42.48],[3.15,42.48],[3.16,42.48],[3.16,42.47],[3.16,42.47],[3.16,42.47],[3.16,42.46],[3.16,42.46],[3.16,42.46],[3.17,42.46],[3.16,42.45],[3.16,42.45],[3.17,42.45],[3.17,42.44],[3.17,42.44],[3.18,42.44],[3.18,42.44],[3.18,42.44],[3.17,42.44],[3.14,42.43],[3.12,42.44],[3.12,42.44],[3.11,42.43],[3.1,42.43],[3.1,42.42],[3.09,42.43],[3.07,42.44],[3.07,42.44],[3.05,42.46],[3.04,42.47],[3.03,42.47],[3.01,42.47],[3,42.47],[2.99,42.47],[2.98,42.47],[2.97,42.47],[2.95,42.48],[2.93,42.47],[2.92,42.46],[2.92,42.46],[2.88,42.46],[2.87,42.47],[2.87,42.47],[2.86,42.46],[2.86,42.45],[2.84,42.46],[2.83,42.44],[2.82,42.44],[2.82,42.44],[2.8,42.42],[2.8,42.42],[2.78,42.41],[2.78,42.41],[2.77,42.41],[2.76,42.42],[2.76,42.42],[2.75,42.43],[2.72,42.42],[2.69,42.41],[2.67,42.4],[2.67,42.39],[2.67,42.39],[2.65,42.39],[2.65,42.38],[2.66,42.38],[2.66,42.37],[2.66,42.37],[2.66,42.37],[2.67,42.36],[2.67,42.36],[2.68,42.36],[2.68,42.34],[2.67,42.34],[2.66,42.34],[2.61,42.35],[2.58,42.36],[2.57,42.36],[2.56,42.35],[2.55,42.34],[2.55,42.34],[2.54,42.33],[2.53,42.33],[2.5,42.34],[2.48,42.34],[2.48,42.35],[2.47,42.36],[2.46,42.36],[2.46,42.37],[2.45,42.37],[2.44,42.37],[2.44,42.38],[2.43,42.38],[2.43,42.38],[2.43,42.39],[2.41,42.39],[2.4,42.4],[2.38,42.4],[2.37,42.4],[2.36,42.4],[2.35,42.41],[2.34,42.41],[2.33,42.42],[2.32,42.42],[2.32,42.42],[2.32,42.43],[2.31,42.43],[2.3,42.42],[2.29,42.42],[2.26,42.44],[2.25,42.43],[2.23,42.43],[2.21,42.42],[2.21,42.42],[2.19,42.42],[2.18,42.42],[2.16,42.42],[2.13,42.41],[2.12,42.41],[2.12,42.4],[2.12,42.39],[2.11,42.39],[2.12,42.38],[2.09,42.37],[2.09,42.36],[2.08,42.36],[2.08,42.36],[2.08,42.36],[2.06,42.36],[2.05,42.36],[2.05,42.36],[2.05,42.36],[2.02,42.36],[2.02,42.35],[1.99,42.36],[1.98,42.37],[1.97,42.37],[1.96,42.38],[1.96,42.39],[1.96,42.39],[1.96,42.4],[1.96,42.41],[1.96,42.42],[1.94,42.43],[1.94,42.44],[1.93,42.45],[1.92,42.45],[1.92,42.45],[1.9,42.45],[1.9,42.45],[1.9,42.45],[1.89,42.45],[1.89,42.45],[1.88,42.45],[1.88,42.46],[1.87,42.46],[1.86,42.46],[1.85,42.47],[1.85,42.47],[1.84,42.47],[1.85,42.47],[1.84,42.48],[1.83,42.48],[1.82,42.48],[1.82,42.48],[1.81,42.49],[1.8,42.49],[1.79,42.49],[1.78,42.49],[1.77,42.49],[1.75,42.49],[1.73,42.49],[1.73,42.5],[1.72,42.5],[1.72,42.51],[1.72,42.52],[1.73,42.54],[1.74,42.57],[1.75,42.57],[1.78,42.58],[1.79,42.57],[1.8,42.57],[1.82,42.58],[1.84,42.58],[1.87,42.58],[1.87,42.58],[1.87,42.59],[1.89,42.59],[1.89,42.6],[1.89,42.61],[1.9,42.61],[1.91,42.61],[1.92,42.61],[1.93,42.61],[1.94,42.61],[1.95,42.62],[1.97,42.62],[1.98,42.62],[1.98,42.63],[1.99,42.65],[2,42.66],[2,42.66],[2.02,42.65],[2.03,42.65],[2.04,42.66],[2.05,42.66],[2.06,42.66],[2.07,42.67],[2.11,42.66],[2.13,42.67],[2.14,42.66],[2.15,42.66],[2.17,42.66],[2.17,42.67],[2.18,42.68],[2.17,42.69],[2.16,42.7],[2.15,42.7],[2.14,42.71],[2.14,42.71],[2.09,42.74],[2.09,42.75],[2.06,42.76],[2.04,42.75],[2.03,42.75],[2.03,42.74],[2.02,42.74],[2,42.73],[2,42.74],[1.99,42.73],[1.95,42.74],[1.94,42.75],[1.93,42.75],[1.93,42.76],[1.91,42.76],[1.91,42.77],[1.91,42.77],[1.92,42.77],[1.93,42.77],[1.9,42.8],[1.9,42.81],[1.87,42.81],[1.86,42.82],[1.86,42.83],[1.88,42.84],[1.88,42.85],[1.95,42.86],[1.99,42.87],[1.98,42.88],[1.99,42.91],[1.98,42.93],[1.93,42.94],[1.94,42.95],[1.95,42.96],[1.95,42.96],[1.96,42.96],[1.98,42.96],[1.99,42.95],[2,42.95],[2,42.96],[1.99,42.96],[1.99,42.97],[1.98,42.99],[1.99,42.99],[1.99,43],[1.97,43.01],[1.99,43.02],[1.99,43.03],[1.98,43.04],[1.96,43.05],[1.95,43.05],[1.95,43.05],[1.94,43.06],[1.94,43.07],[1.96,43.07],[1.96,43.07],[1.96,43.08],[1.95,43.08],[1.96,43.09],[1.95,43.1],[1.95,43.11],[1.95,43.12],[1.93,43.12],[1.93,43.13],[1.92,43.13],[1.9,43.13],[1.89,43.12],[1.89,43.12],[1.88,43.13],[1.88,43.15],[1.87,43.14],[1.86,43.14],[1.85,43.16],[1.85,43.16],[1.85,43.15],[1.83,43.15],[1.82,43.15],[1.8,43.16],[1.78,43.15],[1.78,43.16],[1.75,43.17],[1.74,43.18],[1.73,43.19],[1.71,43.19],[1.71,43.19],[1.71,43.2],[1.72,43.21],[1.72,43.22],[1.72,43.22],[1.72,43.23],[1.7,43.25],[1.7,43.26],[1.69,43.27],[1.7,43.28],[1.71,43.29],[1.71,43.3],[1.7,43.3],[1.74,43.32],[1.72,43.33],[1.73,43.34],[1.72,43.34],[1.74,43.34],[1.75,43.34],[1.75,43.35],[1.77,43.34],[1.78,43.34],[1.78,43.35],[1.8,43.34],[1.81,43.34],[1.82,43.35],[1.81,43.36],[1.8,43.38],[1.81,43.38],[1.8,43.39],[1.83,43.39],[1.82,43.4],[1.82,43.41],[1.83,43.42],[1.84,43.42],[1.85,43.43],[1.84,43.43],[1.86,43.44],[1.87,43.44],[1.87,43.43],[1.9,43.41],[1.9,43.41],[1.9,43.4],[1.9,43.39],[1.91,43.4],[1.91,43.4],[1.92,43.41],[1.92,43.42],[1.93,43.42],[1.95,43.42],[1.96,43.43],[1.96,43.42],[1.97,43.42],[1.97,43.42],[1.99,43.41],[2.01,43.42],[2.02,43.42],[2.03,43.42],[2.04,43.42],[2.04,43.43],[2.03,43.44],[2.05,43.43],[2.06,43.42],[2.07,43.41],[2.07,43.4],[2.07,43.4],[2.09,43.4],[2.09,43.39],[2.1,43.4],[2.11,43.39],[2.11,43.4],[2.13,43.4],[2.13,43.4],[2.14,43.4],[2.16,43.41],[2.17,43.42],[2.19,43.39],[2.22,43.38],[2.23,43.41],[2.22,43.42],[2.22,43.43],[2.26,43.45],[2.26,43.46],[2.27,43.45],[2.28,43.44],[2.3,43.45],[2.31,43.44],[2.35,43.43],[2.37,43.42],[2.38,43.42],[2.4,43.42],[2.41,43.42],[2.4,43.42],[2.41,43.43],[2.43,43.43],[2.45,43.43],[2.47,43.44],[2.49,43.44],[2.5,43.43],[2.51,43.43],[2.52,43.42],[2.55,43.42],[2.56,43.42],[2.57,43.42],[2.58,43.42],[2.6,43.43],[2.6,43.43],[2.61,43.43],[2.61,43.44],[2.62,43.44],[2.64,43.46],[2.64,43.47],[2.64,43.47],[2.66,43.46],[2.67,43.47],[2.66,43.48],[2.66,43.49],[2.66,43.5],[2.66,43.52],[2.68,43.51],[2.63,43.55],[2.62,43.57],[2.63,43.58],[2.63,43.59],[2.62,43.59],[2.62,43.6],[2.62,43.6],[2.63,43.61],[2.63,43.63],[2.65,43.66],[2.65,43.66],[2.65,43.65],[2.67,43.65],[2.68,43.65],[2.69,43.65],[2.72,43.64],[2.74,43.63],[2.75,43.62],[2.75,43.61],[2.77,43.62],[2.78,43.63],[2.8,43.62],[2.81,43.64],[2.83,43.64],[2.85,43.64],[2.87,43.65],[2.88,43.66],[2.88,43.66],[2.91,43.65],[2.92,43.66],[2.92,43.69],[2.94,43.69],[2.94,43.69],[2.94,43.69],[2.96,43.7],[2.98,43.71],[3,43.71],[3.01,43.7],[3.02,43.7],[3.03,43.69],[3.05,43.7],[3.06,43.69],[3.06,43.7],[3.07,43.71],[3.06,43.72],[3.06,43.73],[3.05,43.73],[3.06,43.74],[3.05,43.74],[3.06,43.75],[3.07,43.76],[3.07,43.77],[3.06,43.78],[3.06,43.79],[3.05,43.8],[3.06,43.81],[3.06,43.82],[3.06,43.84],[3.09,43.84],[3.11,43.83],[3.13,43.82],[3.15,43.81],[3.16,43.82],[3.18,43.81],[3.21,43.81],[3.22,43.82],[3.24,43.83],[3.25,43.83],[3.25,43.84],[3.24,43.85],[3.24,43.86],[3.24,43.87],[3.26,43.88],[3.26,43.89],[3.27,43.9],[3.28,43.9],[3.29,43.89],[3.3,43.89],[3.32,43.89],[3.34,43.89],[3.34,43.9],[3.36,43.91],[3.35,43.94],[3.36,43.95],[3.38,43.96],[3.38,43.97],[3.41,43.97],[3.42,43.99],[3.44,44],[3.45,44.02],[3.42,44.04],[3.4,44.04],[3.39,44.05],[3.37,44.05],[3.37,44.06],[3.35,44.05],[3.34,44.06],[3.33,44.07],[3.33,44.08],[3.33,44.08],[3.32,44.08],[3.31,44.07],[3.3,44.07],[3.27,44.09],[3.26,44.09],[3.29,44.1],[3.31,44.11],[3.32,44.11],[3.32,44.13],[3.32,44.14],[3.33,44.14],[3.34,44.16],[3.37,44.17],[3.37,44.18],[3.36,44.19],[3.36,44.2],[3.33,44.2],[3.32,44.2],[3.3,44.21],[3.29,44.21],[3.29,44.2],[3.26,44.2],[3.24,44.19],[3.2,44.19],[3.2,44.19],[3.21,44.2],[3.22,44.2],[3.23,44.23],[3.2,44.24],[3.19,44.25],[3.17,44.25],[3.16,44.25],[3.15,44.27],[3.15,44.28],[3.14,44.26],[3.13,44.26],[3.12,44.26],[3.13,44.29],[3.15,44.31],[3.15,44.32],[3.15,44.33],[3.14,44.33],[3.13,44.34],[3.13,44.36],[3.12,44.36],[3.12,44.38],[3.12,44.39],[3.14,44.39],[3.14,44.41],[3.13,44.41],[3.13,44.42],[3.14,44.43],[3.14,44.44],[3.14,44.44],[3.14,44.45],[3.14,44.46],[3.12,44.46],[3.12,44.47],[3.1,44.48],[3.07,44.5],[3.08,44.52],[3.07,44.53],[3.08,44.56],[3.08,44.57],[3.08,44.57],[3.06,44.58],[3.05,44.59],[3.04,44.6],[3.02,44.61],[3.01,44.62],[2.98,44.64],[2.98,44.65],[2.98,44.65],[3,44.68],[3.02,44.71],[3.03,44.72],[3.04,44.72],[3.03,44.73],[3.03,44.73],[3.03,44.75],[3.05,44.76],[3.04,44.77],[3.05,44.78],[3.05,44.8],[3.05,44.8],[3.06,44.82],[3.08,44.82],[3.07,44.84],[3.1,44.83],[3.1,44.84],[3.09,44.86],[3.1,44.87],[3.1,44.88],[3.12,44.89],[3.13,44.9],[3.14,44.9],[3.16,44.88],[3.16,44.88],[3.17,44.87],[3.18,44.86],[3.19,44.86],[3.2,44.87],[3.21,44.87],[3.23,44.89],[3.23,44.9],[3.23,44.91],[3.25,44.92],[3.24,44.93],[3.25,44.94],[3.25,44.94],[3.26,44.94],[3.27,44.94],[3.26,44.94],[3.27,44.93],[3.29,44.93],[3.3,44.94],[3.31,44.94],[3.32,44.95],[3.34,44.96],[3.35,44.95],[3.36,44.97],[3.37,44.98],[3.37,44.96]],[[1.98,42.49],[1.98,42.49],[1.96,42.48],[1.96,42.46],[1.96,42.46],[1.96,42.45],[1.97,42.45],[1.98,42.45],[2.01,42.45],[2.01,42.45],[1.99,42.46],[1.99,42.47],[1.99,42.48],[1.99,42.48],[2,42.49],[1.99,42.49],[1.98,42.49]]],[[[3.7,43.39],[3.7,43.39],[3.71,43.39],[3.7,43.39]]],[[[3.08,43.05],[3.08,43.05],[3.08,43.06],[3.08,43.06],[3.08,43.05]]],[[[3.02,42.86],[3.03,42.86],[3.02,42.85],[3.02,42.85],[3.02,42.86]]],[[[3.01,42.9],[3.01,42.9],[3.01,42.9],[3.01,42.9],[3.01,42.9]]],[[[3,43.07],[3.01,43.07],[3,43.06],[3,43.07],[2.99,43.07],[3,43.07]]],[[[3,43.09],[3,43.09],[2.99,43.08],[3,43.08],[3,43.09],[3,43.09]]]]},"properties":{"id":20,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.28,45.11],[6.29,45.11],[6.32,45.11],[6.33,45.12],[6.33,45.12],[6.37,45.1],[6.37,45.08],[6.36,45.07],[6.4,45.06],[6.41,45.06],[6.42,45.06],[6.43,45.06],[6.45,45.05],[6.49,45.06],[6.49,45.07],[6.48,45.09],[6.51,45.11],[6.53,45.1],[6.54,45.1],[6.56,45.1],[6.56,45.11],[6.58,45.12],[6.59,45.12],[6.61,45.12],[6.63,45.11],[6.63,45.11],[6.63,45.11],[6.64,45.1],[6.65,45.08],[6.67,45.06],[6.68,45.03],[6.69,45.02],[6.74,45.02],[6.75,45.02],[6.75,45],[6.75,44.99],[6.76,44.97],[6.76,44.96],[6.76,44.91],[6.81,44.89],[6.83,44.87],[6.87,44.85],[6.91,44.85],[6.93,44.86],[6.94,44.86],[6.95,44.86],[6.97,44.85],[7.01,44.85],[7,44.84],[7.01,44.83],[7.02,44.82],[7.02,44.81],[7.01,44.79],[7.03,44.77],[7.02,44.75],[7.04,44.72],[7.06,44.71],[7.08,44.68],[7.07,44.68],[7.06,44.68],[7.06,44.68],[7.03,44.69],[7,44.69],[6.97,44.67],[6.97,44.66],[6.95,44.65],[6.98,44.63],[6.97,44.62],[6.96,44.62],[6.94,44.58],[6.92,44.56],[6.89,44.55],[6.87,44.53],[6.89,44.49],[6.92,44.47],[6.93,44.46],[6.95,44.44],[6.95,44.43],[6.94,44.43],[6.93,44.42],[6.92,44.42],[6.91,44.42],[6.91,44.38],[6.9,44.37],[6.93,44.35],[6.94,44.33],[6.97,44.31],[6.97,44.3],[6.98,44.29],[6.99,44.29],[7,44.28],[7.01,44.24],[7.01,44.24],[7.01,44.24],[7.02,44.23],[7.02,44.23],[7.04,44.23],[7.08,44.23],[7.1,44.22],[7.12,44.21],[7.14,44.2],[7.16,44.21],[7.17,44.2],[7.2,44.2],[7.2,44.19],[7.2,44.18],[7.22,44.17],[7.23,44.17],[7.24,44.17],[7.24,44.17],[7.25,44.16],[7.26,44.15],[7.28,44.14],[7.3,44.15],[7.31,44.15],[7.35,44.15],[7.35,44.13],[7.36,44.12],[7.37,44.12],[7.39,44.12],[7.39,44.12],[7.41,44.12],[7.43,44.12],[7.43,44.12],[7.43,44.13],[7.46,44.13],[7.51,44.15],[7.53,44.14],[7.54,44.15],[7.57,44.16],[7.61,44.15],[7.63,44.18],[7.64,44.18],[7.68,44.18],[7.69,44.17],[7.67,44.16],[7.67,44.15],[7.68,44.15],[7.67,44.13],[7.69,44.1],[7.71,44.09],[7.72,44.08],[7.71,44.06],[7.7,44.04],[7.67,44.03],[7.66,44.02],[7.66,44.01],[7.67,44],[7.65,43.98],[7.61,43.96],[7.6,43.96],[7.57,43.95],[7.57,43.93],[7.56,43.92],[7.56,43.91],[7.56,43.9],[7.51,43.88],[7.5,43.87],[7.5,43.85],[7.51,43.84],[7.52,43.8],[7.53,43.78],[7.51,43.78],[7.51,43.78],[7.51,43.78],[7.51,43.77],[7.49,43.77],[7.48,43.76],[7.48,43.75],[7.49,43.75],[7.49,43.75],[7.47,43.75],[7.47,43.76],[7.46,43.76],[7.45,43.76],[7.45,43.75],[7.44,43.75],[7.44,43.75],[7.44,43.75],[7.41,43.73],[7.41,43.73],[7.41,43.73],[7.42,43.73],[7.41,43.72],[7.39,43.72],[7.39,43.72],[7.38,43.72],[7.37,43.72],[7.36,43.72],[7.35,43.72],[7.35,43.71],[7.34,43.71],[7.34,43.71],[7.33,43.7],[7.33,43.7],[7.33,43.7],[7.33,43.7],[7.33,43.69],[7.34,43.69],[7.35,43.69],[7.35,43.69],[7.34,43.68],[7.34,43.69],[7.34,43.68],[7.34,43.69],[7.34,43.69],[7.34,43.68],[7.33,43.67],[7.33,43.67],[7.32,43.68],[7.32,43.68],[7.32,43.69],[7.32,43.69],[7.33,43.7],[7.33,43.7],[7.32,43.7],[7.32,43.71],[7.31,43.71],[7.31,43.7],[7.31,43.7],[7.31,43.69],[7.31,43.68],[7.3,43.69],[7.29,43.69],[7.29,43.69],[7.29,43.69],[7.29,43.69],[7.29,43.69],[7.28,43.69],[7.29,43.69],[7.28,43.69],[7.26,43.69],[7.25,43.69],[7.24,43.69],[7.23,43.68],[7.23,43.68],[7.23,43.67],[7.23,43.66],[7.23,43.66],[7.23,43.66],[7.23,43.66],[7.22,43.66],[7.22,43.66],[7.21,43.65],[7.2,43.65],[7.2,43.65],[7.2,43.65],[7.2,43.66],[7.19,43.66],[7.19,43.66],[7.19,43.66],[7.18,43.65],[7.18,43.66],[7.17,43.65],[7.17,43.66],[7.16,43.65],[7.15,43.65],[7.15,43.64],[7.14,43.64],[7.14,43.63],[7.14,43.63],[7.13,43.63],[7.13,43.6],[7.13,43.59],[7.13,43.59],[7.13,43.59],[7.13,43.59],[7.13,43.59],[7.13,43.59],[7.13,43.57],[7.13,43.57],[7.14,43.57],[7.14,43.57],[7.14,43.56],[7.14,43.56],[7.14,43.56],[7.14,43.56],[7.14,43.55],[7.14,43.55],[7.14,43.55],[7.13,43.54],[7.13,43.55],[7.12,43.55],[7.12,43.54],[7.12,43.54],[7.12,43.54],[7.12,43.55],[7.12,43.55],[7.12,43.55],[7.12,43.56],[7.11,43.56],[7.11,43.56],[7.11,43.56],[7.11,43.57],[7.1,43.57],[7.08,43.57],[7.08,43.57],[7.08,43.56],[7.08,43.56],[7.08,43.56],[7.07,43.56],[7.07,43.56],[7.06,43.55],[7.05,43.55],[7.04,43.54],[7.04,43.54],[7.04,43.53],[7.03,43.54],[7.04,43.54],[7.03,43.54],[7.03,43.54],[7.03,43.55],[7.02,43.55],[7.02,43.55],[7.02,43.54],[7.01,43.55],[6.99,43.55],[6.97,43.55],[6.96,43.54],[6.96,43.54],[6.95,43.53],[6.95,43.53],[6.95,43.53],[6.95,43.52],[6.94,43.52],[6.94,43.52],[6.94,43.52],[6.94,43.51],[6.94,43.51],[6.94,43.51],[6.94,43.51],[6.94,43.51],[6.95,43.51],[6.95,43.5],[6.96,43.5],[6.96,43.5],[6.95,43.5],[6.95,43.49],[6.95,43.49],[6.95,43.49],[6.95,43.49],[6.95,43.48],[6.94,43.48],[6.93,43.48],[6.93,43.48],[6.93,43.48],[6.93,43.48],[6.93,43.48],[6.93,43.48],[6.93,43.47],[6.92,43.47],[6.92,43.47],[6.93,43.47],[6.92,43.47],[6.92,43.46],[6.92,43.46],[6.92,43.46],[6.92,43.46],[6.92,43.45],[6.92,43.45],[6.92,43.45],[6.92,43.45],[6.91,43.45],[6.91,43.44],[6.91,43.45],[6.9,43.44],[6.9,43.44],[6.9,43.44],[6.89,43.44],[6.9,43.43],[6.89,43.43],[6.89,43.43],[6.89,43.43],[6.89,43.43],[6.88,43.43],[6.88,43.42],[6.87,43.43],[6.87,43.42],[6.87,43.43],[6.87,43.43],[6.87,43.43],[6.86,43.43],[6.86,43.43],[6.86,43.43],[6.86,43.42],[6.86,43.42],[6.86,43.42],[6.86,43.42],[6.86,43.41],[6.86,43.41],[6.85,43.41],[6.85,43.41],[6.83,43.42],[6.83,43.42],[6.83,43.42],[6.82,43.42],[6.82,43.42],[6.81,43.42],[6.81,43.41],[6.81,43.41],[6.8,43.41],[6.8,43.41],[6.79,43.41],[6.79,43.41],[6.79,43.41],[6.79,43.41],[6.79,43.41],[6.79,43.41],[6.78,43.41],[6.78,43.41],[6.77,43.41],[6.77,43.42],[6.77,43.42],[6.77,43.42],[6.77,43.42],[6.76,43.42],[6.76,43.42],[6.75,43.42],[6.75,43.42],[6.75,43.42],[6.74,43.42],[6.74,43.42],[6.74,43.41],[6.74,43.41],[6.73,43.41],[6.73,43.41],[6.73,43.41],[6.73,43.4],[6.73,43.4],[6.72,43.4],[6.73,43.4],[6.72,43.4],[6.73,43.4],[6.73,43.39],[6.73,43.39],[6.73,43.39],[6.73,43.39],[6.73,43.38],[6.72,43.38],[6.72,43.38],[6.72,43.38],[6.71,43.37],[6.71,43.37],[6.72,43.37],[6.71,43.37],[6.71,43.36],[6.72,43.36],[6.72,43.36],[6.72,43.36],[6.71,43.35],[6.72,43.35],[6.71,43.35],[6.72,43.35],[6.72,43.35],[6.71,43.34],[6.7,43.34],[6.69,43.34],[6.69,43.34],[6.69,43.34],[6.69,43.34],[6.68,43.34],[6.67,43.33],[6.67,43.33],[6.67,43.32],[6.67,43.32],[6.67,43.31],[6.66,43.31],[6.64,43.3],[6.64,43.31],[6.64,43.31],[6.63,43.31],[6.63,43.3],[6.63,43.31],[6.63,43.3],[6.62,43.3],[6.62,43.29],[6.61,43.29],[6.6,43.29],[6.6,43.28],[6.59,43.28],[6.58,43.28],[6.59,43.27],[6.59,43.27],[6.59,43.27],[6.59,43.27],[6.59,43.27],[6.59,43.26],[6.59,43.26],[6.59,43.26],[6.59,43.26],[6.61,43.26],[6.62,43.26],[6.62,43.27],[6.63,43.27],[6.63,43.27],[6.63,43.27],[6.63,43.27],[6.64,43.27],[6.64,43.27],[6.64,43.27],[6.65,43.27],[6.65,43.27],[6.65,43.27],[6.66,43.27],[6.66,43.26],[6.67,43.27],[6.67,43.28],[6.68,43.28],[6.68,43.27],[6.69,43.27],[6.7,43.27],[6.7,43.26],[6.69,43.26],[6.69,43.26],[6.69,43.25],[6.68,43.25],[6.68,43.24],[6.67,43.25],[6.67,43.24],[6.67,43.24],[6.66,43.24],[6.66,43.24],[6.66,43.22],[6.66,43.21],[6.67,43.21],[6.67,43.21],[6.67,43.21],[6.68,43.21],[6.68,43.2],[6.68,43.2],[6.67,43.2],[6.67,43.19],[6.66,43.19],[6.66,43.2],[6.65,43.19],[6.64,43.19],[6.64,43.18],[6.64,43.18],[6.64,43.18],[6.64,43.17],[6.64,43.17],[6.65,43.17],[6.64,43.17],[6.64,43.17],[6.63,43.17],[6.63,43.17],[6.62,43.16],[6.62,43.16],[6.62,43.16],[6.62,43.16],[6.62,43.16],[6.61,43.17],[6.61,43.17],[6.61,43.17],[6.6,43.17],[6.6,43.18],[6.6,43.18],[6.59,43.19],[6.58,43.19],[6.58,43.19],[6.58,43.19],[6.57,43.19],[6.57,43.19],[6.56,43.19],[6.55,43.19],[6.54,43.18],[6.53,43.17],[6.54,43.17],[6.54,43.17],[6.54,43.17],[6.54,43.17],[6.54,43.16],[6.52,43.17],[6.52,43.16],[6.52,43.16],[6.51,43.16],[6.51,43.16],[6.5,43.16],[6.49,43.15],[6.49,43.15],[6.49,43.15],[6.48,43.15],[6.48,43.16],[6.47,43.16],[6.47,43.15],[6.47,43.15],[6.47,43.16],[6.46,43.16],[6.46,43.15],[6.45,43.16],[6.45,43.15],[6.45,43.15],[6.45,43.15],[6.45,43.15],[6.45,43.15],[6.45,43.15],[6.45,43.14],[6.44,43.14],[6.44,43.14],[6.44,43.15],[6.44,43.15],[6.43,43.15],[6.42,43.15],[6.42,43.15],[6.42,43.15],[6.41,43.15],[6.4,43.15],[6.4,43.14],[6.39,43.15],[6.39,43.14],[6.39,43.14],[6.38,43.14],[6.38,43.14],[6.38,43.14],[6.37,43.13],[6.37,43.14],[6.37,43.13],[6.36,43.13],[6.36,43.12],[6.37,43.12],[6.37,43.12],[6.36,43.12],[6.36,43.12],[6.36,43.12],[6.36,43.11],[6.36,43.11],[6.36,43.1],[6.37,43.1],[6.37,43.09],[6.37,43.09],[6.37,43.09],[6.36,43.09],[6.36,43.09],[6.36,43.09],[6.35,43.09],[6.35,43.09],[6.34,43.09],[6.34,43.09],[6.33,43.09],[6.33,43.09],[6.33,43.09],[6.32,43.09],[6.32,43.09],[6.32,43.09],[6.33,43.1],[6.33,43.1],[6.32,43.1],[6.32,43.1],[6.32,43.1],[6.32,43.1],[6.32,43.11],[6.31,43.11],[6.3,43.11],[6.3,43.11],[6.3,43.11],[6.3,43.11],[6.29,43.11],[6.29,43.11],[6.29,43.11],[6.29,43.11],[6.28,43.12],[6.28,43.12],[6.28,43.12],[6.28,43.12],[6.27,43.12],[6.26,43.12],[6.25,43.12],[6.25,43.11],[6.24,43.11],[6.24,43.12],[6.24,43.11],[6.21,43.12],[6.2,43.11],[6.2,43.11],[6.2,43.11],[6.2,43.11],[6.19,43.11],[6.18,43.11],[6.18,43.1],[6.17,43.1],[6.16,43.09],[6.16,43.08],[6.16,43.08],[6.16,43.08],[6.16,43.08],[6.15,43.07],[6.15,43.06],[6.15,43.06],[6.15,43.05],[6.15,43.04],[6.15,43.04],[6.16,43.03],[6.17,43.04],[6.17,43.03],[6.17,43.03],[6.17,43.03],[6.16,43.03],[6.16,43.03],[6.15,43.03],[6.15,43.03],[6.14,43.03],[6.13,43.03],[6.14,43.04],[6.13,43.03],[6.13,43.03],[6.11,43.03],[6.11,43.03],[6.11,43.03],[6.11,43.03],[6.1,43.03],[6.1,43.03],[6.1,43.03],[6.09,43.03],[6.1,43.03],[6.09,43.03],[6.09,43.04],[6.09,43.04],[6.1,43.04],[6.1,43.04],[6.1,43.04],[6.1,43.04],[6.11,43.04],[6.11,43.04],[6.11,43.04],[6.12,43.04],[6.12,43.04],[6.13,43.04],[6.13,43.05],[6.13,43.06],[6.13,43.08],[6.12,43.08],[6.12,43.08],[6.11,43.08],[6.1,43.08],[6.09,43.09],[6.08,43.09],[6.08,43.09],[6.08,43.09],[6.08,43.09],[6.07,43.08],[6.07,43.09],[6.07,43.08],[6.06,43.08],[6.05,43.08],[6.04,43.08],[6.03,43.08],[6.03,43.08],[6.02,43.08],[6.02,43.08],[6.02,43.08],[6.02,43.09],[6.02,43.09],[6.02,43.09],[6.02,43.1],[6.02,43.1],[6.02,43.1],[6.01,43.1],[6.01,43.1],[5.99,43.1],[5.99,43.1],[5.99,43.1],[5.99,43.11],[5.98,43.11],[5.98,43.11],[5.97,43.11],[5.97,43.1],[5.97,43.1],[5.97,43.11],[5.96,43.11],[5.95,43.11],[5.96,43.11],[5.95,43.11],[5.95,43.11],[5.94,43.11],[5.94,43.11],[5.94,43.11],[5.93,43.1],[5.93,43.1],[5.93,43.1],[5.92,43.1],[5.93,43.11],[5.93,43.12],[5.93,43.11],[5.93,43.12],[5.93,43.12],[5.93,43.12],[5.93,43.12],[5.93,43.12],[5.93,43.12],[5.93,43.11],[5.92,43.12],[5.92,43.12],[5.93,43.12],[5.92,43.12],[5.92,43.12],[5.92,43.12],[5.92,43.12],[5.91,43.11],[5.91,43.12],[5.91,43.12],[5.91,43.12],[5.91,43.12],[5.91,43.12],[5.91,43.12],[5.91,43.11],[5.91,43.11],[5.91,43.11],[5.91,43.11],[5.9,43.11],[5.89,43.12],[5.89,43.12],[5.89,43.11],[5.89,43.11],[5.89,43.11],[5.89,43.1],[5.89,43.1],[5.9,43.11],[5.9,43.11],[5.9,43.1],[5.91,43.1],[5.91,43.1],[5.91,43.1],[5.91,43.1],[5.91,43.09],[5.9,43.09],[5.9,43.08],[5.9,43.08],[5.9,43.08],[5.9,43.08],[5.9,43.08],[5.91,43.09],[5.91,43.08],[5.91,43.08],[5.91,43.08],[5.91,43.08],[5.91,43.08],[5.91,43.08],[5.92,43.09],[5.93,43.08],[5.93,43.08],[5.93,43.08],[5.93,43.08],[5.93,43.08],[5.94,43.08],[5.95,43.08],[5.95,43.07],[5.95,43.07],[5.94,43.07],[5.94,43.07],[5.93,43.07],[5.92,43.07],[5.91,43.07],[5.91,43.07],[5.91,43.07],[5.91,43.07],[5.9,43.07],[5.9,43.07],[5.9,43.08],[5.89,43.08],[5.89,43.08],[5.88,43.07],[5.88,43.07],[5.88,43.07],[5.87,43.07],[5.87,43.07],[5.86,43.06],[5.86,43.05],[5.86,43.05],[5.86,43.05],[5.86,43.05],[5.85,43.05],[5.85,43.05],[5.83,43.05],[5.83,43.05],[5.82,43.05],[5.82,43.06],[5.81,43.07],[5.81,43.07],[5.79,43.07],[5.79,43.07],[5.8,43.08],[5.8,43.08],[5.81,43.08],[5.81,43.09],[5.81,43.09],[5.81,43.09],[5.81,43.09],[5.81,43.1],[5.81,43.1],[5.8,43.1],[5.81,43.1],[5.81,43.11],[5.81,43.11],[5.8,43.12],[5.79,43.11],[5.79,43.11],[5.79,43.11],[5.79,43.12],[5.77,43.12],[5.78,43.12],[5.78,43.12],[5.77,43.12],[5.77,43.13],[5.78,43.13],[5.78,43.13],[5.77,43.14],[5.76,43.14],[5.76,43.13],[5.75,43.13],[5.75,43.13],[5.75,43.13],[5.75,43.14],[5.75,43.13],[5.74,43.13],[5.74,43.13],[5.73,43.14],[5.73,43.13],[5.73,43.14],[5.72,43.14],[5.72,43.15],[5.72,43.15],[5.71,43.14],[5.71,43.15],[5.71,43.14],[5.71,43.15],[5.7,43.14],[5.69,43.14],[5.69,43.15],[5.69,43.15],[5.69,43.15],[5.69,43.15],[5.69,43.15],[5.68,43.16],[5.68,43.16],[5.68,43.16],[5.69,43.16],[5.7,43.17],[5.69,43.17],[5.69,43.18],[5.67,43.18],[5.67,43.18],[5.66,43.18],[5.66,43.18],[5.65,43.19],[5.65,43.19],[5.64,43.19],[5.64,43.19],[5.63,43.19],[5.62,43.19],[5.61,43.18],[5.61,43.18],[5.61,43.17],[5.62,43.17],[5.62,43.17],[5.61,43.16],[5.61,43.17],[5.61,43.16],[5.61,43.16],[5.61,43.16],[5.6,43.16],[5.6,43.16],[5.6,43.16],[5.6,43.16],[5.59,43.16],[5.58,43.17],[5.58,43.17],[5.57,43.17],[5.57,43.18],[5.56,43.18],[5.56,43.19],[5.55,43.19],[5.55,43.19],[5.55,43.2],[5.55,43.2],[5.55,43.21],[5.54,43.21],[5.54,43.21],[5.54,43.21],[5.54,43.21],[5.53,43.21],[5.53,43.21],[5.53,43.21],[5.52,43.2],[5.51,43.2],[5.51,43.2],[5.51,43.2],[5.51,43.2],[5.51,43.2],[5.51,43.2],[5.5,43.2],[5.5,43.2],[5.5,43.2],[5.49,43.2],[5.49,43.2],[5.49,43.2],[5.49,43.2],[5.49,43.2],[5.49,43.2],[5.48,43.21],[5.48,43.21],[5.48,43.2],[5.48,43.2],[5.47,43.21],[5.47,43.21],[5.47,43.21],[5.46,43.21],[5.45,43.21],[5.45,43.21],[5.45,43.21],[5.45,43.21],[5.45,43.2],[5.46,43.2],[5.45,43.2],[5.45,43.2],[5.45,43.2],[5.45,43.2],[5.45,43.21],[5.44,43.2],[5.44,43.21],[5.43,43.21],[5.43,43.21],[5.42,43.21],[5.43,43.2],[5.43,43.2],[5.4,43.21],[5.4,43.21],[5.39,43.21],[5.39,43.21],[5.38,43.21],[5.37,43.21],[5.36,43.21],[5.36,43.21],[5.35,43.21],[5.35,43.21],[5.34,43.21],[5.34,43.22],[5.34,43.21],[5.34,43.22],[5.35,43.22],[5.34,43.22],[5.35,43.23],[5.35,43.23],[5.36,43.23],[5.36,43.24],[5.36,43.25],[5.37,43.25],[5.37,43.25],[5.37,43.24],[5.37,43.25],[5.38,43.25],[5.37,43.26],[5.38,43.25],[5.38,43.26],[5.38,43.26],[5.38,43.26],[5.37,43.27],[5.36,43.27],[5.36,43.28],[5.35,43.28],[5.35,43.28],[5.35,43.28],[5.35,43.29],[5.35,43.3],[5.36,43.29],[5.36,43.29],[5.36,43.3],[5.36,43.3],[5.36,43.3],[5.36,43.3],[5.36,43.31],[5.36,43.31],[5.36,43.31],[5.36,43.32],[5.36,43.32],[5.36,43.32],[5.36,43.32],[5.36,43.32],[5.36,43.32],[5.35,43.32],[5.35,43.32],[5.36,43.32],[5.35,43.32],[5.35,43.33],[5.35,43.33],[5.35,43.33],[5.35,43.33],[5.35,43.33],[5.35,43.33],[5.35,43.33],[5.34,43.33],[5.34,43.34],[5.34,43.34],[5.34,43.34],[5.34,43.34],[5.33,43.34],[5.33,43.35],[5.34,43.34],[5.34,43.35],[5.33,43.35],[5.33,43.36],[5.32,43.36],[5.32,43.36],[5.31,43.36],[5.31,43.36],[5.29,43.36],[5.29,43.36],[5.28,43.35],[5.28,43.35],[5.27,43.34],[5.27,43.34],[5.27,43.34],[5.26,43.34],[5.26,43.34],[5.25,43.34],[5.25,43.34],[5.24,43.33],[5.24,43.33],[5.24,43.33],[5.23,43.33],[5.22,43.33],[5.22,43.33],[5.21,43.33],[5.2,43.33],[5.2,43.33],[5.2,43.33],[5.19,43.33],[5.18,43.33],[5.18,43.33],[5.18,43.33],[5.17,43.33],[5.17,43.33],[5.16,43.33],[5.16,43.33],[5.15,43.33],[5.15,43.33],[5.15,43.33],[5.14,43.33],[5.14,43.33],[5.14,43.33],[5.14,43.33],[5.13,43.33],[5.13,43.33],[5.12,43.33],[5.1,43.33],[5.1,43.33],[5.1,43.33],[5.09,43.33],[5.09,43.33],[5.09,43.33],[5.08,43.33],[5.08,43.33],[5.08,43.33],[5.08,43.33],[5.07,43.33],[5.07,43.33],[5.07,43.33],[5.06,43.33],[5.06,43.33],[5.06,43.33],[5.06,43.33],[5.05,43.32],[5.05,43.32],[5.05,43.33],[5.05,43.33],[5.05,43.33],[5.05,43.33],[5.05,43.33],[5.04,43.33],[5.04,43.33],[5.03,43.33],[5.03,43.33],[5.03,43.33],[5.03,43.34],[5.02,43.34],[5.02,43.34],[5.02,43.35],[5.02,43.35],[5.02,43.35],[5.02,43.35],[5.03,43.35],[5.03,43.35],[5.02,43.36],[5.02,43.36],[5.02,43.36],[5.01,43.36],[5.01,43.36],[5.01,43.37],[5,43.38],[5,43.38],[5,43.38],[4.99,43.39],[4.99,43.39],[4.99,43.39],[4.99,43.39],[4.99,43.4],[4.99,43.4],[4.99,43.4],[4.99,43.39],[5,43.4],[5,43.4],[5,43.4],[5,43.4],[4.99,43.4],[4.99,43.4],[4.98,43.4],[4.98,43.4],[4.99,43.4],[4.98,43.4],[4.98,43.4],[4.98,43.4],[4.97,43.4],[4.97,43.4],[4.98,43.4],[4.98,43.41],[4.97,43.41],[4.97,43.41],[4.97,43.42],[4.97,43.42],[4.97,43.42],[4.97,43.43],[4.94,43.43],[4.94,43.43],[4.94,43.43],[4.94,43.43],[4.94,43.43],[4.92,43.43],[4.91,43.43],[4.91,43.42],[4.9,43.42],[4.9,43.41],[4.9,43.41],[4.9,43.42],[4.89,43.41],[4.89,43.41],[4.89,43.4],[4.89,43.4],[4.89,43.41],[4.89,43.42],[4.9,43.43],[4.9,43.43],[4.91,43.43],[4.89,43.43],[4.89,43.43],[4.88,43.42],[4.88,43.42],[4.88,43.43],[4.87,43.43],[4.87,43.43],[4.87,43.43],[4.87,43.43],[4.87,43.44],[4.86,43.45],[4.86,43.45],[4.86,43.45],[4.85,43.45],[4.85,43.45],[4.85,43.45],[4.86,43.44],[4.87,43.42],[4.87,43.42],[4.88,43.41],[4.87,43.41],[4.87,43.4],[4.85,43.41],[4.83,43.43],[4.83,43.43],[4.82,43.42],[4.86,43.4],[4.86,43.4],[4.85,43.4],[4.84,43.41],[4.84,43.41],[4.84,43.4],[4.84,43.39],[4.84,43.4],[4.85,43.39],[4.85,43.39],[4.85,43.39],[4.85,43.39],[4.87,43.39],[4.85,43.39],[4.85,43.38],[4.85,43.38],[4.84,43.38],[4.85,43.38],[4.84,43.38],[4.83,43.38],[4.84,43.38],[4.85,43.37],[4.85,43.37],[4.85,43.38],[4.85,43.37],[4.86,43.37],[4.86,43.37],[4.86,43.37],[4.87,43.37],[4.87,43.37],[4.87,43.36],[4.87,43.36],[4.88,43.36],[4.88,43.36],[4.88,43.36],[4.88,43.36],[4.89,43.36],[4.88,43.36],[4.88,43.36],[4.89,43.36],[4.89,43.36],[4.89,43.36],[4.89,43.36],[4.9,43.36],[4.9,43.37],[4.9,43.37],[4.91,43.37],[4.91,43.38],[4.91,43.38],[4.91,43.37],[4.88,43.35],[4.88,43.35],[4.88,43.35],[4.87,43.35],[4.86,43.36],[4.86,43.36],[4.86,43.35],[4.86,43.35],[4.87,43.35],[4.87,43.35],[4.88,43.35],[4.87,43.35],[4.86,43.33],[4.85,43.33],[4.85,43.33],[4.85,43.34],[4.85,43.34],[4.84,43.34],[4.83,43.34],[4.83,43.33],[4.84,43.33],[4.84,43.33],[4.82,43.34],[4.78,43.35],[4.75,43.35],[4.73,43.35],[4.71,43.35],[4.69,43.35],[4.68,43.35],[4.67,43.35],[4.66,43.35],[4.64,43.35],[4.6,43.36],[4.58,43.36],[4.56,43.38],[4.55,43.38],[4.56,43.39],[4.56,43.39],[4.59,43.4],[4.59,43.4],[4.59,43.41],[4.59,43.42],[4.58,43.44],[4.56,43.44],[4.53,43.45],[4.5,43.46],[4.46,43.46],[4.44,43.46],[4.43,43.45],[4.42,43.45],[4.42,43.45],[4.41,43.45],[4.4,43.45],[4.4,43.45],[4.38,43.45],[4.23,43.46],[4.23,43.48],[4.24,43.49],[4.24,43.5],[4.24,43.5],[4.29,43.51],[4.32,43.53],[4.31,43.55],[4.32,43.56],[4.32,43.55],[4.32,43.55],[4.32,43.54],[4.33,43.54],[4.35,43.54],[4.35,43.55],[4.37,43.55],[4.39,43.56],[4.41,43.56],[4.41,43.57],[4.41,43.57],[4.43,43.58],[4.45,43.58],[4.46,43.59],[4.47,43.6],[4.47,43.61],[4.47,43.62],[4.45,43.61],[4.44,43.61],[4.43,43.62],[4.43,43.63],[4.45,43.66],[4.48,43.67],[4.48,43.69],[4.49,43.7],[4.5,43.7],[4.52,43.7],[4.54,43.71],[4.56,43.7],[4.58,43.7],[4.6,43.69],[4.63,43.69],[4.63,43.69],[4.61,43.71],[4.61,43.72],[4.63,43.76],[4.65,43.78],[4.65,43.81],[4.64,43.83],[4.67,43.85],[4.66,43.85],[4.64,43.85],[4.65,43.86],[4.64,43.87],[4.66,43.87],[4.66,43.87],[4.66,43.87],[4.67,43.88],[4.69,43.89],[4.71,43.9],[4.7,43.9],[4.71,43.9],[4.72,43.91],[4.74,43.92],[4.74,43.92],[4.75,43.93],[4.78,43.94],[4.79,43.95],[4.81,43.96],[4.81,43.98],[4.81,43.99],[4.84,43.99],[4.85,44],[4.84,44],[4.84,44.01],[4.83,44.02],[4.82,44.02],[4.81,44.03],[4.79,44.05],[4.79,44.06],[4.76,44.07],[4.76,44.08],[4.76,44.09],[4.75,44.09],[4.73,44.08],[4.72,44.08],[4.72,44.09],[4.71,44.11],[4.72,44.14],[4.72,44.15],[4.72,44.18],[4.72,44.18],[4.72,44.19],[4.71,44.19],[4.7,44.2],[4.71,44.21],[4.71,44.21],[4.7,44.22],[4.68,44.21],[4.67,44.21],[4.67,44.22],[4.68,44.23],[4.65,44.26],[4.65,44.27],[4.65,44.29],[4.65,44.33],[4.68,44.32],[4.71,44.32],[4.71,44.32],[4.72,44.33],[4.76,44.33],[4.77,44.32],[4.78,44.32],[4.8,44.31],[4.8,44.3],[4.8,44.27],[4.81,44.26],[4.81,44.23],[4.83,44.23],[4.86,44.25],[4.88,44.26],[4.9,44.26],[4.9,44.26],[4.93,44.26],[4.94,44.27],[4.99,44.29],[5,44.29],[5.03,44.3],[5.06,44.31],[5.08,44.28],[5.11,44.28],[5.15,44.3],[5.15,44.31],[5.17,44.31],[5.17,44.31],[5.17,44.31],[5.17,44.3],[5.17,44.29],[5.15,44.28],[5.15,44.27],[5.16,44.27],[5.16,44.25],[5.15,44.24],[5.15,44.24],[5.18,44.22],[5.21,44.21],[5.24,44.21],[5.24,44.23],[5.25,44.23],[5.26,44.23],[5.28,44.22],[5.3,44.21],[5.3,44.21],[5.32,44.21],[5.34,44.2],[5.36,44.21],[5.38,44.2],[5.38,44.19],[5.39,44.18],[5.38,44.16],[5.4,44.15],[5.42,44.15],[5.43,44.15],[5.44,44.15],[5.44,44.14],[5.45,44.14],[5.45,44.12],[5.45,44.12],[5.5,44.12],[5.51,44.12],[5.51,44.12],[5.54,44.13],[5.55,44.15],[5.57,44.15],[5.58,44.16],[5.58,44.16],[5.56,44.17],[5.58,44.19],[5.58,44.19],[5.59,44.19],[5.6,44.19],[5.61,44.19],[5.62,44.18],[5.63,44.17],[5.64,44.17],[5.63,44.15],[5.68,44.15],[5.68,44.16],[5.65,44.17],[5.64,44.17],[5.65,44.19],[5.67,44.19],[5.68,44.19],[5.69,44.19],[5.69,44.2],[5.68,44.21],[5.68,44.23],[5.67,44.25],[5.67,44.26],[5.69,44.27],[5.68,44.28],[5.65,44.27],[5.65,44.27],[5.63,44.28],[5.63,44.29],[5.64,44.29],[5.63,44.3],[5.63,44.3],[5.62,44.31],[5.61,44.31],[5.61,44.32],[5.63,44.33],[5.63,44.33],[5.62,44.34],[5.62,44.33],[5.59,44.33],[5.56,44.33],[5.55,44.33],[5.54,44.33],[5.54,44.34],[5.52,44.35],[5.5,44.34],[5.49,44.34],[5.48,44.35],[5.47,44.35],[5.46,44.37],[5.43,44.37],[5.43,44.38],[5.44,44.38],[5.44,44.39],[5.43,44.41],[5.42,44.42],[5.44,44.43],[5.47,44.42],[5.48,44.42],[5.49,44.43],[5.49,44.43],[5.5,44.44],[5.5,44.44],[5.47,44.45],[5.46,44.45],[5.46,44.47],[5.47,44.47],[5.46,44.49],[5.46,44.5],[5.47,44.5],[5.47,44.49],[5.48,44.49],[5.51,44.49],[5.55,44.48],[5.56,44.47],[5.57,44.48],[5.6,44.47],[5.62,44.47],[5.63,44.5],[5.63,44.5],[5.65,44.5],[5.66,44.5],[5.65,44.52],[5.63,44.53],[5.61,44.53],[5.6,44.54],[5.61,44.57],[5.61,44.57],[5.62,44.58],[5.63,44.59],[5.63,44.59],[5.64,44.61],[5.65,44.61],[5.65,44.62],[5.64,44.62],[5.64,44.63],[5.64,44.65],[5.65,44.66],[5.66,44.65],[5.68,44.65],[5.73,44.64],[5.75,44.65],[5.75,44.66],[5.77,44.65],[5.79,44.65],[5.8,44.67],[5.81,44.68],[5.83,44.69],[5.83,44.7],[5.8,44.71],[5.81,44.71],[5.82,44.73],[5.83,44.74],[5.83,44.76],[5.84,44.76],[5.85,44.75],[5.89,44.75],[5.89,44.76],[5.9,44.76],[5.92,44.75],[5.94,44.76],[5.95,44.76],[5.95,44.77],[5.98,44.78],[5.98,44.79],[5.96,44.8],[5.95,44.8],[5.98,44.82],[6,44.82],[6.02,44.84],[6.03,44.84],[6.06,44.82],[6.11,44.85],[6.13,44.86],[6.16,44.86],[6.17,44.85],[6.19,44.85],[6.2,44.86],[6.23,44.85],[6.25,44.85],[6.27,44.87],[6.29,44.87],[6.3,44.87],[6.32,44.86],[6.34,44.85],[6.36,44.85],[6.35,44.88],[6.35,44.88],[6.36,44.89],[6.35,44.9],[6.36,44.91],[6.35,44.92],[6.36,44.94],[6.33,44.95],[6.32,44.95],[6.33,44.97],[6.32,44.98],[6.32,44.99],[6.32,45],[6.32,45],[6.3,45],[6.26,45],[6.21,45.01],[6.2,45.01],[6.2,45.02],[6.21,45.03],[6.21,45.04],[6.22,45.07],[6.24,45.07],[6.23,45.11],[6.26,45.13],[6.28,45.11]],[[7.13,43.59],[7.13,43.59],[7.13,43.59],[7.13,43.59]]],[[[7.07,43.52],[7.07,43.51],[7.07,43.51],[7.07,43.52]]],[[[7.05,43.52],[7.05,43.52],[7.06,43.52],[7.06,43.52],[7.07,43.52],[7.07,43.51],[7.06,43.52],[7.04,43.52],[7.04,43.52],[7.03,43.52],[7.03,43.52],[7.03,43.52],[7.03,43.52],[7.04,43.52],[7.04,43.52],[7.05,43.52]]],[[[7.06,43.51],[7.06,43.51],[7.06,43.51],[7.06,43.51]]],[[[7.05,43.51],[7.06,43.51],[7.05,43.51],[7.05,43.5],[7.04,43.51],[7.04,43.51],[7.04,43.51],[7.05,43.51]]],[[[6.51,43.05],[6.51,43.05],[6.51,43.05],[6.51,43.05],[6.5,43.04],[6.49,43.04],[6.49,43.04],[6.49,43.04],[6.49,43.04],[6.48,43.04],[6.48,43.03],[6.47,43.02],[6.47,43.02],[6.47,43.02],[6.47,43.02],[6.47,43.01],[6.46,43.02],[6.46,43.01],[6.45,43.02],[6.45,43.01],[6.44,43],[6.43,43.01],[6.43,43.01],[6.43,43.02],[6.43,43.02],[6.44,43.02],[6.44,43.02],[6.45,43.03],[6.45,43.03],[6.45,43.03],[6.46,43.03],[6.46,43.03],[6.46,43.04],[6.46,43.04],[6.46,43.04],[6.47,43.04],[6.47,43.05],[6.47,43.05],[6.47,43.05],[6.48,43.05],[6.49,43.05],[6.5,43.05],[6.51,43.05]]],[[[6.41,43.02],[6.41,43.02],[6.41,43.01],[6.41,43.01],[6.41,43.01],[6.42,43.01],[6.42,43.01],[6.42,43.01],[6.41,43],[6.41,43],[6.41,43],[6.41,43],[6.41,43],[6.4,42.99],[6.4,42.99],[6.4,42.99],[6.39,43],[6.39,42.99],[6.39,43],[6.37,43],[6.37,43],[6.37,43],[6.37,43],[6.37,43],[6.37,43],[6.38,43.01],[6.38,43.01],[6.38,43.01],[6.38,43.01],[6.38,43.01],[6.38,43.01],[6.39,43.01],[6.39,43.01],[6.4,43.01],[6.41,43.02]]],[[[6.4,42.99],[6.4,42.99],[6.39,42.99],[6.4,42.99],[6.4,42.99]]],[[[6.37,43.02],[6.36,43.01],[6.37,43.01],[6.36,43.01],[6.37,43],[6.36,43],[6.36,43.01],[6.36,43.02],[6.36,43.02],[6.37,43.02],[6.37,43.02],[6.37,43.02]]],[[[6.25,43],[6.25,43],[6.25,43],[6.25,43],[6.25,43]]],[[[6.24,43.03],[6.24,43.02],[6.25,43.02],[6.25,43.01],[6.25,43.01],[6.25,43],[6.25,43],[6.25,43],[6.24,43],[6.24,43],[6.24,42.99],[6.23,43],[6.23,42.99],[6.23,42.99],[6.22,42.99],[6.22,42.99],[6.22,42.99],[6.21,42.99],[6.21,42.99],[6.21,42.99],[6.21,42.98],[6.2,42.98],[6.19,42.99],[6.2,42.99],[6.19,42.99],[6.19,42.99],[6.18,42.99],[6.18,42.99],[6.18,42.99],[6.18,43],[6.17,42.99],[6.17,43],[6.17,43],[6.17,43],[6.16,43],[6.16,43],[6.16,43],[6.17,43],[6.17,43.01],[6.17,43.01],[6.17,43.01],[6.18,43.01],[6.18,43.01],[6.18,43.01],[6.18,43.01],[6.18,43.01],[6.18,43.01],[6.19,43],[6.2,43],[6.2,43],[6.2,43],[6.2,43],[6.2,43],[6.21,43],[6.21,43],[6.22,43.01],[6.22,43.01],[6.22,43.01],[6.22,43.01],[6.22,43.01],[6.22,43.01],[6.22,43.01],[6.23,43.01],[6.23,43.01],[6.24,43.01],[6.24,43.02],[6.24,43.02],[6.24,43.02],[6.24,43.03]]],[[[6.16,43.01],[6.16,43],[6.16,43],[6.16,43.01]]],[[[6.14,43.02],[6.15,43.02],[6.15,43.02],[6.14,43.02],[6.14,43.01],[6.14,43.02],[6.14,43.02]]],[[[5.79,43.07],[5.79,43.07],[5.79,43.07],[5.79,43.07],[5.79,43.07],[5.79,43.07],[5.79,43.07]]],[[[5.78,43.08],[5.79,43.08],[5.79,43.08],[5.79,43.08],[5.78,43.07],[5.78,43.07],[5.78,43.07],[5.78,43.08],[5.78,43.08]]],[[[5.77,43.08],[5.77,43.08],[5.77,43.08],[5.77,43.08],[5.77,43.08]]],[[[5.75,43.13],[5.75,43.13],[5.75,43.13],[5.75,43.13],[5.75,43.13]]],[[[5.62,43.16],[5.62,43.16],[5.62,43.16],[5.62,43.16],[5.61,43.16],[5.61,43.16],[5.62,43.16]]],[[[5.38,43.18],[5.4,43.18],[5.4,43.17],[5.39,43.17],[5.38,43.17],[5.37,43.18],[5.37,43.18],[5.38,43.18]]],[[[5.38,43.19],[5.39,43.19],[5.39,43.18],[5.38,43.19],[5.38,43.19],[5.38,43.19]]],[[[5.36,43.2],[5.36,43.2],[5.36,43.2],[5.37,43.2],[5.37,43.19],[5.36,43.2],[5.35,43.2],[5.36,43.2]]],[[[5.32,43.35],[5.32,43.34],[5.33,43.34],[5.33,43.34],[5.34,43.33],[5.34,43.33],[5.35,43.33],[5.35,43.33],[5.35,43.32],[5.35,43.32],[5.36,43.31],[5.36,43.3],[5.36,43.31],[5.35,43.33],[5.34,43.33],[5.32,43.34],[5.32,43.35],[5.32,43.35]]],[[[5.33,43.22],[5.33,43.21],[5.34,43.21],[5.34,43.21],[5.34,43.21],[5.33,43.21],[5.33,43.21],[5.33,43.22]]],[[[5.33,43.28],[5.33,43.28],[5.32,43.28],[5.32,43.28],[5.33,43.28]]],[[[5.31,43.29],[5.32,43.29],[5.32,43.29],[5.32,43.29],[5.32,43.29],[5.32,43.28],[5.32,43.28],[5.32,43.28],[5.31,43.28],[5.3,43.28],[5.3,43.28],[5.31,43.28],[5.31,43.27],[5.3,43.27],[5.3,43.27],[5.29,43.26],[5.29,43.26],[5.29,43.26],[5.29,43.27],[5.3,43.27],[5.3,43.28],[5.3,43.28],[5.3,43.28],[5.29,43.28],[5.29,43.28],[5.3,43.28],[5.3,43.28],[5.3,43.28],[5.3,43.28],[5.3,43.28],[5.3,43.28],[5.31,43.28],[5.31,43.29]]],[[[5.32,43.36],[5.32,43.35],[5.32,43.35],[5.32,43.35],[5.31,43.35],[5.32,43.36]]],[[[4.99,44.42],[5.01,44.41],[5.02,44.42],[5.02,44.41],[5.01,44.41],[5.02,44.39],[5.03,44.39],[5.05,44.38],[5.07,44.38],[5.07,44.38],[5.05,44.36],[5.03,44.36],[5.02,44.34],[5.01,44.33],[5.01,44.33],[5,44.32],[4.99,44.31],[4.99,44.29],[4.98,44.3],[4.92,44.31],[4.89,44.3],[4.89,44.31],[4.88,44.33],[4.9,44.34],[4.88,44.35],[4.87,44.35],[4.89,44.36],[4.89,44.37],[4.91,44.37],[4.91,44.39],[4.91,44.4],[4.92,44.41],[4.95,44.41],[4.95,44.42],[4.96,44.42],[4.97,44.43],[4.98,44.43],[4.98,44.42],[4.99,44.42]]],[[[4.87,43.37],[4.88,43.37],[4.88,43.36],[4.87,43.36],[4.87,43.37]]]]},"properties":{"id":21,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.42,43.01],[9.42,43.01],[9.42,43.01],[9.43,43.01],[9.43,43],[9.44,43],[9.44,43],[9.45,43],[9.44,42.99],[9.45,42.99],[9.45,42.99],[9.45,42.99],[9.45,42.99],[9.46,42.99],[9.46,42.99],[9.46,42.98],[9.46,42.98],[9.46,42.98],[9.46,42.98],[9.45,42.97],[9.46,42.97],[9.46,42.96],[9.45,42.97],[9.45,42.96],[9.46,42.96],[9.46,42.95],[9.46,42.95],[9.46,42.94],[9.47,42.94],[9.47,42.94],[9.47,42.93],[9.46,42.93],[9.47,42.93],[9.47,42.92],[9.47,42.92],[9.47,42.92],[9.47,42.91],[9.47,42.91],[9.47,42.91],[9.47,42.9],[9.47,42.9],[9.47,42.9],[9.47,42.89],[9.47,42.89],[9.48,42.89],[9.47,42.89],[9.48,42.88],[9.48,42.88],[9.47,42.88],[9.47,42.87],[9.48,42.87],[9.48,42.87],[9.48,42.86],[9.49,42.85],[9.48,42.85],[9.48,42.84],[9.48,42.84],[9.48,42.84],[9.49,42.84],[9.49,42.82],[9.49,42.82],[9.49,42.81],[9.49,42.81],[9.49,42.81],[9.49,42.79],[9.48,42.79],[9.48,42.78],[9.48,42.78],[9.48,42.77],[9.47,42.77],[9.47,42.77],[9.47,42.76],[9.47,42.76],[9.47,42.76],[9.47,42.76],[9.47,42.75],[9.46,42.75],[9.46,42.74],[9.46,42.74],[9.46,42.73],[9.46,42.72],[9.46,42.71],[9.45,42.71],[9.46,42.71],[9.46,42.71],[9.46,42.7],[9.46,42.7],[9.46,42.7],[9.46,42.7],[9.45,42.7],[9.45,42.7],[9.45,42.7],[9.45,42.69],[9.45,42.69],[9.45,42.69],[9.45,42.67],[9.45,42.66],[9.45,42.66],[9.45,42.66],[9.45,42.66],[9.46,42.65],[9.48,42.62],[9.48,42.62],[9.51,42.59],[9.53,42.57],[9.53,42.55],[9.53,42.55],[9.53,42.55],[9.53,42.55],[9.53,42.54],[9.53,42.54],[9.53,42.53],[9.53,42.52],[9.53,42.53],[9.53,42.52],[9.53,42.51],[9.53,42.49],[9.53,42.47],[9.54,42.46],[9.54,42.43],[9.54,42.43],[9.54,42.41],[9.54,42.39],[9.53,42.38],[9.53,42.37],[9.54,42.34],[9.54,42.34],[9.54,42.34],[9.54,42.34],[9.55,42.32],[9.55,42.32],[9.55,42.31],[9.56,42.29],[9.56,42.28],[9.56,42.27],[9.56,42.26],[9.55,42.23],[9.55,42.22],[9.56,42.22],[9.56,42.2],[9.56,42.2],[9.56,42.19],[9.55,42.17],[9.55,42.14],[9.56,42.14],[9.55,42.12],[9.55,42.1],[9.53,42.08],[9.47,42.01],[9.46,42.01],[9.46,42],[9.45,42],[9.44,41.99],[9.42,41.97],[9.41,41.95],[9.41,41.94],[9.41,41.94],[9.41,41.95],[9.4,41.95],[9.4,41.95],[9.4,41.95],[9.4,41.95],[9.41,41.95],[9.41,41.95],[9.4,41.95],[9.41,41.94],[9.4,41.94],[9.41,41.94],[9.41,41.94],[9.41,41.94],[9.42,41.93],[9.41,41.92],[9.41,41.92],[9.41,41.91],[9.41,41.91],[9.41,41.91],[9.4,41.9],[9.4,41.9],[9.4,41.89],[9.4,41.89],[9.4,41.88],[9.4,41.88],[9.4,41.87],[9.4,41.87],[9.4,41.86],[9.4,41.86],[9.4,41.86],[9.4,41.86],[9.4,41.86],[9.41,41.86],[9.41,41.86],[9.4,41.86],[9.4,41.85],[9.4,41.84],[9.4,41.84],[9.41,41.83],[9.4,41.82],[9.41,41.82],[9.41,41.82],[9.4,41.81],[9.4,41.81],[9.4,41.81],[9.4,41.8],[9.4,41.8],[9.4,41.8],[9.39,41.8],[9.4,41.79],[9.4,41.79],[9.4,41.79],[9.4,41.79],[9.4,41.78],[9.4,41.78],[9.4,41.78],[9.4,41.78],[9.4,41.77],[9.4,41.77],[9.4,41.77],[9.41,41.77],[9.41,41.76],[9.41,41.75],[9.4,41.75],[9.4,41.75],[9.41,41.75],[9.41,41.74],[9.4,41.73],[9.41,41.72],[9.4,41.72],[9.41,41.71],[9.41,41.71],[9.4,41.71],[9.41,41.71],[9.4,41.71],[9.4,41.71],[9.4,41.7],[9.4,41.7],[9.4,41.7],[9.4,41.69],[9.39,41.69],[9.39,41.69],[9.39,41.69],[9.38,41.69],[9.38,41.68],[9.37,41.68],[9.37,41.67],[9.38,41.67],[9.39,41.67],[9.4,41.67],[9.4,41.67],[9.39,41.67],[9.39,41.67],[9.38,41.66],[9.38,41.66],[9.39,41.66],[9.39,41.66],[9.39,41.66],[9.39,41.65],[9.38,41.65],[9.38,41.65],[9.38,41.65],[9.39,41.65],[9.38,41.64],[9.38,41.65],[9.38,41.65],[9.38,41.65],[9.38,41.64],[9.37,41.64],[9.37,41.64],[9.37,41.64],[9.37,41.64],[9.37,41.64],[9.36,41.64],[9.36,41.64],[9.36,41.64],[9.36,41.64],[9.37,41.64],[9.37,41.64],[9.36,41.64],[9.36,41.64],[9.36,41.64],[9.35,41.64],[9.35,41.63],[9.35,41.63],[9.35,41.63],[9.35,41.63],[9.35,41.62],[9.36,41.62],[9.36,41.62],[9.36,41.62],[9.35,41.62],[9.35,41.62],[9.34,41.62],[9.34,41.62],[9.33,41.62],[9.33,41.62],[9.32,41.62],[9.32,41.62],[9.33,41.62],[9.32,41.62],[9.31,41.62],[9.31,41.63],[9.31,41.63],[9.3,41.63],[9.3,41.62],[9.31,41.62],[9.3,41.61],[9.29,41.61],[9.29,41.61],[9.29,41.61],[9.29,41.6],[9.29,41.6],[9.28,41.6],[9.29,41.6],[9.28,41.59],[9.29,41.59],[9.29,41.59],[9.29,41.58],[9.29,41.59],[9.29,41.59],[9.29,41.59],[9.29,41.59],[9.29,41.58],[9.3,41.58],[9.3,41.58],[9.3,41.58],[9.3,41.59],[9.3,41.59],[9.31,41.6],[9.32,41.61],[9.33,41.6],[9.33,41.6],[9.33,41.6],[9.33,41.6],[9.34,41.6],[9.34,41.6],[9.34,41.59],[9.34,41.59],[9.34,41.59],[9.34,41.59],[9.34,41.6],[9.35,41.59],[9.37,41.6],[9.37,41.59],[9.37,41.59],[9.36,41.59],[9.36,41.59],[9.36,41.58],[9.36,41.58],[9.36,41.58],[9.36,41.58],[9.36,41.58],[9.35,41.58],[9.35,41.58],[9.35,41.57],[9.35,41.57],[9.34,41.56],[9.34,41.56],[9.34,41.56],[9.34,41.56],[9.33,41.56],[9.32,41.56],[9.32,41.55],[9.32,41.55],[9.31,41.55],[9.31,41.55],[9.31,41.55],[9.31,41.55],[9.31,41.54],[9.31,41.55],[9.3,41.55],[9.3,41.54],[9.3,41.54],[9.3,41.54],[9.3,41.54],[9.29,41.53],[9.29,41.53],[9.28,41.53],[9.28,41.53],[9.28,41.53],[9.27,41.53],[9.27,41.53],[9.27,41.52],[9.28,41.52],[9.28,41.52],[9.28,41.5],[9.27,41.5],[9.28,41.5],[9.28,41.5],[9.28,41.5],[9.28,41.5],[9.29,41.5],[9.29,41.49],[9.28,41.49],[9.29,41.48],[9.29,41.48],[9.28,41.48],[9.28,41.48],[9.28,41.48],[9.28,41.48],[9.28,41.47],[9.28,41.47],[9.27,41.47],[9.27,41.47],[9.27,41.47],[9.27,41.47],[9.27,41.47],[9.27,41.47],[9.28,41.47],[9.28,41.46],[9.28,41.46],[9.27,41.46],[9.27,41.47],[9.26,41.46],[9.26,41.46],[9.26,41.45],[9.25,41.45],[9.25,41.45],[9.25,41.45],[9.24,41.45],[9.21,41.44],[9.22,41.44],[9.22,41.44],[9.23,41.43],[9.23,41.43],[9.23,41.42],[9.23,41.42],[9.23,41.42],[9.22,41.41],[9.22,41.41],[9.22,41.41],[9.22,41.41],[9.22,41.41],[9.22,41.41],[9.23,41.41],[9.23,41.41],[9.24,41.42],[9.25,41.43],[9.26,41.43],[9.26,41.43],[9.26,41.42],[9.26,41.42],[9.26,41.42],[9.26,41.42],[9.26,41.42],[9.26,41.41],[9.26,41.41],[9.26,41.41],[9.25,41.41],[9.25,41.4],[9.24,41.4],[9.24,41.4],[9.24,41.39],[9.24,41.39],[9.23,41.38],[9.22,41.37],[9.22,41.37],[9.22,41.37],[9.22,41.37],[9.21,41.37],[9.21,41.37],[9.2,41.37],[9.2,41.36],[9.2,41.36],[9.2,41.37],[9.2,41.37],[9.19,41.37],[9.18,41.37],[9.18,41.37],[9.17,41.38],[9.16,41.39],[9.15,41.38],[9.15,41.39],[9.16,41.39],[9.15,41.39],[9.15,41.39],[9.14,41.39],[9.13,41.39],[9.13,41.39],[9.13,41.39],[9.13,41.4],[9.13,41.4],[9.12,41.4],[9.12,41.4],[9.11,41.4],[9.1,41.39],[9.09,41.39],[9.1,41.4],[9.09,41.4],[9.09,41.4],[9.1,41.41],[9.09,41.41],[9.1,41.42],[9.1,41.42],[9.11,41.42],[9.11,41.42],[9.1,41.42],[9.11,41.43],[9.11,41.43],[9.11,41.43],[9.12,41.43],[9.12,41.44],[9.12,41.44],[9.12,41.44],[9.12,41.44],[9.12,41.44],[9.11,41.44],[9.11,41.44],[9.11,41.45],[9.11,41.45],[9.11,41.44],[9.1,41.44],[9.09,41.45],[9.09,41.45],[9.09,41.45],[9.08,41.44],[9.08,41.44],[9.08,41.44],[9.07,41.44],[9.07,41.45],[9.07,41.45],[9.07,41.46],[9.07,41.46],[9.07,41.46],[9.07,41.47],[9.07,41.47],[9.07,41.47],[9.08,41.48],[9.07,41.48],[9.07,41.47],[9.07,41.48],[9.07,41.47],[9.06,41.47],[9.06,41.47],[9.06,41.47],[9.06,41.46],[9.06,41.46],[9.05,41.46],[9.05,41.46],[9.04,41.46],[9.04,41.46],[9.04,41.46],[9.04,41.47],[9.04,41.47],[9.04,41.47],[9.03,41.47],[9.03,41.47],[9.03,41.46],[9.02,41.46],[9.02,41.47],[9.02,41.47],[9.02,41.47],[9.01,41.47],[9.02,41.48],[9.01,41.48],[9.01,41.48],[9,41.47],[9,41.48],[9,41.48],[9,41.48],[8.99,41.49],[8.99,41.48],[8.98,41.47],[8.98,41.47],[8.98,41.48],[8.98,41.48],[8.98,41.48],[8.97,41.49],[8.97,41.48],[8.97,41.48],[8.97,41.49],[8.96,41.49],[8.95,41.49],[8.95,41.49],[8.94,41.49],[8.94,41.5],[8.93,41.5],[8.93,41.49],[8.92,41.49],[8.92,41.49],[8.92,41.5],[8.92,41.51],[8.91,41.51],[8.91,41.51],[8.91,41.51],[8.9,41.51],[8.89,41.51],[8.88,41.5],[8.88,41.51],[8.89,41.51],[8.89,41.52],[8.88,41.52],[8.88,41.52],[8.88,41.52],[8.87,41.52],[8.86,41.52],[8.86,41.52],[8.86,41.52],[8.86,41.52],[8.85,41.52],[8.85,41.52],[8.84,41.52],[8.84,41.52],[8.84,41.53],[8.86,41.54],[8.85,41.54],[8.85,41.55],[8.85,41.54],[8.85,41.54],[8.85,41.54],[8.84,41.54],[8.84,41.55],[8.84,41.54],[8.83,41.55],[8.83,41.54],[8.82,41.55],[8.82,41.54],[8.82,41.55],[8.82,41.55],[8.81,41.55],[8.82,41.55],[8.81,41.55],[8.81,41.55],[8.81,41.56],[8.81,41.55],[8.81,41.56],[8.8,41.55],[8.8,41.56],[8.8,41.56],[8.8,41.56],[8.79,41.55],[8.79,41.56],[8.79,41.56],[8.79,41.56],[8.78,41.56],[8.78,41.57],[8.79,41.56],[8.79,41.56],[8.79,41.57],[8.79,41.57],[8.79,41.57],[8.8,41.57],[8.8,41.57],[8.8,41.58],[8.8,41.57],[8.8,41.58],[8.79,41.58],[8.79,41.58],[8.79,41.58],[8.79,41.58],[8.79,41.59],[8.79,41.59],[8.78,41.58],[8.78,41.59],[8.78,41.59],[8.78,41.59],[8.77,41.59],[8.77,41.59],[8.78,41.59],[8.78,41.6],[8.78,41.59],[8.78,41.6],[8.79,41.6],[8.78,41.6],[8.78,41.6],[8.79,41.61],[8.79,41.61],[8.79,41.62],[8.79,41.62],[8.8,41.62],[8.79,41.63],[8.79,41.63],[8.79,41.63],[8.79,41.63],[8.8,41.63],[8.8,41.64],[8.81,41.64],[8.81,41.64],[8.81,41.63],[8.81,41.63],[8.82,41.63],[8.83,41.64],[8.83,41.64],[8.83,41.64],[8.84,41.64],[8.84,41.64],[8.85,41.64],[8.85,41.65],[8.86,41.65],[8.87,41.65],[8.87,41.65],[8.87,41.65],[8.88,41.65],[8.88,41.66],[8.88,41.67],[8.89,41.67],[8.9,41.68],[8.9,41.68],[8.91,41.68],[8.91,41.68],[8.91,41.68],[8.92,41.69],[8.91,41.69],[8.89,41.69],[8.89,41.69],[8.89,41.69],[8.88,41.69],[8.88,41.7],[8.88,41.69],[8.87,41.7],[8.84,41.7],[8.84,41.7],[8.83,41.71],[8.81,41.71],[8.81,41.71],[8.81,41.71],[8.8,41.71],[8.8,41.71],[8.79,41.71],[8.8,41.71],[8.8,41.71],[8.79,41.7],[8.78,41.7],[8.78,41.7],[8.79,41.7],[8.79,41.71],[8.78,41.71],[8.78,41.71],[8.77,41.71],[8.77,41.71],[8.77,41.71],[8.77,41.72],[8.78,41.72],[8.78,41.72],[8.78,41.73],[8.78,41.73],[8.78,41.74],[8.78,41.74],[8.78,41.74],[8.78,41.74],[8.76,41.74],[8.75,41.73],[8.74,41.73],[8.74,41.73],[8.73,41.73],[8.72,41.73],[8.72,41.72],[8.71,41.72],[8.7,41.72],[8.7,41.73],[8.71,41.73],[8.71,41.74],[8.7,41.74],[8.7,41.74],[8.69,41.74],[8.69,41.74],[8.68,41.74],[8.68,41.74],[8.68,41.74],[8.67,41.74],[8.67,41.74],[8.66,41.74],[8.66,41.74],[8.66,41.75],[8.66,41.75],[8.67,41.75],[8.67,41.75],[8.67,41.75],[8.68,41.75],[8.68,41.75],[8.68,41.75],[8.69,41.75],[8.7,41.75],[8.7,41.76],[8.71,41.76],[8.71,41.76],[8.72,41.77],[8.72,41.77],[8.73,41.77],[8.73,41.78],[8.73,41.78],[8.73,41.78],[8.73,41.78],[8.73,41.78],[8.73,41.79],[8.73,41.79],[8.72,41.79],[8.72,41.79],[8.72,41.79],[8.71,41.79],[8.71,41.8],[8.71,41.8],[8.72,41.8],[8.72,41.8],[8.72,41.8],[8.73,41.8],[8.73,41.8],[8.74,41.8],[8.74,41.8],[8.74,41.8],[8.74,41.8],[8.74,41.81],[8.74,41.81],[8.75,41.81],[8.75,41.81],[8.76,41.81],[8.76,41.81],[8.76,41.81],[8.77,41.81],[8.77,41.81],[8.77,41.81],[8.77,41.81],[8.77,41.82],[8.77,41.82],[8.78,41.83],[8.78,41.83],[8.78,41.83],[8.78,41.83],[8.78,41.83],[8.77,41.83],[8.77,41.84],[8.77,41.84],[8.77,41.84],[8.77,41.84],[8.77,41.84],[8.76,41.84],[8.76,41.84],[8.75,41.84],[8.75,41.85],[8.76,41.85],[8.76,41.85],[8.76,41.85],[8.77,41.85],[8.77,41.85],[8.77,41.85],[8.78,41.85],[8.78,41.85],[8.79,41.85],[8.79,41.85],[8.79,41.86],[8.79,41.87],[8.79,41.87],[8.79,41.87],[8.78,41.87],[8.78,41.88],[8.79,41.88],[8.79,41.88],[8.78,41.88],[8.78,41.88],[8.79,41.88],[8.8,41.89],[8.8,41.89],[8.8,41.9],[8.8,41.91],[8.79,41.92],[8.79,41.92],[8.79,41.92],[8.78,41.93],[8.77,41.93],[8.77,41.92],[8.76,41.92],[8.76,41.93],[8.75,41.93],[8.76,41.93],[8.75,41.93],[8.74,41.93],[8.74,41.93],[8.74,41.93],[8.74,41.92],[8.74,41.92],[8.74,41.92],[8.74,41.92],[8.74,41.92],[8.73,41.92],[8.73,41.91],[8.72,41.91],[8.72,41.91],[8.72,41.91],[8.71,41.91],[8.7,41.91],[8.69,41.91],[8.68,41.91],[8.68,41.91],[8.68,41.9],[8.67,41.9],[8.66,41.91],[8.64,41.91],[8.63,41.91],[8.63,41.9],[8.62,41.9],[8.61,41.89],[8.61,41.89],[8.61,41.9],[8.61,41.9],[8.61,41.9],[8.62,41.9],[8.61,41.91],[8.61,41.91],[8.61,41.91],[8.61,41.91],[8.61,41.92],[8.61,41.92],[8.62,41.92],[8.61,41.92],[8.62,41.93],[8.62,41.93],[8.62,41.93],[8.62,41.93],[8.62,41.94],[8.62,41.94],[8.62,41.94],[8.61,41.94],[8.61,41.94],[8.61,41.95],[8.6,41.95],[8.61,41.95],[8.6,41.95],[8.6,41.96],[8.59,41.96],[8.59,41.96],[8.59,41.97],[8.6,41.97],[8.61,41.97],[8.61,41.97],[8.61,41.97],[8.63,41.97],[8.63,41.97],[8.64,41.97],[8.65,41.97],[8.65,41.97],[8.66,41.98],[8.67,41.98],[8.67,41.99],[8.68,41.99],[8.67,41.99],[8.67,41.99],[8.66,41.99],[8.66,42],[8.65,42],[8.65,42],[8.66,42],[8.65,42.01],[8.65,42.01],[8.66,42.01],[8.66,42.01],[8.67,42.02],[8.68,42.02],[8.69,42.03],[8.69,42.03],[8.7,42.03],[8.7,42.03],[8.71,42.03],[8.72,42.03],[8.72,42.03],[8.73,42.04],[8.72,42.04],[8.72,42.04],[8.73,42.04],[8.74,42.04],[8.74,42.04],[8.75,42.05],[8.74,42.05],[8.74,42.06],[8.74,42.06],[8.74,42.06],[8.74,42.06],[8.74,42.07],[8.73,42.06],[8.72,42.06],[8.72,42.07],[8.72,42.07],[8.71,42.09],[8.7,42.09],[8.71,42.09],[8.71,42.09],[8.71,42.09],[8.71,42.1],[8.71,42.1],[8.7,42.11],[8.7,42.11],[8.7,42.11],[8.69,42.12],[8.69,42.11],[8.68,42.11],[8.68,42.1],[8.68,42.1],[8.67,42.11],[8.67,42.11],[8.66,42.11],[8.66,42.1],[8.66,42.1],[8.66,42.11],[8.65,42.11],[8.65,42.11],[8.65,42.12],[8.65,42.12],[8.65,42.12],[8.64,42.12],[8.64,42.12],[8.62,42.12],[8.62,42.12],[8.62,42.12],[8.62,42.13],[8.62,42.13],[8.62,42.13],[8.61,42.13],[8.6,42.13],[8.6,42.13],[8.6,42.13],[8.6,42.13],[8.58,42.13],[8.58,42.13],[8.58,42.13],[8.59,42.14],[8.59,42.15],[8.59,42.15],[8.59,42.15],[8.59,42.15],[8.58,42.15],[8.57,42.15],[8.57,42.15],[8.56,42.15],[8.56,42.15],[8.57,42.15],[8.57,42.15],[8.57,42.16],[8.58,42.16],[8.58,42.16],[8.58,42.16],[8.58,42.16],[8.59,42.16],[8.59,42.17],[8.59,42.17],[8.59,42.17],[8.59,42.17],[8.58,42.17],[8.57,42.17],[8.56,42.17],[8.56,42.17],[8.56,42.17],[8.56,42.18],[8.57,42.18],[8.57,42.18],[8.58,42.18],[8.58,42.18],[8.59,42.18],[8.58,42.18],[8.58,42.19],[8.58,42.19],[8.58,42.19],[8.58,42.2],[8.58,42.2],[8.58,42.21],[8.58,42.21],[8.57,42.2],[8.57,42.2],[8.57,42.21],[8.57,42.21],[8.58,42.21],[8.58,42.21],[8.58,42.22],[8.57,42.22],[8.57,42.22],[8.57,42.22],[8.57,42.22],[8.57,42.23],[8.57,42.23],[8.57,42.23],[8.56,42.23],[8.56,42.23],[8.56,42.23],[8.55,42.23],[8.55,42.23],[8.55,42.23],[8.54,42.23],[8.54,42.24],[8.54,42.24],[8.54,42.24],[8.55,42.24],[8.56,42.24],[8.56,42.24],[8.58,42.24],[8.58,42.24],[8.58,42.25],[8.59,42.24],[8.6,42.25],[8.61,42.25],[8.61,42.25],[8.61,42.25],[8.61,42.25],[8.62,42.25],[8.62,42.25],[8.62,42.26],[8.62,42.25],[8.63,42.25],[8.63,42.25],[8.64,42.25],[8.64,42.25],[8.64,42.25],[8.64,42.26],[8.65,42.26],[8.66,42.26],[8.66,42.26],[8.67,42.26],[8.67,42.26],[8.67,42.26],[8.68,42.26],[8.69,42.26],[8.69,42.27],[8.69,42.27],[8.69,42.28],[8.69,42.28],[8.69,42.28],[8.68,42.28],[8.68,42.28],[8.67,42.28],[8.67,42.29],[8.68,42.29],[8.68,42.29],[8.67,42.29],[8.67,42.29],[8.67,42.3],[8.67,42.29],[8.66,42.3],[8.66,42.3],[8.66,42.3],[8.65,42.3],[8.65,42.3],[8.65,42.3],[8.65,42.3],[8.64,42.3],[8.64,42.3],[8.63,42.3],[8.63,42.31],[8.63,42.31],[8.61,42.31],[8.61,42.31],[8.61,42.31],[8.6,42.31],[8.6,42.31],[8.6,42.31],[8.6,42.32],[8.6,42.32],[8.6,42.32],[8.6,42.32],[8.6,42.32],[8.6,42.32],[8.61,42.32],[8.61,42.33],[8.62,42.33],[8.63,42.33],[8.63,42.34],[8.63,42.34],[8.62,42.34],[8.62,42.34],[8.62,42.34],[8.62,42.35],[8.62,42.35],[8.61,42.35],[8.61,42.35],[8.61,42.35],[8.61,42.35],[8.6,42.35],[8.6,42.35],[8.59,42.35],[8.59,42.35],[8.58,42.35],[8.58,42.34],[8.58,42.34],[8.58,42.34],[8.57,42.34],[8.57,42.34],[8.57,42.33],[8.56,42.33],[8.56,42.33],[8.56,42.33],[8.56,42.33],[8.55,42.33],[8.55,42.33],[8.56,42.34],[8.55,42.34],[8.56,42.34],[8.56,42.34],[8.56,42.34],[8.56,42.35],[8.55,42.34],[8.55,42.35],[8.55,42.35],[8.56,42.35],[8.55,42.36],[8.56,42.36],[8.56,42.36],[8.55,42.36],[8.56,42.36],[8.55,42.37],[8.55,42.36],[8.55,42.37],[8.55,42.37],[8.54,42.36],[8.54,42.37],[8.53,42.37],[8.53,42.37],[8.54,42.37],[8.54,42.37],[8.55,42.37],[8.54,42.37],[8.55,42.38],[8.55,42.38],[8.55,42.38],[8.55,42.38],[8.55,42.38],[8.55,42.38],[8.55,42.37],[8.55,42.37],[8.56,42.37],[8.56,42.37],[8.56,42.37],[8.57,42.37],[8.57,42.37],[8.57,42.37],[8.57,42.37],[8.57,42.38],[8.58,42.37],[8.58,42.38],[8.57,42.38],[8.58,42.38],[8.58,42.38],[8.58,42.38],[8.58,42.39],[8.59,42.39],[8.6,42.38],[8.6,42.38],[8.6,42.39],[8.61,42.39],[8.61,42.39],[8.6,42.39],[8.6,42.4],[8.6,42.4],[8.61,42.4],[8.61,42.4],[8.61,42.4],[8.6,42.41],[8.61,42.41],[8.61,42.41],[8.61,42.42],[8.61,42.42],[8.61,42.42],[8.62,42.42],[8.62,42.42],[8.62,42.42],[8.63,42.42],[8.64,42.42],[8.65,42.42],[8.64,42.41],[8.65,42.41],[8.65,42.41],[8.65,42.42],[8.66,42.42],[8.66,42.42],[8.66,42.42],[8.66,42.43],[8.66,42.43],[8.66,42.43],[8.66,42.44],[8.65,42.44],[8.65,42.44],[8.65,42.45],[8.65,42.45],[8.66,42.45],[8.67,42.45],[8.67,42.45],[8.67,42.45],[8.67,42.45],[8.67,42.45],[8.66,42.46],[8.66,42.46],[8.67,42.46],[8.68,42.47],[8.68,42.47],[8.68,42.47],[8.68,42.48],[8.66,42.48],[8.65,42.47],[8.65,42.48],[8.65,42.48],[8.65,42.48],[8.65,42.48],[8.66,42.49],[8.67,42.5],[8.67,42.5],[8.66,42.5],[8.67,42.5],[8.66,42.51],[8.67,42.52],[8.68,42.52],[8.68,42.52],[8.69,42.52],[8.7,42.52],[8.7,42.52],[8.69,42.53],[8.7,42.53],[8.7,42.53],[8.7,42.53],[8.71,42.52],[8.71,42.52],[8.71,42.52],[8.72,42.53],[8.72,42.53],[8.72,42.53],[8.72,42.53],[8.71,42.53],[8.72,42.53],[8.71,42.53],[8.71,42.53],[8.71,42.54],[8.71,42.54],[8.72,42.54],[8.72,42.54],[8.72,42.55],[8.72,42.55],[8.72,42.56],[8.72,42.56],[8.72,42.56],[8.72,42.56],[8.71,42.56],[8.71,42.57],[8.72,42.57],[8.71,42.57],[8.71,42.57],[8.71,42.57],[8.71,42.57],[8.71,42.57],[8.71,42.58],[8.72,42.58],[8.72,42.58],[8.73,42.58],[8.72,42.58],[8.72,42.57],[8.73,42.58],[8.73,42.57],[8.73,42.57],[8.73,42.56],[8.74,42.56],[8.74,42.57],[8.74,42.57],[8.75,42.57],[8.75,42.57],[8.76,42.57],[8.76,42.57],[8.76,42.57],[8.76,42.57],[8.76,42.57],[8.76,42.56],[8.76,42.56],[8.76,42.56],[8.77,42.56],[8.78,42.56],[8.79,42.56],[8.8,42.57],[8.8,42.57],[8.81,42.57],[8.8,42.58],[8.8,42.58],[8.8,42.59],[8.81,42.59],[8.8,42.59],[8.8,42.59],[8.81,42.59],[8.81,42.59],[8.81,42.59],[8.81,42.6],[8.8,42.6],[8.8,42.6],[8.8,42.6],[8.8,42.6],[8.8,42.6],[8.81,42.61],[8.82,42.61],[8.82,42.6],[8.82,42.61],[8.83,42.61],[8.83,42.6],[8.84,42.6],[8.84,42.6],[8.84,42.6],[8.84,42.61],[8.85,42.61],[8.85,42.61],[8.86,42.61],[8.85,42.61],[8.86,42.61],[8.87,42.61],[8.87,42.61],[8.87,42.62],[8.88,42.62],[8.88,42.62],[8.88,42.62],[8.88,42.63],[8.88,42.63],[8.88,42.63],[8.88,42.63],[8.89,42.63],[8.89,42.63],[8.89,42.63],[8.89,42.63],[8.9,42.63],[8.9,42.63],[8.9,42.63],[8.91,42.63],[8.91,42.63],[8.91,42.63],[8.91,42.63],[8.92,42.64],[8.92,42.64],[8.93,42.64],[8.93,42.64],[8.93,42.64],[8.93,42.64],[8.93,42.64],[8.94,42.64],[8.93,42.64],[8.93,42.65],[8.94,42.64],[8.94,42.64],[8.94,42.64],[8.94,42.63],[8.95,42.63],[8.96,42.64],[8.96,42.63],[8.97,42.64],[8.98,42.64],[8.98,42.64],[8.99,42.64],[9,42.64],[9,42.64],[9.01,42.64],[9.01,42.64],[9.01,42.64],[9.02,42.64],[9.03,42.65],[9.04,42.66],[9.04,42.65],[9.06,42.66],[9.06,42.66],[9.06,42.67],[9.06,42.67],[9.06,42.67],[9.06,42.67],[9.06,42.67],[9.05,42.68],[9.06,42.68],[9.06,42.69],[9.06,42.69],[9.06,42.69],[9.06,42.7],[9.06,42.69],[9.07,42.69],[9.08,42.7],[9.08,42.7],[9.08,42.7],[9.08,42.71],[9.08,42.7],[9.08,42.71],[9.08,42.71],[9.08,42.71],[9.08,42.71],[9.09,42.72],[9.09,42.71],[9.09,42.72],[9.1,42.72],[9.1,42.72],[9.11,42.72],[9.11,42.72],[9.11,42.73],[9.11,42.73],[9.12,42.72],[9.12,42.73],[9.12,42.73],[9.14,42.73],[9.14,42.73],[9.14,42.73],[9.15,42.73],[9.15,42.74],[9.17,42.74],[9.17,42.73],[9.18,42.73],[9.19,42.73],[9.2,42.73],[9.21,42.73],[9.21,42.73],[9.22,42.73],[9.22,42.74],[9.23,42.72],[9.23,42.72],[9.23,42.72],[9.23,42.72],[9.23,42.72],[9.24,42.72],[9.25,42.72],[9.25,42.72],[9.26,42.72],[9.26,42.71],[9.26,42.71],[9.26,42.71],[9.25,42.71],[9.26,42.71],[9.26,42.7],[9.27,42.7],[9.27,42.7],[9.28,42.69],[9.28,42.69],[9.28,42.69],[9.28,42.68],[9.28,42.68],[9.28,42.68],[9.29,42.68],[9.29,42.67],[9.3,42.68],[9.3,42.68],[9.31,42.69],[9.32,42.7],[9.32,42.71],[9.32,42.72],[9.33,42.72],[9.33,42.72],[9.33,42.73],[9.34,42.73],[9.35,42.74],[9.34,42.74],[9.35,42.74],[9.34,42.75],[9.34,42.75],[9.34,42.76],[9.34,42.76],[9.34,42.76],[9.34,42.76],[9.34,42.77],[9.34,42.78],[9.34,42.78],[9.34,42.78],[9.34,42.79],[9.34,42.8],[9.34,42.8],[9.33,42.81],[9.33,42.81],[9.33,42.81],[9.32,42.82],[9.31,42.83],[9.31,42.83],[9.32,42.84],[9.32,42.84],[9.32,42.85],[9.32,42.85],[9.33,42.85],[9.33,42.86],[9.33,42.86],[9.33,42.86],[9.34,42.87],[9.34,42.87],[9.33,42.87],[9.33,42.88],[9.33,42.88],[9.33,42.89],[9.32,42.89],[9.32,42.9],[9.33,42.9],[9.34,42.91],[9.34,42.91],[9.35,42.91],[9.35,42.92],[9.35,42.92],[9.36,42.92],[9.36,42.92],[9.36,42.93],[9.35,42.93],[9.35,42.93],[9.36,42.94],[9.36,42.95],[9.36,42.95],[9.36,42.95],[9.35,42.95],[9.35,42.96],[9.35,42.96],[9.35,42.96],[9.35,42.96],[9.35,42.97],[9.35,42.97],[9.34,42.98],[9.34,42.99],[9.34,42.99],[9.34,42.99],[9.34,42.99],[9.34,43],[9.34,43],[9.35,43],[9.36,43.01],[9.37,43],[9.37,43.01],[9.38,43],[9.38,43.01],[9.38,43.01],[9.39,43.01],[9.39,43.01],[9.39,43.01],[9.4,43.01],[9.4,43.01],[9.4,43.01],[9.41,43.01],[9.42,43.01],[9.41,43.01],[9.41,43.01],[9.42,43.01]]],[[[9.47,42.98],[9.47,42.98],[9.47,42.98],[9.47,42.98],[9.47,42.98]]],[[[9.41,43.03],[9.41,43.03],[9.41,43.02],[9.4,43.03],[9.41,43.03]]],[[[9.38,41.51],[9.38,41.51],[9.38,41.51],[9.38,41.51],[9.38,41.51],[9.38,41.51],[9.38,41.51]]],[[[9.37,41.57],[9.37,41.56],[9.37,41.56],[9.38,41.56],[9.37,41.56],[9.37,41.56],[9.37,41.56],[9.37,41.57]]],[[[9.37,41.56],[9.37,41.56],[9.37,41.56],[9.37,41.55],[9.37,41.56],[9.37,41.56]]],[[[9.36,41.55],[9.37,41.55],[9.36,41.55],[9.36,41.55],[9.36,41.55],[9.36,41.55],[9.36,41.55]]],[[[9.36,41.63],[9.36,41.63],[9.36,41.63],[9.36,41.63],[9.36,41.63]]],[[[9.36,41.54],[9.36,41.54],[9.35,41.54],[9.35,41.54],[9.36,41.54]]],[[[9.34,42.97],[9.34,42.96],[9.34,42.96],[9.34,42.97],[9.34,42.97]]],[[[9.26,41.37],[9.26,41.37],[9.26,41.37],[9.27,41.37],[9.27,41.37],[9.27,41.37],[9.27,41.37],[9.28,41.37],[9.27,41.37],[9.27,41.37],[9.27,41.36],[9.26,41.36],[9.26,41.37],[9.25,41.37],[9.26,41.37]]],[[[9.26,41.34],[9.25,41.34],[9.25,41.34],[9.25,41.34],[9.25,41.35],[9.26,41.35],[9.26,41.35],[9.26,41.35],[9.26,41.34],[9.26,41.34],[9.26,41.34],[9.26,41.34],[9.26,41.34],[9.26,41.34],[9.26,41.34],[9.26,41.33],[9.26,41.33],[9.26,41.34]]],[[[9.26,41.35],[9.26,41.35],[9.26,41.35],[9.25,41.35],[9.26,41.35]]],[[[9.25,41.35],[9.25,41.35],[9.25,41.35],[9.25,41.35]]],[[[9.25,41.38],[9.25,41.38],[9.24,41.38],[9.25,41.38]]],[[[9.23,41.37],[9.23,41.37],[9.23,41.37],[9.23,41.37],[9.23,41.37]]],[[[9.1,41.43],[9.1,41.43],[9.1,41.43],[9.1,41.43]]],[[[9.07,41.47],[9.07,41.47],[9.08,41.47],[9.07,41.47]]],[[[9.02,41.46],[9.02,41.46],[9.02,41.46],[9.02,41.46],[9.02,41.46]]],[[[8.74,41.81],[8.75,41.81],[8.75,41.81],[8.74,41.81],[8.74,41.81]]],[[[8.61,41.89],[8.61,41.89],[8.6,41.89],[8.61,41.89]]],[[[8.6,41.89],[8.6,41.88],[8.6,41.88],[8.6,41.89],[8.6,41.89]]],[[[8.6,41.88],[8.6,41.88],[8.59,41.88],[8.59,41.87],[8.59,41.87],[8.59,41.88],[8.6,41.88]]]]},"properties":{"id":22,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.74,49.18],[1.76,49.17],[1.78,49.19],[1.79,49.18],[1.8,49.19],[1.82,49.18],[1.83,49.18],[1.84,49.17],[1.83,49.17],[1.85,49.17],[1.88,49.18],[1.88,49.16],[1.93,49.17],[1.94,49.17],[1.95,49.17],[1.96,49.17],[1.97,49.18],[2,49.18],[2.02,49.19],[2.04,49.19],[2.05,49.2],[2.07,49.2],[2.08,49.21],[2.08,49.21],[2.09,49.21],[2.1,49.19],[2.12,49.19],[2.13,49.19],[2.14,49.18],[2.14,49.19],[2.15,49.18],[2.16,49.18],[2.16,49.17],[2.16,49.17],[2.17,49.16],[2.18,49.17],[2.18,49.18],[2.19,49.17],[2.21,49.17],[2.22,49.18],[2.23,49.17],[2.22,49.15],[2.24,49.15],[2.26,49.15],[2.26,49.16],[2.27,49.16],[2.29,49.16],[2.29,49.17],[2.3,49.18],[2.3,49.18],[2.32,49.18],[2.36,49.15],[2.37,49.16],[2.39,49.15],[2.41,49.15],[2.44,49.15],[2.44,49.13],[2.46,49.14],[2.46,49.14],[2.46,49.14],[2.48,49.13],[2.48,49.13],[2.5,49.12],[2.5,49.12],[2.49,49.11],[2.53,49.1],[2.53,49.12],[2.54,49.12],[2.54,49.12],[2.55,49.12],[2.55,49.12],[2.56,49.1],[2.58,49.09],[2.58,49.08],[2.59,49.08],[2.61,49.09],[2.61,49.09],[2.62,49.09],[2.63,49.11],[2.64,49.1],[2.65,49.1],[2.68,49.09],[2.69,49.08],[2.69,49.07],[2.7,49.06],[2.72,49.08],[2.74,49.06],[2.76,49.06],[2.79,49.08],[2.77,49.08],[2.79,49.08],[2.78,49.09],[2.79,49.09],[2.81,49.1],[2.83,49.09],[2.84,49.08],[2.84,49.08],[2.86,49.07],[2.87,49.07],[2.89,49.08],[2.89,49.08],[2.9,49.09],[2.92,49.08],[2.93,49.08],[2.94,49.08],[2.94,49.08],[2.95,49.09],[2.95,49.09],[2.97,49.09],[2.97,49.09],[2.97,49.07],[2.99,49.07],[2.99,49.08],[3.01,49.09],[3.03,49.09],[3.03,49.09],[3.07,49.09],[3.06,49.1],[3.06,49.1],[3.07,49.12],[3.08,49.11],[3.11,49.11],[3.12,49.11],[3.12,49.11],[3.14,49.11],[3.15,49.1],[3.17,49.1],[3.16,49.09],[3.16,49.08],[3.17,49.08],[3.18,49.06],[3.18,49.06],[3.19,49.05],[3.19,49.05],[3.18,49.04],[3.18,49.03],[3.16,49.03],[3.16,49.02],[3.17,49.01],[3.2,49.01],[3.21,49],[3.21,48.99],[3.22,48.99],[3.22,48.99],[3.23,48.99],[3.23,48.98],[3.25,48.97],[3.26,48.95],[3.26,48.94],[3.27,48.94],[3.27,48.94],[3.28,48.94],[3.3,48.95],[3.31,48.94],[3.31,48.92],[3.33,48.91],[3.36,48.92],[3.37,48.93],[3.38,48.91],[3.37,48.9],[3.38,48.89],[3.38,48.87],[3.39,48.87],[3.41,48.88],[3.4,48.87],[3.41,48.86],[3.42,48.87],[3.43,48.86],[3.45,48.86],[3.45,48.84],[3.46,48.84],[3.47,48.85],[3.49,48.85],[3.49,48.84],[3.49,48.83],[3.49,48.82],[3.48,48.81],[3.47,48.82],[3.47,48.82],[3.44,48.81],[3.43,48.81],[3.42,48.82],[3.41,48.81],[3.41,48.81],[3.42,48.8],[3.44,48.8],[3.44,48.78],[3.43,48.78],[3.42,48.78],[3.41,48.78],[3.4,48.76],[3.4,48.76],[3.41,48.75],[3.43,48.76],[3.44,48.75],[3.44,48.74],[3.44,48.74],[3.47,48.74],[3.47,48.71],[3.48,48.7],[3.47,48.7],[3.47,48.69],[3.46,48.68],[3.44,48.67],[3.45,48.67],[3.44,48.66],[3.46,48.65],[3.45,48.63],[3.48,48.64],[3.49,48.65],[3.52,48.64],[3.53,48.65],[3.52,48.64],[3.52,48.63],[3.54,48.63],[3.56,48.62],[3.56,48.62],[3.51,48.61],[3.51,48.6],[3.52,48.59],[3.49,48.59],[3.49,48.58],[3.47,48.57],[3.48,48.55],[3.48,48.54],[3.47,48.54],[3.45,48.53],[3.44,48.53],[3.41,48.53],[3.41,48.53],[3.42,48.51],[3.43,48.5],[3.43,48.49],[3.42,48.49],[3.4,48.49],[3.38,48.48],[3.4,48.47],[3.4,48.46],[3.41,48.45],[3.4,48.44],[3.4,48.43],[3.39,48.43],[3.41,48.42],[3.4,48.42],[3.42,48.42],[3.42,48.41],[3.41,48.39],[3.4,48.39],[3.39,48.4],[3.38,48.4],[3.37,48.39],[3.36,48.38],[3.36,48.37],[3.36,48.38],[3.35,48.38],[3.35,48.37],[3.33,48.37],[3.32,48.38],[3.31,48.38],[3.31,48.37],[3.28,48.38],[3.28,48.38],[3.27,48.38],[3.25,48.37],[3.23,48.37],[3.2,48.36],[3.19,48.37],[3.18,48.37],[3.18,48.37],[3.17,48.38],[3.17,48.37],[3.14,48.37],[3.14,48.37],[3.12,48.37],[3.11,48.36],[3.1,48.35],[3.1,48.35],[3.1,48.36],[3.09,48.36],[3.08,48.36],[3.07,48.36],[3.05,48.36],[3.04,48.34],[3.04,48.33],[3.02,48.31],[3.03,48.3],[3.02,48.3],[3.03,48.29],[3.02,48.28],[3.04,48.27],[3.05,48.25],[3.03,48.25],[3.01,48.22],[3.01,48.21],[3,48.21],[2.99,48.21],[2.97,48.2],[2.97,48.19],[2.96,48.19],[2.93,48.18],[2.94,48.16],[2.87,48.16],[2.85,48.14],[2.82,48.13],[2.8,48.13],[2.8,48.14],[2.8,48.15],[2.81,48.16],[2.81,48.16],[2.8,48.17],[2.79,48.17],[2.78,48.17],[2.77,48.16],[2.76,48.16],[2.75,48.16],[2.74,48.17],[2.75,48.15],[2.76,48.15],[2.72,48.14],[2.71,48.12],[2.68,48.13],[2.67,48.12],[2.66,48.12],[2.64,48.14],[2.6,48.13],[2.58,48.13],[2.57,48.14],[2.54,48.14],[2.52,48.13],[2.52,48.13],[2.48,48.13],[2.46,48.13],[2.46,48.12],[2.44,48.13],[2.44,48.13],[2.46,48.14],[2.47,48.15],[2.47,48.15],[2.48,48.16],[2.51,48.16],[2.51,48.16],[2.51,48.18],[2.52,48.19],[2.52,48.19],[2.52,48.2],[2.52,48.21],[2.51,48.21],[2.52,48.23],[2.51,48.23],[2.51,48.24],[2.48,48.24],[2.48,48.24],[2.48,48.25],[2.47,48.26],[2.45,48.25],[2.44,48.25],[2.44,48.25],[2.43,48.26],[2.42,48.26],[2.42,48.27],[2.42,48.3],[2.4,48.32],[2.4,48.32],[2.37,48.31],[2.37,48.31],[2.36,48.31],[2.33,48.33],[2.33,48.33],[2.32,48.33],[2.31,48.33],[2.3,48.31],[2.29,48.31],[2.27,48.32],[2.25,48.3],[2.25,48.3],[2.25,48.32],[2.24,48.32],[2.25,48.33],[2.23,48.33],[2.21,48.34],[2.21,48.34],[2.18,48.32],[2.18,48.31],[2.17,48.32],[2.17,48.31],[2.15,48.31],[2.15,48.31],[2.16,48.3],[2.16,48.3],[2.11,48.3],[2.11,48.31],[2.1,48.31],[2.09,48.29],[2.05,48.3],[2.05,48.29],[2.04,48.29],[2.03,48.29],[2.01,48.29],[1.98,48.29],[1.96,48.3],[1.96,48.31],[1.98,48.31],[1.98,48.32],[1.98,48.33],[1.97,48.34],[1.98,48.36],[1.99,48.36],[1.98,48.38],[1.97,48.38],[1.98,48.4],[1.96,48.4],[1.95,48.41],[1.93,48.4],[1.93,48.41],[1.93,48.41],[1.94,48.42],[1.94,48.44],[1.94,48.44],[1.93,48.44],[1.93,48.45],[1.92,48.46],[1.92,48.45],[1.91,48.45],[1.9,48.44],[1.87,48.44],[1.86,48.44],[1.85,48.45],[1.83,48.47],[1.81,48.47],[1.8,48.47],[1.8,48.47],[1.79,48.48],[1.8,48.48],[1.79,48.49],[1.79,48.5],[1.78,48.51],[1.78,48.53],[1.79,48.55],[1.78,48.55],[1.76,48.56],[1.76,48.57],[1.75,48.58],[1.74,48.57],[1.71,48.58],[1.71,48.58],[1.7,48.58],[1.72,48.61],[1.72,48.61],[1.69,48.61],[1.69,48.61],[1.68,48.62],[1.69,48.62],[1.68,48.62],[1.67,48.61],[1.66,48.62],[1.66,48.63],[1.65,48.63],[1.65,48.64],[1.64,48.64],[1.64,48.65],[1.62,48.65],[1.6,48.66],[1.61,48.68],[1.61,48.69],[1.58,48.7],[1.58,48.7],[1.59,48.71],[1.59,48.71],[1.62,48.74],[1.62,48.74],[1.62,48.75],[1.61,48.76],[1.58,48.76],[1.58,48.77],[1.59,48.77],[1.58,48.79],[1.58,48.81],[1.59,48.81],[1.59,48.82],[1.58,48.83],[1.59,48.84],[1.59,48.84],[1.59,48.84],[1.58,48.84],[1.58,48.86],[1.57,48.86],[1.56,48.87],[1.56,48.86],[1.55,48.87],[1.56,48.89],[1.54,48.91],[1.54,48.91],[1.54,48.92],[1.52,48.92],[1.51,48.92],[1.51,48.93],[1.51,48.93],[1.5,48.94],[1.51,48.95],[1.5,48.95],[1.5,48.97],[1.52,48.98],[1.51,48.98],[1.51,48.98],[1.49,48.98],[1.48,48.98],[1.47,48.97],[1.46,48.99],[1.47,48.99],[1.48,49.01],[1.47,49.01],[1.48,49.01],[1.46,49.03],[1.46,49.04],[1.45,49.04],[1.45,49.05],[1.45,49.05],[1.46,49.06],[1.48,49.05],[1.49,49.05],[1.5,49.06],[1.51,49.08],[1.51,49.08],[1.52,49.08],[1.52,49.07],[1.55,49.07],[1.56,49.07],[1.57,49.08],[1.59,49.08],[1.6,49.08],[1.61,49.08],[1.62,49.09],[1.62,49.09],[1.62,49.1],[1.65,49.13],[1.66,49.13],[1.65,49.14],[1.66,49.15],[1.66,49.16],[1.67,49.17],[1.67,49.18],[1.67,49.18],[1.67,49.19],[1.68,49.2],[1.67,49.21],[1.68,49.21],[1.7,49.23],[1.71,49.24],[1.74,49.22],[1.74,49.22],[1.73,49.21],[1.72,49.21],[1.72,49.2],[1.72,49.2],[1.73,49.19],[1.74,49.19],[1.74,49.18]]]},"properties":{"id":1,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.54,45.03],[1.55,45.03],[1.58,45.04],[1.61,45.03],[1.61,45.03],[1.61,45.03],[1.61,45.03],[1.63,45.03],[1.65,45.03],[1.65,45.02],[1.67,45],[1.68,45],[1.69,44.99],[1.7,44.99],[1.71,44.97],[1.71,44.97],[1.72,44.97],[1.75,44.96],[1.75,44.94],[1.75,44.94],[1.77,44.93],[1.77,44.92],[1.78,44.93],[1.79,44.94],[1.8,44.93],[1.8,44.92],[1.81,44.93],[1.82,44.93],[1.83,44.93],[1.83,44.94],[1.84,44.94],[1.84,44.94],[1.84,44.94],[1.85,44.95],[1.89,44.96],[1.89,44.96],[1.91,44.98],[1.92,44.98],[1.93,44.98],[1.94,44.97],[1.94,44.95],[1.95,44.95],[1.96,44.96],[1.98,44.97],[2.01,44.98],[2.05,44.98],[2.05,44.98],[2.06,44.98],[2.08,44.95],[2.08,44.93],[2.1,44.92],[2.11,44.91],[2.09,44.9],[2.09,44.9],[2.09,44.88],[2.09,44.87],[2.12,44.85],[2.12,44.85],[2.14,44.82],[2.17,44.81],[2.17,44.8],[2.17,44.79],[2.16,44.77],[2.15,44.77],[2.15,44.75],[2.15,44.72],[2.13,44.71],[2.13,44.7],[2.14,44.69],[2.15,44.7],[2.18,44.67],[2.17,44.66],[2.17,44.65],[2.17,44.65],[2.17,44.64],[2.19,44.63],[2.21,44.62],[2.22,44.62],[2.21,44.63],[2.21,44.64],[2.23,44.65],[2.25,44.65],[2.27,44.66],[2.27,44.66],[2.29,44.67],[2.31,44.66],[2.32,44.67],[2.33,44.66],[2.34,44.66],[2.34,44.65],[2.35,44.64],[2.37,44.64],[2.38,44.65],[2.39,44.64],[2.4,44.65],[2.44,44.64],[2.45,44.65],[2.47,44.64],[2.47,44.65],[2.48,44.65],[2.49,44.66],[2.49,44.67],[2.5,44.69],[2.52,44.7],[2.52,44.7],[2.56,44.72],[2.56,44.73],[2.55,44.73],[2.55,44.73],[2.55,44.74],[2.55,44.76],[2.56,44.76],[2.56,44.78],[2.57,44.79],[2.59,44.78],[2.6,44.79],[2.6,44.82],[2.61,44.83],[2.6,44.84],[2.62,44.85],[2.63,44.87],[2.65,44.87],[2.66,44.87],[2.66,44.89],[2.68,44.91],[2.69,44.9],[2.71,44.91],[2.72,44.93],[2.72,44.93],[2.73,44.93],[2.74,44.94],[2.74,44.93],[2.76,44.93],[2.78,44.91],[2.77,44.9],[2.78,44.89],[2.77,44.88],[2.77,44.86],[2.77,44.86],[2.78,44.86],[2.79,44.87],[2.8,44.87],[2.81,44.87],[2.85,44.87],[2.85,44.87],[2.86,44.87],[2.86,44.85],[2.86,44.85],[2.86,44.84],[2.87,44.83],[2.88,44.8],[2.89,44.79],[2.9,44.79],[2.91,44.79],[2.92,44.79],[2.93,44.78],[2.93,44.77],[2.93,44.76],[2.92,44.76],[2.91,44.76],[2.92,44.76],[2.93,44.75],[2.93,44.75],[2.93,44.74],[2.92,44.73],[2.93,44.71],[2.93,44.7],[2.94,44.69],[2.94,44.68],[2.95,44.67],[2.96,44.66],[2.96,44.66],[2.96,44.65],[2.97,44.65],[2.98,44.64],[3.01,44.62],[3.02,44.61],[3.04,44.6],[3.05,44.59],[3.06,44.58],[3.08,44.57],[3.08,44.57],[3.08,44.56],[3.07,44.53],[3.08,44.52],[3.07,44.5],[3.1,44.48],[3.12,44.47],[3.12,44.46],[3.14,44.46],[3.14,44.45],[3.14,44.44],[3.14,44.44],[3.14,44.43],[3.13,44.42],[3.13,44.41],[3.14,44.41],[3.14,44.39],[3.12,44.39],[3.12,44.38],[3.12,44.36],[3.13,44.36],[3.13,44.34],[3.14,44.33],[3.15,44.33],[3.15,44.32],[3.15,44.31],[3.13,44.29],[3.12,44.26],[3.13,44.26],[3.14,44.26],[3.15,44.28],[3.15,44.27],[3.16,44.25],[3.17,44.25],[3.19,44.25],[3.2,44.24],[3.23,44.23],[3.22,44.2],[3.21,44.2],[3.2,44.19],[3.2,44.19],[3.24,44.19],[3.26,44.2],[3.29,44.2],[3.29,44.21],[3.3,44.21],[3.32,44.2],[3.33,44.2],[3.36,44.2],[3.36,44.19],[3.37,44.18],[3.37,44.17],[3.34,44.16],[3.33,44.14],[3.32,44.14],[3.32,44.13],[3.32,44.11],[3.31,44.11],[3.29,44.1],[3.26,44.09],[3.27,44.09],[3.3,44.07],[3.31,44.07],[3.32,44.08],[3.33,44.08],[3.33,44.08],[3.33,44.07],[3.34,44.06],[3.35,44.05],[3.37,44.06],[3.37,44.05],[3.39,44.05],[3.4,44.04],[3.42,44.04],[3.45,44.02],[3.44,44],[3.42,43.99],[3.41,43.97],[3.38,43.97],[3.38,43.96],[3.36,43.95],[3.35,43.94],[3.36,43.91],[3.34,43.9],[3.34,43.89],[3.32,43.89],[3.3,43.89],[3.29,43.89],[3.28,43.9],[3.27,43.9],[3.26,43.89],[3.26,43.88],[3.24,43.87],[3.24,43.86],[3.24,43.85],[3.25,43.84],[3.25,43.83],[3.24,43.83],[3.22,43.82],[3.21,43.81],[3.18,43.81],[3.16,43.82],[3.15,43.81],[3.13,43.82],[3.11,43.83],[3.09,43.84],[3.06,43.84],[3.06,43.82],[3.06,43.81],[3.05,43.8],[3.06,43.79],[3.06,43.78],[3.07,43.77],[3.07,43.76],[3.06,43.75],[3.05,43.74],[3.06,43.74],[3.05,43.73],[3.06,43.73],[3.06,43.72],[3.07,43.71],[3.06,43.7],[3.06,43.69],[3.05,43.7],[3.03,43.69],[3.02,43.7],[3.01,43.7],[3,43.71],[2.98,43.71],[2.96,43.7],[2.94,43.69],[2.94,43.69],[2.94,43.69],[2.92,43.69],[2.92,43.66],[2.91,43.65],[2.88,43.66],[2.88,43.66],[2.87,43.65],[2.85,43.64],[2.83,43.64],[2.81,43.64],[2.8,43.62],[2.78,43.63],[2.77,43.62],[2.75,43.61],[2.75,43.62],[2.74,43.63],[2.72,43.64],[2.69,43.65],[2.68,43.65],[2.67,43.65],[2.65,43.65],[2.65,43.66],[2.65,43.66],[2.63,43.63],[2.63,43.61],[2.62,43.6],[2.62,43.6],[2.62,43.59],[2.63,43.59],[2.63,43.58],[2.62,43.57],[2.63,43.55],[2.68,43.51],[2.66,43.52],[2.66,43.5],[2.66,43.49],[2.66,43.48],[2.67,43.47],[2.66,43.46],[2.64,43.47],[2.64,43.47],[2.64,43.46],[2.62,43.44],[2.61,43.44],[2.61,43.43],[2.6,43.43],[2.6,43.43],[2.58,43.42],[2.57,43.42],[2.56,43.42],[2.55,43.42],[2.52,43.42],[2.51,43.43],[2.5,43.43],[2.49,43.44],[2.47,43.44],[2.45,43.43],[2.43,43.43],[2.41,43.43],[2.4,43.42],[2.41,43.42],[2.4,43.42],[2.38,43.42],[2.37,43.42],[2.35,43.43],[2.31,43.44],[2.3,43.45],[2.28,43.44],[2.27,43.45],[2.26,43.46],[2.26,43.45],[2.22,43.43],[2.22,43.42],[2.23,43.41],[2.22,43.38],[2.19,43.39],[2.17,43.42],[2.16,43.41],[2.14,43.4],[2.13,43.4],[2.13,43.4],[2.11,43.4],[2.11,43.39],[2.1,43.4],[2.09,43.39],[2.09,43.4],[2.07,43.4],[2.07,43.4],[2.07,43.41],[2.06,43.42],[2.05,43.43],[2.03,43.44],[2.04,43.43],[2.04,43.42],[2.03,43.42],[2.02,43.42],[2.01,43.42],[1.99,43.41],[1.97,43.42],[1.97,43.42],[1.96,43.42],[1.96,43.43],[1.95,43.42],[1.93,43.42],[1.92,43.42],[1.92,43.41],[1.91,43.4],[1.91,43.4],[1.9,43.39],[1.9,43.4],[1.9,43.41],[1.9,43.41],[1.87,43.43],[1.87,43.44],[1.86,43.44],[1.84,43.43],[1.85,43.43],[1.84,43.42],[1.83,43.42],[1.82,43.41],[1.82,43.4],[1.83,43.39],[1.8,43.39],[1.81,43.38],[1.8,43.38],[1.81,43.36],[1.82,43.35],[1.81,43.34],[1.8,43.34],[1.78,43.35],[1.78,43.34],[1.77,43.34],[1.75,43.35],[1.75,43.34],[1.74,43.34],[1.72,43.34],[1.73,43.34],[1.72,43.33],[1.74,43.32],[1.7,43.3],[1.71,43.3],[1.71,43.29],[1.7,43.28],[1.69,43.27],[1.7,43.26],[1.7,43.25],[1.72,43.23],[1.72,43.22],[1.72,43.22],[1.72,43.21],[1.71,43.2],[1.71,43.19],[1.71,43.19],[1.73,43.19],[1.74,43.18],[1.75,43.17],[1.78,43.16],[1.78,43.15],[1.8,43.16],[1.82,43.15],[1.83,43.15],[1.85,43.15],[1.85,43.16],[1.85,43.16],[1.86,43.14],[1.87,43.14],[1.88,43.15],[1.88,43.13],[1.89,43.12],[1.89,43.12],[1.9,43.13],[1.92,43.13],[1.93,43.13],[1.93,43.12],[1.95,43.12],[1.95,43.11],[1.95,43.1],[1.96,43.09],[1.95,43.08],[1.96,43.08],[1.96,43.07],[1.96,43.07],[1.94,43.07],[1.94,43.06],[1.95,43.05],[1.95,43.05],[1.96,43.05],[1.98,43.04],[1.99,43.03],[1.99,43.02],[1.97,43.01],[1.99,43],[1.99,42.99],[1.98,42.99],[1.99,42.97],[1.99,42.96],[2,42.96],[2,42.95],[1.99,42.95],[1.98,42.96],[1.96,42.96],[1.95,42.96],[1.95,42.96],[1.94,42.95],[1.93,42.94],[1.98,42.93],[1.99,42.91],[1.98,42.88],[1.99,42.87],[1.95,42.86],[1.88,42.85],[1.88,42.84],[1.86,42.83],[1.86,42.82],[1.87,42.81],[1.9,42.81],[1.9,42.8],[1.93,42.77],[1.92,42.77],[1.91,42.77],[1.91,42.77],[1.91,42.76],[1.93,42.76],[1.93,42.75],[1.94,42.75],[1.95,42.74],[1.99,42.73],[2,42.74],[2,42.73],[2.02,42.74],[2.03,42.74],[2.03,42.75],[2.04,42.75],[2.06,42.76],[2.09,42.75],[2.09,42.74],[2.14,42.71],[2.14,42.71],[2.15,42.7],[2.16,42.7],[2.17,42.69],[2.18,42.68],[2.17,42.67],[2.17,42.66],[2.15,42.66],[2.14,42.66],[2.13,42.67],[2.11,42.66],[2.07,42.67],[2.06,42.66],[2.05,42.66],[2.04,42.66],[2.03,42.65],[2.02,42.65],[2,42.66],[2,42.66],[1.99,42.65],[1.98,42.63],[1.98,42.62],[1.97,42.62],[1.95,42.62],[1.94,42.61],[1.93,42.61],[1.92,42.61],[1.91,42.61],[1.9,42.61],[1.89,42.61],[1.89,42.6],[1.89,42.59],[1.87,42.59],[1.87,42.58],[1.87,42.58],[1.84,42.58],[1.82,42.58],[1.8,42.57],[1.79,42.57],[1.78,42.58],[1.76,42.58],[1.73,42.59],[1.73,42.6],[1.74,42.61],[1.74,42.61],[1.72,42.61],[1.69,42.62],[1.67,42.62],[1.66,42.62],[1.66,42.62],[1.65,42.63],[1.63,42.63],[1.61,42.62],[1.6,42.63],[1.58,42.64],[1.58,42.65],[1.57,42.65],[1.55,42.65],[1.53,42.65],[1.51,42.64],[1.5,42.65],[1.5,42.65],[1.49,42.65],[1.49,42.65],[1.48,42.64],[1.48,42.63],[1.48,42.63],[1.48,42.62],[1.48,42.61],[1.47,42.6],[1.46,42.6],[1.45,42.6],[1.45,42.6],[1.45,42.59],[1.44,42.59],[1.44,42.59],[1.44,42.6],[1.43,42.61],[1.43,42.62],[1.42,42.62],[1.41,42.65],[1.41,42.66],[1.39,42.67],[1.39,42.67],[1.39,42.67],[1.39,42.68],[1.39,42.69],[1.38,42.69],[1.37,42.7],[1.35,42.7],[1.35,42.7],[1.35,42.71],[1.36,42.71],[1.36,42.72],[1.34,42.72],[1.34,42.72],[1.33,42.72],[1.31,42.72],[1.3,42.72],[1.28,42.71],[1.28,42.72],[1.27,42.72],[1.25,42.71],[1.25,42.72],[1.24,42.72],[1.23,42.73],[1.22,42.72],[1.19,42.72],[1.18,42.71],[1.17,42.71],[1.17,42.71],[1.13,42.73],[1.13,42.73],[1.13,42.74],[1.13,42.74],[1.13,42.75],[1.13,42.75],[1.12,42.76],[1.11,42.77],[1.11,42.77],[1.11,42.77],[1.09,42.78],[1.08,42.79],[1.07,42.78],[1.04,42.78],[1.04,42.78],[1.04,42.78],[1.04,42.79],[1.04,42.79],[1.03,42.79],[1.03,42.79],[1.01,42.79],[1,42.79],[1,42.79],[0.98,42.79],[0.96,42.81],[0.95,42.8],[0.93,42.79],[0.94,42.79],[0.93,42.79],[0.91,42.8],[0.91,42.8],[0.88,42.81],[0.87,42.82],[0.86,42.82],[0.86,42.83],[0.83,42.83],[0.8,42.84],[0.79,42.84],[0.78,42.84],[0.74,42.85],[0.73,42.85],[0.73,42.86],[0.72,42.86],[0.72,42.86],[0.71,42.86],[0.69,42.85],[0.68,42.86],[0.68,42.85],[0.66,42.84],[0.66,42.84],[0.66,42.83],[0.67,42.82],[0.67,42.82],[0.67,42.82],[0.67,42.81],[0.67,42.81],[0.67,42.8],[0.66,42.8],[0.65,42.79],[0.64,42.78],[0.66,42.78],[0.67,42.77],[0.66,42.77],[0.66,42.77],[0.64,42.75],[0.66,42.75],[0.66,42.75],[0.66,42.75],[0.67,42.74],[0.67,42.73],[0.68,42.72],[0.68,42.72],[0.68,42.72],[0.68,42.71],[0.68,42.71],[0.68,42.7],[0.68,42.69],[0.67,42.69],[0.66,42.69],[0.65,42.69],[0.64,42.69],[0.62,42.7],[0.6,42.7],[0.6,42.71],[0.59,42.7],[0.59,42.7],[0.58,42.7],[0.58,42.69],[0.57,42.7],[0.53,42.7],[0.52,42.7],[0.52,42.69],[0.52,42.69],[0.49,42.69],[0.48,42.7],[0.47,42.69],[0.46,42.69],[0.45,42.69],[0.44,42.69],[0.43,42.69],[0.42,42.69],[0.42,42.69],[0.41,42.7],[0.4,42.69],[0.39,42.71],[0.39,42.71],[0.38,42.71],[0.38,42.71],[0.36,42.72],[0.36,42.72],[0.35,42.72],[0.34,42.71],[0.33,42.71],[0.33,42.7],[0.33,42.7],[0.32,42.69],[0.33,42.69],[0.32,42.68],[0.32,42.68],[0.3,42.67],[0.29,42.68],[0.26,42.69],[0.27,42.7],[0.27,42.7],[0.26,42.72],[0.23,42.72],[0.21,42.73],[0.18,42.74],[0.18,42.73],[0.16,42.73],[0.16,42.72],[0.16,42.72],[0.14,42.72],[0.13,42.72],[0.13,42.72],[0.11,42.71],[0.11,42.71],[0.09,42.72],[0.08,42.71],[0.07,42.7],[0.06,42.7],[0.05,42.7],[0.05,42.7],[0.03,42.7],[0.02,42.7],[0.02,42.7],[0.01,42.69],[0,42.69],[-0.01,42.68],[-0.06,42.69],[-0.07,42.72],[-0.1,42.72],[-0.11,42.72],[-0.11,42.73],[-0.11,42.73],[-0.11,42.74],[-0.12,42.74],[-0.12,42.74],[-0.12,42.75],[-0.14,42.76],[-0.15,42.77],[-0.15,42.77],[-0.15,42.77],[-0.15,42.77],[-0.16,42.78],[-0.16,42.79],[-0.16,42.8],[-0.18,42.79],[-0.18,42.79],[-0.19,42.79],[-0.19,42.79],[-0.2,42.79],[-0.21,42.8],[-0.21,42.8],[-0.22,42.8],[-0.24,42.81],[-0.24,42.81],[-0.24,42.81],[-0.24,42.82],[-0.24,42.82],[-0.24,42.82],[-0.25,42.82],[-0.25,42.82],[-0.25,42.82],[-0.27,42.83],[-0.28,42.84],[-0.31,42.84],[-0.31,42.85],[-0.31,42.87],[-0.32,42.88],[-0.32,42.9],[-0.32,42.9],[-0.33,42.92],[-0.31,42.92],[-0.3,42.93],[-0.28,42.93],[-0.28,42.94],[-0.28,42.96],[-0.29,42.96],[-0.29,42.99],[-0.29,43.01],[-0.26,43.01],[-0.26,43.02],[-0.26,43.04],[-0.24,43.04],[-0.22,43.03],[-0.2,43.04],[-0.19,43.05],[-0.18,43.05],[-0.2,43.06],[-0.2,43.07],[-0.19,43.09],[-0.19,43.09],[-0.2,43.1],[-0.19,43.1],[-0.19,43.12],[-0.18,43.11],[-0.17,43.12],[-0.15,43.13],[-0.14,43.15],[-0.13,43.16],[-0.13,43.17],[-0.12,43.18],[-0.11,43.18],[-0.1,43.17],[-0.09,43.18],[-0.07,43.18],[-0.07,43.22],[-0.07,43.22],[-0.05,43.22],[-0.04,43.23],[-0.03,43.25],[-0.02,43.27],[-0.02,43.27],[-0.03,43.28],[-0.02,43.28],[-0.04,43.28],[-0.04,43.29],[-0.04,43.3],[-0.03,43.31],[-0.03,43.33],[0,43.33],[0.01,43.33],[0.01,43.33],[0.02,43.34],[0.03,43.35],[0.01,43.36],[0,43.37],[0,43.37],[0,43.38],[0,43.38],[0,43.39],[0,43.39],[0,43.39],[0,43.4],[0,43.4],[0.01,43.42],[0,43.43],[0,43.45],[-0.02,43.44],[-0.02,43.43],[-0.03,43.43],[-0.04,43.41],[-0.07,43.41],[-0.05,43.42],[-0.07,43.43],[-0.06,43.45],[-0.07,43.46],[-0.02,43.47],[-0.02,43.47],[-0.03,43.47],[-0.03,43.48],[-0.04,43.49],[-0.05,43.49],[-0.04,43.51],[-0.04,43.51],[-0.04,43.52],[-0.04,43.52],[-0.05,43.53],[-0.06,43.53],[-0.07,43.55],[-0.09,43.54],[-0.09,43.54],[-0.09,43.55],[-0.09,43.56],[-0.09,43.56],[-0.09,43.57],[-0.1,43.58],[-0.12,43.59],[-0.13,43.58],[-0.14,43.58],[-0.15,43.59],[-0.16,43.58],[-0.16,43.58],[-0.18,43.6],[-0.21,43.58],[-0.21,43.59],[-0.23,43.59],[-0.24,43.58],[-0.24,43.58],[-0.25,43.6],[-0.25,43.6],[-0.25,43.62],[-0.27,43.62],[-0.28,43.62],[-0.28,43.64],[-0.27,43.64],[-0.26,43.64],[-0.26,43.65],[-0.26,43.65],[-0.25,43.65],[-0.24,43.67],[-0.25,43.67],[-0.26,43.68],[-0.25,43.68],[-0.24,43.69],[-0.25,43.71],[-0.22,43.72],[-0.19,43.74],[-0.2,43.75],[-0.22,43.75],[-0.21,43.76],[-0.21,43.76],[-0.21,43.76],[-0.22,43.77],[-0.21,43.78],[-0.22,43.79],[-0.22,43.8],[-0.23,43.81],[-0.22,43.81],[-0.21,43.81],[-0.19,43.81],[-0.2,43.83],[-0.19,43.83],[-0.19,43.84],[-0.21,43.86],[-0.2,43.87],[-0.19,43.87],[-0.19,43.87],[-0.19,43.88],[-0.2,43.89],[-0.21,43.89],[-0.22,43.89],[-0.23,43.89],[-0.24,43.9],[-0.23,43.9],[-0.23,43.91],[-0.22,43.91],[-0.22,43.91],[-0.2,43.91],[-0.18,43.94],[-0.17,43.93],[-0.16,43.93],[-0.15,43.94],[-0.14,43.94],[-0.13,43.94],[-0.1,43.93],[-0.1,43.93],[-0.1,43.94],[-0.09,43.95],[-0.08,43.94],[-0.08,43.94],[-0.06,43.96],[-0.04,43.96],[-0.04,43.98],[0.01,43.96],[0.01,43.95],[-0.02,43.93],[0.02,43.91],[0.03,43.9],[0.04,43.9],[0.06,43.9],[0.07,43.91],[0.08,43.91],[0.07,43.94],[0.06,43.96],[0.07,43.97],[0.07,43.97],[0.08,43.98],[0.11,43.99],[0.13,44],[0.13,44],[0.14,43.99],[0.14,43.98],[0.15,43.97],[0.16,43.97],[0.17,43.98],[0.17,43.99],[0.18,44],[0.19,44.02],[0.19,44.01],[0.2,44.01],[0.21,44.02],[0.23,44.02],[0.23,44.02],[0.23,44.01],[0.25,44],[0.27,44],[0.27,44],[0.28,44],[0.3,43.99],[0.31,43.99],[0.32,44],[0.32,44.01],[0.32,44.01],[0.36,44.02],[0.37,44.01],[0.38,44.01],[0.39,44.02],[0.4,44.02],[0.41,44.02],[0.42,44.03],[0.44,44.03],[0.45,44.05],[0.46,44.06],[0.48,44.05],[0.49,44.06],[0.5,44.06],[0.5,44.05],[0.51,44.06],[0.54,44.05],[0.57,44.06],[0.58,44.07],[0.59,44.08],[0.6,44.08],[0.6,44.07],[0.63,44.06],[0.63,44.05],[0.65,44.04],[0.65,44.03],[0.66,44.02],[0.68,44.03],[0.68,44.04],[0.69,44.05],[0.71,44.06],[0.72,44.06],[0.74,44.07],[0.74,44.07],[0.75,44.09],[0.75,44.09],[0.75,44.1],[0.78,44.12],[0.78,44.11],[0.8,44.11],[0.79,44.12],[0.8,44.13],[0.79,44.14],[0.8,44.15],[0.82,44.14],[0.86,44.13],[0.86,44.13],[0.87,44.13],[0.88,44.13],[0.88,44.14],[0.88,44.14],[0.89,44.14],[0.89,44.14],[0.89,44.15],[0.89,44.16],[0.89,44.17],[0.89,44.17],[0.88,44.17],[0.87,44.17],[0.86,44.17],[0.85,44.17],[0.85,44.18],[0.86,44.19],[0.9,44.19],[0.93,44.23],[0.92,44.24],[0.93,44.25],[0.93,44.27],[0.94,44.26],[0.95,44.28],[0.92,44.29],[0.92,44.3],[0.9,44.3],[0.88,44.31],[0.87,44.31],[0.87,44.32],[0.87,44.32],[0.88,44.33],[0.9,44.35],[0.89,44.35],[0.89,44.36],[0.89,44.36],[0.9,44.38],[0.92,44.38],[0.92,44.38],[0.94,44.37],[0.94,44.34],[0.94,44.34],[0.94,44.35],[0.95,44.36],[0.98,44.36],[1,44.37],[1.02,44.36],[1.03,44.36],[1.05,44.36],[1.06,44.37],[1.06,44.38],[1.06,44.38],[1.06,44.39],[1.05,44.39],[1.06,44.4],[1.06,44.43],[1.05,44.43],[1.05,44.43],[1.03,44.43],[1.03,44.44],[1.02,44.45],[1.02,44.46],[1.03,44.47],[1.02,44.48],[1.01,44.48],[1.01,44.49],[1.02,44.5],[0.98,44.54],[0.99,44.55],[1.01,44.55],[1.01,44.54],[1.03,44.55],[1.04,44.56],[1.04,44.56],[1.07,44.57],[1.08,44.58],[1.08,44.57],[1.09,44.57],[1.1,44.57],[1.1,44.58],[1.1,44.58],[1.1,44.59],[1.11,44.6],[1.15,44.63],[1.15,44.64],[1.15,44.65],[1.15,44.66],[1.15,44.67],[1.16,44.67],[1.17,44.68],[1.18,44.68],[1.22,44.68],[1.23,44.69],[1.24,44.69],[1.24,44.7],[1.26,44.71],[1.27,44.72],[1.29,44.71],[1.3,44.73],[1.3,44.74],[1.32,44.74],[1.32,44.76],[1.3,44.78],[1.3,44.79],[1.3,44.79],[1.29,44.79],[1.3,44.8],[1.33,44.81],[1.34,44.81],[1.36,44.81],[1.36,44.84],[1.37,44.84],[1.38,44.84],[1.39,44.85],[1.4,44.85],[1.41,44.86],[1.41,44.86],[1.41,44.87],[1.42,44.87],[1.44,44.87],[1.44,44.88],[1.44,44.89],[1.42,44.9],[1.42,44.91],[1.41,44.91],[1.42,44.92],[1.44,44.92],[1.43,44.94],[1.44,44.94],[1.43,44.95],[1.43,44.95],[1.42,44.96],[1.42,44.97],[1.41,44.97],[1.41,44.99],[1.41,45.01],[1.43,45.01],[1.45,45.02],[1.46,45.01],[1.46,45.02],[1.48,45.02],[1.48,45.03],[1.48,45.03],[1.51,45.04],[1.52,45.04],[1.53,45.04],[1.54,45.04],[1.54,45.03]]],[[[-0.08,43.37],[-0.06,43.35],[-0.06,43.35],[-0.07,43.33],[-0.07,43.31],[-0.08,43.31],[-0.1,43.31],[-0.11,43.31],[-0.11,43.32],[-0.11,43.33],[-0.11,43.34],[-0.09,43.33],[-0.09,43.36],[-0.1,43.36],[-0.11,43.37],[-0.09,43.37],[-0.08,43.37],[-0.08,43.37]]],[[[-0.08,43.26],[-0.09,43.25],[-0.09,43.26],[-0.1,43.25],[-0.1,43.24],[-0.12,43.24],[-0.12,43.25],[-0.14,43.27],[-0.14,43.28],[-0.14,43.29],[-0.13,43.29],[-0.12,43.31],[-0.11,43.31],[-0.09,43.3],[-0.09,43.28],[-0.08,43.28],[-0.08,43.27],[-0.08,43.26]]]]},"properties":{"id":16,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.13,48.02],[6.16,48.01],[6.15,48],[6.16,47.99],[6.16,47.97],[6.15,47.97],[6.16,47.96],[6.16,47.96],[6.16,47.96],[6.17,47.95],[6.18,47.96],[6.21,47.95],[6.21,47.94],[6.21,47.93],[6.21,47.93],[6.22,47.94],[6.24,47.93],[6.24,47.94],[6.25,47.94],[6.28,47.95],[6.29,47.96],[6.31,47.95],[6.32,47.95],[6.36,47.96],[6.38,47.96],[6.39,47.96],[6.4,47.95],[6.41,47.94],[6.43,47.94],[6.45,47.92],[6.46,47.92],[6.46,47.91],[6.48,47.89],[6.48,47.89],[6.5,47.9],[6.54,47.9],[6.57,47.93],[6.6,47.94],[6.61,47.94],[6.61,47.94],[6.63,47.93],[6.64,47.92],[6.64,47.91],[6.65,47.9],[6.7,47.88],[6.71,47.88],[6.74,47.86],[6.74,47.87],[6.74,47.86],[6.78,47.85],[6.79,47.84],[6.79,47.83],[6.79,47.83],[6.82,47.81],[6.84,47.82],[6.84,47.82],[6.85,47.82],[6.84,47.81],[6.85,47.81],[6.85,47.8],[6.86,47.78],[6.9,47.78],[6.91,47.78],[6.92,47.77],[6.92,47.77],[6.94,47.77],[6.97,47.75],[7.01,47.74],[7.02,47.74],[7.02,47.73],[7.04,47.72],[7.03,47.71],[7.04,47.69],[7.04,47.69],[7.04,47.69],[7.05,47.68],[7.04,47.68],[7.05,47.67],[7.04,47.66],[7.04,47.65],[7.02,47.65],[7.02,47.65],[7.01,47.63],[7.01,47.63],[7.01,47.63],[7.01,47.62],[7.01,47.6],[7.01,47.6],[7.02,47.6],[7.02,47.59],[7.02,47.59],[7.03,47.59],[7.04,47.6],[7.07,47.6],[7.09,47.59],[7.09,47.59],[7.09,47.58],[7.09,47.57],[7.11,47.57],[7.11,47.56],[7.11,47.55],[7.12,47.55],[7.13,47.54],[7.14,47.53],[7.14,47.51],[7.13,47.5],[7.11,47.49],[7.1,47.5],[7.08,47.49],[7.04,47.5],[7.02,47.5],[6.98,47.49],[6.99,47.49],[6.99,47.47],[6.99,47.47],[6.99,47.47],[7,47.46],[7,47.45],[6.99,47.45],[6.97,47.45],[6.96,47.44],[6.94,47.43],[6.94,47.41],[6.94,47.41],[6.92,47.41],[6.92,47.4],[6.91,47.4],[6.91,47.39],[6.89,47.38],[6.88,47.37],[6.88,47.35],[6.9,47.36],[6.92,47.36],[7,47.36],[7.01,47.37],[7.03,47.37],[7.05,47.36],[7.05,47.36],[7.05,47.35],[7.06,47.34],[7.05,47.34],[7.05,47.33],[7.04,47.33],[7.03,47.33],[7.01,47.32],[7.02,47.32],[7.01,47.3],[7,47.3],[6.98,47.3],[6.97,47.29],[6.95,47.29],[6.94,47.29],[6.95,47.27],[6.95,47.25],[6.96,47.24],[6.94,47.24],[6.94,47.23],[6.93,47.23],[6.92,47.22],[6.89,47.21],[6.88,47.2],[6.87,47.19],[6.84,47.17],[6.84,47.17],[6.86,47.16],[6.85,47.16],[6.8,47.13],[6.76,47.12],[6.74,47.11],[6.74,47.11],[6.74,47.09],[6.71,47.09],[6.7,47.07],[6.72,47.05],[6.7,47.04],[6.68,47.04],[6.65,47.02],[6.63,47],[6.61,46.99],[6.6,46.99],[6.56,46.98],[6.51,46.97],[6.5,46.97],[6.47,46.96],[6.44,46.93],[6.43,46.93],[6.46,46.89],[6.46,46.85],[6.44,46.83],[6.44,46.82],[6.43,46.81],[6.43,46.8],[6.46,46.79],[6.45,46.78],[6.44,46.76],[6.42,46.75],[6.4,46.75],[6.39,46.73],[6.37,46.73],[6.37,46.72],[6.36,46.72],[6.36,46.72],[6.34,46.71],[6.27,46.68],[6.27,46.68],[6.18,46.61],[6.16,46.61],[6.14,46.6],[6.11,46.58],[6.11,46.58],[6.16,46.55],[6.15,46.53],[6.14,46.53],[6.12,46.52],[6.1,46.48],[6.07,46.46],[6.07,46.45],[6.09,46.44],[6.06,46.42],[6.06,46.42],[6.05,46.41],[6.03,46.39],[6.01,46.38],[5.98,46.36],[5.94,46.31],[5.93,46.31],[5.92,46.31],[5.92,46.29],[5.91,46.28],[5.89,46.29],[5.88,46.27],[5.87,46.26],[5.86,46.27],[5.85,46.26],[5.83,46.26],[5.77,46.27],[5.73,46.26],[5.73,46.26],[5.72,46.28],[5.72,46.29],[5.71,46.31],[5.68,46.31],[5.68,46.32],[5.67,46.32],[5.65,46.32],[5.65,46.33],[5.65,46.34],[5.63,46.33],[5.61,46.33],[5.6,46.3],[5.59,46.29],[5.56,46.29],[5.56,46.29],[5.54,46.27],[5.51,46.26],[5.5,46.27],[5.5,46.27],[5.48,46.27],[5.46,46.28],[5.46,46.29],[5.47,46.29],[5.48,46.32],[5.47,46.32],[5.45,46.32],[5.44,46.32],[5.42,46.35],[5.42,46.34],[5.41,46.31],[5.4,46.31],[5.4,46.34],[5.38,46.34],[5.37,46.35],[5.38,46.36],[5.38,46.36],[5.36,46.37],[5.37,46.37],[5.38,46.38],[5.35,46.4],[5.33,46.4],[5.31,46.41],[5.3,46.41],[5.3,46.42],[5.31,46.42],[5.31,46.42],[5.31,46.42],[5.32,46.43],[5.31,46.45],[5.31,46.45],[5.32,46.45],[5.32,46.46],[5.37,46.46],[5.39,46.47],[5.4,46.47],[5.41,46.47],[5.42,46.48],[5.42,46.5],[5.41,46.5],[5.39,46.51],[5.39,46.51],[5.36,46.52],[5.36,46.55],[5.36,46.56],[5.37,46.57],[5.36,46.58],[5.38,46.58],[5.41,46.58],[5.41,46.6],[5.4,46.61],[5.41,46.61],[5.43,46.63],[5.44,46.64],[5.42,46.65],[5.43,46.66],[5.42,46.66],[5.42,46.67],[5.4,46.69],[5.41,46.7],[5.41,46.7],[5.4,46.71],[5.4,46.72],[5.39,46.73],[5.39,46.73],[5.36,46.73],[5.37,46.75],[5.37,46.75],[5.38,46.76],[5.39,46.77],[5.38,46.78],[5.37,46.78],[5.37,46.78],[5.36,46.79],[5.34,46.79],[5.33,46.8],[5.33,46.81],[5.34,46.82],[5.34,46.82],[5.35,46.82],[5.38,46.83],[5.41,46.83],[5.42,46.83],[5.46,46.83],[5.46,46.83],[5.46,46.84],[5.46,46.85],[5.46,46.86],[5.45,46.86],[5.44,46.86],[5.44,46.85],[5.43,46.86],[5.43,46.86],[5.42,46.86],[5.4,46.87],[5.4,46.88],[5.4,46.89],[5.39,46.89],[5.36,46.88],[5.35,46.89],[5.34,46.89],[5.34,46.88],[5.33,46.89],[5.33,46.9],[5.31,46.91],[5.31,46.94],[5.29,46.94],[5.28,46.94],[5.27,46.93],[5.26,46.93],[5.26,46.94],[5.25,46.94],[5.25,46.95],[5.26,46.95],[5.26,46.95],[5.26,46.98],[5.27,46.99],[5.28,47],[5.3,47],[5.3,47.01],[5.32,47.01],[5.32,47.02],[5.28,47.03],[5.28,47.05],[5.3,47.06],[5.31,47.06],[5.32,47.07],[5.33,47.08],[5.35,47.08],[5.36,47.08],[5.36,47.08],[5.38,47.08],[5.39,47.08],[5.39,47.09],[5.4,47.09],[5.4,47.11],[5.41,47.11],[5.41,47.12],[5.41,47.13],[5.41,47.13],[5.43,47.14],[5.44,47.14],[5.44,47.15],[5.45,47.16],[5.45,47.17],[5.46,47.18],[5.45,47.19],[5.45,47.2],[5.45,47.2],[5.46,47.21],[5.47,47.21],[5.48,47.22],[5.48,47.23],[5.48,47.24],[5.48,47.24],[5.48,47.26],[5.49,47.27],[5.49,47.29],[5.49,47.29],[5.51,47.28],[5.52,47.3],[5.5,47.31],[5.47,47.32],[5.47,47.32],[5.48,47.33],[5.49,47.33],[5.49,47.33],[5.5,47.34],[5.49,47.36],[5.49,47.37],[5.5,47.39],[5.48,47.39],[5.45,47.38],[5.43,47.39],[5.44,47.41],[5.43,47.42],[5.43,47.44],[5.44,47.45],[5.44,47.45],[5.43,47.45],[5.42,47.45],[5.41,47.46],[5.4,47.46],[5.38,47.45],[5.38,47.46],[5.37,47.46],[5.38,47.47],[5.41,47.48],[5.39,47.48],[5.4,47.5],[5.43,47.5],[5.44,47.49],[5.45,47.5],[5.45,47.51],[5.47,47.53],[5.49,47.53],[5.5,47.55],[5.49,47.56],[5.48,47.57],[5.49,47.58],[5.48,47.61],[5.47,47.61],[5.44,47.63],[5.43,47.63],[5.4,47.6],[5.39,47.6],[5.39,47.6],[5.37,47.6],[5.37,47.62],[5.39,47.64],[5.41,47.65],[5.4,47.65],[5.41,47.67],[5.42,47.68],[5.43,47.67],[5.45,47.67],[5.47,47.67],[5.48,47.68],[5.51,47.67],[5.53,47.67],[5.57,47.71],[5.57,47.71],[5.58,47.7],[5.59,47.69],[5.6,47.67],[5.61,47.68],[5.62,47.67],[5.63,47.68],[5.65,47.68],[5.66,47.68],[5.67,47.69],[5.67,47.68],[5.69,47.68],[5.69,47.69],[5.69,47.7],[5.68,47.71],[5.69,47.72],[5.7,47.73],[5.69,47.73],[5.69,47.73],[5.71,47.74],[5.71,47.75],[5.71,47.77],[5.7,47.77],[5.68,47.77],[5.68,47.78],[5.68,47.78],[5.69,47.81],[5.7,47.82],[5.73,47.82],[5.74,47.82],[5.75,47.82],[5.75,47.83],[5.74,47.85],[5.75,47.85],[5.76,47.86],[5.77,47.86],[5.8,47.86],[5.8,47.85],[5.83,47.85],[5.82,47.87],[5.85,47.9],[5.85,47.9],[5.85,47.91],[5.87,47.9],[5.88,47.9],[5.89,47.9],[5.89,47.91],[5.88,47.93],[5.9,47.93],[5.89,47.94],[5.91,47.95],[5.92,47.95],[5.92,47.97],[5.93,47.97],[5.95,47.98],[5.96,47.97],[5.94,47.95],[5.93,47.94],[5.95,47.94],[5.97,47.95],[5.97,47.96],[6,47.96],[6.01,47.96],[6.01,47.97],[6.02,47.98],[6.02,47.99],[6.04,48],[6.07,48.02],[6.11,48.01],[6.11,48.02],[6.13,48.02]]],[[[5.45,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.44,46.85],[5.45,46.85],[5.45,46.85]]]]},"properties":{"id":11,"popupContent":"","style":{"weight":0,"strokeWidth":2,"fillColor":"green","fillOpacity":0.6}}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment